Changeset 46209 in webkit for trunk/JavaScriptCore/assembler/MacroAssemblerX86.h
- Timestamp:
- Jul 21, 2009, 8:24:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/assembler/MacroAssemblerX86.h
r44526 r46209 165 165 private: 166 166 const bool m_isSSE2Present; 167 168 friend class LinkBuffer; 169 friend class RepatchBuffer; 170 171 static void linkCall(void* code, Call call, FunctionPtr function) 172 { 173 X86Assembler::linkCall(code, call.m_jmp, function.value()); 174 } 175 176 static void repatchCall(CodeLocationCall call, CodeLocationLabel destination) 177 { 178 X86Assembler::relinkCall(call.dataLocation(), destination.executableAddress()); 179 } 180 181 static void repatchCall(CodeLocationCall call, FunctionPtr destination) 182 { 183 X86Assembler::relinkCall(call.dataLocation(), destination.executableAddress()); 184 } 167 185 }; 168 186
Note:
See TracChangeset
for help on using the changeset viewer.