- 27 2月, 2014 1 次提交
-
-
由 minqi 提交于
Summary: There is race condition between os::interrupt and os::is_interrupted on Windows. In JVM_Sleep(Thread.sleep), check if thread gets interrupted, it may see interrupted but not really interrupted so cause spurious waking up (early return from sleep). Fix by checking if interrupt event really gets set thus prevent false return. For intrinsic of _isInterrupted, on Windows, go fastpath only on bit not set. Reviewed-by: acorn, kvn Contributed-by: david.holmes@oracle.com, yumin.qi@oracle.com
-
- 11 3月, 2014 1 次提交
-
-
由 iveresov 提交于
8025644: java/util/stream/test/org/openjdk/tests/java/util/stream/ToArrayOpTest.java fails with TestData$OfRef): failure java.lang.AssertionError: expected [true] but found [false] Summary: In GraphKit::gen_checkcast() provide only exact superklass to GraphKit::maybe_cast_profiled_receiver() Reviewed-by: kvn, roland
-
- 11 2月, 2014 1 次提交
-
-
由 minqi 提交于
Summary: AltHashing used jint the way of juint in bit shifting which could lead loss of precision. Fix by change _seed defined as juint. Reviewed-by: coleenp, ccheung Contributed-by: yumin.qi@oracle.com
-
- 24 1月, 2014 1 次提交
-
-
由 dsimms 提交于
Summary: Use spin lock to manage ParkEvent and PlatformEvent free lists. Reviewed-by: dholmes, fparain, dcubed, acorn
-
- 15 2月, 2014 1 次提交
-
-
由 ccheung 提交于
Summary: use the HAS_PENDING_EXCEPTION and CLEAR_PENDING_EXCEPTION macros Reviewed-by: dholmes, coleenp, dcubed
-
- 13 2月, 2014 1 次提交
-
-
由 ccheung 提交于
Summary: added JNI exception pending check in several files under src/share/vm/prims directory Reviewed-by: coleenp, minqi
-
- 28 2月, 2014 1 次提交
-
-
由 poonam 提交于
Summary: added missing check for loop padding case. Reviewed-by: kvn, jrose
-
- 26 2月, 2014 1 次提交
-
-
由 sla 提交于
Reviewed-by: dcubed, mgronlun
-
- 16 2月, 2014 1 次提交
-
-
由 coleenp 提交于
Summary: Remove search in system dictionary and hacks, replace with verifying in CLD::_klasses list. Reviewed-by: dcubed, acorn
-
- 11 2月, 2014 1 次提交
-
-
由 goetz 提交于
Reviewed-by: mgerdin, jmasa Contributed-by: matthias.baesken@sap.com
-
- 27 2月, 2014 2 次提交
- 26 2月, 2014 4 次提交
-
-
由 tschatzl 提交于
Summary: Revert JDK-6976350 because it does not improve PLAB fragmentation. To the contrary, it tends to increase the amount of wasted space with many threads. Reviewed-by: brutisso
-
由 tschatzl 提交于
Summary: Move G1ParCopyClosure::copy_to_survivor_space to decrease code size. Reviewed-by: stefank, jmasa
-
由 tschatzl 提交于
Summary: Remove the assumption that G1CollectedHeap::in_cset_fast_test needs to check for NULL references. Most of the time this is not required, making the code doing this check multiple times. Reviewed-by: stefank, mgerdin, jmasa
-
由 tschatzl 提交于
Summary: Move methods that are not dependent on any of G1ParCopyClosure's template parameters into G1ParCopyHelper. Further remove unused methods and members of the class hierarchy. Reviewed-by: mgerdin, stefank
-
- 05 2月, 2014 1 次提交
-
-
由 tschatzl 提交于
Summary: When string and symbol table unlink are not performed in parallel, the claim index we check is not updated, and so a guarantee fails. Take this into account when checking the guarantee. Reviewed-by: brutisso, jwilhelm
-
- 31 1月, 2014 2 次提交
-
-
由 tschatzl 提交于
8033106: Wrong predicate for checking whether the correct amount of symbol table entries have been processed in G1 Summary: The change fixes the predicate check. Reviewed-by: jmasa, tonyp, stefank
-
由 tschatzl 提交于
Summary: Clean up and slightly optimize reference handling from the GC reference task queue. Since we never push partial array chunks as narrowOop* we can manually specialize the code so that some code can be optimized away. Reviewed-by: tonyp, brutisso, stefank
-
- 30 1月, 2014 1 次提交
-
-
由 jwilhelm 提交于
Summary: Made the flags Min- and MaxHeapFreeRatio manageable, and implemented support for these flags in ParallelGC. Reviewed-by: sla, mgerdin, brutisso
-
- 28 1月, 2014 1 次提交
-
-
由 kvn 提交于
Summary: Switch off EliminateAutoBox flag by default in jdk8 release. Reviewed-by: iveresov
-
- 24 1月, 2014 4 次提交
-
-
由 hseigel 提交于
8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass. Summary: Check if method is static before throwing exception. Reviewed-by: kamg, coleenp, lfoltan, fparain
-
由 shade 提交于
Summary: Move the option to obsolete options list, purge the redundant compiler code. Reviewed-by: kvn, jrose
-
由 roland 提交于
Summary: type methods shouldn't always operate on speculative part Reviewed-by: kvn, twisti
-
由 sspitsyn 提交于
8030027: nsk/jvmti/scenarios/hotswap/HS101/hs101t006 Crashed the vm on Linux-amd64: SIGSEGV in JavaThread::last_java_vframe(RegisterMap*)+0xfa Summary: Add a safe guard to VMOp_GetCurrentLocation against non-walkable stack of target thread exiting from Java execution Reviewed-by: mgronlun, dholmes, sla, dcubed Contributed-by: serguei.spitsyn@oracle.com
-
- 23 1月, 2014 1 次提交
-
-
由 sla 提交于
Reviewed-by: coleenp, ehelin, egahlin, mgronlun
-
- 20 1月, 2014 3 次提交
-
-
由 tschatzl 提交于
Summary: Remove the above mentioned template parameter and related unused code. Also remove some classes that are never used. Reviewed-by: stefank, mgerdin, jwilhelm
-
由 tschatzl 提交于
8027454: Do not traverse string table during G1 remark when treating them as strong roots during initial mark Summary: Do not try to unlink string table entries unconditionally during remark. This is without side effects as the preceding initial mark always uses the string table as strong roots. Needs to be fixed with class unloading during concurrent mark. Reviewed-by: brutisso, mgerdin
-
由 tschatzl 提交于
8027455: Improve symbol table scan times during gc pauses Summary: Parallelize string table and symbol table scan during remark and full GC. Some additional statistics output if the experimental flag G1TraceStringSymbolTableScrubbing is set. Reviewed-by: mgerdin, coleenp, brutisso
-
- 23 1月, 2014 1 次提交
-
-
由 vlivanov 提交于
Reviewed-by: jrose, acorn, hseigel, lfoltan
-
- 17 1月, 2014 1 次提交
-
-
由 hseigel 提交于
Summary: Move access check above the check for non-static method Reviewed-by: lfoltan, coleenp
-
- 21 1月, 2014 1 次提交
-
-
由 hseigel 提交于
Summary: Return immediately if _prologue == NULL, instead of asserting Reviewed-by: ccheung, coleenp
-
- 15 1月, 2014 1 次提交
-
-
由 kvn 提交于
Summary: Add intrinsics/stub routines support for single-block and multi-block (as used by Cipher Block Chaining mode) AES encryption and decryption operations on the SPARC platform. Reviewed-by: kvn, roland Contributed-by: shrinivas.joshi@oracle.com
-
- 07 2月, 2014 1 次提交
-
-
由 sspitsyn 提交于
Summary: Generate correct "vtable stub" dynamic code notifications Reviewed-by: sspitsyn, kvn, coleenp Contributed-by: oleg.mazurov@oracle.com
-
- 17 1月, 2014 1 次提交
-
-
由 ccheung 提交于
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message Summary: clarifying the error messages associated with vm options of type diagnostic, experimental, develop, and notproduct Reviewed-by: kvn, twisti, ctornqvi
-
- 06 2月, 2014 1 次提交
-
-
由 ccheung 提交于
Summary: removing a check in LinkResolver::resolve_method() to conform with a change in JVMS-8 5.4.3.3. Method Resolution Reviewed-by: coleenp, lfoltan
-
- 08 2月, 2014 1 次提交
-
-
由 coleenp 提交于
Summary: Restoring bytecodes for invokedynamic had wrong index calculation added testing stress option. Reviewed-by: twisti, hseigel
-
- 14 1月, 2014 3 次提交
-
-
由 roland 提交于
Summary: c1 and interpreter support for new type profiling on sparc Reviewed-by: kvn, twisti
-
由 roland 提交于
8030662: "assert(counter_changed) failed: failed dependencies, but counter didn't change" still fails Summary: Erroneously removed call to SystemDictionary::notice_modification() from jvmti with fix for 8029383 Reviewed-by: iveresov, twisti, kvn
-
由 roland 提交于
Summary: Fix the assert check for narrow klass pointer. Reviewed-by: twisti, kvn
-