Searched refs:IfTrue (Results 1 – 7 of 7) sorted by relevance
| /trueos/contrib/llvm/lib/Transforms/Utils/ |
| HD | BasicBlockUtils.cpp | 681 Value *llvm::GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue, in GetIfCondition() argument 736 IfTrue = Pred1; in GetIfCondition() 740 IfTrue = Pred2; in GetIfCondition() 764 IfTrue = Pred1; in GetIfCondition() 767 IfTrue = Pred2; in GetIfCondition()
|
| HD | SimplifyCFG.cpp | 1714 BasicBlock *IfTrue, *IfFalse; in FoldTwoEntryPHINode() local 1715 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse); in FoldTwoEntryPHINode() 1800 << IfTrue->getName() << " F: " << IfFalse->getName() << "\n"); in FoldTwoEntryPHINode() 1821 Value *FalseVal = PN->getIncomingValue(PN->getIncomingBlock(0) == IfTrue); in FoldTwoEntryPHINode()
|
| /trueos/contrib/llvm/include/llvm/IR/ |
| HD | Instructions.h | 2364 explicit BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore = 0); 2365 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, 2367 BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd); 2368 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, 2373 static BranchInst *Create(BasicBlock *IfTrue, Instruction *InsertBefore = 0) { 2374 return new(1) BranchInst(IfTrue, InsertBefore); 2376 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse, 2378 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertBefore); 2380 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) { 2381 return new(1) BranchInst(IfTrue, InsertAtEnd); [all …]
|
| /trueos/contrib/llvm/include/llvm/Transforms/Utils/ |
| HD | BasicBlockUtils.h | 215 Value *GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue,
|
| /trueos/contrib/llvm/lib/IR/ |
| HD | Instructions.cpp | 731 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 …]
|
| /trueos/contrib/llvm/lib/Target/AArch64/ |
| HD | AArch64ISelLowering.cpp | 2441 SDValue IfTrue = Op.getOperand(2); in LowerSELECT_CC() local 2466 CmpOp, IfTrue, IfFalse, A64cc); in LowerSELECT_CC() 2479 SetCC, IfTrue, IfFalse, A64cc); in LowerSELECT_CC() 2484 SetCC, IfTrue, A64SELECT_CC, A64cc); in LowerSELECT_CC() 2496 SDValue IfTrue = Op.getOperand(1); in LowerSELECT() local 2509 A64CMP, IfTrue, IfFalse, in LowerSELECT()
|
| HD | AArch64InstrInfo.td | 42 // (outs Result), (ins NZCV, IfTrue, IfFalse, Condition)
|