Home
last modified time | relevance | path

Searched refs:IfTrue (Results 1 – 7 of 7) sorted by relevance

/external/llvm/lib/Transforms/Utils/
DBasicBlockUtils.cpp678 Value *llvm::GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue, in GetIfCondition() argument
733 IfTrue = Pred1; in GetIfCondition()
737 IfTrue = Pred2; in GetIfCondition()
761 IfTrue = Pred1; in GetIfCondition()
764 IfTrue = Pred2; in GetIfCondition()
DSimplifyCFG.cpp1693 BasicBlock *IfTrue, *IfFalse; in FoldTwoEntryPHINode() local
1694 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse); in FoldTwoEntryPHINode()
1779 << IfTrue->getName() << " F: " << IfFalse->getName() << "\n"); in FoldTwoEntryPHINode()
1800 Value *FalseVal = PN->getIncomingValue(PN->getIncomingBlock(0) == IfTrue); in FoldTwoEntryPHINode()
/external/llvm/include/llvm/Transforms/Utils/
DBasicBlockUtils.h215 Value *GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue,
/external/llvm/include/llvm/IR/
DInstructions.h2372 explicit BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore = 0);
2373 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
2375 BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd);
2376 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
2381 static BranchInst *Create(BasicBlock *IfTrue, Instruction *InsertBefore = 0) {
2382 return new(1) BranchInst(IfTrue, InsertBefore);
2384 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
2386 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertBefore);
2388 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) {
2389 return new(1) BranchInst(IfTrue, InsertAtEnd);
[all …]
/external/llvm/lib/IR/
DInstructions.cpp731 BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore) in BranchInst() argument
732 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, in BranchInst()
735 assert(IfTrue != 0 && "Branch destination may not be null!"); in BranchInst()
736 Op<-1>() = IfTrue; in BranchInst()
738 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, in BranchInst() argument
740 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, in BranchInst()
743 Op<-1>() = IfTrue; in BranchInst()
751 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) in BranchInst() argument
752 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, in BranchInst()
755 assert(IfTrue != 0 && "Branch destination may not be null!"); in BranchInst()
[all …]
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp2218 SDValue IfTrue = Op.getOperand(2); in LowerSELECT_CC() local
2243 CmpOp, IfTrue, IfFalse, A64cc); in LowerSELECT_CC()
2256 SetCC, IfTrue, IfFalse, A64cc); in LowerSELECT_CC()
2261 SetCC, IfTrue, A64SELECT_CC, A64cc); in LowerSELECT_CC()
2273 SDValue IfTrue = Op.getOperand(1); in LowerSELECT() local
2286 A64CMP, IfTrue, IfFalse, in LowerSELECT()
DAArch64InstrInfo.td40 // (outs Result), (ins NZCV, IfTrue, IfFalse, Condition)