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

  /external/llvm/unittests/IR/
IRBuilderTest.cpp 83 BasicBlock *FBB = BasicBlock::Create(Ctx, "", F);
85 BranchInst *BI = Builder.CreateCondBr(Builder.getTrue(), TBB, FBB);
90 EXPECT_EQ(FBB, TI->getSuccessor(1));
94 BI = Builder.CreateCondBr(Builder.getTrue(), TBB, FBB, Weights);
99 EXPECT_EQ(FBB, TI->getSuccessor(1));
  /external/llvm/lib/Target/AArch64/
AArch64BranchRelaxation.cpp 406 MachineBasicBlock *TBB, *FBB;
408 TII->AnalyzeBranch(*MBB, TBB, FBB, Cond, false);
420 MBB->replaceSuccessor(FBB, NewBB);
421 NewBB->addSuccessor(FBB);
AArch64ConditionalCompares.cpp 498 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
499 if (TII->AnalyzeBranch(*Head, TBB, FBB, HeadCond)) {
526 TBB = FBB = nullptr;
527 if (TII->AnalyzeBranch(*CmpBB, TBB, FBB, CmpBBCond)) {
AArch64FastISel.cpp 763 MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
782 FastEmitBranch(FBB, DbgLoc);
813 std::swap(TBB, FBB);
820 FastEmitBranch(FBB, DbgLoc);
826 MachineBasicBlock *Target = (Imm == 0) ? FBB : TBB;
852 std::swap(TBB, FBB);
860 FastEmitBranch(FBB, DbgLoc);
    [all...]
  /external/llvm/lib/CodeGen/
EarlyIfConversion.cpp 72 // | [TF]BB FBB TBB
77 // Instructions in the conditional blocks TBB and/or FBB are spliced into the
97 MachineBasicBlock *FBB;
99 /// isTriangle - When there is no 'else' block, either TBB or FBB will be
101 bool isTriangle() const { return TBB == Tail || FBB == Tail; }
107 MachineBasicBlock *getFPred() const { return FBB == Tail ? Head : FBB; }
137 /// and FBB.
342 TBB = FBB = Tail = nullptr;
389 if (TII->AnalyzeBranch(*Head, TBB, FBB, Cond))
    [all...]
MachineBasicBlock.cpp 397 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
400 bool B = TII->AnalyzeBranch(*this, TBB, FBB, Cond);
431 if (FBB) {
439 TII->InsertBranch(*this, FBB, nullptr, Cond, dl);
440 } else if (isLayoutSuccessor(FBB)) {
646 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
649 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond)) {
664 MachineFunction::iterator(FBB) == Fallthrough)
673 return FBB == nullptr;
694 MachineBasicBlock *TBB = nullptr, *FBB = nullptr
    [all...]
MachineBlockPlacement.cpp     [all...]
BranchFolding.cpp 205 MachineBasicBlock *MBB = I, *TBB = nullptr, *FBB = nullptr;
207 if (!TII->AnalyzeBranch(*MBB, TBB, FBB, Cond, true))
208 MadeChange |= MBB->CorrectExtraCFGEdges(TBB, FBB, !Cond.empty());
470 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
474 !TII->AnalyzeBranch(*CurMBB, TBB, FBB, Cond, true)) {
476 if (TBB == NextBB && !Cond.empty() && !FBB) {
    [all...]
MachineLICM.cpp 808 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
810 if (!TII->AnalyzeBranch(*BB, TBB, FBB, Cond, false) && Cond.empty())
    [all...]
MachineVerifier.cpp 555 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
558 TBB, FBB, Cond)) {
561 if (!TBB && !FBB) {
589 } else if (TBB && !FBB && Cond.empty()) {
608 } else if (TBB && !FBB && !Cond.empty()) {
639 } else if (TBB && FBB) {
644 if (FBB != TBB)
653 } else if (!matchPair(MBB->succ_begin(), TBB, FBB)) {
    [all...]
IfConversion.cpp 88 /// TargetInstrInfo::AnalyzeBranch() (i.e. TBB, FBB, and Cond), and its
225 MachineBasicBlock &FBB,
229 TII->isProfitableToIfCvt(TBB, TCycle, TExtra, FBB, FCycle, FExtra,
823 // TBB FBB
842 // FBB
865 // FBB
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 686 MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
698 std::swap(TBB, FBB);
710 FastEmitBranch(FBB, DbgLoc);
717 MachineBasicBlock *Target = (Imm == 0) ? FBB : TBB;
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]

Completed in 176 milliseconds