- 23 3月, 2012 1 次提交
-
-
由 coleenp 提交于
Summary: Move symbol allocation to an arena so NMT doesn't have to track them at startup. Reviewed-by: never, kamg, zgu
-
- 05 1月, 2012 1 次提交
-
-
由 dcubed 提交于
Summary: Use JavaThread::jvmti_thread_state() instead of JvmtiThreadState::state_for(). Reviewed-by: coleenp, poonam, acorn
-
- 29 12月, 2011 1 次提交
-
-
由 jiangli 提交于
7123315: instanceKlass::_static_oop_field_count and instanceKlass::_java_fields_count should be u2 type. Summary: Change instanceKlass::_static_oop_field_count and instanceKlass::_java_fields_count to u2 type. Reviewed-by: never, bdelsart, dholmes 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
-
- 29 6月, 2011 1 次提交
-
-
由 kvn 提交于
Summary: parseClassFile() incorrectly uses nonstatic_oop_map_size() method instead of nonstatic_oop_map_count(). Reviewed-by: never Contributed-by: NKrystal Mok <rednaxelafx@gmail.com>
-
- 15 4月, 2011 1 次提交
-
-
由 coleenp 提交于
Summary: Make CDS reorder vtables so that dump time vtables match run time order, so when redefine classes reinitializes them, they aren't in the wrong order. Reviewed-by: dcubed, acorn
-
- 08 4月, 2011 2 次提交
- 31 3月, 2011 1 次提交
-
-
由 twisti 提交于
Summary: After appropriate testing, we need to turn on EnableMethodHandles and EnableInvokeDynamic by default. Reviewed-by: never, kvn, jrose, phh
-
- 19 3月, 2011 1 次提交
-
-
由 never 提交于
Reviewed-by: kvn, coleenp, twisti, stefank
-
- 12 3月, 2011 2 次提交
- 05 3月, 2011 1 次提交
-
-
由 kamg 提交于
Summary: Only call <clinit> with ACC_STATIC for classfiles with version > 50 Reviewed-by: acorn, dholmes, coleenp
-
- 08 2月, 2011 1 次提交
-
-
由 ysr 提交于
Summary: Fix block_size_if_printezis_bits() so it does not expect the bits, only uses them when available. Fix block_size_no_stall() so it does not stall when the bits are missing such cases, letting the caller deal with zero size returns. Constant pool cache oops do not need to be unparsable or conc_unsafe after their klass pointer is installed. Some cosmetic clean-ups and some assertion checking for conc-usafety which, in the presence of class file redefinition, has no a-priori time boundedness, so all GCs must be able to safely deal with putatively conc-unsafe objects in a stop-world pause. Reviewed-by: jmasa, johnc
-
- 28 1月, 2011 1 次提交
-
-
由 coleenp 提交于
Summary: move symbols from permgen into C heap and reference count them Reviewed-by: never, acorn, jmasa, stefank
-
- 21 12月, 2010 1 次提交
-
-
由 twisti 提交于
Summary: When bootstrap_method_ref in BootstrapMethods attribute points to a wrong CP entry (non-MethodHandle), JVM throws ClassFormatError with a message, where method index and class file name is garbage. Reviewed-by: iveresov
-
- 04 12月, 2010 1 次提交
-
-
由 jrose 提交于
Reviewed-by: twisti
-
- 24 11月, 2010 1 次提交
-
-
由 stefank 提交于
Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
-
- 31 10月, 2010 1 次提交
-
-
由 jrose 提交于
Summary: Allow CONSTANT_InvokeDynamic nodes to have any number of extra operands. Reviewed-by: twisti
-
- 28 10月, 2010 1 次提交
-
-
由 twisti 提交于
Summary: The logic of ClassFileParser::java_dyn_MethodHandle_fix_pre needs to take care of an already changed vmentry signature. Reviewed-by: never, jrose
-
- 27 10月, 2010 1 次提交
-
-
由 kamg 提交于
6891959: HotSpot should not throw ClassFormatError if a class has a field with '>' and/or '<' in its name Summary: Class file parser needs to look for and disallow '[' in names. Reviewed-by: coleenp, never
-
- 12 10月, 2010 1 次提交
-
-
由 twisti 提交于
Reviewed-by: kvn
-
- 11 10月, 2010 1 次提交
-
-
由 twisti 提交于
Reviewed-by: kvn, jrose
-
- 04 8月, 2010 1 次提交
-
-
由 kvn 提交于
Summary: Added more checks into ResourceObj and growableArray to verify correctness of allocation type. Reviewed-by: never, coleenp, dholmes
-
- 16 7月, 2010 1 次提交
-
-
由 jrose 提交于
Summary: Add JVM_CONSTANT_InvokeDynamic records to constant pool to determine per-instruction BSMs. Reviewed-by: twisti
-
- 10 6月, 2010 1 次提交
-
-
由 jrose 提交于
Summary: Add new CP types CONSTANT_MethodHandle, CONSTANT_MethodType; extend 'ldc' bytecode. Reviewed-by: twisti, never
-
- 28 5月, 2010 2 次提交
-
-
由 trims 提交于
Summary: Change all the Sun copyrights to Oracle copyright Reviewed-by: ohair
-
由 kamg 提交于
6930553: classfile format checker allows invalid method descriptor in CONSTANT_NameAndType_info in some cases Summary: Check NameAndType_info signatures aggressively, even when unreferenced Reviewed-by: coleenp, acorn, never
-
- 01 5月, 2010 1 次提交
-
-
由 jrose 提交于
Summary: split MethodHandle.invoke into invokeExact and invokeGeneric; also clean up JVM-to-Java interfaces Reviewed-by: twisti
-
- 23 4月, 2010 1 次提交
-
-
由 jcoomes 提交于
Reviewed-by: kvn, twisti, apetrusenko, never, dcubed
-
- 08 4月, 2010 1 次提交
-
-
由 kvn 提交于
Summary: Use FieldsAllocationStyle=2 to allocate non static oop fields in super and sub classes together Reviewed-by: twisti
-
- 07 1月, 2010 1 次提交
-
-
由 never 提交于
Reviewed-by: kvn, twisti
-
- 05 1月, 2010 1 次提交
-
-
由 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
-
- 17 12月, 2009 1 次提交
-
-
由 xlu 提交于
6899467: System property java.class.version out-of-sync with VM for jdk 5.0 with HS 16 in nightly build Reviewed-by: kvn, never, dholmes, ysr
-
- 16 12月, 2009 1 次提交
-
-
由 twisti 提交于
Summary: changes for method handles and invokedynamic Reviewed-by: kvn
-
- 21 9月, 2009 1 次提交
-
-
由 dcubed 提交于
Summary: Fix races in jmethodID cache and JNI itable index cache. Reviewed-by: ikrylov, acorn
-
- 17 9月, 2009 1 次提交
-
-
由 acorn 提交于
Reviewed-by: kamg, dcubed
-
- 05 9月, 2009 1 次提交
-
-
由 acorn 提交于
Reviewed-by: kamg, phh
-
- 14 8月, 2009 1 次提交
-
-
由 jcoomes 提交于
Reviewed-by: jmasa, iveresov
-