HomeSort by relevance Sort by last modified time
    Searched refs:getFastMathFlags (Results 1 - 11 of 11) sorted by null

  /external/llvm/unittests/IR/
IRBuilderTest.cpp 138 EXPECT_FALSE(Builder.getFastMathFlags().any());
147 EXPECT_FALSE(Builder.getFastMathFlags().any());
153 EXPECT_TRUE(Builder.getFastMathFlags().any());
160 EXPECT_TRUE(Builder.getFastMathFlags().any());
166 EXPECT_TRUE(Builder.getFastMathFlags().any());
167 EXPECT_TRUE(Builder.getFastMathFlags().UnsafeAlgebra);
184 EXPECT_TRUE(Builder.getFastMathFlags().any());
185 EXPECT_TRUE(Builder.getFastMathFlags().AllowReciprocal);
195 EXPECT_FALSE(FDiv->getFastMathFlags().any());
253 EXPECT_FALSE(Builder.getFastMathFlags().allowReciprocal())
    [all...]
  /external/llvm/lib/IR/
Instruction.cpp 179 FastMathFlags Instruction::getFastMathFlags() const {
181 return cast<FPMathOperator>(this)->getFastMathFlags();
186 setFastMathFlags(I->getFastMathFlags());
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 443 if (Value *V = SimplifyFMulInst(Op0, Op1, I.getFastMathFlags(), DL))
532 Builder->SetFastMathFlags(Log2->getFastMathFlags());
548 Builder->SetFastMathFlags(I.getFastMathFlags());
589 Builder->SetFastMathFlags(I.getFastMathFlags());
    [all...]
InstCombineSelect.cpp     [all...]
InstCombineAddSub.cpp 490 if (I0) Flags &= I->getFastMathFlags();
491 if (I1) Flags &= I->getFastMathFlags();
801 NewInstr->setFastMathFlags(Instr->getFastMathFlags());
    [all...]
InstructionCombining.cpp 177 FastMathFlags FMF = I.getFastMathFlags();
325 FastMathFlags Flags = I.getFastMathFlags();
326 Flags &= Op0->getFastMathFlags();
327 Flags &= Op1->getFastMathFlags();
    [all...]
  /external/llvm/include/llvm/IR/
Instruction.h 246 FastMathFlags getFastMathFlags() const;
Operator.h 297 FastMathFlags getFastMathFlags() const {
IRBuilder.h 180 FastMathFlags getFastMathFlags() const { return FMF; }
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 309 milliseconds