Ignore:
Timestamp:
Oct 31, 2017, 4:12:32 PM (8 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r224243, r224246, and r224248.
https://bugs.webkit.org/show_bug.cgi?id=179083

The patch and fix broke the Windows build. (Requested by
mlewis13 on #webkit).

Reverted changesets:

"StructureStubInfo should have GPRReg members not int8_ts"
https://bugs.webkit.org/show_bug.cgi?id=179071
https://trac.webkit.org/changeset/224243

"Make all register enums be backed by uint8_t."
https://bugs.webkit.org/show_bug.cgi?id=179074
https://trac.webkit.org/changeset/224246

"Unreviewed, windows build fix."
https://trac.webkit.org/changeset/224248

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp

    r224243 r224258  
    10511051            stubInfo->callSiteIndex = m_jit.addCallSite(node->origin.semantic);
    10521052            stubInfo->codeOrigin = node->origin.semantic;
    1053             stubInfo->patch.baseGPR = baseGPR;
    1054             stubInfo->patch.valueGPR = resultGPR;
    1055             stubInfo->patch.thisGPR = InvalidGPRReg;
     1053            stubInfo->patch.baseGPR = static_cast<int8_t>(baseGPR);
     1054            stubInfo->patch.valueGPR = static_cast<int8_t>(resultGPR);
     1055            stubInfo->patch.thisGPR = static_cast<int8_t>(InvalidGPRReg);
    10561056#if USE(JSVALUE32_64)
    1057             stubInfo->patch.valueTagGPR = InvalidGPRReg;
    1058             stubInfo->patch.baseTagGPR = InvalidGPRReg;
    1059             stubInfo->patch.thisTagGPR = InvalidGPRReg;
     1057            stubInfo->patch.valueTagGPR = static_cast<int8_t>(InvalidGPRReg);
     1058            stubInfo->patch.baseTagGPR = static_cast<int8_t>(InvalidGPRReg);
     1059            stubInfo->patch.thisTagGPR = static_cast<int8_t>(InvalidGPRReg);
    10601060#endif
    10611061            stubInfo->patch.usedRegisters = usedRegisters();
Note: See TracChangeset for help on using the changeset viewer.