- 12 4月, 2013 1 次提交
-
-
由 vlivanov 提交于
Reviewed-by: kvn, kmo, shade
-
- 11 4月, 2013 1 次提交
-
-
由 kmo 提交于
Summary: add missing ResourceMark under TraceMethodHandles in LinkResolver Reviewed-by: dholmes
-
- 10 4月, 2013 4 次提交
-
-
由 stefank 提交于
Reviewed-by: brutisso, jmasa
-
由 mgerdin 提交于
Summary: Refactor the CLD dependency list into a separate class. Use an ObjectLocker to synchronize additions to the CLD dependency list. Reviewed-by: stefank, coleenp
-
由 roland 提交于
Summary: loop invariant code motion may move load before store to the same field Reviewed-by: kvn
-
由 iignatyev 提交于
Reviewed-by: kvn, vlivanov
-
- 09 4月, 2013 1 次提交
-
-
由 bharadwaj 提交于
8011671: JCK tests on static interface methods fail under b84: Illegal type at constant pool entry 5 Summary: Restore incorrect removal of support for static interface method verification in Java 8 Reviewed-by: kvn, coleenp
-
- 08 4月, 2013 1 次提交
-
-
由 brutisso 提交于
Summary: Allow task queues to be mmapped instead of malloced on Solaris Reviewed-by: coleenp, jmasa, johnc, tschatzl
-
- 06 4月, 2013 1 次提交
-
-
由 zgu 提交于
Summary: Fix memory leaks when NMT fails to initialize snapshot and worker thread Reviewed-by: dcubed, ccheung, rdurbin
-
- 05 4月, 2013 2 次提交
- 04 4月, 2013 3 次提交
-
-
由 neliasso 提交于
Reviewed-by: kvn, roland Contributed-by: niclas.adlertz@oracle.com
-
由 neliasso 提交于
Reviewed-by: roland, kvn Contributed-by: niclas.adlertz@oracle.com
-
由 rasbold 提交于
Summary: Fix shorten_branches() to accurately count an initial nop that may be inserted in a block that starts with a safepoint. Reviewed-by: kvn
-
- 02 4月, 2013 3 次提交
-
-
由 mgerdin 提交于
Summary: Add convenience method in StringTable, add WhiteBox method and simple sanity test Reviewed-by: mgerdin, zgu Contributed-by: leonid.mesnik@oracle.com
-
由 tschatzl 提交于
Summary: Use GC_locker::is_active_and_needs_gc() instead of GC_locker::is_active() for providing information about the reason of heap expansion. Reviewed-by: jmasa, johnc
-
由 iklam 提交于
Summary: Pass utf_length parameter to UTF8::as_quoted_ascii() Reviewed-by: dcubed, minqi
-
- 30 3月, 2013 2 次提交
- 04 4月, 2013 2 次提交
- 30 3月, 2013 1 次提交
-
-
由 roland 提交于
8010934: assert failure in c1_LinearScan.cpp: "asumption: non-Constant instructions have only virtual operands" Summary: incorrect code to skip some ArrayLength instructions in LIRGenerator Reviewed-by: kvn
-
- 01 4月, 2013 1 次提交
-
-
由 coleenp 提交于
Summary: Avoid holding SystemDictionary_lock while calling Klass::remove_unshareable_info Reviewed-by: coleenp, acorn Contributed-by: ioi.lam@oracle.com
-
- 28 3月, 2013 3 次提交
-
-
由 minqi 提交于
Summary: Supply a new flag -XX:+AssumeMP to workaround the problem. With the flag is turned on, assume VM run on MP platform so is_MP() will return true that sync calls will not skip away. Reviewed-by: dholmes, acorn, dcubed, jmasa Contributed-by: yumin.qi@oracle.com
-
由 zgu 提交于
8010474: [parfait] Undefined return value of the functions in hotspot/src/share/vm/services/memTracker.hpp Summary: Fixed functions that miss return values Reviewed-by: coleenp, acorn, kvn
-
由 acorn 提交于
Summary: Fix text, overwritten type and holder for resolved method Reviewed-by: coleenp, dcubed, minqi, dholmes
-
- 27 3月, 2013 4 次提交
-
-
由 coleenp 提交于
Summary: Neglected to copy the annotations in clone_with_new_data when they were moved to ConstMethod. Reviewed-by: acorn, sspitsyn, dcubed
-
由 ehelin 提交于
Reviewed-by: mgerdin, stefank
-
由 kvn 提交于
Summary: always transform AddP nodes in IdealKit by calling _gvn.transform(). Reviewed-by: roland, twisti
-
由 zgu 提交于
Summary: Remove old kernel build targets and VS C++ projects created by create.bat on Windows Reviewed-by: coleenp, sla
-
- 26 3月, 2013 5 次提交
-
-
由 rbackman 提交于
Reviewed-by: dcubed, rbackman Contributed-by: NJoel Borggren-Franck <joel.franck@oracle.com>
-
由 hseigel 提交于
Summary: Put UseSplitVerifier option on the deprecated list. Reviewed-by: dcubed, kmo, acorn
-
由 neliasso 提交于
Reviewed-by: kvn, roland Contributed-by: niclas.adlertz@oracle.com
-
由 twisti 提交于
Reviewed-by: kvn, jrose
-
由 bharadwaj 提交于
Summary: Remove support for verification of class files with version 52 and above from type inference verifier. Reviewed-by: acorn, hseigel
-
- 25 3月, 2013 1 次提交
-
-
由 hseigel 提交于
8010667: Non-zero padding is not allowed in splitverifier for tableswitch/lookupswitch instructions. Summary: Don't check the padding bits if class file version is >= 51. Reviewed-by: kvn, dholmes, coleenp
-
- 23 3月, 2013 1 次提交
-
-
由 morris 提交于
Summary: add guarantee() to nmethod constructor and checks to ensure CodeCache has space before allocation Reviewed-by: kvn
-
- 30 3月, 2013 1 次提交
-
-
由 johnc 提交于
Summary: Some parts of the G1 heap can only be walked during a safepoint. Skip verifying these parts of the heap when verifying during JVM startup. Reviewed-by: brutisso, tschatzl
-
- 28 3月, 2013 2 次提交
-
-
由 tschatzl 提交于
Summary: Ergonomics now also takes available virtual memory into account when deciding for a heap size. The helper method to determine the maximum allocatable memory block now uses the appropriate OS specific calls to retrieve available virtual memory for the java process. In 32 bit environments this method now also searches for the maximum actually reservable amount of memory. Merge previously separate implementations for Linux/BSD/Solaris into a single method. Reviewed-by: jmasa, tamao
-
由 mgerdin 提交于
Summary: Keep a counter of how many times we were stalled by the GC locker, add a diagnostic flag which sets the limit. Reviewed-by: brutisso, ehelin, johnc
-