Changeset 228860 in webkit for trunk/Source/JavaScriptCore/dfg/DFGArgumentsUtilities.cpp
- Timestamp:
- Feb 20, 2018, 10:56:11 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGArgumentsUtilities.cpp
r228401 r228860 92 92 } 93 93 94 Node* argumentCount; 95 if (!inlineCallFrame) 96 argumentCount = insertionSet.insertNode(nodeIndex, SpecInt32Only, GetArgumentCountIncludingThis, origin); 97 else { 98 VirtualRegister argumentCountRegister(inlineCallFrame->stackOffset + CallFrameSlot::argumentCount); 99 100 argumentCount = insertionSet.insertNode( 101 nodeIndex, SpecInt32Only, GetStack, origin, 102 OpInfo(graph.m_stackAccessData.add(argumentCountRegister, FlushedInt32))); 103 } 94 Node* argumentCount = insertionSet.insertNode(nodeIndex, 95 SpecInt32Only, GetArgumentCountIncludingThis, origin, OpInfo(inlineCallFrame)); 104 96 105 97 Node* result = insertionSet.insertNode(
Note:
See TracChangeset
for help on using the changeset viewer.