Home
last modified time | relevance | path

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

/trueos/contrib/llvm/lib/Transforms/Utils/
HDBasicBlockUtils.cpp681 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()
HDSimplifyCFG.cpp1714 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/
HDInstructions.h2364 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/
HDBasicBlockUtils.h215 Value *GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue,
/trueos/contrib/llvm/lib/IR/
HDInstructions.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 …]
/trueos/contrib/llvm/lib/Target/AArch64/
HDAArch64ISelLowering.cpp2441 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()
HDAArch64InstrInfo.td42 // (outs Result), (ins NZCV, IfTrue, IfFalse, Condition)