@@ -1104,7 +1104,7 @@ void TemplateTable::bastore() {
1104
1104
__ load_klass (x12, x13);
1105
1105
__ lwu (x12, Address (x12, Klass::layout_helper_offset ()));
1106
1106
Label L_skip;
1107
- __ andi (t0, x12, Klass::layout_helper_boolean_diffbit ());
1107
+ __ test_bit (t0, x12, exact_log2 ( Klass::layout_helper_boolean_diffbit () ));
1108
1108
__ beqz (t0, L_skip);
1109
1109
__ andi (x10, x10, 1 ); // if it is a T_BOOLEAN array, mask the stored value to 0/1
1110
1110
__ bind (L_skip);
@@ -2086,7 +2086,7 @@ void TemplateTable::_return(TosState state) {
2086
2086
__ load_klass (x13, c_rarg1);
2087
2087
__ lwu (x13, Address (x13, Klass::access_flags_offset ()));
2088
2088
Label skip_register_finalizer;
2089
- __ andi (t0, x13, JVM_ACC_HAS_FINALIZER);
2089
+ __ test_bit (t0, x13, exact_log2 ( JVM_ACC_HAS_FINALIZER) );
2090
2090
__ beqz (t0, skip_register_finalizer);
2091
2091
2092
2092
__ call_VM (noreg, CAST_FROM_FN_PTR (address, InterpreterRuntime::register_finalizer), c_rarg1);
@@ -2256,7 +2256,7 @@ void TemplateTable::load_invokedynamic_entry(Register method) {
2256
2256
Label L_no_push;
2257
2257
// Check if there is an appendix
2258
2258
__ load_unsigned_byte (index , Address (cache, in_bytes (ResolvedIndyEntry::flags_offset ())));
2259
- __ andi (t0, index , 1UL << ResolvedIndyEntry::has_appendix_shift);
2259
+ __ test_bit (t0, index , ResolvedIndyEntry::has_appendix_shift);
2260
2260
__ beqz (t0, L_no_push);
2261
2261
2262
2262
// Get appendix
@@ -2519,7 +2519,7 @@ void TemplateTable::getfield_or_static(int byte_no, bool is_static, RewriteContr
2519
2519
__ bind (Done);
2520
2520
2521
2521
Label notVolatile;
2522
- __ andi (t0, raw_flags, 1UL << ConstantPoolCacheEntry::is_volatile_shift);
2522
+ __ test_bit (t0, raw_flags, ConstantPoolCacheEntry::is_volatile_shift);
2523
2523
__ beqz (t0, notVolatile);
2524
2524
__ membar (MacroAssembler::LoadLoad | MacroAssembler::LoadStore);
2525
2525
__ bind (notVolatile);
@@ -2618,7 +2618,7 @@ void TemplateTable::putfield_or_static(int byte_no, bool is_static, RewriteContr
2618
2618
2619
2619
{
2620
2620
Label notVolatile;
2621
- __ andi (t0, x15, 1UL << ConstantPoolCacheEntry::is_volatile_shift);
2621
+ __ test_bit (t0, x15, ConstantPoolCacheEntry::is_volatile_shift);
2622
2622
__ beqz (t0, notVolatile);
2623
2623
__ membar (MacroAssembler::StoreStore | MacroAssembler::LoadStore);
2624
2624
__ bind (notVolatile);
@@ -2828,7 +2828,7 @@ void TemplateTable::putfield_or_static(int byte_no, bool is_static, RewriteContr
2828
2828
2829
2829
{
2830
2830
Label notVolatile;
2831
- __ andi (t0, x15, 1UL << ConstantPoolCacheEntry::is_volatile_shift);
2831
+ __ test_bit (t0, x15, ConstantPoolCacheEntry::is_volatile_shift);
2832
2832
__ beqz (t0, notVolatile);
2833
2833
__ membar (MacroAssembler::StoreLoad | MacroAssembler::StoreStore);
2834
2834
__ bind (notVolatile);
@@ -2929,7 +2929,7 @@ void TemplateTable::fast_storefield(TosState state) {
2929
2929
2930
2930
{
2931
2931
Label notVolatile;
2932
- __ andi (t0, x13, 1UL << ConstantPoolCacheEntry::is_volatile_shift);
2932
+ __ test_bit (t0, x13, ConstantPoolCacheEntry::is_volatile_shift);
2933
2933
__ beqz (t0, notVolatile);
2934
2934
__ membar (MacroAssembler::StoreStore | MacroAssembler::LoadStore);
2935
2935
__ bind (notVolatile);
@@ -2977,7 +2977,7 @@ void TemplateTable::fast_storefield(TosState state) {
2977
2977
2978
2978
{
2979
2979
Label notVolatile;
2980
- __ andi (t0, x13, 1UL << ConstantPoolCacheEntry::is_volatile_shift);
2980
+ __ test_bit (t0, x13, ConstantPoolCacheEntry::is_volatile_shift);
2981
2981
__ beqz (t0, notVolatile);
2982
2982
__ membar (MacroAssembler::StoreLoad | MacroAssembler::StoreStore);
2983
2983
__ bind (notVolatile);
@@ -3063,7 +3063,7 @@ void TemplateTable::fast_accessfield(TosState state) {
3063
3063
}
3064
3064
{
3065
3065
Label notVolatile;
3066
- __ andi (t0, x13, 1UL << ConstantPoolCacheEntry::is_volatile_shift);
3066
+ __ test_bit (t0, x13, ConstantPoolCacheEntry::is_volatile_shift);
3067
3067
__ beqz (t0, notVolatile);
3068
3068
__ membar (MacroAssembler::LoadLoad | MacroAssembler::LoadStore);
3069
3069
__ bind (notVolatile);
@@ -3107,7 +3107,7 @@ void TemplateTable::fast_xaccess(TosState state) {
3107
3107
Label notVolatile;
3108
3108
__ lwu (x13, Address (x12, in_bytes (ConstantPoolCache::base_offset () +
3109
3109
ConstantPoolCacheEntry::flags_offset ())));
3110
- __ andi (t0, x13, 1UL << ConstantPoolCacheEntry::is_volatile_shift);
3110
+ __ test_bit (t0, x13, ConstantPoolCacheEntry::is_volatile_shift);
3111
3111
__ beqz (t0, notVolatile);
3112
3112
__ membar (MacroAssembler::LoadLoad | MacroAssembler::LoadStore);
3113
3113
__ bind (notVolatile);
@@ -3156,7 +3156,7 @@ void TemplateTable::prepare_invoke(int byte_no,
3156
3156
// maybe push appendix to arguments (just before return address)
3157
3157
if (is_invokehandle) {
3158
3158
Label L_no_push;
3159
- __ andi (t0, flags, 1UL << ConstantPoolCacheEntry::has_appendix_shift);
3159
+ __ test_bit (t0, flags, ConstantPoolCacheEntry::has_appendix_shift);
3160
3160
__ beqz (t0, L_no_push);
3161
3161
// Push the appendix as a trailing parameter.
3162
3162
// This must be done before we get the receiver,
@@ -3197,7 +3197,7 @@ void TemplateTable::invokevirtual_helper(Register index,
3197
3197
assert_different_registers (index , recv, x10, x13);
3198
3198
// Test for an invoke of a final method
3199
3199
Label notFinal;
3200
- __ andi (t0, flags, 1UL << ConstantPoolCacheEntry::is_vfinal_shift);
3200
+ __ test_bit (t0, flags, ConstantPoolCacheEntry::is_vfinal_shift);
3201
3201
__ beqz (t0, notFinal);
3202
3202
3203
3203
const Register method = index ; // method must be xmethod
@@ -3289,7 +3289,7 @@ void TemplateTable::invokeinterface(int byte_no) {
3289
3289
// Special case of invokeinterface called for virtual method of
3290
3290
// java.lang.Object. See cpCache.cpp for details
3291
3291
Label notObjectMethod;
3292
- __ andi (t0, x13, 1UL << ConstantPoolCacheEntry::is_forced_virtual_shift);
3292
+ __ test_bit (t0, x13, ConstantPoolCacheEntry::is_forced_virtual_shift);
3293
3293
__ beqz (t0, notObjectMethod);
3294
3294
3295
3295
invokevirtual_helper (xmethod, x12, x13);
@@ -3299,7 +3299,7 @@ void TemplateTable::invokeinterface(int byte_no) {
3299
3299
3300
3300
// Check for private method invocation - indicated by vfinal
3301
3301
Label notVFinal;
3302
- __ andi (t0, x13, 1UL << ConstantPoolCacheEntry::is_vfinal_shift);
3302
+ __ test_bit (t0, x13, ConstantPoolCacheEntry::is_vfinal_shift);
3303
3303
__ beqz (t0, notVFinal);
3304
3304
3305
3305
// Check receiver klass into x13
@@ -3468,7 +3468,7 @@ void TemplateTable::_new() {
3468
3468
// get instance_size in InstanceKlass (scaled to a count of bytes)
3469
3469
__ lwu (x13, Address (x14, Klass::layout_helper_offset ()));
3470
3470
// test to see if it has a finalizer or is malformed in some way
3471
- __ andi (t0, x13, Klass::_lh_instance_slow_path_bit);
3471
+ __ test_bit (t0, x13, exact_log2 ( Klass::_lh_instance_slow_path_bit) );
3472
3472
__ bnez (t0, slow_case);
3473
3473
3474
3474
// Allocate the instance:
0 commit comments