HomeSort by relevance Sort by last modified time
    Searched defs:FBB (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))
85 if (FBB)
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);
306 if (FBB) {
314 TII->InsertBranch(*this, FBB, 0, Cond, dl);
315 } else if (isLayoutSuccessor(FBB)) {
470 MachineBasicBlock *TBB = 0, *FBB = 0;
473 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond)) {
491 MachineFunction::iterator(FBB) == Fallthrough)
500 return FBB == 0;
511 MachineBasicBlock *TBB = 0, *FBB = 0
    [all...]
MachineVerifier.cpp 413 MachineBasicBlock *TBB = 0, *FBB = 0;
416 TBB, FBB, Cond)) {
419 if (!TBB && !FBB) {
447 } else if (TBB && !FBB && Cond.empty()) {
466 } else if (TBB && !FBB && !Cond.empty()) {
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
214 MachineBasicBlock &FBB,
218 TII->isProfitableToIfCvt(TBB, TCycle, TExtra, FBB, FCycle, FExtra,
808 // TBB FBB
827 // FBB
850 // FBB
    [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 97 milliseconds