@@ -3011,76 +3011,82 @@ void TemplateTable::getfield_or_static(int byte_no, bool is_static, RewriteContr
3011
3011
} else {
3012
3012
if (is_static) {
3013
3013
__ 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
3042
3019
__ push (atos);
3043
3020
__ 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);
3044
3046
} else {
3045
3047
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);
3051
3085
if (rc == may_rewrite) {
3052
- patch_bytecode (Bytecodes::_fast_agetfield , bc, rbx);
3086
+ patch_bytecode (Bytecodes::_fast_qgetfield , bc, rbx);
3053
3087
}
3054
3088
__ 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);
3082
3089
}
3083
- __ jmp (Done);
3084
3090
}
3085
3091
}
3086
3092
@@ -3392,14 +3398,18 @@ void TemplateTable::putfield_or_static_helper(int byte_no, bool is_static, Rewri
3392
3398
__ pop (atos);
3393
3399
if (is_static) {
3394
3400
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
+ }
3398
3406
do_oop_store (_masm, field, rax);
3399
3407
__ jmp (Done);
3400
3408
} else {
3401
3409
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
+ }
3403
3413
// Not an inline type
3404
3414
pop_and_check_object (obj);
3405
3415
// Store into the field
@@ -3409,28 +3419,30 @@ void TemplateTable::putfield_or_static_helper(int byte_no, bool is_static, Rewri
3409
3419
patch_bytecode (Bytecodes::_fast_aputfield, bc, rbx, true , byte_no);
3410
3420
}
3411
3421
__ 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);
3432
3445
}
3433
- __ jmp (Done);
3434
3446
}
3435
3447
}
3436
3448
}
0 commit comments