Lines Matching refs:destination
62 void relink(CodeLocationJump jump, CodeLocationLabel destination)
64 MacroAssembler::repatchJump(jump, destination);
67 void relink(CodeLocationCall call, CodeLocationLabel destination)
69 MacroAssembler::repatchCall(call, destination);
72 void relink(CodeLocationCall call, FunctionPtr destination)
74 MacroAssembler::repatchCall(call, destination);
77 void relink(CodeLocationNearCall nearCall, CodePtr destination)
79 MacroAssembler::repatchNearCall(nearCall, CodeLocationLabel(destination));
82 void relink(CodeLocationNearCall nearCall, CodeLocationLabel destination)
84 MacroAssembler::repatchNearCall(nearCall, destination);