Searched refs:NotCond (Results 1 – 5 of 5) sorted by relevance
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSelect.cpp | 930 Value *NotCond = Builder->CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local 931 return BinaryOperator::CreateAnd(NotCond, FalseVal); in visitSelectInst() 939 Value *NotCond = Builder->CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local 940 return BinaryOperator::CreateOr(NotCond, TrueVal); in visitSelectInst() 975 Value *NotCond = Builder->CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local 976 return new ZExtInst(NotCond, SelType); in visitSelectInst() 981 Value *NotCond = Builder->CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local 982 return new SExtInst(NotCond, SelType); in visitSelectInst()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSelect.cpp | 1560 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local 1561 return BinaryOperator::CreateAnd(NotCond, FalseVal); in visitSelectInst() 1569 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local 1570 return BinaryOperator::CreateOr(NotCond, TrueVal); in visitSelectInst() 1606 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local 1607 return new ZExtInst(NotCond, SelType); in visitSelectInst() 1612 Value *NotCond = Builder.CreateNot(CondVal, "not." + CondVal->getName()); in visitSelectInst() local 1613 return new SExtInst(NotCond, SelType); in visitSelectInst()
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 2431 Instruction *NotCond = cast<Instruction>( in FoldBranchToCommonDest() local 2434 Builder.CreateBinOp(Instruction::And, NotCond, New, "and.cond")); in FoldBranchToCommonDest() 2445 Instruction *NotCond = cast<Instruction>( in FoldBranchToCommonDest() local 2448 Instruction::Or, NotCond, MergedCond, "or.cond")); in FoldBranchToCommonDest()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 2784 Instruction *NotCond = cast<Instruction>( in FoldBranchToCommonDest() local 2787 Builder.CreateBinOp(Instruction::And, NotCond, New, "and.cond")); in FoldBranchToCommonDest() 2798 Instruction *NotCond = cast<Instruction>( in FoldBranchToCommonDest() local 2801 Instruction::Or, NotCond, MergedCond, "or.cond")); in FoldBranchToCommonDest()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 7074 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); in foldSelectOfConstants() local 7076 NotCond = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, NotCond); in foldSelectOfConstants() 7077 return NotCond; in foldSelectOfConstants() 7081 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); in foldSelectOfConstants() local 7083 NotCond = DAG.getNode(ISD::SIGN_EXTEND, DL, VT, NotCond); in foldSelectOfConstants() 7084 return NotCond; in foldSelectOfConstants() 7135 SDValue NotCond = in foldSelectOfConstants() local 7138 return NotCond; in foldSelectOfConstants() 7139 return DAG.getZExtOrTrunc(NotCond, DL, VT); in foldSelectOfConstants()
|