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

1 2

  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 502 R = BinaryOperator::CreateFMul(C1 ? Opnd0 : Opnd1, F);
516 R = BinaryOperator::CreateFMul(Opnd0, F);
641 Value *FMulVal = Builder->CreateFMul(OpX, Log2);
662 Value *FMul = Builder->CreateFMul(N0, N1);
669 Value *T = Builder->CreateFMul(N0, Opnd1);
697 Value *T = Builder->CreateFMul(Opnd1, Opnd1);
699 Value *R = Builder->CreateFMul(T, Y);
    [all...]
InstCombineSimplifyDemanded.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 658 Value *AC = Builder.CreateFMul(Op.LHS.first, Op.RHS.first, "mul_ac");
659 Value *BD = Builder.CreateFMul(Op.LHS.second, Op.RHS.second, "mul_bd");
660 Value *AD = Builder.CreateFMul(Op.LHS.first, Op.RHS.second, "mul_ad");
661 Value *BC = Builder.CreateFMul(Op.LHS.second, Op.RHS.first, "mul_bc");
714 ResR = Builder.CreateFMul(Op.LHS.first, Op.RHS.first, "mul.rl");
717 ? Builder.CreateFMul(Op.LHS.second, Op.RHS.first, "mul.il")
718 : Builder.CreateFMul(Op.LHS.first, Op.RHS.second, "mul.ir");
    [all...]
  /external/llvm/include/llvm/IR/
NoFolder.h 85 Instruction *CreateFMul(Constant *LHS, Constant *RHS) const {
86 return BinaryOperator::CreateFMul(LHS, RHS);
ConstantFolder.h 52 Constant *CreateFMul(Constant *LHS, Constant *RHS) const {
IRBuilder.h 821 Value *CreateFMul(Value *LHS, Value *RHS, const Twine &Name = "",
    [all...]
  /external/llvm/include/llvm/Analysis/
TargetFolder.h 68 Constant *CreateFMul(Constant *LHS, Constant *RHS) const {
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 416 return Builder.CreateFMul(L, R, "multmp");
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 440 return Builder.CreateFMul(L, R, "multmp");
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 564 return Builder.CreateFMul(L, R, "multmp");
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 667 return Builder.CreateFMul(L, R, "multmp");
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 772 return Builder.CreateFMul(L, R, "multmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 697 case '*': return Builder.CreateFMul(L, R, "multmp");
    [all...]
toy.cpp 1064 case '*': return Builder.CreateFMul(L, R, "multmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 922 case '*': return Builder.CreateFMul(L, R, "multmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 679 case '*': return Builder.CreateFMul(L, R, "multmp");
    [all...]
toy.cpp 962 case '*': return Builder.CreateFMul(L, R, "multmp");
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 336 BinaryOperator::CreateFMul(S1, S2, Name, InsertBefore);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 959 return Builder.CreateFMul(L, R, "multmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 805 case '*': return C.getBuilder().CreateFMul(L, R, "multmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 804 case '*': return C.getBuilder().CreateFMul(L, R, "multmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 804 case '*': return C.getBuilder().CreateFMul(L, R, "multmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 804 case '*': return C.getBuilder().CreateFMul(L, R, "multmp");
    [all...]

Completed in 508 milliseconds

1 2