< prev index next >

src/hotspot/cpu/aarch64/gc/shared/barrierSetAssembler_aarch64.cpp

Print this page
rev 50535 : [mq]: rename_IN_ROOT

*** 32,42 **** Register dst, Address src, Register tmp1, Register tmp_thread) { // LR is live. It must be saved around calls. bool on_heap = (decorators & IN_HEAP) != 0; ! bool on_root = (decorators & IN_ROOT) != 0; bool oop_not_null = (decorators & OOP_NOT_NULL) != 0; switch (type) { case T_OBJECT: case T_ARRAY: { if (on_heap) { --- 32,42 ---- Register dst, Address src, Register tmp1, Register tmp_thread) { // LR is live. It must be saved around calls. bool on_heap = (decorators & IN_HEAP) != 0; ! bool on_root = (decorators & IN_NATIVE) != 0; bool oop_not_null = (decorators & OOP_NOT_NULL) != 0; switch (type) { case T_OBJECT: case T_ARRAY: { if (on_heap) {
*** 70,80 **** } 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; switch (type) { case T_OBJECT: case T_ARRAY: { val = val == noreg ? zr : val; if (on_heap) { --- 70,80 ---- } 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_NATIVE) != 0; switch (type) { case T_OBJECT: case T_ARRAY: { val = val == noreg ? zr : val; if (on_heap) {
< prev index next >