Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp186 class BBState { class
213 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 …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86VZeroUpper.cpp337 BlockState &BBState = BlockStates[MBB.getNumber()]; in runOnMachineFunction() local
341 if (BBState.FirstUnguardedCall != MBB.end()) in runOnMachineFunction()
342 insertVZeroUpper(BBState.FirstUnguardedCall, MBB); in runOnMachineFunction()
347 if (BBState.ExitState == PASS_THROUGH) { in runOnMachineFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineVerifier.cpp3136 StackStateOfBB BBState; in verifyStackFrame() local
3142 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 …]
H A DIfConversion.cpp1213 struct BBState { in AnalyzeBlock() struct
1214 BBState(MachineBasicBlock &MBB) : MBB(&MBB), SuccsAnalyzed(false) {} in AnalyzeBlock() argument
1222 SmallVector<BBState, 16> BBStack(1, MBB); in AnalyzeBlock()
1225 BBState &State = BBStack.back(); in AnalyzeBlock()