HomeSort by relevance Sort by last modified time
    Searched defs:TBB (Results 1 - 7 of 7) sorted by null

  /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...]
MachineVerifier.cpp 413 MachineBasicBlock *TBB = 0, *FBB = 0;
416 TBB, FBB, Cond)) {
419 if (!TBB && !FBB) {
447 } else if (TBB && !FBB && Cond.empty()) {
452 } else if (!MBB->isSuccessor(TBB)) {
466 } else if (TBB && !FBB && !Cond.empty()) {
475 } else if (!matchPair(MBB->succ_begin(), TBB, MBBI)) {
489 } else if (TBB && FBB) {
495 } 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 81 /// TargetInstrInfo::AnalyzeBranch() (i.e. TBB, FBB, and Cond), and its
212 bool MeetIfcvtSizeLimit(MachineBasicBlock &TBB,
218 TII->isProfitableToIfCvt(TBB, TCycle, TExtra, FBB, FCycle, FExtra,
808 // TBB FBB
825 // | TBB
848 // | TBB---> exit
    [all...]
MachineLICM.cpp 693 MachineBasicBlock *TBB = 0, *FBB = 0;
695 if (!TII->AnalyzeBranch(*BB, TBB, FBB, Cond, false) && Cond.empty())
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]

Completed in 65 milliseconds