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.cpp182 class BBState { class
209 BBState() = default;
288 void InitFromPred(const BBState &Other);
289 void InitFromSucc(const BBState &Other);
290 void MergePred(const BBState &Other);
291 void MergeSucc(const BBState &Other);
327 const unsigned BBState::OverflowOccurredValue = 0xffffffff;
332 BBState &BBState) LLVM_ATTRIBUTE_UNUSED;
336 void BBState::InitFromPred(const BBState &Other) { in InitFromPred()
341 void BBState::InitFromSucc(const BBState &Other) { in InitFromSucc()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86VZeroUpper.cpp333 BlockState &BBState = BlockStates[MBB.getNumber()]; in runOnMachineFunction() local
337 if (BBState.FirstUnguardedCall != MBB.end()) in runOnMachineFunction()
338 insertVZeroUpper(BBState.FirstUnguardedCall, MBB); in runOnMachineFunction()
343 if (BBState.ExitState == PASS_THROUGH) { in runOnMachineFunction()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineVerifier.cpp3967 StackStateOfBB BBState; in verifyStackFrame() local
3973 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue; in verifyStackFrame()
3974 BBState.EntryIsSetup = SPState[StackPred->getNumber()].ExitIsSetup; in verifyStackFrame()
3975 BBState.ExitValue = BBState.EntryValue; in verifyStackFrame()
3976 BBState.ExitIsSetup = BBState.EntryIsSetup; in verifyStackFrame()
3979 if ((int)MBB->getCallFrameSize() != -BBState.EntryValue) { in verifyStackFrame()
3985 << -BBState.EntryValue << '\n'; in verifyStackFrame()
3991 if (BBState.ExitIsSetup) in verifyStackFrame()
3996 BBState.ExitValue -= TII->getFrameTotalSize(I); in verifyStackFrame()
3997 BBState.ExitIsSetup = true; in verifyStackFrame()
[all …]
H A DIfConversion.cpp1227 struct BBState { in AnalyzeBlock() struct
1228 BBState(MachineBasicBlock &MBB) : MBB(&MBB) {} in AnalyzeBlock() function
1236 SmallVector<BBState, 16> BBStack(1, MBB); in AnalyzeBlock()
1239 BBState &State = BBStack.back(); in AnalyzeBlock()