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

  /external/llvm/lib/IR/
Instruction.cpp 100 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
101 cast<FPMathOperator>(this)->setHasUnsafeAlgebra(B);
107 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
108 cast<FPMathOperator>(this)->setHasNoNaNs(B);
114 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
115 cast<FPMathOperator>(this)->setHasNoInfs(B);
122 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
123 cast<FPMathOperator>(this)->setHasNoSignedZeros(B);
130 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
131 cast<FPMathOperator>(this)->setHasAllowReciprocal(B)
    [all...]
AsmWriter.cpp 758 if (const FPMathOperator *FPO = dyn_cast<const FPMathOperator>(U)) {
    [all...]
Instructions.cpp     [all...]
  /external/llvm/unittests/IR/
InstructionsTest.cpp 240 TEST(InstructionsTest, FPMathOperator) {
247 EXPECT_TRUE(isa<FPMathOperator>(V1));
248 FPMathOperator *O1 = cast<FPMathOperator>(V1);
  /external/llvm/include/llvm/IR/
Operator.h 172 friend class FPMathOperator;
216 /// FPMathOperator - Utility class for floating point operations which can have
218 class FPMathOperator : public Operator {
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 597 } else if (const FPMathOperator *FPMO =
598 dyn_cast<const FPMathOperator>(V)) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 169 FPMathOperator *FPMO = dyn_cast<FPMathOperator>(&I);
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 554 } else if (const FPMathOperator *FPMO =
555 dyn_cast<const FPMathOperator>(V)) {
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 83 milliseconds