- 14 1月, 2014 1 次提交
-
-
由 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
-
- 13 12月, 2013 1 次提交
-
-
由 roland 提交于
Summary: no call to SystemDictionary::notice_modification() when class is defined through Unsafe.defineAnonymousClass() can caused missed dependency change. Reviewed-by: kvn, twisti
-
- 08 10月, 2013 1 次提交
-
-
由 acorn 提交于
Summary: New default methods list with inherited superinterface methods Reviewed-by: minqi, sspitsyn, coleenp
-
- 04 10月, 2013 1 次提交
-
-
由 coleenp 提交于
Summary: Redefined class in stack trace may not be found by method_idnum so handle null. Reviewed-by: sla, dcubed, sspitsyn
-
- 20 9月, 2013 1 次提交
-
-
由 coleenp 提交于
Summary: Need to refetch each method from InstanceKlass after all safepoints. Removed leaky PreviousVersionInfo code. Reviewed-by: dcubed, sspitsyn
-
- 14 9月, 2013 4 次提交
-
-
由 drchase 提交于
Summary: Enhance method resolution and resulting data structures, plus some refactoring. Reviewed-by: twisti, acorn, jrose
-
由 sspitsyn 提交于
8024346: ~CautiouslyPreserveExceptionMark - assert(!_thread->has_pending_exception()) failed: unexpected exception generated Summary: Pending exceptions must be handled properly after a call to the JVMTI merge_cp_and_rewrite Reviewed-by: coleenp, dholmes Contributed-by: serguei.spitsyn@oracle.com
-
由 sspitsyn 提交于
8024345: 'assert(_value != NULL) failed: resolving NULL _value' from VM_RedefineClasses::set_new_constant_pool Summary: The OOME's in the JVMTI merge_cp_and_rewrite and set_new_constant_pool must be handled correctly Reviewed-by: coleenp, dholmes Contributed-by: serguei.spitsyn@oracle.com
-
由 sspitsyn 提交于
8017230: Internal Error (jvmtiRedefineClasses.cpp:1662): guarantee(false) failed: insert_space_at() failed Summary: Handle pending exceptions instead of firing a guarantee() Reviewed-by: coleenp, dholmes Contributed-by: serguei.spitsyn@oracle.com
-
- 23 8月, 2013 1 次提交
-
-
由 jiangli 提交于
Summary: Need to check if the constant pool mapping returns 0. Reviewed-by: coleenp, sspitsyn
-
- 20 8月, 2013 1 次提交
-
-
由 jiangli 提交于
8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes. Summary: Change InstanceKlass::_source_file_name and _generic_signature to u2 fields. Reviewed-by: coleenp, iklam
-
- 13 8月, 2013 1 次提交
-
-
由 coleenp 提交于
Summary: ActiveMethodOopsCache was used to keep track of old versions of some methods that are cached in Universe but is buggy with permgen removal and not needed anymore Reviewed-by: sspitsyn, dcubed, mseledtsov
-
- 18 7月, 2013 1 次提交
-
-
由 jiangli 提交于
Summary: Use JvmtiCachedClassFileData. Reviewed-by: iklam, sspitsyn, dcubed
-
- 04 6月, 2013 1 次提交
-
-
由 sspitsyn 提交于
Summary: A call to the finalize_operands_merge() must be unconditional Reviewed-by: kvn, twisti Contributed-by: serguei.spitsyn@oracle.com
-
- 14 5月, 2013 1 次提交
-
-
由 coleenp 提交于
Summary: Need to walk array class vtables replacing old methods too if j.l.o redefined Reviewed-by: sspitsyn, dcubed, ctornqvi
-
- 07 5月, 2013 1 次提交
-
-
由 coleenp 提交于
Summary: Clear out class_file_bytes so they aren't deallocated twice Reviewed-by: dcubed, sspitsyn
-
- 25 4月, 2013 1 次提交
-
-
由 sspitsyn 提交于
Summary: References from operands to CP entries and back must be correct after CP merge Reviewed-by: coleenp, twisti Contributed-by: serguei.spitsyn@oracle.com
-
- 20 4月, 2013 1 次提交
-
-
由 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
-
- 20 2月, 2013 1 次提交
-
-
由 emc 提交于
Summary: Adds code to HotSpot to properly update MethodParameter attributes' constant pool indexes when redefineClasses is called Reviewed-by: coleenp, sspitsyn
-
- 12 2月, 2013 1 次提交
-
-
由 coleenp 提交于
Summary: allocate method annotations and attach to ConstMethod if present Reviewed-by: dcubed, jiangli, sspitsyn, iklam
-
- 07 2月, 2013 1 次提交
-
-
由 dcubed 提交于
Summary: Add/refine new tracing support using -XX:TraceRedefineClasses=16384. Reviewed-by: coleenp, acorn, sspitsyn
-
- 01 2月, 2013 2 次提交
-
-
由 sspitsyn 提交于
Summary: The invokedynamic bytecode ref to a CP entry needs to be checked and fixed as well. Reviewed-by: coleenp, twisti Contributed-by: serguei.spitsyn@oracle.com
-
由 sspitsyn 提交于
Summary: Need a support for invokedynamic entry kinds when new and old constant pools are merged. Reviewed-by: coleenp, twisti Contributed-by: serguei.spitsyn@oracle.com
-
- 25 1月, 2013 2 次提交
-
-
由 zgu 提交于
Summary: Removed depreciated kernel VM source code from hotspot VM Reviewed-by: dholmes, acorn
-
由 sspitsyn 提交于
Summary: When constant pool is copied in merge_constant_pools the invokedynamic operands must be copied before. Reviewed-by: coleenp, twisti Contributed-by: serguei.spitsyn@oracle.com
-
- 23 1月, 2013 1 次提交
-
-
由 coleenp 提交于
Summary: Added on_stack bit to flags. Also MetadataMarkOnStack is used for more than JVMTI so had to be moved. Reviewed-by: dholmes, stefank
-
- 18 1月, 2013 1 次提交
-
-
由 coleenp 提交于
Summary: Remove Method* from backtrace but save version so redefine classes doesn't give inaccurate line numbers. Removed old Merlin API with duplicate code. Reviewed-by: dholmes, sspitsyn
-
- 03 1月, 2013 1 次提交
-
-
由 coleenp 提交于
8005494: SIGSEGV in Rewriter::relocate_and_link() when testing Weblogic with CompressedOops and KlassPtrs Summary: Relocate functions with jsr's when rewriting so not repeated after reading shared archive Reviewed-by: twisti, jrose
-
- 20 12月, 2012 1 次提交
-
-
由 stefank 提交于
Reviewed-by: dholmes, coleenp Contributed-by: joel.franck@oracle.com
-
- 13 11月, 2012 1 次提交
-
-
由 hseigel 提交于
Summary: Remove function Klass::cast() and calls to it. Reviewed-by: dholmes, coleenp
-
- 29 9月, 2012 1 次提交
-
-
由 coleenp 提交于
Summary: Capitalize these metadata types (and objArrayKlass) Reviewed-by: stefank, twisti, kvn
-
- 02 9月, 2012 1 次提交
-
-
由 coleenp 提交于
Summary: Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland Contributed-by: Njmasa <jon.masamitsu@oracle.com>, stefank <stefan.karlsson@oracle.com>, mgerdin <mikael.gerdin@oracle.com>, never <tom.rodriguez@oracle.com>
-
- 09 7月, 2012 1 次提交
-
-
由 fparain 提交于
Reviewed-by: sspitsyn, dholmes, coleenp, kamg
-
- 29 6月, 2012 1 次提交
-
-
由 zgu 提交于
7151532: DCmd for hotspot native memory tracking Summary: Implementation of native memory tracking phase 1, which tracks VM native memory usage, and related DCmd Reviewed-by: acorn, coleenp, fparain
-
- 27 6月, 2012 1 次提交
-
-
由 jiangli 提交于
Summary: Change constMethodOop::_exception_table to optionally inlined u2 table. Reviewed-by: bdelsart, coleenp, kamg
-
- 14 3月, 2012 1 次提交
-
-
由 jiangli 提交于
7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field. Summary: Fold instanceKlass::_enclosing_method_class_index and instanceKlass::_enclosing_method_method_index into the instanceKlass::_inner_classes array. Reviewed-by: never, coleenp Contributed-by: NJiangli Zhou <jiangli.zhou@oracle.com>
-
- 23 12月, 2011 1 次提交
-
-
由 dcubed 提交于
Summary: Change ClassFileParser::parseClassFile() to use the instanceKlass:_cached_class_file_bytes field to avoid leaking the cache. Reviewed-by: coleenp, acorn, poonam
-
- 11 9月, 2011 1 次提交
-
-
由 never 提交于
Reviewed-by: jrose, twisti, kvn, coleenp
-
- 22 5月, 2011 1 次提交
-
-
由 coleenp 提交于
Summary: Unrewrite bytecodes for OOM error allocating the constant pool cache. Reviewed-by: dcubed, acorn, never
-
- 22 3月, 2011 1 次提交
-
-
由 never 提交于
Reviewed-by: kvn
-