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 134 FastMathFlags FMF;
135 Builder.SetFastMathFlags(FMF);
140 FMF.setUnsafeAlgebra();
141 Builder.SetFastMathFlags(FMF);
163 FMF.clear();
164 FMF.setAllowReciprocal();
165 Builder.SetFastMathFlags(FMF);
  /external/llvm/lib/AsmParser/
LLParser.h 164 FastMathFlags FMF;
167 case lltok::kw_fast: FMF.setUnsafeAlgebra(); Lex.Lex(); continue;
168 case lltok::kw_nnan: FMF.setNoNaNs(); Lex.Lex(); continue;
169 case lltok::kw_ninf: FMF.setNoInfs(); Lex.Lex(); continue;
170 case lltok::kw_nsz: FMF.setNoSignedZeros(); Lex.Lex(); continue;
171 case lltok::kw_arcp: FMF.setAllowReciprocal(); Lex.Lex(); continue;
172 default: return FMF;
174 return FMF;
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 53 llvm::FastMathFlags FMF;
55 FMF.setUnsafeAlgebra();
57 FMF.setNoNaNs();
58 FMF.setNoInfs();
60 Builder.SetFastMathFlags(FMF);
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 355 FastMathFlags FMF;
360 FMF() {
364 : IRBuilderBase(C), Folder(), DefaultFPMathTag(FPMathTag), FMF() {
369 DefaultFPMathTag(FPMathTag), FMF() {
375 DefaultFPMathTag(FPMathTag), FMF() {
381 FMF() {
388 FMF() {
396 DefaultFPMathTag(FPMathTag), FMF() {
402 DefaultFPMathTag(FPMathTag), FMF() {
413 FastMathFlags getFastMathFlags() const { return FMF; }
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 175 FastMathFlags FMF = I.getFastMathFlags();
177 I.setFastMathFlags(FMF);
    [all...]

Completed in 781 milliseconds