Changeset 135330 in webkit for trunk/Source/JavaScriptCore/assembler/RepatchBuffer.h
- Timestamp:
- Nov 20, 2012, 4:22:08 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/assembler/RepatchBuffer.h
r134332 r135330 142 142 } 143 143 144 static CodeLocationLabel startOf PatchableBranchPtrWithPatch(CodeLocationDataLabelPtr label)144 static CodeLocationLabel startOfBranchPtrWithPatchOnRegister(CodeLocationDataLabelPtr label) 145 145 { 146 return MacroAssembler::startOfPatchableBranchPtrWithPatch(label); 146 return MacroAssembler::startOfBranchPtrWithPatchOnRegister(label); 147 } 148 149 static CodeLocationLabel startOfPatchableBranchPtrWithPatchOnAddress(CodeLocationDataLabelPtr label) 150 { 151 return MacroAssembler::startOfPatchableBranchPtrWithPatchOnAddress(label); 147 152 } 148 153 … … 155 160 // immediate after calling this. But I'm fine with that, since this just feels 156 161 // less yucky. 162 void revertJumpReplacementToBranchPtrWithPatch(CodeLocationLabel instructionStart, MacroAssembler::RegisterID reg, void* value) 163 { 164 MacroAssembler::revertJumpReplacementToBranchPtrWithPatch(instructionStart, reg, value); 165 } 166 157 167 void revertJumpReplacementToPatchableBranchPtrWithPatch(CodeLocationLabel instructionStart, MacroAssembler::Address address, void* value) 158 168 {
Note:
See TracChangeset
for help on using the changeset viewer.