HomeSort by relevance Sort by last modified time
    Searched refs:FastMathFlags (Results 1 - 14 of 14) sorted by null

  /external/llvm/include/llvm/IR/
Operator.h 170 class FastMathFlags {
174 FastMathFlags(unsigned F) : Flags(F) { }
185 FastMathFlags() : Flags(0)
224 (SubclassOptionalData & ~FastMathFlags::UnsafeAlgebra) |
225 (B * FastMathFlags::UnsafeAlgebra);
237 (SubclassOptionalData & ~FastMathFlags::NoNaNs) |
238 (B * FastMathFlags::NoNaNs);
242 (SubclassOptionalData & ~FastMathFlags::NoInfs) |
243 (B * FastMathFlags::NoInfs);
247 (SubclassOptionalData & ~FastMathFlags::NoSignedZeros)
    [all...]
Instruction.h 24 class FastMathFlags;
208 void setFastMathFlags(FastMathFlags FMF);
228 FastMathFlags getFastMathFlags() const;
IRBuilder.h 358 FastMathFlags FMF;
416 FastMathFlags getFastMathFlags() const { return FMF; }
425 void SetFastMathFlags(FastMathFlags NewFMF) { FMF = NewFMF; }
564 FastMathFlags FMF) const {
    [all...]
  /external/llvm/include/llvm/Analysis/
InstructionSimplify.h 43 class FastMathFlags;
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/
IRBuilderTest.cpp 121 TEST_F(IRBuilderTest, FastMathFlags) {
134 FastMathFlags FMF;
  /external/llvm/lib/AsmParser/
LLParser.h 163 FastMathFlags EatFastMathFlagsIfPresent() {
164 FastMathFlags FMF;
LLParser.cpp     [all...]
  /external/llvm/lib/IR/
Instruction.cpp 137 void Instruction::setFastMathFlags(FastMathFlags FMF) {
175 FastMathFlags Instruction::getFastMathFlags() const {
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 683 Flags |= FastMathFlags::UnsafeAlgebra;
685 Flags |= FastMathFlags::NoNaNs;
687 Flags |= FastMathFlags::NoInfs;
689 Flags |= FastMathFlags::NoSignedZeros;
691 Flags |= FastMathFlags::AllowReciprocal;
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 559 Flags |= FastMathFlags::UnsafeAlgebra;
561 Flags |= FastMathFlags::NoNaNs;
563 Flags |= FastMathFlags::NoInfs;
565 Flags |= FastMathFlags::NoSignedZeros;
567 Flags |= FastMathFlags::AllowReciprocal;
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 56 llvm::FastMathFlags FMF;
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 175 FastMathFlags FMF = I.getFastMathFlags();
    [all...]

Completed in 1711 milliseconds