Searched refs:FastMathFlags (Results 1 – 13 of 13) sorted by relevance
/external/llvm/include/llvm/IR/ |
D | Operator.h | 170 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 …]
|
D | Instruction.h | 24 class FastMathFlags; variable 208 void setFastMathFlags(FastMathFlags FMF); 228 FastMathFlags getFastMathFlags() const;
|
D | IRBuilder.h | 355 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/ |
D | InstructionSimplify.h | 43 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/ |
D | IRBuilderTest.cpp | 121 TEST_F(IRBuilderTest, FastMathFlags) { in TEST_F() argument 134 FastMathFlags FMF; in TEST_F()
|
/external/llvm/lib/IR/ |
D | Instruction.cpp | 137 void Instruction::setFastMathFlags(FastMathFlags FMF) { in setFastMathFlags() 175 FastMathFlags Instruction::getFastMathFlags() const { in getFastMathFlags()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.h | 163 FastMathFlags EatFastMathFlagsIfPresent() { in EatFastMathFlagsIfPresent() 164 FastMathFlags FMF; in EatFastMathFlagsIfPresent()
|
D | LLParser.cpp | 3226 FastMathFlags FMF = EatFastMathFlagsIfPresent(); in ParseInstruction()
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 867 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/ |
D | BitcodeWriter.cpp | 600 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/ |
D | BitcodeReader.cpp | 2116 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/ |
D | CodeGenFunction.cpp | 53 llvm::FastMathFlags FMF; in CodeGenFunction()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 175 FastMathFlags FMF = I.getFastMathFlags(); in ClearSubclassDataAfterReassociation()
|