src/hotspot/share/gc/z/zBarrierSetNMethod.cpp
changeset 54567 224515275cf9
parent 53894 bf1133e7dfba
child 55005 9b70ebd131b4
equal deleted inserted replaced
54566:4224f26b2e7f 54567:224515275cf9
    53     return false;
    53     return false;
    54   }
    54   }
    55 
    55 
    56   // Heal oops and disarm
    56   // Heal oops and disarm
    57   ZNMethodOopClosure cl;
    57   ZNMethodOopClosure cl;
    58   nm->oops_do(&cl);
    58   ZNMethod::nmethod_oops_do(nm, &cl);
    59   nm->fix_oop_relocations();
       
    60 
       
    61   OrderAccess::release();
       
    62 
       
    63   disarm(nm);
    59   disarm(nm);
    64 
    60 
    65   return true;
    61   return true;
    66 }
    62 }
    67 
    63