8295457: Make the signatures of write barrier methods consistent

Reviewed-by: tschatzl, shade
This commit is contained in:
Zixian Cai 2022-10-18 15:32:20 +00:00 committed by Aleksey Shipilev
parent 7b2e83b395
commit 5dbd495115
7 changed files with 23 additions and 23 deletions

View file

@ -191,7 +191,7 @@ class MacroAssembler: public Assembler {
void access_load_at(BasicType type, DecoratorSet decorators, Register dst,
Address src, Register tmp1, Register tmp2);
void access_store_at(BasicType type, DecoratorSet decorators, Address dst,
Register src, Register tmp1, Register tmp2, Register tmp3);
Register val, Register tmp1, Register tmp2, Register tmp3);
void load_klass(Register dst, Register src);
void store_klass(Register dst, Register src);
void cmp_klass(Register oop, Register trial_klass, Register tmp, Label &L);
@ -210,7 +210,7 @@ class MacroAssembler: public Assembler {
Register tmp2 = noreg, DecoratorSet decorators = 0);
void load_heap_oop_not_null(Register dst, Address src, Register tmp1 = noreg,
Register tmp2 = noreg, DecoratorSet decorators = 0);
void store_heap_oop(Address dst, Register src, Register tmp1 = noreg,
void store_heap_oop(Address dst, Register val, Register tmp1 = noreg,
Register tmp2 = noreg, Register tmp3 = noreg, DecoratorSet decorators = 0);
void store_klass_gap(Register dst, Register src);