Changeset 38148 in webkit for trunk/JavaScriptCore/VM/CTI.cpp
- Timestamp:
- Nov 5, 2008, 7:26:30 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CTI.cpp
r38012 r38148 629 629 if (opcodeID != op_construct) { 630 630 int thisVal = instruction[3].u.operand; 631 if (thisVal == missingThisObjectMarker()) { 632 // FIXME: should this be loaded dynamically off m_callFrame? 633 m_jit.movl_i32m(asInteger(m_callFrame->globalThisValue()), firstArg * sizeof(Register), X86::edi); 634 } else { 631 if (thisVal == missingThisObjectMarker()) 632 m_jit.movl_i32m(asInteger(jsNull()), firstArg * sizeof(Register), X86::edi); 633 else { 635 634 emitGetArg(thisVal, X86::eax); 636 635 emitPutResult(firstArg);
Note:
See TracChangeset
for help on using the changeset viewer.