Searched refs:getFastMathFlags (Results 1 – 9 of 9) sorted by relevance
/external/llvm/unittests/IR/ |
D | IRBuilderTest.cpp | 129 EXPECT_FALSE(Builder.getFastMathFlags().any()); in TEST_F() 138 EXPECT_FALSE(Builder.getFastMathFlags().any()); in TEST_F() 144 EXPECT_TRUE(Builder.getFastMathFlags().any()); in TEST_F() 150 EXPECT_TRUE(Builder.getFastMathFlags().any()); in TEST_F() 151 EXPECT_TRUE(Builder.getFastMathFlags().UnsafeAlgebra); in TEST_F() 168 EXPECT_TRUE(Builder.getFastMathFlags().any()); in TEST_F() 169 EXPECT_TRUE(Builder.getFastMathFlags().AllowReciprocal); in TEST_F() 179 EXPECT_FALSE(FDiv->getFastMathFlags().any()); in TEST_F()
|
/external/llvm/lib/IR/ |
D | Instruction.cpp | 175 FastMathFlags Instruction::getFastMathFlags() const { in getFastMathFlags() function in Instruction 177 return cast<FPMathOperator>(this)->getFastMathFlags(); in getFastMathFlags() 182 setFastMathFlags(I->getFastMathFlags()); in copyFastMathFlags()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 409 if (Value *V = SimplifyFMulInst(Op0, Op1, I.getFastMathFlags(), TD)) in visitFMul() 521 if (I.getFastMathFlags().any()) { in visitFMul() 1033 Res->setFastMathFlags(I.getFastMathFlags()); in visitFDiv() 1069 R->setFastMathFlags(I.getFastMathFlags()); in visitFDiv() 1100 SimpR->setFastMathFlags(I.getFastMathFlags()); in visitFDiv()
|
D | InstCombineAddSub.cpp | 781 NewInstr->setFastMathFlags(Instr->getFastMathFlags()); in createInstPostProc() 1186 if (Value *V = SimplifyFAddInst(LHS, RHS, I.getFastMathFlags(), TD)) in visitFAdd() 1523 if (Value *V = SimplifyFSubInst(Op0, Op1, I.getFastMathFlags(), TD)) in visitFSub()
|
D | InstructionCombining.cpp | 175 FastMathFlags FMF = I.getFastMathFlags(); in ClearSubclassDataAfterReassociation()
|
/external/llvm/include/llvm/IR/ |
D | Instruction.h | 228 FastMathFlags getFastMathFlags() const;
|
D | Operator.h | 293 FastMathFlags getFastMathFlags() const { in getFastMathFlags() function
|
D | IRBuilder.h | 416 FastMathFlags getFastMathFlags() const { return FMF; } in getFastMathFlags() function
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 3033 I->getFastMathFlags(), TD, TLI, DT); in SimplifyInstruction() 3043 I->getFastMathFlags(), TD, TLI, DT); in SimplifyInstruction() 3053 I->getFastMathFlags(), TD, TLI, DT); in SimplifyInstruction()
|