- 15 5月, 2014 1 次提交
-
-
由 lfoltan 提交于
Summary: Allow a BootstrapMethods attribute that contains an empty bootstrap_methods table where num_bootstrap_methods is equal to zero. Reviewed-by: coleenp, hseigel
-
- 13 5月, 2014 1 次提交
-
-
由 dholmes 提交于
Reviewed-by: lfoltan, zgu
-
- 05 5月, 2014 1 次提交
-
-
由 anoll 提交于
Summary: Fixes a bug introduced by 8029302 Reviewed-by: kvn
-
- 02 5月, 2014 1 次提交
-
-
由 goetz 提交于
Reviewed-by: kvn
-
- 08 5月, 2014 1 次提交
-
-
由 mgronlun 提交于
Reviewed-by: coleenp, ehelin
-
- 28 4月, 2014 1 次提交
-
-
由 anoll 提交于
8040085: dtrace/jsdt tests crash on solaris. found an unadvertised bad scavengable oop in the code cache Summary: Add CodeCache::add_scavenge_root_nmethod(this) to the dtrace-constructor of nmethod Reviewed-by: roland, iveresov
-
- 03 5月, 2014 1 次提交
-
-
由 kvn 提交于
8039298: assert(base == NULL || t_adr->isa_rawptr() || !phase->type(base)->higher_equal(TypePtr::NULL_PTR)) Summary: Convert the assert into the runtime check to skip IGVN optimizations for problematic memory nodes. Eliminate dead nodes more aggressively. Reviewed-by: twisti, iveresov
-
- 30 4月, 2014 2 次提交
- 01 5月, 2014 1 次提交
-
-
由 kvn 提交于
Summary: Fix the arbitrary alignment issue in SPARC AES crypto stub routines. Reviewed-by: kvn, iveresov Contributed-by: shrinivas.joshi@oracle.com
-
- 25 4月, 2014 3 次提交
- 18 4月, 2014 1 次提交
-
-
由 roland 提交于
Summary: profiling code in interpreter broken when argument profiling is off. Reviewed-by: iveresov, kvn
-
- 14 4月, 2014 1 次提交
-
-
由 anoll 提交于
8029436: CICompilerCount is not updated when the number of compiler threads is adjusted to the number of CPUs Summary: CICompilerCount is updated in AdvancedThresholdPolicy::initialize, SimpleThresholdPolicy::initialize and NonTieredCompPolicy::initialize. A warning is printed if the usersets both, CICompilerCount and CICompilerCountPerCPU. Reviewed-by: kvn, twisti Contributed-by: NTobias Hartmann <tobias.hartmann@oracle.com>
-
- 03 4月, 2014 1 次提交
-
-
由 goetz 提交于
Reviewed-by: coleenp, kvn
-
- 10 4月, 2014 2 次提交
-
-
由 kvn 提交于
Summary: Switch UseRTMXendForLockBusy flag ON by default and change code to retry RTM locking on lock busy condition by default. Reviewed-by: roland
-
由 goetz 提交于
Summary: Remove the misleading malloc macro and cleanup the code Reviewed-by: dsamersoff, kvn Contributed-by: goetz.lindenmaier@sap.com
-
- 29 3月, 2014 3 次提交
- 27 3月, 2014 1 次提交
-
-
由 iignatyev 提交于
Reviewed-by: morris, kvn
-
- 21 3月, 2014 1 次提交
-
-
由 mgronlun 提交于
Reviewed-by: dholmes, sla
-
- 17 3月, 2014 1 次提交
-
-
由 brutisso 提交于
Reviewed-by: tschatzl, pliden
-
- 15 3月, 2014 1 次提交
-
-
由 kvn 提交于
Summary: verify YMM registers after signal processing and set limit on vector's size. Reviewed-by: iveresov, twisti
-
- 14 3月, 2014 1 次提交
-
-
由 brutisso 提交于
Reviewed-by: tschatzl, pliden
-
- 06 3月, 2014 2 次提交
- 05 3月, 2014 1 次提交
-
-
由 roland 提交于
8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90 Summary: concurrent update of traps with construction of ciMethodData Reviewed-by: kvn, twisti
-
- 15 3月, 2014 1 次提交
-
-
由 roland 提交于
Summary: favor profile data coming from outer most method Reviewed-by: kvn, twisti
-
- 13 3月, 2014 1 次提交
-
-
由 iveresov 提交于
Summary: Add support for BMI1 instructions Reviewed-by: kvn, roland
-
- 04 3月, 2014 1 次提交
-
-
由 vlivanov 提交于
Reviewed-by: kvn, jrose
-
- 28 2月, 2014 1 次提交
-
-
由 poonam 提交于
Summary: added missing check for loop padding case. Reviewed-by: kvn, jrose
-
- 27 2月, 2014 1 次提交
-
-
由 roland 提交于
Summary: biased locking's revoke_bias locks monitor in compiled frame with eliminated lock Reviewed-by: kvn, iveresov
-
- 03 4月, 2014 1 次提交
-
-
由 vkempik 提交于
Reviewed-by: tschatzl, jwilhelm
-
- 09 4月, 2014 1 次提交
-
-
由 neugens 提交于
Reviewed-by: twisti, kvn
-
- 03 4月, 2014 1 次提交
-
-
由 jwilhelm 提交于
Summary: Replaced the verification call to a conditional one that only runs verification in debug builds. Reviewed-by: brutisso, tschatzl
-
- 06 4月, 2014 1 次提交
-
-
由 dbuck 提交于
Reviewed-by: coleenp, dsamersoff Contributed-by: masato.yoshida@oracle.com
-
- 03 4月, 2014 1 次提交
-
-
由 kevinw 提交于
8033696: "assert(thread != NULL) failed: just checking" due to Thread::current() and JNI pthread interaction Reviewed-by: dholmes, dsamersoff Contributed-by: andreas.eriksson@oracle.com
-
- 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
-