- 14 10月, 2014 1 次提交
-
-
由 iklam 提交于
Summary: Implemented the interface in sun.misc.URLClassPath and corresponding JVM_XXX APIs Reviewed-by: mchung, acorn, jiangli, dholmes
-
- 03 10月, 2014 1 次提交
-
-
由 fzhinkin 提交于
Summary: fixed order of DeoptReason values declaration so now it matches the order used in jdk9 and the names order in Deoptimization::_trap_reason_name. Reviewed-by: kvn
-
- 02 10月, 2014 1 次提交
-
-
由 goetz 提交于
Reviewed-by: kvn
-
- 30 9月, 2014 1 次提交
-
-
由 tschatzl 提交于
8052172: Evacuation failure handling in G1 does not evacuate all objects if -XX:-G1DeferredRSUpdate is set Summary: Remove -XX:-G1DeferredRSUpdate functionality as it is racy. During evacuation failure handling, threads where evacuation failure handling occurred may try to add remembered sets to regions which remembered sets are currently being scanned. The iterator to handle the remembered set scan does not support addition of entries during scan and so may skip valid references. Reviewed-by: iveresov, brutisso, mgerdin
-
- 27 9月, 2014 2 次提交
-
-
由 jwilhelm 提交于
Summary: Ergonomics updates flags for number of GC threads Reviewed-by: tschatzl, jwilhelm Contributed-by: sangheon.kim@oracle.com
-
由 iveresov 提交于
8058536: java/lang/instrument/NativeMethodPrefixAgent.java fails due to VirtualMachineError: out of space in CodeCache for method handle intrinsic Summary: Make sure MH intrinsics can be created before compiler instances Reviewed-by: kvn
-
- 29 9月, 2014 1 次提交
-
-
由 mgronlun 提交于
Reviewed-by: coleenp, minqi
-
- 27 9月, 2014 1 次提交
-
-
由 coleenp 提交于
Summary: ClassLoader for array klass set to null and not the class loader of the component type. Reviewed-by: dcubed, ctornqvi
-
- 25 9月, 2014 1 次提交
-
-
由 coleenp 提交于
8058818: Allocation of more then 1G of memory using Unsafe.allocateMemory is still causing a fatal error on 32bit platforms Summary: The assert was firing for NMT_Off and minimal too even though the size isn't used. Reviewed-by: gtriantafill, dholmes
-
- 19 9月, 2014 1 次提交
-
-
由 morris 提交于
Summary: Provide promoted stack slots for floating-point registers in the SPARC c_calling_convention. Reviewed-by: kvn, jrose, drchase
-
- 16 9月, 2014 1 次提交
-
-
由 brutisso 提交于
Reviewed-by: brutisso, tschatzl
-
- 06 10月, 2014 1 次提交
-
-
由 sjohanss 提交于
Summary: Enable yc to be forced for stat update. Reviewed-by: mgerdin, jcoomes
-
- 10 9月, 2014 1 次提交
-
-
由 tonyp 提交于
Reviewed-by: tschatzl, stefank
-
- 08 9月, 2014 1 次提交
-
-
由 mgerdin 提交于
Reviewed-by: brutisso, jwilhelm
-
- 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>
-
- 29 8月, 2014 2 次提交
- 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
-
- 05 9月, 2014 2 次提交
- 27 8月, 2014 1 次提交
-
-
由 zgu 提交于
Summary: Removed MemTracker::shutdown() call to avoid deadlock Reviewed-by: minqi, ctornqvi
-
- 23 8月, 2014 1 次提交
-
-
由 hseigel 提交于
Summary: Remove check that causes the VerifyError Reviewed-by: dholmes, coleenp, acorn
-
- 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
-
- 13 8月, 2014 2 次提交
- 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
-