Changeset 224258 in webkit for trunk/Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp
- Timestamp:
- Oct 31, 2017, 4:12:32 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp
r224243 r224258 8865 8865 state->jitCode->common.addCodeOrigin(node->origin.semantic); 8866 8866 stubInfo->codeOrigin = node->origin.semantic; 8867 stubInfo->patch.baseGPR = baseGPR;8868 stubInfo->patch.valueGPR = resultGPR;8869 stubInfo->patch.thisGPR = InvalidGPRReg;8867 stubInfo->patch.baseGPR = static_cast<int8_t>(baseGPR); 8868 stubInfo->patch.valueGPR = static_cast<int8_t>(resultGPR); 8869 stubInfo->patch.thisGPR = static_cast<int8_t>(InvalidGPRReg); 8870 8870 stubInfo->patch.usedRegisters = params.unavailableRegisters(); 8871 8871
Note:
See TracChangeset
for help on using the changeset viewer.