< prev index next >

src/hotspot/cpu/x86/gc/shared/modRefBarrierSetAssembler_x86.cpp

rename things

*** 22,37 **** * */ #include "precompiled.hpp" #include "asm/macroAssembler.inline.hpp" ! #include "gc/shared/modRefBarrierSetCodeGen.hpp" #define __ masm-> ! void ModRefBarrierSetCodeGen::arraycopy_prologue(MacroAssembler* masm, DecoratorSet decorators, BasicType type, ! Register src, Register dst, Register count) { bool checkcast = (decorators & ARRAYCOPY_CHECKCAST) != 0; bool disjoint = (decorators & ARRAYCOPY_DISJOINT) != 0; bool obj_int = type == T_OBJECT LP64_ONLY(&& UseCompressedOops); if (type == T_OBJECT || type == T_ARRAY) { --- 22,37 ---- * */ #include "precompiled.hpp" #include "asm/macroAssembler.inline.hpp" ! #include "gc/shared/modRefBarrierSetAssembler.hpp" #define __ masm-> ! void ModRefBarrierSetAssembler::arraycopy_prologue(MacroAssembler* masm, DecoratorSet decorators, BasicType type, ! Register src, Register dst, Register count) { bool checkcast = (decorators & ARRAYCOPY_CHECKCAST) != 0; bool disjoint = (decorators & ARRAYCOPY_DISJOINT) != 0; bool obj_int = type == T_OBJECT LP64_ONLY(&& UseCompressedOops); if (type == T_OBJECT || type == T_ARRAY) { ***************
*** 50,61 **** #endif gen_write_ref_array_pre_barrier(masm, decorators, dst, count); } } ! void ModRefBarrierSetCodeGen::arraycopy_epilogue(MacroAssembler* masm, DecoratorSet decorators, BasicType type, ! Register src, Register dst, Register count) { bool checkcast = (decorators & ARRAYCOPY_CHECKCAST) != 0; bool disjoint = (decorators & ARRAYCOPY_DISJOINT) != 0; bool obj_int = type == T_OBJECT LP64_ONLY(&& UseCompressedOops); Register tmp = rax; --- 50,61 ---- #endif gen_write_ref_array_pre_barrier(masm, decorators, dst, count); } } ! void ModRefBarrierSetAssembler::arraycopy_epilogue(MacroAssembler* masm, DecoratorSet decorators, BasicType type, ! Register src, Register dst, Register count) { bool checkcast = (decorators & ARRAYCOPY_CHECKCAST) != 0; bool disjoint = (decorators & ARRAYCOPY_DISJOINT) != 0; bool obj_int = type == T_OBJECT LP64_ONLY(&& UseCompressedOops); Register tmp = rax;
< prev index next >