Skip to content

Commit 13e7d4a

Browse files
committedMay 19, 2021
8267428: Several features lack the EnableValhalla guard
1 parent c8d7c82 commit 13e7d4a

File tree

3 files changed

+117
-103
lines changed

3 files changed

+117
-103
lines changed
 

‎src/hotspot/cpu/x86/templateTable_x86.cpp

+99-87
Original file line numberDiff line numberDiff line change
@@ -3011,76 +3011,82 @@ void TemplateTable::getfield_or_static(int byte_no, bool is_static, RewriteContr
30113011
} else {
30123012
if (is_static) {
30133013
__ load_heap_oop(rax, field);
3014-
Label is_inline_type, uninitialized;
3015-
// Issue below if the static field has not been initialized yet
3016-
__ test_field_is_inline_type(flags2, rscratch1, is_inline_type);
3017-
// field is not an inline type
3018-
__ push(atos);
3019-
__ jmp(Done);
3020-
// field is an inline type, must not return null even if uninitialized
3021-
__ bind(is_inline_type);
3022-
__ testptr(rax, rax);
3023-
__ jcc(Assembler::zero, uninitialized);
3024-
__ push(atos);
3025-
__ jmp(Done);
3026-
__ bind(uninitialized);
3027-
__ andl(flags2, ConstantPoolCacheEntry::field_index_mask);
3028-
#ifdef _LP64
3029-
Label slow_case, finish;
3030-
__ cmpb(Address(rcx, InstanceKlass::init_state_offset()), InstanceKlass::fully_initialized);
3031-
__ jcc(Assembler::notEqual, slow_case);
3032-
__ get_default_value_oop(rcx, off, rax);
3033-
__ jmp(finish);
3034-
__ bind(slow_case);
3035-
#endif // LP64
3036-
__ call_VM(rax, CAST_FROM_FN_PTR(address, InterpreterRuntime::uninitialized_static_inline_type_field),
3037-
obj, flags2);
3038-
#ifdef _LP64
3039-
__ bind(finish);
3040-
#endif // _LP64
3041-
__ verify_oop(rax);
3014+
if (EnableValhalla) {
3015+
Label is_inline_type, uninitialized;
3016+
// Issue below if the static field has not been initialized yet
3017+
__ test_field_is_inline_type(flags2, rscratch1, is_inline_type);
3018+
// field is not an inline type
30423019
__ push(atos);
30433020
__ jmp(Done);
3021+
// field is an inline type, must not return null even if uninitialized
3022+
__ bind(is_inline_type);
3023+
__ testptr(rax, rax);
3024+
__ jcc(Assembler::zero, uninitialized);
3025+
__ push(atos);
3026+
__ jmp(Done);
3027+
__ bind(uninitialized);
3028+
__ andl(flags2, ConstantPoolCacheEntry::field_index_mask);
3029+
#ifdef _LP64
3030+
Label slow_case, finish;
3031+
__ cmpb(Address(rcx, InstanceKlass::init_state_offset()), InstanceKlass::fully_initialized);
3032+
__ jcc(Assembler::notEqual, slow_case);
3033+
__ get_default_value_oop(rcx, off, rax);
3034+
__ jmp(finish);
3035+
__ bind(slow_case);
3036+
#endif // LP64
3037+
__ call_VM(rax, CAST_FROM_FN_PTR(address, InterpreterRuntime::uninitialized_static_inline_type_field),
3038+
obj, flags2);
3039+
#ifdef _LP64
3040+
__ bind(finish);
3041+
#endif // _LP64
3042+
}
3043+
__ verify_oop(rax);
3044+
__ push(atos);
3045+
__ jmp(Done);
30443046
} else {
30453047
Label is_inlined, nonnull, is_inline_type, rewrite_inline;
3046-
__ test_field_is_inline_type(flags2, rscratch1, is_inline_type);
3047-
// field is not an inline type
3048-
pop_and_check_object(obj);
3049-
__ load_heap_oop(rax, field);
3050-
__ push(atos);
3048+
if (EnableValhalla) {
3049+
__ test_field_is_inline_type(flags2, rscratch1, is_inline_type);
3050+
}
3051+
// field is not an inline type
3052+
pop_and_check_object(obj);
3053+
__ load_heap_oop(rax, field);
3054+
__ push(atos);
3055+
if (rc == may_rewrite) {
3056+
patch_bytecode(Bytecodes::_fast_agetfield, bc, rbx);
3057+
}
3058+
__ jmp(Done);
3059+
if (EnableValhalla) {
3060+
__ bind(is_inline_type);
3061+
__ test_field_is_inlined(flags2, rscratch1, is_inlined);
3062+
// field is not inlined
3063+
__ movptr(rax, rcx); // small dance required to preserve the klass_holder somewhere
3064+
pop_and_check_object(obj);
3065+
__ push(rax);
3066+
__ load_heap_oop(rax, field);
3067+
__ pop(rcx);
3068+
__ testptr(rax, rax);
3069+
__ jcc(Assembler::notZero, nonnull);
3070+
__ andl(flags2, ConstantPoolCacheEntry::field_index_mask);
3071+
__ get_inline_type_field_klass(rcx, flags2, rbx);
3072+
__ get_default_value_oop(rbx, rcx, rax);
3073+
__ bind(nonnull);
3074+
__ verify_oop(rax);
3075+
__ push(atos);
3076+
__ jmp(rewrite_inline);
3077+
__ bind(is_inlined);
3078+
// field is inlined
3079+
__ andl(flags2, ConstantPoolCacheEntry::field_index_mask);
3080+
pop_and_check_object(rax);
3081+
__ read_inlined_field(rcx, flags2, rbx, rax);
3082+
__ verify_oop(rax);
3083+
__ push(atos);
3084+
__ bind(rewrite_inline);
30513085
if (rc == may_rewrite) {
3052-
patch_bytecode(Bytecodes::_fast_agetfield, bc, rbx);
3086+
patch_bytecode(Bytecodes::_fast_qgetfield, bc, rbx);
30533087
}
30543088
__ jmp(Done);
3055-
__ bind(is_inline_type);
3056-
__ test_field_is_inlined(flags2, rscratch1, is_inlined);
3057-
// field is not inlined
3058-
__ movptr(rax, rcx); // small dance required to preserve the klass_holder somewhere
3059-
pop_and_check_object(obj);
3060-
__ push(rax);
3061-
__ load_heap_oop(rax, field);
3062-
__ pop(rcx);
3063-
__ testptr(rax, rax);
3064-
__ jcc(Assembler::notZero, nonnull);
3065-
__ andl(flags2, ConstantPoolCacheEntry::field_index_mask);
3066-
__ get_inline_type_field_klass(rcx, flags2, rbx);
3067-
__ get_default_value_oop(rbx, rcx, rax);
3068-
__ bind(nonnull);
3069-
__ verify_oop(rax);
3070-
__ push(atos);
3071-
__ jmp(rewrite_inline);
3072-
__ bind(is_inlined);
3073-
// field is inlined
3074-
__ andl(flags2, ConstantPoolCacheEntry::field_index_mask);
3075-
pop_and_check_object(rax);
3076-
__ read_inlined_field(rcx, flags2, rbx, rax);
3077-
__ verify_oop(rax);
3078-
__ push(atos);
3079-
__ bind(rewrite_inline);
3080-
if (rc == may_rewrite) {
3081-
patch_bytecode(Bytecodes::_fast_qgetfield, bc, rbx);
30823089
}
3083-
__ jmp(Done);
30843090
}
30853091
}
30863092

@@ -3392,14 +3398,18 @@ void TemplateTable::putfield_or_static_helper(int byte_no, bool is_static, Rewri
33923398
__ pop(atos);
33933399
if (is_static) {
33943400
Label is_inline_type;
3395-
__ test_field_is_not_inline_type(flags2, rscratch1, is_inline_type);
3396-
__ null_check(rax);
3397-
__ bind(is_inline_type);
3401+
if (EnableValhalla) {
3402+
__ test_field_is_not_inline_type(flags2, rscratch1, is_inline_type);
3403+
__ null_check(rax);
3404+
__ bind(is_inline_type);
3405+
}
33983406
do_oop_store(_masm, field, rax);
33993407
__ jmp(Done);
34003408
} else {
34013409
Label is_inline_type, is_inlined, rewrite_not_inline, rewrite_inline;
3402-
__ test_field_is_inline_type(flags2, rscratch1, is_inline_type);
3410+
if (EnableValhalla) {
3411+
__ test_field_is_inline_type(flags2, rscratch1, is_inline_type);
3412+
}
34033413
// Not an inline type
34043414
pop_and_check_object(obj);
34053415
// Store into the field
@@ -3409,28 +3419,30 @@ void TemplateTable::putfield_or_static_helper(int byte_no, bool is_static, Rewri
34093419
patch_bytecode(Bytecodes::_fast_aputfield, bc, rbx, true, byte_no);
34103420
}
34113421
__ jmp(Done);
3412-
// Implementation of the inline type semantic
3413-
__ bind(is_inline_type);
3414-
__ null_check(rax);
3415-
__ test_field_is_inlined(flags2, rscratch1, is_inlined);
3416-
// field is not inlined
3417-
pop_and_check_object(obj);
3418-
// Store into the field
3419-
do_oop_store(_masm, field, rax);
3420-
__ jmp(rewrite_inline);
3421-
__ bind(is_inlined);
3422-
// field is inlined
3423-
pop_and_check_object(obj);
3424-
assert_different_registers(rax, rdx, obj, off);
3425-
__ load_klass(rdx, rax, rscratch1);
3426-
__ data_for_oop(rax, rax, rdx);
3427-
__ addptr(obj, off);
3428-
__ access_value_copy(IN_HEAP, rax, obj, rdx);
3429-
__ bind(rewrite_inline);
3430-
if (rc == may_rewrite) {
3431-
patch_bytecode(Bytecodes::_fast_qputfield, bc, rbx, true, byte_no);
3422+
if (EnableValhalla) {
3423+
// Implementation of the inline type semantic
3424+
__ bind(is_inline_type);
3425+
__ null_check(rax);
3426+
__ test_field_is_inlined(flags2, rscratch1, is_inlined);
3427+
// field is not inlined
3428+
pop_and_check_object(obj);
3429+
// Store into the field
3430+
do_oop_store(_masm, field, rax);
3431+
__ jmp(rewrite_inline);
3432+
__ bind(is_inlined);
3433+
// field is inlined
3434+
pop_and_check_object(obj);
3435+
assert_different_registers(rax, rdx, obj, off);
3436+
__ load_klass(rdx, rax, rscratch1);
3437+
__ data_for_oop(rax, rax, rdx);
3438+
__ addptr(obj, off);
3439+
__ access_value_copy(IN_HEAP, rax, obj, rdx);
3440+
__ bind(rewrite_inline);
3441+
if (rc == may_rewrite) {
3442+
patch_bytecode(Bytecodes::_fast_qputfield, bc, rbx, true, byte_no);
3443+
}
3444+
__ jmp(Done);
34323445
}
3433-
__ jmp(Done);
34343446
}
34353447
}
34363448
}

‎src/hotspot/share/classfile/classFileParser.cpp

+17-15
Original file line numberDiff line numberDiff line change
@@ -6624,7 +6624,7 @@ void ClassFileParser::post_process_parsed_stream(const ClassFileStream* const st
66246624
set_invalid_inline_super();
66256625
}
66266626

6627-
if (!is_inline_type() && invalid_inline_super() && (_super_klass == NULL || !_super_klass->invalid_inline_super())
6627+
if (EnableValhalla && !is_inline_type() && invalid_inline_super() && (_super_klass == NULL || !_super_klass->invalid_inline_super())
66286628
&& !_implements_identityObject && class_name() != vmSymbols::java_lang_IdentityObject()) {
66296629
_temp_local_interfaces->append(vmClasses::IdentityObject_klass());
66306630
_has_injected_identityObject = true;
@@ -6691,20 +6691,22 @@ void ClassFileParser::post_process_parsed_stream(const ClassFileStream* const st
66916691
assert(_parsed_annotations != NULL, "invariant");
66926692

66936693

6694-
for (AllFieldStream fs(_fields, cp); !fs.done(); fs.next()) {
6695-
if (Signature::basic_type(fs.signature()) == T_INLINE_TYPE && !fs.access_flags().is_static()) {
6696-
// Pre-load inline class
6697-
Klass* klass = SystemDictionary::resolve_inline_type_field_or_fail(&fs,
6698-
Handle(THREAD, _loader_data->class_loader()),
6699-
_protection_domain, true, CHECK);
6700-
assert(klass != NULL, "Sanity check");
6701-
if (!klass->access_flags().is_inline_type()) {
6702-
assert(klass->is_instance_klass(), "Sanity check");
6703-
ResourceMark rm(THREAD);
6704-
THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(),
6705-
err_msg("Class %s expects class %s to be an inline type, but it is not",
6706-
_class_name->as_C_string(),
6707-
InstanceKlass::cast(klass)->external_name()));
6694+
if (EnableValhalla) {
6695+
for (AllFieldStream fs(_fields, cp); !fs.done(); fs.next()) {
6696+
if (Signature::basic_type(fs.signature()) == T_INLINE_TYPE && !fs.access_flags().is_static()) {
6697+
// Pre-load inline class
6698+
Klass* klass = SystemDictionary::resolve_inline_type_field_or_fail(&fs,
6699+
Handle(THREAD, _loader_data->class_loader()),
6700+
_protection_domain, true, CHECK);
6701+
assert(klass != NULL, "Sanity check");
6702+
if (!klass->access_flags().is_inline_type()) {
6703+
assert(klass->is_instance_klass(), "Sanity check");
6704+
ResourceMark rm(THREAD);
6705+
THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(),
6706+
err_msg("Class %s expects class %s to be an inline type, but it is not",
6707+
_class_name->as_C_string(),
6708+
InstanceKlass::cast(klass)->external_name()));
6709+
}
67086710
}
67096711
}
67106712
}

‎src/hotspot/share/oops/instanceKlass.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ bool InstanceKlass::link_class_impl(TRAPS) {
996996

997997
// Could it be possible to do the following processing only if the
998998
// class uses inline types?
999-
{
999+
if (EnableValhalla) {
10001000
ResourceMark rm(THREAD);
10011001
for (int i = 0; i < methods()->length(); i++) {
10021002
Method* m = methods()->at(i);

0 commit comments

Comments
 (0)
Please sign in to comment.