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

  /external/llvm/unittests/IR/
IRBuilderTest.cpp 165 F = Builder.CreateFDiv(F, F);
174 F = Builder.CreateFDiv(F, F);
183 F = Builder.CreateFDiv(F, F);
192 F = Builder.CreateFDiv(F, F);
  /external/llvm/include/llvm/IR/
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 {
IRBuilder.h 722 Value *CreateFDiv(Value *LHS, Value *RHS, const Twine &Name = "",
726 return Insert(Folder.CreateFDiv(LC, RC), Name);
727 return Insert(AddFPMathAttributes(BinaryOperator::CreateFDiv(LHS, RHS),
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 409 R = BinaryOperator::CreateFDiv(F, Opnd1);
420 R = BinaryOperator::CreateFDiv(Opnd0, F);
    [all...]
InstCombineAddSub.cpp 177 Value *createFDiv(Value *Opnd0, Value *Opnd1);
511 Value *RI = createFDiv(NewAddSub, Factor);
785 Value *FAddCombine::createFDiv(Value *Opnd0, Value *Opnd1) {
786 Value *V = Builder->CreateFDiv(Opnd0, Opnd1);
    [all...]
InstCombineCalls.cpp 312 return BinaryOperator::CreateFDiv(ConstantFP::get(CI.getType(), 1.0),
    [all...]
InstCombineCasts.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
TargetFolder.h 77 Constant *CreateFDiv(Constant *LHS, Constant *RHS) const {
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 596 DSTr = Builder.CreateFDiv(Tmp3, Tmp6);
597 DSTi = Builder.CreateFDiv(Tmp9, Tmp6);
    [all...]
CGExprScalar.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 699 case '/': return Builder.CreateFDiv(L, R, "divtmp");
    [all...]
toy.cpp 1066 case '/': return Builder.CreateFDiv(L, R, "divtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 924 case '/': return Builder.CreateFDiv(L, R, "divtmp");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 681 case '/': return Builder.CreateFDiv(L, R, "divtmp");
    [all...]
toy.cpp 964 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 417 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 696 milliseconds