Changeset 119647 in webkit for trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT64.cpp
- Timestamp:
- Jun 6, 2012, 5:23:36 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT64.cpp
r119342 r119647 4028 4028 resultGPR); 4029 4029 4030 addSlowPathGenerator( 4031 slowPathCall( 4032 slowPath, this, operationGetArgumentByVal, resultGPR, 4033 m_jit.argumentsRegisterFor(node.codeOrigin), 4034 indexGPR)); 4030 if (node.codeOrigin.inlineCallFrame) { 4031 addSlowPathGenerator( 4032 slowPathCall( 4033 slowPath, this, operationGetInlinedArgumentByVal, resultGPR, 4034 m_jit.argumentsRegisterFor(node.codeOrigin), 4035 node.codeOrigin.inlineCallFrame, 4036 indexGPR)); 4037 } else { 4038 addSlowPathGenerator( 4039 slowPathCall( 4040 slowPath, this, operationGetArgumentByVal, resultGPR, 4041 m_jit.argumentsRegisterFor(node.codeOrigin), 4042 indexGPR)); 4043 } 4035 4044 4036 4045 jsValueResult(resultGPR, m_compileIndex);
Note:
See TracChangeset
for help on using the changeset viewer.