Changeset 119441 in webkit for trunk/Source/JavaScriptCore/jit/JITOpcodes.cpp
- Timestamp:
- Jun 4, 2012, 5:00:17 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITOpcodes.cpp
r118555 r119441 1291 1291 void JIT::emit_op_profile_will_call(Instruction* currentInstruction) 1292 1292 { 1293 peek(regT1, OBJECT_OFFSETOF(JITStackFrame, enabledProfilerReference) / sizeof(void*));1294 Jump noProfiler = branchTestPtr(Zero, Address(regT1));1295 1296 1293 JITStubCall stubCall(this, cti_op_profile_will_call); 1297 1294 stubCall.addArgument(currentInstruction[1].u.operand, regT1); 1298 1295 stubCall.call(); 1299 noProfiler.link(this);1300 1301 1296 } 1302 1297 1303 1298 void JIT::emit_op_profile_did_call(Instruction* currentInstruction) 1304 1299 { 1305 peek(regT1, OBJECT_OFFSETOF(JITStackFrame, enabledProfilerReference) / sizeof(void*));1306 Jump noProfiler = branchTestPtr(Zero, Address(regT1));1307 1308 1300 JITStubCall stubCall(this, cti_op_profile_did_call); 1309 1301 stubCall.addArgument(currentInstruction[1].u.operand, regT1); 1310 1302 stubCall.call(); 1311 noProfiler.link(this);1312 1303 } 1313 1304
Note:
See TracChangeset
for help on using the changeset viewer.