Home
last modified time | relevance | path

Searched refs:BBState (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp183 class BBState { class
210 BBState() = default;
289 void InitFromPred(const BBState &Other);
290 void InitFromSucc(const BBState &Other);
291 void MergePred(const BBState &Other);
292 void MergeSucc(const BBState &Other);
328 const unsigned BBState::OverflowOccurredValue = 0xffffffff;
333 BBState &BBState) LLVM_ATTRIBUTE_UNUSED;
337 void BBState::InitFromPred(const BBState &Other) { in InitFromPred()
342 void BBState::InitFromSucc(const BBState &Other) { in InitFromSucc()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86VZeroUpper.cpp334 BlockState &BBState = BlockStates[MBB.getNumber()]; in runOnMachineFunction() local
338 if (BBState.FirstUnguardedCall != MBB.end()) in runOnMachineFunction()
339 insertVZeroUpper(BBState.FirstUnguardedCall, MBB); in runOnMachineFunction()
344 if (BBState.ExitState == PASS_THROUGH) { in runOnMachineFunction()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineVerifier.cpp3815 StackStateOfBB BBState; in verifyStackFrame() local
3821 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue; in verifyStackFrame()
3822 BBState.EntryIsSetup = SPState[StackPred->getNumber()].ExitIsSetup; in verifyStackFrame()
3823 BBState.ExitValue = BBState.EntryValue; in verifyStackFrame()
3824 BBState.ExitIsSetup = BBState.EntryIsSetup; in verifyStackFrame()
3827 if ((int)MBB->getCallFrameSize() != -BBState.EntryValue) { in verifyStackFrame()
3833 << -BBState.EntryValue << '\n'; in verifyStackFrame()
3839 if (BBState.ExitIsSetup) in verifyStackFrame()
3844 BBState.ExitValue -= TII->getFrameTotalSize(I); in verifyStackFrame()
3845 BBState.ExitIsSetup = true; in verifyStackFrame()
[all …]
H A DIfConversion.cpp1208 struct BBState { in AnalyzeBlock() struct
1209 BBState(MachineBasicBlock &MBB) : MBB(&MBB) {} in AnalyzeBlock() function
1217 SmallVector<BBState, 16> BBStack(1, MBB); in AnalyzeBlock()
1220 BBState &State = BBStack.back(); in AnalyzeBlock()