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

  /external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp 143 // $fbb:
149 // $vr0 = phi($vr2, $fbb, $vr1, $tbb)
158 MachineBasicBlock *FBB = F->CreateMachineBasicBlock(LLVM_BB);
161 F->insert(It, FBB);
171 BB->addSuccessor(FBB);
173 FBB->addSuccessor(Sink);
179 // Fill $FBB.
181 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::ADDiu), VR2)
183 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::B)).addMBB(Sink)
    [all...]
  /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 354 MachineBasicBlock *TBB = 0, *FBB = 0;
357 bool B = TII->AnalyzeBranch(*this, TBB, FBB, Cond);
388 if (FBB) {
396 TII->InsertBranch(*this, FBB, 0, Cond, dl);
397 } else if (isLayoutSuccessor(FBB)) {
603 MachineBasicBlock *TBB = 0, *FBB = 0;
606 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond)) {
621 MachineFunction::iterator(FBB) == Fallthrough)
630 return FBB == 0;
646 MachineBasicBlock *TBB = 0, *FBB = 0
    [all...]
MachineBlockPlacement.cpp     [all...]
BranchFolding.cpp 197 MachineBasicBlock *MBB = I, *TBB = 0, *FBB = 0;
199 if (!TII->AnalyzeBranch(*MBB, TBB, FBB, Cond, true))
200 MadeChange |= MBB->CorrectExtraCFGEdges(TBB, FBB, !Cond.empty());
461 MachineBasicBlock *TBB = 0, *FBB = 0;
465 !TII->AnalyzeBranch(*CurMBB, TBB, FBB, Cond, true)) {
467 if (TBB == NextBB && !Cond.empty() && !FBB) {
    [all...]
IfConversion.cpp 83 /// TargetInstrInfo::AnalyzeBranch() (i.e. TBB, FBB, and Cond), and its
218 MachineBasicBlock &FBB,
222 TII->isProfitableToIfCvt(TBB, TCycle, TExtra, FBB, FCycle, FExtra,
816 // TBB FBB
835 // FBB
858 // FBB
    [all...]
MachineLICM.cpp 804 MachineBasicBlock *TBB = 0, *FBB = 0;
806 if (!TII->AnalyzeBranch(*BB, TBB, FBB, Cond, false) && Cond.empty())
    [all...]
MachineVerifier.cpp 541 MachineBasicBlock *TBB = 0, *FBB = 0;
544 TBB, FBB, Cond)) {
547 if (!TBB && !FBB) {
575 } else if (TBB && !FBB && Cond.empty()) {
594 } else if (TBB && !FBB && !Cond.empty()) {
625 } else if (TBB && FBB) {
630 if (FBB != TBB)
639 } else if (!matchPair(MBB->succ_begin(), TBB, FBB)) {
    [all...]
  /external/llvm/unittests/IR/
IRBuilderTest.cpp 82 BasicBlock *FBB = BasicBlock::Create(getGlobalContext(), "", F);
84 BranchInst *BI = Builder.CreateCondBr(Builder.getTrue(), TBB, FBB);
89 EXPECT_EQ(FBB, TI->getSuccessor(1));
93 BI = Builder.CreateCondBr(Builder.getTrue(), TBB, FBB, Weights);
98 EXPECT_EQ(FBB, TI->getSuccessor(1));
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]

Completed in 1170 milliseconds