HomeSort by relevance Sort by last modified time
    Searched refs:FMF (Results 1 - 12 of 12) 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;
LLParser.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
InstructionSimplify.h 64 Value *SimplifyFAddInst(Value *LHS, Value *RHS, FastMathFlags FMF,
71 Value *SimplifyFSubInst(Value *LHS, Value *RHS, FastMathFlags FMF,
79 FastMathFlags FMF,
  /external/llvm/include/llvm/IR/
IRBuilder.h 358 FastMathFlags FMF;
363 FMF() {
367 : IRBuilderBase(C), Folder(), DefaultFPMathTag(FPMathTag), FMF() {
372 DefaultFPMathTag(FPMathTag), FMF() {
378 DefaultFPMathTag(FPMathTag), FMF() {
384 FMF() {
391 FMF() {
399 DefaultFPMathTag(FPMathTag), FMF() {
405 DefaultFPMathTag(FPMathTag), FMF() {
416 FastMathFlags getFastMathFlags() const { return FMF; }
    [all...]
Operator.h 257 void setFastMathFlags(FastMathFlags FMF) {
258 SubclassOptionalData |= FMF.Flags;
Instruction.h 208 void setFastMathFlags(FastMathFlags FMF);
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 56 llvm::FastMathFlags FMF;
58 FMF.setUnsafeAlgebra();
60 FMF.setNoNaNs();
61 FMF.setNoInfs();
63 Builder.SetFastMathFlags(FMF);
    [all...]
  /external/llvm/lib/IR/
Instruction.cpp 137 void Instruction::setFastMathFlags(FastMathFlags FMF) {
139 cast<FPMathOperator>(this)->setFastMathFlags(FMF);
  /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 240 milliseconds