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

1 2

  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 485 return Builder.CreateUIToFP(L, Type::getDoubleTy(getGlobalContext()),
553 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2,
595 PHINode *Variable = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2, VarName.c_str());
651 return Constant::getNullValue(Type::getDoubleTy(getGlobalContext()));
657 Type::getDoubleTy(getGlobalContext()));
658 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 581 return Builder.CreateUIToFP(L, Type::getDoubleTy(getGlobalContext()),
657 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2,
699 PHINode *Variable = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2, VarName.c_str());
755 return Constant::getNullValue(Type::getDoubleTy(getGlobalContext()));
761 Type::getDoubleTy(getGlobalContext()));
762 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 376 return Builder.CreateUIToFP(L, Type::getDoubleTy(getGlobalContext()),
404 Type::getDoubleTy(getGlobalContext()));
405 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
  /external/llvm/lib/IR/
ValueTypes.cpp 189 case MVT::f64: return Type::getDoubleTy(Context);
227 case MVT::v2f64: return VectorType::get(Type::getDoubleTy(Context), 2);
228 case MVT::v4f64: return VectorType::get(Type::getDoubleTy(Context), 4);
229 case MVT::v8f64: return VectorType::get(Type::getDoubleTy(Context), 8);
Type.cpp 31 case DoubleTyID : return getDoubleTy(C);
231 Type *Type::getDoubleTy(LLVMContext &C) { return &C.pImpl->DoubleTy; }
257 return getDoubleTy(C)->getPointerTo(AS);
Function.cpp 608 case IITDescriptor::Double: return Type::getDoubleTy(Context);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 384 return Builder.CreateUIToFP(L, Type::getDoubleTy(getGlobalContext()),
412 Type::getDoubleTy(getGlobalContext()));
413 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
  /external/llvm/unittests/IR/
TypeBuilderTest.cpp 59 EXPECT_EQ(Type::getDoubleTy(getGlobalContext()), (TypeBuilder<double, false>::get(getGlobalContext())));
63 EXPECT_EQ(Type::getDoubleTy(getGlobalContext()), (TypeBuilder<types::ieee_double, true>::get(getGlobalContext())));
64 EXPECT_EQ(Type::getDoubleTy(getGlobalContext()), (TypeBuilder<types::ieee_double, false>::get(getGlobalContext())));
InstructionsTest.cpp 129 Type *DoubleTy = Type::getDoubleTy(C);
318 Instruction *I = Builder.CreatePHI(Builder.getDoubleTy(), 0);
ConstantsTest.cpp 172 Type *DoubleTy = Type::getDoubleTy(getGlobalContext());
  /art/compiler/llvm/
intrinsic_helper.cc 81 return irb.getDoubleTy();
ir_builder.h 348 return getDoubleTy();
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 619 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0,
677 return Builder.CreateUIToFP(L, Type::getDoubleTy(getGlobalContext()),
753 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2,
857 return Constant::getNullValue(Type::getDoubleTy(getGlobalContext()));
909 Type::getDoubleTy(getGlobalContext()));
910 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 637 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0,
702 return Builder.CreateUIToFP(L, Type::getDoubleTy(getGlobalContext()),
781 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2,
885 return Constant::getNullValue(Type::getDoubleTy(getGlobalContext()));
937 Type::getDoubleTy(getGlobalContext()));
938 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
    [all...]
toy.cpp 1008 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0,
1069 return Builder.CreateUIToFP(L, Type::getDoubleTy(getGlobalContext()),
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 866 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0,
927 return Builder.CreateUIToFP(L, Type::getDoubleTy(getGlobalContext()),
1003 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2,
1107 return Constant::getNullValue(Type::getDoubleTy(getGlobalContext()));
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 622 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0,
684 return Builder.CreateUIToFP(L, Type::getDoubleTy(getGlobalContext()),
763 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2,
867 return Constant::getNullValue(Type::getDoubleTy(getGlobalContext()));
919 Type::getDoubleTy(getGlobalContext()));
920 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
    [all...]
toy.cpp 906 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0,
967 return Builder.CreateUIToFP(L, Type::getDoubleTy(getGlobalContext()),
1043 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2,
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/include/llvm/IR/
TypeBuilder.h 199 return Type::getDoubleTy(C);
210 static Type *get(LLVMContext& C) { return Type::getDoubleTy(C); }
Type.h 385 static Type *getDoubleTy(LLVMContext &C);
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 49 Type::getDoubleTy(M.getContext()));
329 Type::getDoubleTy(CI->getContext()));
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 282 return llvm::Type::getDoubleTy(VMContext);
  /art/compiler/llvm/generated/
art_module.cc 300 FuncTy_31_args.push_back(Type::getDoubleTy(mod->getContext()));
307 FuncTy_32_args.push_back(Type::getDoubleTy(mod->getContext()));
    [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 88 res = irb_->getDoubleTy();
611 ::llvm::Value* res = irb_->CreateFPExt(src, irb_->getDoubleTy());
    [all...]

Completed in 279 milliseconds

1 2