Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:BBState

1651     StackStateOfBB BBState;
1657 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue;
1658 BBState.EntryIsSetup = SPState[StackPred->getNumber()].ExitIsSetup;
1659 BBState.ExitValue = BBState.EntryValue;
1660 BBState.ExitIsSetup = BBState.EntryIsSetup;
1672 if (BBState.ExitIsSetup)
1674 BBState.ExitValue -= Size;
1675 BBState.ExitIsSetup = true;
1684 if (!BBState.ExitIsSetup)
1686 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue :
1687 BBState.ExitValue;
1688 if (BBState.ExitIsSetup && AbsSPAdj != Size) {
1693 BBState.ExitValue += Size;
1694 BBState.ExitIsSetup = false;
1697 SPState[MBB->getNumber()] = BBState;
1704 (SPState[(*I)->getNumber()].ExitValue != BBState.EntryValue ||
1705 SPState[(*I)->getNumber()].ExitIsSetup != BBState.EntryIsSetup)) {
1711 << BBState.EntryValue << ", " << BBState.EntryIsSetup << ").\n";
1720 (SPState[(*I)->getNumber()].EntryValue != BBState.ExitValue ||
1721 SPState[(*I)->getNumber()].EntryIsSetup != BBState.ExitIsSetup)) {
1727 << BBState.ExitValue << ", " << BBState.ExitIsSetup << ").\n";
1733 if (BBState.ExitIsSetup)
1735 if (BBState.ExitValue)