@@ -5104,15 +5104,15 @@ void MacroAssembler::access_load_at(BasicType type, DecoratorSet decorators, Reg
5104
5104
}
5105
5105
}
5106
5106
5107
- void MacroAssembler::access_store_at(BasicType type, DecoratorSet decorators, Address dst, Register src ,
5107
+ void MacroAssembler::access_store_at(BasicType type, DecoratorSet decorators, Address dst, Register val ,
5108
5108
Register tmp1, Register tmp2, Register tmp3) {
5109
5109
BarrierSetAssembler* bs = BarrierSet::barrier_set()->barrier_set_assembler();
5110
5110
decorators = AccessInternal::decorator_fixup(decorators);
5111
5111
bool as_raw = (decorators & AS_RAW) != 0;
5112
5112
if (as_raw) {
5113
- bs->BarrierSetAssembler::store_at(this, decorators, type, dst, src , tmp1, tmp2, tmp3);
5113
+ bs->BarrierSetAssembler::store_at(this, decorators, type, dst, val , tmp1, tmp2, tmp3);
5114
5114
} else {
5115
- bs->store_at(this, decorators, type, dst, src , tmp1, tmp2, tmp3);
5115
+ bs->store_at(this, decorators, type, dst, val , tmp1, tmp2, tmp3);
5116
5116
}
5117
5117
}
5118
5118
@@ -5127,9 +5127,9 @@ void MacroAssembler::load_heap_oop_not_null(Register dst, Address src, Register
5127
5127
access_load_at(T_OBJECT, IN_HEAP | IS_NOT_NULL | decorators, dst, src, tmp1, thread_tmp);
5128
5128
}
5129
5129
5130
- void MacroAssembler::store_heap_oop(Address dst, Register src , Register tmp1,
5130
+ void MacroAssembler::store_heap_oop(Address dst, Register val , Register tmp1,
5131
5131
Register tmp2, Register tmp3, DecoratorSet decorators) {
5132
- access_store_at(T_OBJECT, IN_HEAP | decorators, dst, src , tmp1, tmp2, tmp3);
5132
+ access_store_at(T_OBJECT, IN_HEAP | decorators, dst, val , tmp1, tmp2, tmp3);
5133
5133
}
5134
5134
5135
5135
// Used for storing NULLs.
0 commit comments