Home
last modified time | relevance | path

Searched refs:NotCond (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineSelect.cpp664 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst() local
665 return BinaryOperator::CreateAnd(NotCond, FalseVal); in visitSelectInst()
672 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst() local
673 return BinaryOperator::CreateOr(NotCond, TrueVal); in visitSelectInst()
697 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst() local
698 return new ZExtInst(NotCond, SI.getType()); in visitSelectInst()
703 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); in visitSelectInst() local
704 return new SExtInst(NotCond, SI.getType()); in visitSelectInst()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp930 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/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp2431 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()