--- old/src/hotspot/cpu/arm/gc/shared/barrierSetAssembler_arm.cpp 2018-06-13 04:29:14.786028944 -0400 +++ new/src/hotspot/cpu/arm/gc/shared/barrierSetAssembler_arm.cpp 2018-06-13 04:29:14.470012346 -0400 @@ -30,7 +30,7 @@ void BarrierSetAssembler::load_at(MacroAssembler* masm, DecoratorSet decorators, BasicType type, Register dst, Address src, Register tmp1, Register tmp2, Register tmp3) { bool on_heap = (decorators & IN_HEAP) != 0; - bool on_root = (decorators & IN_NATIVE) != 0; + bool in_native = (decorators & IN_NATIVE) != 0; switch (type) { case T_OBJECT: case T_ARRAY: { @@ -45,7 +45,7 @@ __ ldr(dst, src); } } else { - assert(on_root, "why else?"); + assert(in_native, "why else?"); __ ldr(dst, src); } break; @@ -58,7 +58,7 @@ void BarrierSetAssembler::store_at(MacroAssembler* masm, DecoratorSet decorators, BasicType type, Address obj, Register val, Register tmp1, Register tmp2, Register tmp3, bool is_null) { bool on_heap = (decorators & IN_HEAP) != 0; - bool on_root = (decorators & IN_NATIVE) != 0; + bool in_native = (decorators & IN_NATIVE) != 0; switch (type) { case T_OBJECT: case T_ARRAY: { @@ -76,7 +76,7 @@ __ str(val, obj); } } else { - assert(on_root, "why else?"); + assert(in_native, "why else?"); __ str(val, obj); } break;