HomeSort by relevance Sort by last modified time
    Searched refs:Tys (Results 1 - 25 of 31) 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 = 0,
57 /// and return it. The Tys and numTys are for intrinsics with overloaded
59 virtual Function *getDeclaration(Module *M, unsigned ID, Type **Tys = 0,
  /external/llvm/lib/Target/R600/
AMDILIntrinsicInfo.h 37 std::string getName(unsigned int IntrId, Type **Tys = 0,
42 Type **Tys = 0,
AMDILIntrinsicInfo.cpp 32 AMDGPUIntrinsicInfo::getName(unsigned int IntrID, Type **Tys,
78 Type **Tys,
  /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/include/llvm/IR/
LLVMContext.h 119 inline LLVMContext **unwrap(LLVMContextRef* Tys) {
120 return reinterpret_cast<LLVMContext**>(Tys);
123 inline LLVMContextRef *wrap(const LLVMContext **Tys) {
124 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 477 inline Type **unwrap(LLVMTypeRef* Tys) {
478 return reinterpret_cast<Type**>(Tys);
481 inline LLVMTypeRef *wrap(Type **Tys) {
482 return reinterpret_cast<LLVMTypeRef*>(const_cast<Type**>(Tys));
  /external/llvm/lib/IR/
Function.cpp 393 std::string Intrinsic::getName(ID id, ArrayRef<Type*> Tys) {
401 if (Tys.empty())
404 for (unsigned i = 0; i < Tys.size(); ++i) {
405 if (PointerType* PTyp = dyn_cast<PointerType>(Tys[i])) {
409 else if (Tys[i])
410 Result += "." + EVT::getEVT(Tys[i]).getEVTString();
597 ArrayRef<Type*> Tys, LLVMContext &Context) {
613 return VectorType::get(DecodeFixedType(Infos, Tys, Context),D.Vector_Width);
615 return PointerType::get(DecodeFixedType(Infos, Tys, Context),
621 Elts[i] = DecodeFixedType(Infos, Tys, Context)
    [all...]
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);
Core.cpp 308 ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount);
309 return wrap(FunctionType::get(unwrap(ReturnType), Tys, IsVarArg != 0));
335 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
336 return wrap(StructType::get(*unwrap(C), Tys, Packed != 0));
360 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
361 unwrap<StructType>(StructTy)->setBody(Tys, Packed != 0);
    [all...]
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 142 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
144 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, Ops, array_lengthof(Ops));
156 Tys = DAG.getVTList(MVT::Other, MVT::Glue);
158 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, Ops, array_lengthof(Ops));
244 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
246 SDValue RepMovs = DAG.getNode(X86ISD::REP_MOVS, dl, Tys, Ops,
  /external/llvm/lib/CodeGen/
BasicTargetTransformInfo.cpp 111 ArrayRef<Type*> Tys) const;
415 ArrayRef<Type *> Tys) const {
426 for (unsigned i = 0, ie = Tys.size(); i != ie; ++i) {
427 if (Tys[i]->isVectorTy()) {
428 ScalarizationCost += getScalarizationOverhead(Tys[i], false, true);
485 Tys);
  /external/llvm/lib/Analysis/
CostModel.cpp 217 SmallVector<Type*, 4> Tys;
219 Tys.push_back(II->getArgOperand(J)->getType());
222 Tys);
TargetTransformInfo.cpp 205 ArrayRef<Type *> Tys) const {
206 return PrevTTI->getIntrinsicInstrCost(ID, RetTy, Tys);
561 ArrayRef<Type*> Tys) const {
  /external/llvm/lib/Transforms/Scalar/
GlobalMerge.cpp 161 std::vector<Type*> Tys;
169 Tys.push_back(Ty);
173 StructType *MergedTy = StructType::get(M.getContext(), Tys);
LoopIdiomRecognize.cpp 617 Type *Tys[] = { Val->getType() };
620 Value *Func = Intrinsic::getDeclaration(M, Intrinsic::ctpop, Tys);
    [all...]
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 338 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 274 value Tys = alloc(LLVMCountParamTypes(FunTy), 0);
275 LLVMGetParamTypes(FunTy, (LLVMTypeRef *) Tys);
276 return Tys;
324 value Tys = alloc(LLVMCountStructElementTypes(StructTy), 0);
325 LLVMGetStructElementTypes(StructTy, (LLVMTypeRef *) Tys);
326 return Tys;
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 385 Type *Tys[3] = {VoidPtrTy, VoidPtrTy, Type::getInt64Ty(Context)};
388 Tys);
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 505 milliseconds

1 2