Home
last modified time | relevance | path

Searched refs:isFNeg (Results 1 – 10 of 10) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
DReassociate.cpp293 !BinaryOperator::isFNeg(I)) in getRank()
662 (Opcode == Instruction::FMul && BinaryOperator::isFNeg(BO))) { in LinearizeExprTree()
933 if (!BinaryOperator::isNeg(U) && !BinaryOperator::isFNeg(U)) in NegateValue()
978 if (BinaryOperator::isNeg(Sub) || BinaryOperator::isFNeg(Sub)) in ShouldBreakUpSubtract()
1528 if (!BinaryOperator::isNeg(TheOp) && !BinaryOperator::isFNeg(TheOp) && in OptimizeAdd()
1533 if (BinaryOperator::isNeg(TheOp) || BinaryOperator::isFNeg(TheOp)) in OptimizeAdd()
1544 (BinaryOperator::isNeg(TheOp) || BinaryOperator::isFNeg(TheOp))) in OptimizeAdd()
2109 } else if (BinaryOperator::isFNeg(I)) { in OptimizeInst()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineInternal.h54 if (BinaryOperator::isNeg(V) || BinaryOperator::isFNeg(V) || in getComplexity()
DInstCombineMulDivRem.cpp653 if (BinaryOperator::isFNeg(Opnd0, IgnoreZeroSign)) { in visitFMul()
DInstCombineCasts.cpp1363 if (BinaryOperator::isFNeg(OpI)) { in visitFPTrunc()
DInstructionCombining.cpp685 if (BinaryOperator::isFNeg(V, IgnoreZeroSign)) in dyn_castFNegVal()
/external/llvm/include/llvm/IR/
DInstrTypes.h505 static bool isFNeg(const Value *V, bool IgnoreZeroSign=false);
/external/llvm/lib/Analysis/
DInstructionSimplify.cpp1138 if ((BinaryOperator::isFNeg(Op0, /*IgnoreZeroSign=*/true) && in SimplifyFDivInst()
1140 (BinaryOperator::isFNeg(Op1, /*IgnoreZeroSign=*/true) && in SimplifyFDivInst()
/external/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp1547 if (BinaryOperator::isFNeg(I)) in selectOperator()
/external/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp1054 if (BinaryOperator::isFNeg(Op1)) { in optimizeCos()
/external/llvm/lib/IR/
DInstructions.cpp2110 bool BinaryOperator::isFNeg(const Value *V, bool IgnoreZeroSign) { in isFNeg() function in BinaryOperator