- 27 1月, 2010 2 次提交
-
-
由 ysr 提交于
Summary: G1 now answers "no" to the query can_elide_initializing_store_barrier() in the product build. A debug flag allows alternate behaviour in debug builds. Reviewed-by: iveresov, tonyp
-
由 kvn 提交于
Summary: Add safepoint after CompileTheWorldSafepointInterval (100) compilations and do full sweep of CodeCache each time. Reviewed-by: never Contributed-by: eric.caspole@amd.com
-
- 26 1月, 2010 1 次提交
-
-
由 tonyp 提交于
Summary: Trying this again, as the original change was lost. Reviewed-by: ysr, jmasa
-
- 22 1月, 2010 2 次提交
-
-
由 apetrusenko 提交于
Summary: Stub code generated to call G1 barriers does not allocate spill space on the stack as required by Windows x64 ABI. The fix is to use more ABI-friendly call_VM_leaf(). Reviewed-by: iveresov, never, kvn
-
由 jmasa 提交于
Summary: Adjust assertion checking for ExplicitGCInvokesConcurrentAndUnloadsClasses as a reason for class unloading Reviewed-by: ysr
-
- 21 1月, 2010 1 次提交
-
-
由 never 提交于
Reviewed-by: kvn, jrose
-
- 18 1月, 2010 1 次提交
-
-
由 twisti 提交于
Summary: Recent changes call os::is_allocatable which was not implemented in Zero. Reviewed-by: twisti Contributed-by: NEdward Nevill <ed@camswl.com>
-
- 16 1月, 2010 2 次提交
- 14 1月, 2010 5 次提交
-
-
由 jrose 提交于
Reviewed-by: twisti, kvn
-
由 johnc 提交于
Summary: When enqueuing a completed PtrQueue buffer, cache a local pointer to the buffer and clear the field in the PtrQueue prior to unlocking the mutex referenced by the _lock field and pass the cached local value to the enqueuing routine. This will prevent the same completed buffer being enqueued multiple times, which causes the hang. Reviewed-by: ysr
-
由 ysr 提交于
Summary: Deferred card marks are now flushed during the gc prologue. Parallel[Scavege,OldGC] and SerialGC no longer defer card marks generated by COMPILER2 as a result of ReduceInitialCardMarks. For these cases, introduced a diagnostic option to defer the card marks, only for the purposes of testing and diagnostics. CMS and G1 continue to defer card marks. Potential performance concern related to single-threaded flushing of deferred card marks in the gc prologue will be addressed in the future. Reviewed-by: never, johnc
-
由 tonyp 提交于
Summary: What the title says. Reviewed-by: ysr, jmasa
-
由 dcubed 提交于
6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining Summary: Add support for additional implementation specific info to the JVM/TI CompiledMethodLoad event via the compile_info parameter. Reviewed-by: never, ohair, tbell, tdeneau Contributed-by: NVasanth Venkatachalam <vasanth.venkatachalam@amd.com>
-
- 13 1月, 2010 2 次提交
-
-
由 johnc 提交于
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint()) Summary: Remove invalid assert and mangle filler objects in TLABs that are being retired. Reviewed-by: ysr, jmasa
-
由 cfang 提交于
Summary: Loop predication implementation Reviewed-by: never, kvn
-
- 09 1月, 2010 5 次提交
-
-
由 never 提交于
Reviewed-by: kvn, jrose
-
由 jrose 提交于
Summary: Put all inline-related switches into product mode, to allow tuning by dynamic language implementors. Reviewed-by: twisti, kvn
-
由 jrose 提交于
Summary: More informative disassembly in product mode. Also, a more consistent CompileCommand syntax. Reviewed-by: never
-
由 kvn 提交于
Summary: Remove AND operation only if mask is equal to shift. Reviewed-by: never
-
由 kvn 提交于
Summary: Check RootNode before check Loop in IfNode::up_one_dom(). Reviewed-by: never Contributed-by: kevin.brown@sun.com
-
- 08 1月, 2010 4 次提交
-
-
由 twisti 提交于
Summary: Put generated MH adapter in InvokeDynamic/MethodHandle classes to be able to indentify them easily in the compiler. Reviewed-by: kvn, never, jrose
-
由 kvn 提交于
Summary: Add missing check that value is used in memory expression in instructions with embedded load. Reviewed-by: never, jrose
-
由 kvn 提交于
Summary: Change the flag -XX:+PrintFlagsFinal to product and add new product flag -XX:+PrintFlagsInitial. Reviewed-by: phh, ysr Contributed-by: gbenson@redhat.com
-
由 jmasa 提交于
Summary: Block too small to split was not correctly putback to free lists. Reviewed-by: ysr
-
- 07 1月, 2010 1 次提交
-
-
由 never 提交于
Reviewed-by: kvn, twisti
-
- 06 1月, 2010 2 次提交
-
-
由 never 提交于
Reviewed-by: kvn, twisti
-
由 never 提交于
Reviewed-by: never Contributed-by: NGary Benson <gbenson@redhat.com>
-
- 05 1月, 2010 5 次提交
-
-
由 twisti 提交于
Summary: C2 needs some additional optimizations to be able to handle MethodHandle invokes and invokedynamic instructions at the best performance. Reviewed-by: kvn, never
-
由 twisti 提交于
Summary: C2 implementation for invokedynamic support. Reviewed-by: kvn, never
-
由 kvn 提交于
Summary: EA incorrectly identifies escape state of an allocation passed as call argument. Reviewed-by: never
-
由 ysr 提交于
6637203: Classunloading messages go to stdout rather than Xloggc file, causing hangs when stdout is closed Summary: Decoupled TraceClassUnloading from verbose:gc, JVMTI_VERBOSE_GC and PrintGC[Details], making it settable in a manner identical to TraceClassLoading. Reverted an inadvertent change of TraceClassUnloading output in a previous changeset from gclog back to tty. Reviewed-by: coleenp, dholmes, jmasa, poonam
-
由 twisti 提交于
Summary: During the work for 6829187 we have fixed a number of basic bugs which are logically grouped with 6815692 and 6858164 but which must be reviewed and pushed separately. Reviewed-by: kvn, never
-
- 04 1月, 2010 3 次提交
-
-
由 twisti 提交于
Summary: We need a way to walk chained method handles in the JVM to call the right methods and to generate required bytecode adapters for the compilers. Reviewed-by: kvn
-
由 twisti 提交于
Summary: Zero currently won't build on zSeries or PowerPC machines with assertions turned on. Reviewed-by: twisti Contributed-by: NGary Benson <gbenson@redhat.com>
-
由 twisti 提交于
Summary: Smaller fixes to ensure that Zero still works with non-standard options. Reviewed-by: twisti Contributed-by: NGary Benson <gbenson@redhat.com>
-
- 24 12月, 2009 1 次提交
-
-
由 ysr 提交于
Summary: Autonomic per-worker free block cache sizing, tunable coalition policies, fixes to per-size block statistics, retuned gain and bandwidth of some feedback loop filters to allow quicker reactivity to abrupt changes in ambient demand, and other heuristics to reduce fragmentation of the CMS old gen. Also tightened some assertions, including those related to locking. Reviewed-by: jmasa
-
- 17 12月, 2009 3 次提交
-
-
由 never 提交于
Reviewed-by: kvn
-
由 iveresov 提交于
Summary: Reworked the concurrent refinement: threads activation, feedback-based threshold adjustment, other miscellaneous fixes. Reviewed-by: apetrusenko, tonyp
-
由 xlu 提交于
6895168: JCK api/signaturetest/sigtest.basic.html#basic test fails for jdk 5.0 with HS 16 in nightly build Reviewed-by: dholmes, acorn, jrose
-