Searched refs:BBState (Results 1 – 9 of 9) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/ObjCARC/ |
D | ObjCARCOpts.cpp | 179 class BBState { class 206 BBState() = default; 277 void InitFromPred(const BBState &Other); 278 void InitFromSucc(const BBState &Other); 279 void MergePred(const BBState &Other); 280 void MergeSucc(const BBState &Other); 316 const unsigned BBState::OverflowOccurredValue = 0xffffffff; 321 BBState &BBState) LLVM_ATTRIBUTE_UNUSED; 325 void BBState::InitFromPred(const BBState &Other) { in InitFromPred() 330 void BBState::InitFromSucc(const BBState &Other) { in InitFromSucc() [all …]
|
/external/llvm/lib/Transforms/ObjCARC/ |
D | ObjCARCOpts.cpp | 181 class BBState { class 208 BBState() : TopDownPathCount(0), BottomUpPathCount(0) { } in BBState() function in __anon26f503160111::BBState 279 void InitFromPred(const BBState &Other); 280 void InitFromSucc(const BBState &Other); 281 void MergePred(const BBState &Other); 282 void MergeSucc(const BBState &Other); 315 const unsigned BBState::OverflowOccurredValue = 0xffffffff; 320 BBState &BBState) LLVM_ATTRIBUTE_UNUSED; 323 void BBState::InitFromPred(const BBState &Other) { in InitFromPred() 328 void BBState::InitFromSucc(const BBState &Other) { in InitFromSucc() [all …]
|
/external/llvm/lib/CodeGen/ |
D | MachineVerifier.cpp | 1962 StackStateOfBB BBState; in verifyStackFrame() local 1968 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue; in verifyStackFrame() 1969 BBState.EntryIsSetup = SPState[StackPred->getNumber()].ExitIsSetup; in verifyStackFrame() 1970 BBState.ExitValue = BBState.EntryValue; in verifyStackFrame() 1971 BBState.ExitIsSetup = BBState.EntryIsSetup; in verifyStackFrame() 1982 if (BBState.ExitIsSetup) in verifyStackFrame() 1984 BBState.ExitValue -= Size; in verifyStackFrame() 1985 BBState.ExitIsSetup = true; in verifyStackFrame() 1994 if (!BBState.ExitIsSetup) in verifyStackFrame() 1996 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue : in verifyStackFrame() [all …]
|
D | IfConversion.cpp | 803 struct BBState { in AnalyzeBlock() struct 804 BBState(MachineBasicBlock *BB) : MBB(BB), SuccsAnalyzed(false) {} in AnalyzeBlock() argument 812 SmallVector<BBState, 16> BBStack(1, MBB); in AnalyzeBlock() 815 BBState &State = BBStack.back(); in AnalyzeBlock()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | MachineVerifier.cpp | 2265 StackStateOfBB BBState; in verifyStackFrame() local 2271 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue; in verifyStackFrame() 2272 BBState.EntryIsSetup = SPState[StackPred->getNumber()].ExitIsSetup; in verifyStackFrame() 2273 BBState.ExitValue = BBState.EntryValue; in verifyStackFrame() 2274 BBState.ExitIsSetup = BBState.EntryIsSetup; in verifyStackFrame() 2280 if (BBState.ExitIsSetup) in verifyStackFrame() 2282 BBState.ExitValue -= TII->getFrameTotalSize(I); in verifyStackFrame() 2283 BBState.ExitIsSetup = true; in verifyStackFrame() 2288 if (!BBState.ExitIsSetup) in verifyStackFrame() 2290 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue : in verifyStackFrame() [all …]
|
D | IfConversion.cpp | 1091 struct BBState { in AnalyzeBlock() struct 1092 BBState(MachineBasicBlock &MBB) : MBB(&MBB), SuccsAnalyzed(false) {} in AnalyzeBlock() function 1100 SmallVector<BBState, 16> BBStack(1, MBB); in AnalyzeBlock() 1103 BBState &State = BBStack.back(); in AnalyzeBlock()
|
/external/llvm/lib/Target/X86/ |
D | X86VZeroUpper.cpp | 308 BlockState &BBState = BlockStates[MBB.getNumber()]; in runOnMachineFunction() local 312 if (BBState.FirstUnguardedCall != MBB.end()) in runOnMachineFunction() 313 insertVZeroUpper(BBState.FirstUnguardedCall, MBB); in runOnMachineFunction() 318 if (BBState.ExitState == PASS_THROUGH) { in runOnMachineFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86VZeroUpper.cpp | 333 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()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | ObjCARC.cpp | 1292 class BBState { class 1313 BBState() : TopDownPathCount(0), BottomUpPathCount(0) {} in BBState() function in __anon1f24f85e0911::BBState 1360 void InitFromPred(const BBState &Other); 1361 void InitFromSucc(const BBState &Other); 1362 void MergePred(const BBState &Other); 1363 void MergeSucc(const BBState &Other); 1380 void BBState::InitFromPred(const BBState &Other) { in InitFromPred() 1385 void BBState::InitFromSucc(const BBState &Other) { in InitFromSucc() 1392 void BBState::MergePred(const BBState &Other) { in MergePred() 1417 void BBState::MergeSucc(const BBState &Other) { in MergeSucc() [all …]
|