Searched refs:BBState (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.2-release/contrib/llvm/lib/Target/X86/
H A DX86VZeroUpper.cpp49 // BBState - Contains the state of each MBB: unknown, clean, dirty
50 SmallVector<uint8_t, 8> BBState; member in struct:__anon2696::VZeroUpperInserter
195 assert(BBState.empty());
196 BBState.resize(MF.getNumBlockIDs(), 0);
214 BBState.clear();
234 EntryState = computeState(EntryState, BBState[(*PI)->getNumber()]);
321 if (CurState != BBState[BBNum])
324 BBState[BBNum] = CurState;
/freebsd-10.2-release/contrib/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp566 class BBState { class in namespace:__anon2754
595 BBState() : TopDownPathCount(0), BottomUpPathCount(0) { } function in class:__anon2754::BBState
654 void InitFromPred(const BBState &Other);
655 void InitFromSucc(const BBState &Other);
656 void MergePred(const BBState &Other);
657 void MergeSucc(const BBState &Other);
690 const unsigned BBState::OverflowOccurredValue = 0xffffffff;
693 void BBState::InitFromPred(const BBState &Other) {
698 void BBState
[all...]
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/
H A DMachineVerifier.cpp1664 StackStateOfBB BBState; local
1670 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue;
1671 BBState.EntryIsSetup = SPState[StackPred->getNumber()].ExitIsSetup;
1672 BBState.ExitValue = BBState.EntryValue;
1673 BBState.ExitIsSetup = BBState.EntryIsSetup;
1685 if (BBState.ExitIsSetup)
1687 BBState.ExitValue -= Size;
1688 BBState
[all...]

Completed in 73 milliseconds