< prev index next >

src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp

rename things
 
 #include "precompiled.hpp"
 #include "asm/macroAssembler.hpp"
 #include "asm/macroAssembler.inline.hpp"
 #include "gc/shared/barrierSet.hpp"
-#include "gc/shared/barrierSetCodeGen.hpp"
+#include "gc/shared/barrierSetAssembler.hpp"
 #include "interpreter/interpreter.hpp"
 #include "nativeInst_aarch64.hpp"
 #include "oops/instanceOop.hpp"
 #include "oops/method.hpp"
 #include "oops/objArrayKlass.hpp"

@@ -1357,11 +1357,11 } if (aligned) { decorators |= ARRAYCOPY_ALIGNED; } - BarrierSetCodeGen *bs = Universe::heap()->barrier_set()->code_gen(); + BarrierSetAssembler *bs = Universe::heap()->barrier_set()->barrier_set_assembler(); bs->arraycopy_prologue(_masm, decorators, is_oop, d, count, saved_reg); if (is_oop) { // save regs before copy_memory __ push(RegSet::of(d, count), sp);
@@ -1431,11 +1431,11 } if (aligned) { decorators |= ARRAYCOPY_ALIGNED; } - BarrierSetCodeGen *bs = Universe::heap()->barrier_set()->code_gen(); + BarrierSetAssembler *bs = Universe::heap()->barrier_set()->barrier_set_assembler(); bs->arraycopy_prologue(_masm, decorators, is_oop, d, count, saved_regs); if (is_oop) { // save regs before copy_memory __ push(RegSet::of(d, count), sp);
@@ -1793,11 +1793,11 bool is_oop = true; if (dest_uninitialized) { decorators |= AS_DEST_NOT_INITIALIZED; } - BarrierSetCodeGen *bs = Universe::heap()->barrier_set()->code_gen(); + BarrierSetAssembler *bs = Universe::heap()->barrier_set()->barrier_set_assembler(); bs->arraycopy_prologue(_masm, decorators, is_oop, to, count, wb_pre_saved_regs); // save the original count __ mov(count_save, count);
< prev index next >