Searched refs:NegVal (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSelect.cpp | 1029 Value *NegVal; // Compute -Z in visitSelectInst() local 1031 NegVal = Builder->CreateFNeg(SubOp->getOperand(1)); in visitSelectInst() 1032 if (Instruction *NegInst = dyn_cast<Instruction>(NegVal)) { in visitSelectInst() 1038 NegVal = Builder->CreateNeg(SubOp->getOperand(1)); in visitSelectInst() 1042 Value *NewFalseOp = NegVal; in visitSelectInst()
|
D | InstCombineCompares.cpp | 1886 if (Value *NegVal = dyn_castNegVal(BOp1)) in visitICmpInstWithInstAndIntCst() local 1887 return new ICmpInst(ICI.getPredicate(), BOp0, NegVal); in visitICmpInstWithInstAndIntCst() 1888 if (Value *NegVal = dyn_castNegVal(BOp0)) in visitICmpInstWithInstAndIntCst() local 1889 return new ICmpInst(ICI.getPredicate(), NegVal, BOp1); in visitICmpInstWithInstAndIntCst()
|
/external/llvm/lib/Transforms/Scalar/ |
D | Reassociate.cpp | 1014 Value *NegVal = NegateValue(Sub->getOperand(1), Sub, ToRedo); in BreakUpSubtract() local 1015 BinaryOperator *New = CreateAdd(Sub->getOperand(0), NegVal, "", Sub, Sub); in BreakUpSubtract()
|