- 29 8月, 2014 1 次提交
-
-
由 mgerdin 提交于
Reviewed-by: gziemski, jmasa, brutisso, coleenp, tschatzl
-
- 24 9月, 2014 1 次提交
-
-
由 iveresov 提交于
Summary: Fix UnsafeRawOp optimizations Reviewed-by: kvn, drchase, vlivanov
-
- 20 9月, 2014 1 次提交
-
-
由 iveresov 提交于
Summary: Ensure MethodCounters are created before method is enqueued for compilation Reviewed-by: kvn, drchase, jiangli, roland
-
- 16 9月, 2014 1 次提交
-
-
由 brutisso 提交于
Reviewed-by: brutisso, tschatzl
-
- 06 9月, 2014 1 次提交
-
-
由 jcoomes 提交于
Reviewed-by: brutisso, mgerdin, tschatzl
-
- 03 9月, 2014 1 次提交
-
-
由 dholmes 提交于
Reviewed-by: fparain, dcubed, mdoerr Contributed-by: NBill Pittore <bill.pittore@oracle.com>
-
- 05 9月, 2014 2 次提交
- 20 8月, 2014 3 次提交
-
-
由 tschatzl 提交于
8055635: Missing include in g1RegionToSpaceMapper.hpp results in unresolved symbol of fastdebug build without precompiled headers Reviewed-by: mgerdin, ehelin
-
由 zgu 提交于
Summary: Fixed memory leak in NMT by baselining memory in c heap instead of an arena. Reviewed-by: coleenp, minqi
-
由 tschatzl 提交于
Summary: If large pages are enabled and configured in Linux, the VM always pre-commits the entire space. The VM fails verification of the commit of the initial heap because some internal data structure marked all memory pages of the heap as committed during initialization. This makes the code think that we attempted a double-commit during first allocation of the heap. Remove the initial marking of memory pages of the heap to committed. Reviewed-by: mgerdin
-
- 21 8月, 2014 1 次提交
-
-
由 tschatzl 提交于
Summary: Allow G1 to decommit memory of arbitrary regions within the heap and their associated auxiliary data structures card table, BOT, hot card cache, and mark bitmaps. Reviewed-by: mgerdin, brutisso, jwilhelm
-
- 19 8月, 2014 4 次提交
-
-
由 zgu 提交于
8055061: assert at share/vm/services/virtualMemoryTracker.cpp:332 Error: ShouldNotReachHere() when running NMT tests Summary: Handled CDS mapping region and added test for the scenario Reviewed-by: coleenp, ctornqvi
-
由 zgu 提交于
Summary: Refactored emptyStack to a static member of NativeCallStack, which is accessible in minimal build. Reviewed-by: coleenp, dholmes
-
由 tschatzl 提交于
Summary: Let HeapRegionSeq manage the heap region and auxiliary data to decrease the amount of responsibilities of G1CollectedHeap, and encapsulate this work from other code. Reviewed-by: jwilhelm, jmasa, mgerdin, brutisso
-
由 brutisso 提交于
Reviewed-by: tschatzl, jmasa
-
- 15 8月, 2014 1 次提交
-
-
由 zgu 提交于
Summary: Re-enabled warning as launcher change reached promotion build Reviewed-by: hseigel, coleenp
-
- 14 8月, 2014 3 次提交
-
-
由 dsimms 提交于
Summary: negative verify_guards when testing for corruption Reviewed-by: sla, fparain
-
由 dsimms 提交于
Summary: Wrapped memory with standard bounds checking "GuardedMemory". Reviewed-by: zgu, fparain, dcubed
-
由 zgu 提交于
Summary: Dynamic allocate _reserved_regions instead of static object to avoid racing during process exit Reviewed-by: dholmes, coleenp
-
- 04 9月, 2014 1 次提交
-
-
由 sla 提交于
Reviewed-by: mgerdin, bdelsart, jcoomes
-
- 03 9月, 2014 1 次提交
-
-
由 tschatzl 提交于
Summary: Fixup the remaining variable names. Reviewed-by: tonyp, jwilhelm
-
- 28 8月, 2014 1 次提交
-
-
由 tschatzl 提交于
Summary: The verification code that checked whether no bitmap mark had been found re-read HeapRegion::end() after the check on the bitmap. Concurrent humongous object allocation could have changed HeapRegion::end() in the meantime. Fix this by using the actual end of the region instead of HeapRegion::end() for comparison. Reviewed-by: brutisso, jmasa
-
- 03 9月, 2014 2 次提交
-
-
由 tschatzl 提交于
Summary: Enable shrinking within the heap by removing some code added for JDK-8054818. Enable the test case that checks that again too. Reviewed-by: jwilhelm, jmasa
-
由 iklam 提交于
Summary: Misplacement of #if INCLUE_CDS, typos, unnecessary C string duplication Reviewed-by: dholmes, ccheung
-
- 02 9月, 2014 1 次提交
-
-
由 tschatzl 提交于
Reviewed-by: jmasa, jwilhelm
-
- 28 8月, 2014 1 次提交
-
-
由 ccheung 提交于
8056175: Change "8048150: Allow easy configurations for large CDS archives" triggers conversion warning with older GCC Summary: cast the result of the conversion to uintx Reviewed-by: ccheung, coleenp Contributed-by: volker.simonis@gmail.com
-
- 26 8月, 2014 3 次提交
- 25 8月, 2014 2 次提交
-
-
由 ccheung 提交于
Summary: Estimate the size of shared archive based on the number of classes in the classlist file Reviewed-by: iklam, jiangli, minqi, dholmes
-
由 thartmann 提交于
Summary: Because anonymous classes are not in the system dictionary, we have to set 'unloading_occurred' based on 'CLDG::do_unloading()'. Added jtreg test. Reviewed-by: kvn, coleenp
-
- 22 8月, 2014 1 次提交
-
-
由 iklam 提交于
Summary: Cleaned up CDS to be more configurable, maintainable and extensible Reviewed-by: dholmes, coleenp, acorn, mchung
-
- 21 8月, 2014 1 次提交
-
-
由 tschatzl 提交于
Summary: Extend the WhiteBox API to provide information about the size and age of objects. Further add a mechanism to trigger a young GC. Reviewed-by: tschatzl, sjohanss Contributed-by: NLeonid Mesnik <leonid.mesnik@oracle.com>
-
- 27 8月, 2014 1 次提交
-
-
由 zgu 提交于
Summary: Enhance scalability of native memory tracking Reviewed-by: coleenp, ctornqvi, gtriantafill
-
- 07 8月, 2014 1 次提交
-
-
由 morris 提交于
Summary: Fixed parfait initialization issue. Reviewed-by: kvn, twisti
-
- 05 8月, 2014 2 次提交
- 08 8月, 2014 1 次提交
-
-
由 morris 提交于
Summary: Fixed parfait initialization issue. Reviewed-by: kvn, twisti
-
- 03 8月, 2014 1 次提交
-
-
由 hseigel 提交于
Summary: Fix stackmap matching for branches. Reviewed-by: coleenp, lfoltan, acorn
-