mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 11:34:38 +02:00
8295457: Make the signatures of write barrier methods consistent
Reviewed-by: tschatzl, shade
This commit is contained in:
parent
7b2e83b395
commit
5dbd495115
7 changed files with 23 additions and 23 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue