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

  /external/llvm/unittests/VMCore/
IRBuilderTest.cpp 79 BasicBlock *FBB = BasicBlock::Create(getGlobalContext(), "", F);
81 BranchInst *BI = Builder.CreateCondBr(Builder.getTrue(), TBB, FBB);
86 EXPECT_EQ(FBB, TI->getSuccessor(1));
90 BI = Builder.CreateCondBr(Builder.getTrue(), TBB, FBB, Weights);
95 EXPECT_EQ(FBB, TI->getSuccessor(1));
  /external/llvm/lib/CodeGen/
CodePlacementOpt.cpp 77 MachineBasicBlock *TBB = 0, *FBB = 0;
79 if (TII->AnalyzeBranch(*MBB, TBB, FBB, Cond))
82 if (FBB)
106 MachineBasicBlock *TBB = 0, *FBB = 0;
109 if (TII->AnalyzeBranch(*MBB, TBB, FBB, Cond))
EarlyIfConversion.cpp 71 // | [TF]BB FBB TBB
76 // Instructions in the conditional blocks TBB and/or FBB are spliced into the
96 MachineBasicBlock *FBB;
98 /// isTriangle - When there is no 'else' block, either TBB or FBB will be
100 bool isTriangle() const { return TBB == Tail || FBB == Tail; }
106 MachineBasicBlock *getFPred() const { return FBB == Tail ? Head : FBB; }
136 /// and FBB.
341 TBB = FBB = Tail = 0;
388 if (TII->AnalyzeBranch(*Head, TBB, FBB, Cond))
    [all...]
MachineBasicBlock.cpp 351 MachineBasicBlock *TBB = 0, *FBB = 0;
354 bool B = TII->AnalyzeBranch(*this, TBB, FBB, Cond);
385 if (FBB) {
393 TII->InsertBranch(*this, FBB, 0, Cond, dl);
394 } else if (isLayoutSuccessor(FBB)) {
600 MachineBasicBlock *TBB = 0, *FBB = 0;
603 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond)) {
618 MachineFunction::iterator(FBB) == Fallthrough)
627 return FBB == 0;
643 MachineBasicBlock *TBB = 0, *FBB = 0
    [all...]
MachineBlockPlacement.cpp     [all...]
BranchFolding.cpp 198 MachineBasicBlock *MBB = I, *TBB = 0, *FBB = 0;
200 if (!TII->AnalyzeBranch(*MBB, TBB, FBB, Cond, true))
201 MadeChange |= MBB->CorrectExtraCFGEdges(TBB, FBB, !Cond.empty());
463 MachineBasicBlock *TBB = 0, *FBB = 0;
467 !TII->AnalyzeBranch(*CurMBB, TBB, FBB, Cond, true)) {
469 if (TBB == NextBB && !Cond.empty() && !FBB) {
    [all...]
IfConversion.cpp 82 /// TargetInstrInfo::AnalyzeBranch() (i.e. TBB, FBB, and Cond), and its
217 MachineBasicBlock &FBB,
221 TII->isProfitableToIfCvt(TBB, TCycle, TExtra, FBB, FCycle, FExtra,
815 // TBB FBB
834 // FBB
857 // FBB
    [all...]
MachineLICM.cpp 804 MachineBasicBlock *TBB = 0, *FBB = 0;
806 if (!TII->AnalyzeBranch(*BB, TBB, FBB, Cond, false) && Cond.empty())
    [all...]
MachineVerifier.cpp 527 MachineBasicBlock *TBB = 0, *FBB = 0;
530 TBB, FBB, Cond)) {
533 if (!TBB && !FBB) {
561 } else if (TBB && !FBB && Cond.empty()) {
580 } else if (TBB && !FBB && !Cond.empty()) {
611 } else if (TBB && FBB) {
616 if (FBB != TBB)
625 } else if (!matchPair(MBB->succ_begin(), TBB, FBB)) {
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]

Completed in 215 milliseconds