HomeSort by relevance Sort by last modified time
    Searched defs:FMF (Results 1 - 9 of 9) sorted by null

  /external/llvm/unittests/IR/
IRBuilderTest.cpp 144 FastMathFlags FMF;
145 Builder.SetFastMathFlags(FMF);
150 FMF.setUnsafeAlgebra();
151 Builder.SetFastMathFlags(FMF);
180 FMF.clear();
181 FMF.setAllowReciprocal();
182 Builder.SetFastMathFlags(FMF);
198 FMF.clear();
199 FMF.setAllowReciprocal();
200 Builder.SetFastMathFlags(FMF);
    [all...]
  /external/llvm/lib/Transforms/Utils/
LoopUtils.cpp 600 FastMathFlags FMF;
601 FMF.setUnsafeAlgebra();
602 Builder.SetFastMathFlags(FMF);
  /external/llvm/lib/AsmParser/
LLParser.h 185 FastMathFlags FMF;
188 case lltok::kw_fast: FMF.setUnsafeAlgebra(); Lex.Lex(); continue;
189 case lltok::kw_nnan: FMF.setNoNaNs(); Lex.Lex(); continue;
190 case lltok::kw_ninf: FMF.setNoInfs(); Lex.Lex(); continue;
191 case lltok::kw_nsz: FMF.setNoSignedZeros(); Lex.Lex(); continue;
192 case lltok::kw_arcp: FMF.setAllowReciprocal(); Lex.Lex(); continue;
193 default: return FMF;
195 return FMF;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp     [all...]
InstructionCombining.cpp 164 FastMathFlags FMF = I.getFastMathFlags();
166 I.setFastMathFlags(FMF);
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 66 llvm::FastMathFlags FMF;
68 FMF.setUnsafeAlgebra();
70 FMF.setNoNaNs();
71 FMF.setNoInfs();
74 FMF.setNoNaNs();
77 FMF.setNoSignedZeros();
80 FMF.setAllowReciprocal();
82 Builder.SetFastMathFlags(FMF);
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 62 FastMathFlags FMF;
66 : Context(context), DefaultFPMathTag(FPMathTag), FMF() {
171 FastMathFlags getFastMathFlags() const { return FMF; }
174 void clearFastMathFlags() { FMF.clear(); }
180 void SetFastMathFlags(FastMathFlags NewFMF) { FMF = NewFMF; }
212 FastMathFlags FMF;
221 : Builder(B), FMF(B.FMF), FPMathTag(B.DefaultFPMathTag) {}
224 Builder.FMF = FMF;
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 830 FastMathFlags FMF;
832 FMF.setUnsafeAlgebra();
834 FMF.setNoNaNs();
836 FMF.setNoInfs();
838 FMF.setNoSignedZeros();
840 FMF.setAllowReciprocal();
841 return FMF;
    [all...]

Completed in 1826 milliseconds