Home
last modified time | relevance | path

Searched refs:FastMathFlags (Results 1 – 13 of 13) sorted by relevance

/external/llvm/include/llvm/IR/
DOperator.h170 class FastMathFlags {
174 FastMathFlags(unsigned F) : Flags(F) { } in FastMathFlags() function
185 FastMathFlags() : Flags(0) in FastMathFlags() function
224 (SubclassOptionalData & ~FastMathFlags::UnsafeAlgebra) | in setHasUnsafeAlgebra()
225 (B * FastMathFlags::UnsafeAlgebra); in setHasUnsafeAlgebra()
237 (SubclassOptionalData & ~FastMathFlags::NoNaNs) | in setHasNoNaNs()
238 (B * FastMathFlags::NoNaNs); in setHasNoNaNs()
242 (SubclassOptionalData & ~FastMathFlags::NoInfs) | in setHasNoInfs()
243 (B * FastMathFlags::NoInfs); in setHasNoInfs()
247 (SubclassOptionalData & ~FastMathFlags::NoSignedZeros) | in setHasNoSignedZeros()
[all …]
DInstruction.h24 class FastMathFlags; variable
208 void setFastMathFlags(FastMathFlags FMF);
228 FastMathFlags getFastMathFlags() const;
DIRBuilder.h355 FastMathFlags FMF;
413 FastMathFlags getFastMathFlags() const { return FMF; } in getFastMathFlags()
422 void SetFastMathFlags(FastMathFlags NewFMF) { FMF = NewFMF; } in SetFastMathFlags()
561 FastMathFlags FMF) const { in AddFPMathAttributes()
/external/llvm/include/llvm/Analysis/
DInstructionSimplify.h43 class FastMathFlags; variable
64 Value *SimplifyFAddInst(Value *LHS, Value *RHS, FastMathFlags FMF,
71 Value *SimplifyFSubInst(Value *LHS, Value *RHS, FastMathFlags FMF,
79 FastMathFlags FMF,
/external/llvm/unittests/IR/
DIRBuilderTest.cpp121 TEST_F(IRBuilderTest, FastMathFlags) { in TEST_F() argument
134 FastMathFlags FMF; in TEST_F()
/external/llvm/lib/IR/
DInstruction.cpp137 void Instruction::setFastMathFlags(FastMathFlags FMF) { in setFastMathFlags()
175 FastMathFlags Instruction::getFastMathFlags() const { in getFastMathFlags()
/external/llvm/lib/AsmParser/
DLLParser.h163 FastMathFlags EatFastMathFlagsIfPresent() { in EatFastMathFlagsIfPresent()
164 FastMathFlags FMF; in EatFastMathFlagsIfPresent()
DLLParser.cpp3226 FastMathFlags FMF = EatFastMathFlagsIfPresent(); in ParseInstruction()
/external/llvm/lib/Analysis/
DInstructionSimplify.cpp867 static Value *SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF, in SimplifyFAddInst()
909 static Value *SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF, in SimplifyFSubInst()
946 FastMathFlags FMF, in SimplifyFMulInst()
1036 Value *llvm::SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF, in SimplifyFAddInst()
1042 Value *llvm::SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF, in SimplifyFSubInst()
1049 FastMathFlags FMF, in SimplifyFMulInst()
2850 return SimplifyFAddInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse); in SimplifyBinOp()
2856 return SimplifyFSubInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse); in SimplifyBinOp()
2860 return SimplifyFMulInst (LHS, RHS, FastMathFlags(), Q, MaxRecurse); in SimplifyBinOp()
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp600 Flags |= FastMathFlags::UnsafeAlgebra; in GetOptimizationFlags()
602 Flags |= FastMathFlags::NoNaNs; in GetOptimizationFlags()
604 Flags |= FastMathFlags::NoInfs; in GetOptimizationFlags()
606 Flags |= FastMathFlags::NoSignedZeros; in GetOptimizationFlags()
608 Flags |= FastMathFlags::AllowReciprocal; in GetOptimizationFlags()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp2116 FastMathFlags FMF; in ParseFunctionBody()
2117 if (0 != (Record[OpNum] & FastMathFlags::UnsafeAlgebra)) in ParseFunctionBody()
2119 if (0 != (Record[OpNum] & FastMathFlags::NoNaNs)) in ParseFunctionBody()
2121 if (0 != (Record[OpNum] & FastMathFlags::NoInfs)) in ParseFunctionBody()
2123 if (0 != (Record[OpNum] & FastMathFlags::NoSignedZeros)) in ParseFunctionBody()
2125 if (0 != (Record[OpNum] & FastMathFlags::AllowReciprocal)) in ParseFunctionBody()
/external/clang/lib/CodeGen/
DCodeGenFunction.cpp53 llvm::FastMathFlags FMF; in CodeGenFunction()
/external/llvm/lib/Transforms/InstCombine/
DInstructionCombining.cpp175 FastMathFlags FMF = I.getFastMathFlags(); in ClearSubclassDataAfterReassociation()