/external/llvm/lib/CodeGen/ |
CodePlacementOpt.cpp | 80 MachineBasicBlock *TBB = 0, *FBB = 0; 82 if (TII->AnalyzeBranch(*MBB, TBB, FBB, Cond)) 88 if (Cond.empty() && TBB) 109 MachineBasicBlock *TBB = 0, *FBB = 0; 112 if (TII->AnalyzeBranch(*MBB, TBB, FBB, Cond))
|
MachineBasicBlock.cpp | 286 MachineBasicBlock *TBB = 0, *FBB = 0; 289 bool B = TII->AnalyzeBranch(*this, TBB, FBB, Cond); 293 if (TBB) { 296 if (isLayoutSuccessor(TBB)) 301 TBB = *succ_begin(); 302 if (!isLayoutSuccessor(TBB)) 303 TII->InsertBranch(*this, TBB, 0, Cond, dl); 310 if (isLayoutSuccessor(TBB)) { 317 TII->InsertBranch(*this, TBB, 0, Cond, dl); 323 if (MBBA == TBB) std::swap(MBBB, MBBA) [all...] |
MachineLICM.cpp | 610 MachineBasicBlock *TBB = 0, *FBB = 0; 612 if (!TII->AnalyzeBranch(*BB, TBB, FBB, Cond, false) && Cond.empty()) [all...] |
MachineVerifier.cpp | 409 MachineBasicBlock *TBB = 0, *FBB = 0; 412 TBB, FBB, Cond)) { 415 if (!TBB && !FBB) { 443 } else if (TBB && !FBB && Cond.empty()) { 448 } else if (!MBB->isSuccessor(TBB)) { 462 } else if (TBB && !FBB && !Cond.empty()) { 471 } else if (!matchPair(MBB->succ_begin(), TBB, MBBI)) { 485 } else if (TBB && FBB) { 491 } else if (!matchPair(MBB->succ_begin(), TBB, FBB)) { [all...] |
BranchFolding.cpp | 188 MachineBasicBlock *MBB = I, *TBB = 0, *FBB = 0; 190 if (!TII->AnalyzeBranch(*MBB, TBB, FBB, Cond, true)) 191 MadeChange |= MBB->CorrectExtraCFGEdges(TBB, FBB, !Cond.empty()); 454 MachineBasicBlock *TBB = 0, *FBB = 0; 458 !TII->AnalyzeBranch(*CurMBB, TBB, FBB, Cond, true)) { 460 if (TBB == NextBB && !Cond.empty() && !FBB) { 873 MachineBasicBlock *TBB = 0, *FBB = 0; [all...] |
IfConversion.cpp | 82 /// TargetInstrInfo::AnalyzeBranch() (i.e. TBB, FBB, and Cond), and its 212 bool MeetIfcvtSizeLimit(MachineBasicBlock &TBB, 218 TII->isProfitableToIfCvt(TBB, TCycle, TExtra, FBB, FCycle, FExtra, 827 // TBB FBB 844 // | TBB 867 // | TBB---> exit [all...] |
/external/llvm/lib/Target/ARM/ |
ARMFastISel.cpp | [all...] |