Changeset 46209 in webkit for trunk/JavaScriptCore/assembler/MacroAssemblerARMv7.h
- Timestamp:
- Jul 21, 2009, 8:24:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/assembler/MacroAssemblerARMv7.h
r44554 r46209 1055 1055 return static_cast<ARMv7Assembler::Condition>(cond); 1056 1056 } 1057 1058 private: 1059 friend class LinkBuffer; 1060 friend class RepatchBuffer; 1061 1062 static void linkCall(void* code, Call call, FunctionPtr function) 1063 { 1064 ARMv7Assembler::linkCall(code, call.m_jmp, function.value()); 1065 } 1066 1067 static void repatchCall(CodeLocationCall call, CodeLocationLabel destination) 1068 { 1069 ARMv7Assembler::relinkCall(call.dataLocation(), destination.executableAddress()); 1070 } 1071 1072 static void repatchCall(CodeLocationCall call, FunctionPtr destination) 1073 { 1074 ARMv7Assembler::relinkCall(call.dataLocation(), destination.executableAddress()); 1075 } 1057 1076 }; 1058 1077
Note:
See TracChangeset
for help on using the changeset viewer.