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

1 2

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILIntrinsicInfo.h 36 std::string getName(unsigned int IntrId, Type **Tys = 0,
41 Type **Tys = 0,
AMDILIntrinsicInfo.cpp 33 AMDGPUIntrinsicInfo::getName(unsigned int IntrID, Type **Tys,
86 Type **Tys,
  /external/llvm/include/llvm/Target/
TargetIntrinsicInfo.h 38 /// The Tys and numTys parameters are for intrinsics with overloaded types
40 /// intrinsic, Tys should point to an array of numTys pointers to Type,
43 virtual std::string getName(unsigned IID, Type **Tys = nullptr,
57 /// and return it. The Tys and numTys are for intrinsics with overloaded
59 virtual Function *getDeclaration(Module *M, unsigned ID, Type **Tys = nullptr,
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILIntrinsicInfo.h 36 std::string getName(unsigned int IntrId, Type **Tys = 0,
41 Type **Tys = 0,
AMDILIntrinsicInfo.cpp 33 AMDGPUIntrinsicInfo::getName(unsigned int IntrID, Type **Tys,
86 Type **Tys,
  /external/llvm/lib/Target/R600/
AMDGPUIntrinsicInfo.h 37 std::string getName(unsigned IntrId, Type **Tys = nullptr,
42 Type **Tys = nullptr,
AMDGPUIntrinsicInfo.cpp 30 std::string AMDGPUIntrinsicInfo::getName(unsigned IntrID, Type **Tys,
74 Type **Tys,
  /external/llvm/include/llvm/IR/
LLVMContext.h 184 inline LLVMContext **unwrap(LLVMContextRef* Tys) {
185 return reinterpret_cast<LLVMContext**>(Tys);
188 inline LLVMContextRef *wrap(const LLVMContext **Tys) {
189 return reinterpret_cast<LLVMContextRef*>(const_cast<LLVMContext**>(Tys));
Intrinsics.h 48 std::string getName(ID id, ArrayRef<Type*> Tys = None);
53 ArrayRef<Type*> Tys = None);
66 /// The Tys parameter is for intrinsics with overloaded types (e.g., those
68 /// intrinsic, Tys must provide exactly one type for each overloaded type in
70 Function *getDeclaration(Module *M, ID id, ArrayRef<Type*> Tys = None);
Type.h 475 inline Type **unwrap(LLVMTypeRef* Tys) {
476 return reinterpret_cast<Type**>(Tys);
479 inline LLVMTypeRef *wrap(Type **Tys) {
480 return reinterpret_cast<LLVMTypeRef*>(const_cast<Type**>(Tys));
  /external/llvm/lib/IR/
IRBuilder.cpp 68 Type *Tys[] = { Ptr->getType(), Size->getType() };
70 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memset, Tys);
88 Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
90 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memcpy, Tys);
112 Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
114 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memmove, Tys);
Function.cpp 423 std::string Intrinsic::getName(ID id, ArrayRef<Type*> Tys) {
431 if (Tys.empty())
434 for (unsigned i = 0; i < Tys.size(); ++i) {
435 if (PointerType* PTyp = dyn_cast<PointerType>(Tys[i])) {
439 else if (Tys[i])
440 Result += "." + EVT::getEVT(Tys[i]).getEVTString();
643 ArrayRef<Type*> Tys, LLVMContext &Context) {
660 return VectorType::get(DecodeFixedType(Infos, Tys, Context),D.Vector_Width);
662 return PointerType::get(DecodeFixedType(Infos, Tys, Context),
668 Elts[i] = DecodeFixedType(Infos, Tys, Context)
    [all...]
AutoUpgrade.cpp 97 Type *Tys[2] = { F->getReturnType(), F->arg_begin()->getType() };
98 if (F->getName() != Intrinsic::getName(Intrinsic::objectsize, Tys)) {
101 Intrinsic::objectsize, Tys);
188 Type *Tys[3] = {
194 StructType::get(GV->getContext(), Tys, /*isPacked=*/false);
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 140 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
142 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, Ops);
154 Tys = DAG.getVTList(MVT::Other, MVT::Glue);
156 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, Ops);
243 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
245 SDValue RepMovs = DAG.getNode(X86ISD::REP_MOVS, dl, Tys, Ops);
  /external/llvm/lib/Target/NVPTX/
NVVMReflect.cpp 200 Type *Tys[1];
207 Tys[0] = PointerType::get(I8Ty, i);
208 Name = Intrinsic::getName(Intrinsic::nvvm_reflect, Tys);
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 416 llvm::Type *Tys[] = { ResType, Builder.getInt8PtrTy(0) };
417 Value *F = CGM.getIntrinsic(Intrinsic::objectsize, Tys);
    [all...]
  /external/llvm/lib/CodeGen/
BasicTargetTransformInfo.cpp 118 ArrayRef<Type*> Tys) const override;
533 ArrayRef<Type *> Tys) const {
544 for (unsigned i = 0, ie = Tys.size(); i != ie; ++i) {
545 if (Tys[i]->isVectorTy()) {
546 ScalarizationCost += getScalarizationOverhead(Tys[i], false, true);
611 Tys);
GlobalMerge.cpp 176 std::vector<Type*> Tys;
187 Tys.push_back(Ty);
202 StructType *MergedTy = StructType::get(M.getContext(), Tys);
  /external/llvm/lib/Analysis/
CostModel.cpp 507 SmallVector<Type*, 4> Tys;
509 Tys.push_back(II->getArgOperand(J)->getType());
512 Tys);
TargetTransformInfo.cpp 215 ArrayRef<Type *> Tys) const {
216 return PrevTTI->getIntrinsicInstrCost(ID, RetTy, Tys);
600 ArrayRef<Type*> Tys) const override {
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 403 ArrayRef<Type *> Tys) const;
  /external/llvm/examples/BrainF/
BrainF.cpp 58 Type *Tys[] = { Type::getInt8PtrTy(C), Type::getInt32Ty(C) };
60 Tys);
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 332 value Tys = alloc(LLVMCountParamTypes(FunTy), 0);
333 LLVMGetParamTypes(FunTy, (LLVMTypeRef *) Tys);
334 return Tys;
382 value Tys = alloc(LLVMCountStructElementTypes(StructTy), 0);
383 LLVMGetStructElementTypes(StructTy, (LLVMTypeRef *) Tys);
384 return Tys;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 613 Type *Tys[] = { Val->getType() };
616 Value *Func = Intrinsic::getDeclaration(M, Intrinsic::ctpop, Tys);
    [all...]

Completed in 366 milliseconds

1 2