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

  /external/llvm/unittests/IR/
IRBuilderTest.cpp 149 F = Builder.CreateFDiv(F, F);
158 F = Builder.CreateFDiv(F, F);
167 F = Builder.CreateFDiv(F, F);
176 F = Builder.CreateFDiv(F, F);
  /external/llvm/include/llvm/Support/
NoFolder.h 106 Instruction *CreateFDiv(Constant *LHS, Constant *RHS) const {
107 return BinaryOperator::CreateFDiv(LHS, RHS);
ConstantFolder.h 63 Constant *CreateFDiv(Constant *LHS, Constant *RHS) const {
TargetFolder.h 77 Constant *CreateFDiv(Constant *LHS, Constant *RHS) const {
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 379 R = BinaryOperator::CreateFDiv(F, Opnd1);
389 R = BinaryOperator::CreateFDiv(Opnd0, F);
    [all...]
InstCombineAddSub.cpp 175 Value *createFDiv(Value *Opnd0, Value *Opnd1);
499 return createFDiv(NewAddSub, Factor);
767 Value *FAddCombine::createFDiv(Value *Opnd0, Value *Opnd1) {
768 Value *V = Builder->CreateFDiv(Opnd0, Opnd1);
    [all...]
InstCombineCalls.cpp 310 return BinaryOperator::CreateFDiv(ConstantFP::get(CI.getType(), 1.0),
    [all...]
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 591 DSTr = Builder.CreateFDiv(Tmp3, Tmp6);
592 DSTi = Builder.CreateFDiv(Tmp9, Tmp6);
    [all...]
CGExprScalar.cpp     [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 663 Value *CreateFDiv(Value *LHS, Value *RHS, const Twine &Name = "",
667 return Insert(Folder.CreateFDiv(LC, RC), Name);
668 return Insert(AddFPMathAttributes(BinaryOperator::CreateFDiv(LHS, RHS),
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 698 case '/': return Builder.CreateFDiv(L, R, "divtmp");
    [all...]
toy.cpp 1065 case '/': return Builder.CreateFDiv(L, R, "divtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 923 case '/': return Builder.CreateFDiv(L, R, "divtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 680 case '/': return Builder.CreateFDiv(L, R, "divtmp");
    [all...]
toy.cpp 963 case '/': return Builder.CreateFDiv(L, R, "divtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 400 case kOpDiv: res = irb_->CreateFDiv(src1, src2); break;
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp     [all...]
  /external/llvm/lib/IR/
Core.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]

Completed in 487 milliseconds