neliasso [Tue, 23 Apr 2013 18:06:54 +0200] rev 17125
8012157: removed unused code in SharedRuntime::handle_wrong_method
Reviewed-by: kvn, roland, rbackman
Contributed-by: albert.noll@oracle.com
neliasso [Tue, 23 Apr 2013 13:48:02 +0200] rev 17124
8010332: removed unused method: ciMethod::uses_monitors
Reviewed-by: twisti, roland
Contributed-by: albert.noll@oracle.com
iignatyev [Thu, 25 Apr 2013 11:09:24 -0700] rev 17123
8011675: adding compilation level to replay data
Reviewed-by: kvn, vlivanov
iignatyev [Thu, 25 Apr 2013 11:04:36 -0700] rev 17122
8012337: Change Whitebox implementation to make absence of method in Whitebox.class not fatal
Reviewed-by: kvn, vlivanov
vlivanov [Thu, 25 Apr 2013 11:02:32 -0700] rev 17121
8012260: ciReplay: Include PID into the name of replay data file
Reviewed-by: kvn, twisti
mgerdin [Thu, 02 May 2013 16:41:09 -0700] rev 17120
Merge
mgerdin [Thu, 02 May 2013 19:28:59 +0200] rev 17119
Merge
ehelin [Tue, 30 Apr 2013 16:36:24 +0200] rev 17118
8008541: Remove old code in HotSpot that supported the jmap -permstat functionality
Reviewed-by: sla, brutisso
mgerdin [Mon, 29 Apr 2013 13:07:27 +0200] rev 17117
8013129: Possible deadlock with Metaspace locks due to mixed usage of safepoint aware and non-safepoint aware locking
Summary: Change Metaspace::deallocate to take lock with _no_safepoint_check_flag
Reviewed-by: coleenp, jmasa, dholmes
mgerdin [Mon, 29 Apr 2013 09:31:59 +0200] rev 17116
Merge
johnc [Fri, 26 Apr 2013 10:57:57 -0700] rev 17115
8011898: gc/TestVerifyBeforeGCDuringStartup.java: java.lang.RuntimeException: '[Verifying' missing from stdout/stderr: [Error: Could not find or load main class]
Summary: System.getProperty("test.java.opts") can return NULL, which gets converted to to the empty string, and the child java command then interprets that as the name of the main class.
Reviewed-by: jmasa, brutisso
stefank [Fri, 26 Apr 2013 10:40:36 +0200] rev 17114
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
Reviewed-by: coleenp, mgerdin
brutisso [Fri, 26 Apr 2013 09:53:22 +0200] rev 17113
8012915: ReservedSpace::align_reserved_region() broken on Windows
Summary: remove unused constructors and helper methods for ReservedHeapSpace and ReservedSpace
Reviewed-by: mgerdin, jmasa, johnc, tschatzl
stefank [Wed, 24 Apr 2013 20:13:37 +0200] rev 17112
8013132: Add a flag to turn off the output of the verbose verification code
Reviewed-by: johnc, brutisso
johnc [Wed, 24 Apr 2013 14:48:43 -0700] rev 17111
8012715: G1: GraphKit accesses PtrQueue::_index as int but is size_t
Summary: In graphKit INT operations were generated to access PtrQueue::_index which has type size_t. This is 64 bit on 64-bit machines. No problems occur on little endian machines as long as the index fits into 32 bit, but on big endian machines the upper part is read, which is zero. This leads to unnecessary branches to the slow path in the runtime.
Reviewed-by: twisti, johnc
Contributed-by: Martin Doerr <martin.doerr@sap.com>
mgerdin [Wed, 24 Apr 2013 19:55:02 +0200] rev 17110
8013136: NPG: Parallel class loading tests fail after fix for JDK-8011802
Summary: Move initialization of dependencies to before allocation of CLD
Reviewed-by: stefank, coleenp