Searched defs:TrueBB (Results 1 - 8 of 8) sorted by relevance

/external/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp817 MachineBasicBlock *TrueBB = nullptr, *FalseBB = nullptr; local
822 TII->AnalyzeBranch(MBB, TrueBB, FalseBB, Cond, false, BranchInstrs);
831 assert(((R != MipsInstrInfo::BT_Uncond) || (TrueBB == &Dst)));
836 assert((TrueBB == &Dst) || (FalseBB == &Dst));
/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp1836 BasicBlock *TrueBB, *FalseBB; local
1840 TrueBB, FalseBB)))
/external/llvm/lib/CodeGen/
H A DBranchFolding.cpp1607 MachineBasicBlock *TrueBB) {
1609 if (SuccBB != TrueBB)
1606 findFalseBlock(MachineBasicBlock *BB, MachineBasicBlock *TrueBB) argument
H A DIfConversion.cpp106 /// TrueBB / FalseBB- See AnalyzeBranch().
123 MachineBasicBlock *TrueBB; member in struct:__anon11779::IfConverter::BBInfo
131 ExtraCost(0), ExtraCost2(0), BB(nullptr), TrueBB(nullptr),
239 return BBI.IsBrAnalyzable && BBI.TrueBB == nullptr;
352 : BBI.TrueBB->getNumber()) << ") ");
377 << BBI.TrueBB->getNumber() << ",F:"
395 << BBI.TrueBB->getNumber() << ",F:"
440 MachineBasicBlock *TrueBB) {
444 if (SuccBB != TrueBB)
456 TII->InsertBranch(*BBI.BB, BBI.FalseBB, BBI.TrueBB, BB
439 findFalseBlock(MachineBasicBlock *BB, MachineBasicBlock *TrueBB) argument
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h225 TrueBB(truebb), FalseBB(falsebb), ThisBB(me), TrueProb(trueprob),
236 // TrueBB/FalseBB - the block to branch to if the setcc is true/false.
237 MachineBasicBlock *TrueBB, *FalseBB; member in struct:llvm::SelectionDAGBuilder::CaseBlock
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2015 BasicBlock *TrueBB, *FalseBB; local
2017 if (!match(TI, m_Br(m_ICmp(Pred, m_Specific(Op), m_Zero()), TrueBB, FalseBB)))
2023 if (SuccBB != (Pred == ICmpInst::ICMP_EQ ? TrueBB : FalseBB))
2025 assert(FreeInstrBB == (Pred == ICmpInst::ICMP_EQ ? FalseBB : TrueBB) &&
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp2887 // Simplifies a terminator by replacing it with a branch to TrueBB if Cond is
2893 BasicBlock *TrueBB, BasicBlock *FalseBB,
2898 // If TrueBB and FalseBB are equal, only try to preserve one copy of that
2900 BasicBlock *KeepEdge1 = TrueBB;
2901 BasicBlock *KeepEdge2 = TrueBB != FalseBB ? FalseBB : nullptr;
2920 if (TrueBB == FalseBB)
2923 Builder.CreateBr(TrueBB);
2927 BranchInst *NewBI = Builder.CreateCondBr(Cond, TrueBB, FalseBB);
2933 } else if (KeepEdge1 && (KeepEdge2 || TrueBB == FalseBB)) {
2942 // Only TrueBB wa
2892 SimplifyTerminatorOnSelect(TerminatorInst *OldTerm, Value *Cond, BasicBlock *TrueBB, BasicBlock *FalseBB, uint32_t TrueWeight, uint32_t FalseWeight) argument
2966 BasicBlock *TrueBB = SI->findCaseValue(TrueVal).getCaseSuccessor(); local
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp969 // b.ne TrueBB
971 // TrueBB:
974 // Dest = PHI [IfTrue, TrueBB], [IfFalse, OrigBB]
988 MachineBasicBlock *TrueBB = MF->CreateMachineBasicBlock(LLVM_BB); local
990 MF->insert(It, TrueBB);
998 BuildMI(MBB, DL, TII->get(AArch64::Bcc)).addImm(CondCode).addMBB(TrueBB);
1000 MBB->addSuccessor(TrueBB);
1003 // TrueBB falls through to the end.
1004 TrueBB->addSuccessor(EndBB);
1007 TrueBB
[all...]

Completed in 276 milliseconds