- 10 6月, 2013 1 次提交
-
-
由 sla 提交于
Reviewed-by: acorn, coleenp, sla Contributed-by: NKaren Kinnear <karen.kinnear@oracle.com>, Bengt Rutisson <bengt.rutisson@oracle.com>, Calvin Cheung <calvin.cheung@oracle.com>, Erik Gahlin <erik.gahlin@oracle.com>, Erik Helin <erik.helin@oracle.com>, Jesper Wilhelmsson <jesper.wilhelmsson@oracle.com>, Keith McGuigan <keith.mcguigan@oracle.com>, Mattias Tobiasson <mattias.tobiasson@oracle.com>, Markus Gronlund <markus.gronlund@oracle.com>, Mikael Auno <mikael.auno@oracle.com>, Nils Eliasson <nils.eliasson@oracle.com>, Nils Loodin <nils.loodin@oracle.com>, Rickard Backman <rickard.backman@oracle.com>, Staffan Larsen <staffan.larsen@oracle.com>, Stefan Karlsson <stefan.karlsson@oracle.com>, Yekaterina Kantserova <yekaterina.kantserova@oracle.com>
-
- 03 6月, 2013 1 次提交
-
-
由 hseigel 提交于
Summary: Check bytecode versions along with RelaxAccessControlCheck version Reviewed-by: dholmes, acorn
-
- 31 5月, 2013 1 次提交
-
-
由 sspitsyn 提交于
Summary: The InstanceKlass _initial_method_idnum value must be adjusted if overpass methods are added. Reviewed-by: twisti, kvn Contributed-by: serguei.spitsyn@oracle.com
-
- 28 5月, 2013 1 次提交
-
-
由 shade 提交于
Summary: field count handling fixed, has_nonstatic_fields invariant fixed, oop map overrun fixed; new asserts Reviewed-by: kvn, dcubed, coleenp
-
- 27 5月, 2013 2 次提交
-
-
由 stefank 提交于
Summary: Combine the calls to StringTable::unlink and StringTable::oops_do in Parallel Scavenge. Reviewed-by: pliden, coleenp
-
由 stefank 提交于
Summary: The string in StringTable is not used by CDS anymore. Remove the unnecessary code in preparation for 8015422: Large performance hit when the StringTable is walked twice in Parallel Scavenge Reviewed-by: pliden, tschatzl, coleenp
-
- 23 5月, 2013 1 次提交
-
-
由 coleenp 提交于
Summary: Inject protection_domain, signers, init_lock into java_lang_Class Reviewed-by: stefank, dholmes, sla
-
- 22 5月, 2013 1 次提交
-
-
由 bharadwaj 提交于
Summary: Restrict reference of interface methods by invokestatic and invokespecial to classfile version 52 or later. Reviewed-by: kvn, hseigel
-
- 21 5月, 2013 1 次提交
-
-
由 shade 提交于
Summary: rename/remove local variables, re-arrange instance_size calculation, more comments. Reviewed-by: kvn, coleenp
-
- 19 5月, 2013 1 次提交
-
-
由 iklam 提交于
Summary: Added info for the string/symbol objects and the hash entries Reviewed-by: coleenp, rbackman
-
- 17 5月, 2013 2 次提交
- 15 5月, 2013 1 次提交
-
-
由 minqi 提交于
Summary: The fix of 8010992, disable use of global operator new and new[] which caused failure on some tests. This takes two of the bugs also add ALLOW_OPERATOR_NEW_USAGE to prevent crash for third party code calling operator new of jvm on certain platforms. Reviewed-by: coleenp, dholmes, zgu Contributed-by: yumin.qi@oracle.com
-
- 14 5月, 2013 2 次提交
-
-
由 shade 提交于
Summary: Remove obsolete debugging code. Reviewed-by: dholmes, kvn Contributed-by: NAleksey Shipilev <aleksey.shipilev@oracle.com>
-
由 coleenp 提交于
Summary: Need to walk array class vtables replacing old methods too if j.l.o redefined Reviewed-by: sspitsyn, dcubed, ctornqvi
-
- 10 5月, 2013 1 次提交
-
-
由 minqi 提交于
Summary: With NPG, const KlassOop klass which is in fact a definition converted to Klass* const, which is not the original intention. The right usage is converting them to const Klass*. Reviewed-by: coleenp, kvn Contributed-by: yumin.qi@oracle.com
-
- 09 5月, 2013 1 次提交
-
-
由 kvn 提交于
Summary: Resurrected autobox elimination code and enabled part of it by default. Reviewed-by: roland, twisti
-
- 06 5月, 2013 1 次提交
-
-
由 hseigel 提交于
8013648: Guarantee(VerifyBeforeGC || VerifyDuringGC || VerifyBeforeExit || VerifyAfterGC) failed: too expensive Summary: Fix code to call correct version of function find_class(). Reviewed-by: coleenp, rdurbin, dcubed
-
- 03 5月, 2013 1 次提交
-
-
由 fparain 提交于
Reviewed-by: acorn, sla
-
- 02 5月, 2013 1 次提交
-
-
由 acorn 提交于
Reviewed-by: kvn, dcubed
-
- 30 4月, 2013 1 次提交
-
-
由 hseigel 提交于
Summary: Instead of terminating the VM, throw OutOfMemoryError exceptions. Reviewed-by: coleenp, dholmes
-
- 26 4月, 2013 2 次提交
- 25 4月, 2013 2 次提交
- 24 4月, 2013 2 次提交
-
-
由 hseigel 提交于
Summary: USe err_msg() to create a proper assertion message. Reviewed-by: twisti, coleenp, iklam
-
由 roland 提交于
Summary: Some #ifndef PRODUCT should be #ifdef ASSERT Reviewed-by: kvn, twisti Contributed-by: Ngdub <duboscq@ssw.jku.at>
-
- 22 4月, 2013 1 次提交
-
-
由 dcubed 提交于
Summary: anti-delta fix for 8010992 until 8012902 can be fixed Reviewed-by: acorn, minqi, rdurbin
-
- 20 4月, 2013 2 次提交
-
-
由 sspitsyn 提交于
Summary: Lazily create and maintain the MemberNameTable to be able to update MemberName's Reviewed-by: coleenp, jrose, dholmes Contributed-by: serguei.spitsyn@oracle.com
-
由 minqi 提交于
Summary: disable use of global operator new and new[] which could cause unexpected exception and escape from NMT tracking. Reviewed-by: coleenp, dholmes, zgu Contributed-by: yumin.qi@oracle.com
-
- 18 4月, 2013 1 次提交
-
-
由 bharadwaj 提交于
Summary: Lambda changes; spec 0.6.2 - Allow static invokestatic and invokespecial calls to InterfaceMethod_ref Reviewed-by: dholmes, acorn
-
- 12 4月, 2013 1 次提交
-
-
由 vlivanov 提交于
Reviewed-by: kvn, kmo, shade
-
- 13 4月, 2013 2 次提交
- 10 4月, 2013 1 次提交
-
-
由 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
-
- 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
-
- 02 4月, 2013 1 次提交
-
-
由 mgerdin 提交于
Summary: Add convenience method in StringTable, add WhiteBox method and simple sanity test Reviewed-by: mgerdin, zgu Contributed-by: leonid.mesnik@oracle.com
-
- 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 1 次提交
-
-
由 acorn 提交于
Summary: Fix text, overwritten type and holder for resolved method Reviewed-by: coleenp, dcubed, minqi, dholmes
-
- 26 3月, 2013 1 次提交
-
-
由 hseigel 提交于
Summary: Put UseSplitVerifier option on the deprecated list. Reviewed-by: dcubed, kmo, acorn
-