- 20 9月, 2013 2 次提交
-
-
由 stefank 提交于
Reviewed-by: coleenp, brutisso, mgerdin, jmasa
-
由 stefank 提交于
Summary: SymbolTable and StringTable can make calls to GC_locker::is_active() outside a safepoint. This isn't safe because the GC_locker active state (lock count) is only updated at a safepoint and only remains valid as long as _needs_gc is true. However, outside a safepoint_needs_gc can change to false at any time, which makes it impossible to do a correct call to is_active() in that context. In this case these calls can just be removed since the input argument to basic_add() should never be on the heap and so there's no need to check the GC_locker state. This change also adjusts the assert() in is_active() to makes sure all calls to this function are always done under a safepoint. Reviewed-by: brutisso, dcubed Contributed-by: per.liden@oracle.com
-
- 18 9月, 2013 2 次提交
-
-
由 tschatzl 提交于
8024669: Native OOME when allocating after changes to maximum heap supporting Coops sizing on sparcv9 Summary: After changes in 8010722 the ergonomics for calculating the size of the heap that supports zero based compressed oops changed. This lead to the VM actually using zero based compressed oops. Due to low default HeapBaseMinAddress, the OS mapping in the application image at the same address, and limitations of the malloc implementation on Solaris this resulted in very little C heap available for the VM. So the VM immediately gives a native OOME when the machine has lots of physical memory (>=32G). The solution is to increase the HeapBaseMinAddress so that the VM has enough C heap. Reviewed-by: kvn, brutisso
-
由 ehelin 提交于
Reviewed-by: stefank, dholmes, coleenp
-
- 17 9月, 2013 1 次提交
-
-
由 tschatzl 提交于
Summary: Incorrect usage of idx_t where bm_word_t is appropriate. Reviewed-by: tschatzl, brutisso Contributed-by: NDan Horak <dhorak@redhat.com>
-
- 16 9月, 2013 1 次提交
-
-
由 tschatzl 提交于
8024396: VM crashing with assert(!UseLargePages || UseParallelOldGC || use_large_pages) failed: Wrong alignment to use large pages Summary: Loosen wrong assert for UseParallelOldGC to UseParallelGC Reviewed-by: stefank, brutisso
-
- 13 9月, 2013 1 次提交
-
-
由 shade 提交于
Reviewed-by: brutisso, tschatzl
-
- 14 9月, 2013 4 次提交
- 12 9月, 2013 2 次提交
- 11 9月, 2013 6 次提交
-
-
由 tschatzl 提交于
Summary: Use conservative assumptions of required alignment for the various garbage collector components into account when determining the maximum heap size that supports compressed oops. Using this conservative value avoids several circular dependencies in the calculation. Reviewed-by: stefank, dholmes
-
由 tschatzl 提交于
Summary: Correctly calculate the initialization value for the shift between object start and bitmap bit in the G1 mark bitmaps. Reviewed-by: tonyp
-
由 tschatzl 提交于
Summary: Correctly pass the requested base address for the heap to the OS function to reserve memory. Reviewed-by: brutisso, stefank
-
由 mgerdin 提交于
Summary: Use best-fit block-splitting freelist allocation from the block freelist. Reviewed-by: jmasa, stefank
-
由 adlertz 提交于
Summary: Lowered the MinJumpTableSize for each platform Reviewed-by: kvn
-
由 vlivanov 提交于
Reviewed-by: rbackman, twisti, kvn Contributed-by: john.r.rose@oracle.com, vladimir.x.ivanov@oracle.com
-
- 10 9月, 2013 1 次提交
-
-
由 anoll 提交于
Summary: Removed unused macro Reviewed-by: kvn, adlertz
-
- 05 9月, 2013 1 次提交
-
-
由 jmasa 提交于
Reviewed-by: azeemj, brutisso, kvn, tschatzl
-
- 03 9月, 2013 1 次提交
-
-
由 adlertz 提交于
Summary: Added brackets for if-statement Reviewed-by: kvn, roland
-
- 02 9月, 2013 1 次提交
-
-
由 adlertz 提交于
Summary: Moved local scheduling code from class Block to class PhaseCFG Reviewed-by: kvn, roland
-
- 01 9月, 2013 1 次提交
-
-
由 hseigel 提交于
8023381: VM fails to initialize in runtime/CDSCompressedKPtrs/XShareAuto.java runtime/SharedArchiveFile/CdsSameObjectAlignment.java Summary: Improve handling when CDS archive cannot be mapped Reviewed-by: kvn, dholmes, mseledtsov
-
- 31 8月, 2013 1 次提交
-
-
由 acorn 提交于
Summary: skip verification for generated lambda classes Reviewed-by: kamg, dholmes
-
- 30 8月, 2013 5 次提交
-
-
由 zgu 提交于
Summary: Fixed a memory leak in FlatProfiler::record_thread_tick() method Reviewed-by: dholmes, ccheung
-
由 brutisso 提交于
8019902: G1: Use the average heap size rather than the minimum heap size to calculate the region size Reviewed-by: tonyp, tschatzl, sjohanss
-
由 coleenp 提交于
Summary: declare all user-defined operator new()s within Hotspot code with the empty throw() exception specification Reviewed-by: coleenp, twisti, dholmes, hseigel, dcubed, kvn, ccheung Contributed-by: lois.foltan@oracle.com
-
由 vlivanov 提交于
Reviewed-by: kvn, twisti
-
由 dsamersoff 提交于
Summary: don't re-evaluate stack bounds for main thread before install guard page Reviewed-by: coleenp, dholmes, dlong
-
- 29 8月, 2013 2 次提交
- 28 8月, 2013 2 次提交
-
-
由 acorn 提交于
Reviewed-by: kamg, coleenp
-
由 kvn 提交于
Summary: Avoid loading old values in G1 pre-barriers for inlined unsafe load_store nodes. Reviewed-by: kvn, tonyp Contributed-by: NMartin Doerr <martin.doerr@sap.com>
-
- 27 8月, 2013 1 次提交
-
-
由 ccheung 提交于
Summary: removed offending EXCEPTION_MARK calls and code cleanup Reviewed-by: dholmes, iklam, coleenp, mseledtsov
-
- 26 8月, 2013 5 次提交
-
-
由 acorn 提交于
Reviewed-by: kamg, coleenp
-
由 roland 提交于
Summary: Method pointer for zombie methods may be invalid Reviewed-by: kvn, coleenp
-
由 shade 提交于
Summary: Add the relevant test and proofread the VM messages as well Reviewed-by: coleenp, mseledtsov, dcubed
-
由 vlivanov 提交于
8022595: JSR292: deadlock during class loading of MethodHandles, MethodHandleImpl & MethodHandleNatives Reviewed-by: kvn, coleenp, dholmes
-
由 vlivanov 提交于
Reviewed-by: kvn
-