--- old/src/hotspot/cpu/sparc/gc/shared/barrierSetAssembler_sparc.cpp 2018-06-13 04:28:15.346907227 -0400 +++ new/src/hotspot/cpu/sparc/gc/shared/barrierSetAssembler_sparc.cpp 2018-06-13 04:28:15.034890840 -0400 @@ -32,14 +32,14 @@ void BarrierSetAssembler::store_at(MacroAssembler* masm, DecoratorSet decorators, BasicType type, Register val, Address dst, Register tmp) { - bool on_heap = (decorators & IN_HEAP) != 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_ARRAY: case T_OBJECT: { - if (on_heap) { + if (in_heap) { if (dst.has_disp() && !Assembler::is_simm13(dst.disp())) { assert(!dst.has_index(), "not supported yet"); __ set(dst.disp(), tmp); @@ -68,14 +68,14 @@ void BarrierSetAssembler::load_at(MacroAssembler* masm, DecoratorSet decorators, BasicType type, Address src, Register dst, Register tmp) { - bool on_heap = (decorators & IN_HEAP) != 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_ARRAY: case T_OBJECT: { - if (on_heap) { + if (in_heap) { if (src.has_disp() && !Assembler::is_simm13(src.disp())) { assert(!src.has_index(), "not supported yet"); __ set(src.disp(), tmp);