--- old/src/hotspot/cpu/aarch64/gc/shared/barrierSetAssembler_aarch64.cpp 2018-06-13 04:02:13.672929954 -0400 +++ new/src/hotspot/cpu/aarch64/gc/shared/barrierSetAssembler_aarch64.cpp 2018-06-13 04:02:13.408916094 -0400 @@ -33,13 +33,13 @@ // LR is live. It must be saved around calls. - bool on_heap = (decorators & IN_HEAP) != 0; - bool on_root = (decorators & IN_ROOT) != 0; + bool in_heap = (decorators & IN_HEAP) != 0; + bool in_native = (decorators & IN_NATIVE) != 0; bool oop_not_null = (decorators & OOP_NOT_NULL) != 0; switch (type) { case T_OBJECT: case T_ARRAY: { - if (on_heap) { + if (in_heap) { if (UseCompressedOops) { __ ldrw(dst, src); if (oop_not_null) { @@ -51,7 +51,7 @@ __ ldr(dst, src); } } else { - assert(on_root, "why else?"); + assert(in_native, "why else?"); __ ldr(dst, src); } break; @@ -71,13 +71,13 @@ void BarrierSetAssembler::store_at(MacroAssembler* masm, DecoratorSet decorators, BasicType type, Address dst, Register val, Register tmp1, Register tmp2) { - bool on_heap = (decorators & IN_HEAP) != 0; - bool on_root = (decorators & IN_ROOT) != 0; + bool in_heap = (decorators & IN_HEAP) != 0; + bool in_native = (decorators & IN_NATIVE) != 0; switch (type) { case T_OBJECT: case T_ARRAY: { val = val == noreg ? zr : val; - if (on_heap) { + if (in_heap) { if (UseCompressedOops) { assert(!dst.uses(val), "not enough registers"); if (val != zr) { @@ -88,7 +88,7 @@ __ str(val, dst); } } else { - assert(on_root, "why else?"); + assert(in_native, "why else?"); __ str(val, dst); } break;