reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/MachineVerifier.cpp
 2772       BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue;
 2773       BBState.EntryIsSetup = SPState[StackPred->getNumber()].ExitIsSetup;
 2774       BBState.ExitValue = BBState.EntryValue;
 2774       BBState.ExitValue = BBState.EntryValue;
 2775       BBState.ExitIsSetup = BBState.EntryIsSetup;
 2775       BBState.ExitIsSetup = BBState.EntryIsSetup;
 2781         if (BBState.ExitIsSetup)
 2783         BBState.ExitValue -= TII->getFrameTotalSize(I);
 2784         BBState.ExitIsSetup = true;
 2789         if (!BBState.ExitIsSetup)
 2791         int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue :
 2791         int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue :
 2792                                                BBState.ExitValue;
 2793         if (BBState.ExitIsSetup && AbsSPAdj != Size) {
 2798         BBState.ExitValue += Size;
 2799         BBState.ExitIsSetup = false;
 2802     SPState[MBB->getNumber()] = BBState;
 2809           (SPState[(*I)->getNumber()].ExitValue != BBState.EntryValue ||
 2810            SPState[(*I)->getNumber()].ExitIsSetup != BBState.EntryIsSetup)) {
 2816                << BBState.EntryValue << ", " << BBState.EntryIsSetup << ").\n";
 2816                << BBState.EntryValue << ", " << BBState.EntryIsSetup << ").\n";
 2825           (SPState[(*I)->getNumber()].EntryValue != BBState.ExitValue ||
 2826            SPState[(*I)->getNumber()].EntryIsSetup != BBState.ExitIsSetup)) {
 2832                << BBState.ExitValue << ", " << BBState.ExitIsSetup << ").\n";
 2832                << BBState.ExitValue << ", " << BBState.ExitIsSetup << ").\n";
 2838       if (BBState.ExitIsSetup)
 2840       if (BBState.ExitValue)