57 void resolve_forward_pointer(MacroAssembler* masm, Register dst, Register tmp = noreg);
58 void resolve_forward_pointer_not_null(MacroAssembler* masm, Register dst, Register tmp = noreg);
59 void load_reference_barrier(MacroAssembler* masm, Register dst, Address load_addr, DecoratorSet decorators);
60
61 public:
62
63 void iu_barrier(MacroAssembler* masm, Register dst, Register tmp);
64
65 #ifdef COMPILER1
66 void gen_pre_barrier_stub(LIR_Assembler* ce, ShenandoahPreBarrierStub* stub);
67 void gen_load_reference_barrier_stub(LIR_Assembler* ce, ShenandoahLoadReferenceBarrierStub* stub);
68 void generate_c1_pre_barrier_runtime_stub(StubAssembler* sasm);
69 void generate_c1_load_reference_barrier_runtime_stub(StubAssembler* sasm, DecoratorSet decorators);
70 #endif
71
72 virtual void arraycopy_prologue(MacroAssembler* masm, DecoratorSet decorators, bool is_oop,
73 Register src, Register dst, Register count, RegSet saved_regs);
74 virtual void load_at(MacroAssembler* masm, DecoratorSet decorators, BasicType type,
75 Register dst, Address src, Register tmp1, Register tmp_thread);
76 virtual void store_at(MacroAssembler* masm, DecoratorSet decorators, BasicType type,
77 Address dst, Register val, Register tmp1, Register tmp2);
78 virtual void try_resolve_jobject_in_native(MacroAssembler* masm, Register jni_env,
79 Register obj, Register tmp, Label& slowpath);
80 void cmpxchg_oop(MacroAssembler* masm, Register addr, Register expected, Register new_val,
81 bool acquire, bool release, bool is_cae, Register result);
82 };
83
84 #endif // CPU_AARCH64_GC_SHENANDOAH_SHENANDOAHBARRIERSETASSEMBLER_AARCH64_HPP
|
57 void resolve_forward_pointer(MacroAssembler* masm, Register dst, Register tmp = noreg);
58 void resolve_forward_pointer_not_null(MacroAssembler* masm, Register dst, Register tmp = noreg);
59 void load_reference_barrier(MacroAssembler* masm, Register dst, Address load_addr, DecoratorSet decorators);
60
61 public:
62
63 void iu_barrier(MacroAssembler* masm, Register dst, Register tmp);
64
65 #ifdef COMPILER1
66 void gen_pre_barrier_stub(LIR_Assembler* ce, ShenandoahPreBarrierStub* stub);
67 void gen_load_reference_barrier_stub(LIR_Assembler* ce, ShenandoahLoadReferenceBarrierStub* stub);
68 void generate_c1_pre_barrier_runtime_stub(StubAssembler* sasm);
69 void generate_c1_load_reference_barrier_runtime_stub(StubAssembler* sasm, DecoratorSet decorators);
70 #endif
71
72 virtual void arraycopy_prologue(MacroAssembler* masm, DecoratorSet decorators, bool is_oop,
73 Register src, Register dst, Register count, RegSet saved_regs);
74 virtual void load_at(MacroAssembler* masm, DecoratorSet decorators, BasicType type,
75 Register dst, Address src, Register tmp1, Register tmp_thread);
76 virtual void store_at(MacroAssembler* masm, DecoratorSet decorators, BasicType type,
77 Address dst, Register val, Register tmp1, Register tmp2, Register tmp3 = noreg);
78 virtual void try_resolve_jobject_in_native(MacroAssembler* masm, Register jni_env,
79 Register obj, Register tmp, Label& slowpath);
80 void cmpxchg_oop(MacroAssembler* masm, Register addr, Register expected, Register new_val,
81 bool acquire, bool release, bool is_cae, Register result);
82 };
83
84 #endif // CPU_AARCH64_GC_SHENANDOAH_SHENANDOAHBARRIERSETASSEMBLER_AARCH64_HPP
|