Searched refs:BBState (Results 1 – 4 of 4) sorted by relevance
186 class BBState { class213 BBState() = default;292 void InitFromPred(const BBState &Other);293 void InitFromSucc(const BBState &Other);294 void MergePred(const BBState &Other);295 void MergeSucc(const BBState &Other);331 const unsigned BBState::OverflowOccurredValue = 0xffffffff;336 BBState &BBState) LLVM_ATTRIBUTE_UNUSED;340 void BBState::InitFromPred(const BBState &Other) { in InitFromPred()345 void BBState::InitFromSucc(const BBState &Other) { in InitFromSucc()[all …]
337 BlockState &BBState = BlockStates[MBB.getNumber()]; in runOnMachineFunction() local341 if (BBState.FirstUnguardedCall != MBB.end()) in runOnMachineFunction()342 insertVZeroUpper(BBState.FirstUnguardedCall, MBB); in runOnMachineFunction()347 if (BBState.ExitState == PASS_THROUGH) { in runOnMachineFunction()
3136 StackStateOfBB BBState; in verifyStackFrame() local3142 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue; in verifyStackFrame()3143 BBState.EntryIsSetup = SPState[StackPred->getNumber()].ExitIsSetup; in verifyStackFrame()3144 BBState.ExitValue = BBState.EntryValue; in verifyStackFrame()3145 BBState.ExitIsSetup = BBState.EntryIsSetup; in verifyStackFrame()3151 if (BBState.ExitIsSetup) in verifyStackFrame()3153 BBState.ExitValue -= TII->getFrameTotalSize(I); in verifyStackFrame()3154 BBState.ExitIsSetup = true; in verifyStackFrame()3159 if (!BBState.ExitIsSetup) in verifyStackFrame()3161 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue : in verifyStackFrame()[all …]
1213 struct BBState { in AnalyzeBlock() struct1214 BBState(MachineBasicBlock &MBB) : MBB(&MBB), SuccsAnalyzed(false) {} in AnalyzeBlock() function1222 SmallVector<BBState, 16> BBStack(1, MBB); in AnalyzeBlock()1225 BBState &State = BBStack.back(); in AnalyzeBlock()