HomeSort by relevance Sort by last modified time
    Searched refs:FMul (Results 1 - 25 of 41) sorted by null

1 2

  /external/llvm/lib/Target/Mips/
MipsOs16.cpp 69 case Instruction::FMul:
  /external/llvm/lib/IR/
Instruction.cpp 207 case FMul: return "fmul";
470 case FMul:
490 case FMul:
Constants.cpp     [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCUtil.cpp 218 case Instruction::Mul: case Instruction::FMul:
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 10 // This file implements the visit functions for mul, fmul, sdiv, udiv, fdiv,
322 if (I->getOpcode() != Instruction::FMul || !I->hasUnsafeAlgebra())
361 /// true iff the given value is FMul or FDiv with one and only one operand
365 if (!I || (I->getOpcode() != Instruction::FMul &&
379 /// The input \p FMulOrDiv is a FMul/FDiv with one and only one operand
398 if (FMulOrDiv->getOpcode() == Instruction::FMul) {
459 // (fmul X, -1.0) --> (fsub -0.0, X)
555 Value *FMul = Builder->CreateFMul(N0, N1);
556 FMul->takeName(&I);
557 return ReplaceInstUsesWith(I, FMul);
    [all...]
InstCombineVectorOps.cpp 614 case Instruction::FMul:
677 case Instruction::FMul:
776 case Instruction::FMul:
    [all...]
InstCombineAddSub.cpp 394 if (I->getOpcode() == Instruction::FMul) {
451 if (I0->getOpcode() == Instruction::FMul)
840 // <C, V> "fmul V, C" false
    [all...]
  /external/llvm/lib/Analysis/
CostModel.cpp 400 case Instruction::FMul:
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 764 case Instruction::FMul:
799 case Instruction::FMul:
814 case Instruction::FMul:
838 case Instruction::FMul:
    [all...]
  /external/llvm/lib/CodeGen/
BasicTargetTransformInfo.cpp 602 return TopTTI->getArithmeticInstrCost(BinaryOperator::FMul, RetTy) +
TargetLoweringBase.cpp     [all...]
  /external/llvm/include/llvm/IR/
PatternMatch.h 424 inline BinaryOp_match<LHS, RHS, Instruction::FMul>
426 return BinaryOp_match<LHS, RHS, Instruction::FMul>(L, R);
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 871 case Instruction::FMul: Out << "getFMul("; break;
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 701 INSTKEYWORD(mul, Mul); INSTKEYWORD(fmul, FMul);
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 344 case 2:{Op = (isFloat?Instruction::FMul : Instruction::Mul); break; }
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
SLPVectorizer.cpp 950 case Instruction::FMul:
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 82 dbgs() << "Unhandled type for FMul instruction: " << *Ty << "\n";
744 case Instruction::FMul: FLOAT_VECTOR_OP(*) break;
774 case Instruction::FMul: executeFMulInst(R, Src1, Src2, Ty); break;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp     [all...]
SCCP.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 158 | FMul
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 93 case Instruction::FMul: return bitc::BINOP_MUL;
    [all...]

Completed in 1009 milliseconds

1 2