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

  /external/llvm/unittests/IR/
IRBuilderTest.cpp 143 FastMathFlags FMF;
144 Builder.SetFastMathFlags(FMF);
149 FMF.setUnsafeAlgebra();
150 Builder.SetFastMathFlags(FMF);
179 FMF.clear();
180 FMF.setAllowReciprocal();
181 Builder.SetFastMathFlags(FMF);
263 FastMathFlags FMF;
264 FMF.setAllowReciprocal();
265 Builder.SetFastMathFlags(FMF);
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.h 174 FastMathFlags FMF;
177 case lltok::kw_fast: FMF.setUnsafeAlgebra(); Lex.Lex(); continue;
178 case lltok::kw_nnan: FMF.setNoNaNs(); Lex.Lex(); continue;
179 case lltok::kw_ninf: FMF.setNoInfs(); Lex.Lex(); continue;
180 case lltok::kw_nsz: FMF.setNoSignedZeros(); Lex.Lex(); continue;
181 case lltok::kw_arcp: FMF.setAllowReciprocal(); Lex.Lex(); continue;
182 default: return FMF;
184 return FMF;
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 57 llvm::FastMathFlags FMF;
59 FMF.setUnsafeAlgebra();
61 FMF.setNoNaNs();
62 FMF.setNoInfs();
64 Builder.SetFastMathFlags(FMF);
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 58 FastMathFlags FMF;
62 : Context(context), DefaultFPMathTag(FPMathTag), FMF() {
180 FastMathFlags getFastMathFlags() const { return FMF; }
183 void clearFastMathFlags() { FMF.clear(); }
189 void SetFastMathFlags(FastMathFlags NewFMF) { FMF = NewFMF; }
221 FastMathFlags FMF;
230 : Builder(B), FMF(B.FMF), FPMathTag(B.DefaultFPMathTag) {}
233 Builder.FMF = FMF;
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 177 FastMathFlags FMF = I.getFastMathFlags();
179 I.setFastMathFlags(FMF);
    [all...]

Completed in 218 milliseconds