Home
last modified time | relevance | path

Searched refs:ParamTypes (Results 1 – 21 of 21) sorted by relevance

/external/llvm/lib/Target/NVPTX/
DNVPTXGenericToNVVM.cpp179 SmallVector<Type *, 2> ParamTypes; in getOrInsertCVTA() local
180 ParamTypes.push_back(ResultType); in getOrInsertCVTA()
181 ParamTypes.push_back(DestTy); in getOrInsertCVTA()
183 M, Intrinsic::nvvm_ptr_global_to_gen, ParamTypes); in getOrInsertCVTA()
192 SmallVector<Type *, 2> ParamTypes; in getOrInsertCVTA() local
193 ParamTypes.push_back(PointerType::get(GVType->getElementType(), in getOrInsertCVTA()
195 ParamTypes.push_back(GVType); in getOrInsertCVTA()
197 M, Intrinsic::nvvm_ptr_global_to_gen, ParamTypes); in getOrInsertCVTA()
/external/clang/lib/Sema/
DSemaOverload.cpp6466 Candidate.BuiltinTypes.ParamTypes[ArgIdx] = ParamTys[ArgIdx]; in AddBuiltinCandidate()
6804 QualType ParamTypes[2]; in AddBuiltinAssignmentOperatorCandidates() local
6807 ParamTypes[0] = S.Context.getLValueReferenceType(T); in AddBuiltinAssignmentOperatorCandidates()
6808 ParamTypes[1] = T; in AddBuiltinAssignmentOperatorCandidates()
6809 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, CandidateSet, in AddBuiltinAssignmentOperatorCandidates()
6814 ParamTypes[0] in AddBuiltinAssignmentOperatorCandidates()
6816 ParamTypes[1] = T; in AddBuiltinAssignmentOperatorCandidates()
6817 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, CandidateSet, in AddBuiltinAssignmentOperatorCandidates()
7005 QualType ParamTypes[2] = { in addPlusPlusMinusMinusStyleOverloads() local
7012 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, CandidateSet); in addPlusPlusMinusMinusStyleOverloads()
[all …]
DSemaTemplateDeduction.cpp2510 SmallVectorImpl<QualType> &ParamTypes, in SubstituteExplicitTemplateArguments() argument
2521 ParamTypes.push_back(P->getType()); in SubstituteExplicitTemplateArguments()
2601 ParamTypes)) in SubstituteExplicitTemplateArguments()
2638 ParamTypes)) in SubstituteExplicitTemplateArguments()
2642 *FunctionType = BuildFunctionType(ResultType, ParamTypes, in SubstituteExplicitTemplateArguments()
3330 SmallVector<QualType, 4> ParamTypes; in DeduceTemplateArguments() local
3337 ParamTypes, in DeduceTemplateArguments()
3347 ParamTypes.push_back(Function->getParamDecl(I)->getType()); in DeduceTemplateArguments()
3354 for (unsigned ParamIdx = 0, NumParams = ParamTypes.size(); in DeduceTemplateArguments()
3356 QualType OrigParamType = ParamTypes[ParamIdx]; in DeduceTemplateArguments()
[all …]
DTreeTransform.h577 const QualType *ParamTypes,
753 MutableArrayRef<QualType> ParamTypes,
4283 const QualType *ParamTypes, in TransformFunctionTypeParams() argument
4389 QualType OldType = ParamTypes[i]; in TransformFunctionTypeParams()
4495 SmallVector<QualType, 4> ParamTypes; in TransformFunctionProtoType() local
4504 TL.getTypePtr()->param_type_begin(), ParamTypes, &ParamDecls)) in TransformFunctionProtoType()
4528 TL.getTypePtr()->param_type_begin(), ParamTypes, &ParamDecls)) in TransformFunctionProtoType()
4536 T->getNumParams() != ParamTypes.size() || in TransformFunctionProtoType()
4538 ParamTypes.begin())) { in TransformFunctionProtoType()
4539 Result = getDerived().RebuildFunctionProtoType(ResultType, ParamTypes, in TransformFunctionProtoType()
[all …]
DSemaType.cpp1766 MutableArrayRef<QualType> ParamTypes, in BuildFunctionType() argument
1773 for (unsigned Idx = 0, Cnt = ParamTypes.size(); Idx < Cnt; ++Idx) { in BuildFunctionType()
1775 QualType ParamType = Context.getAdjustedParameterType(ParamTypes[Idx]); in BuildFunctionType()
1786 ParamTypes[Idx] = ParamType; in BuildFunctionType()
1792 return Context.getFunctionType(T, ParamTypes, EPI); in BuildFunctionType()
DSemaTemplateInstantiate.cpp1691 SmallVectorImpl<QualType> &ParamTypes, in SubstParmTypes() argument
1700 nullptr, ParamTypes, in SubstParmTypes()
DSemaTemplateInstantiateDecl.cpp2966 SmallVector<QualType, 4> ParamTypes; in SubstFunctionType() local
2968 D->getNumParams(), TemplateArgs, ParamTypes, in SubstFunctionType()
DSemaExprCXX.cpp4301 Self.PerformImplicitConversion(LHS.get(), Best->BuiltinTypes.ParamTypes[0], in FindConditionalOverload()
4308 Self.PerformImplicitConversion(RHS.get(), Best->BuiltinTypes.ParamTypes[1], in FindConditionalOverload()
DSemaExpr.cpp13185 ArrayRef<QualType> ParamTypes = Proto->getParamTypes(); in VisitCallExpr() local
13187 if (ParamTypes.empty() && Proto->isVariadic()) { // the special case in VisitCallExpr()
13199 ParamTypes = ArgTypes; in VisitCallExpr()
13201 DestType = S.Context.getFunctionType(DestType, ParamTypes, in VisitCallExpr()
DSemaDecl.cpp2780 SmallVector<QualType, 16> ParamTypes(OldProto->param_types()); in MergeFunctionDecl() local
2782 Context.getFunctionType(NewFuncType->getReturnType(), ParamTypes, in MergeFunctionDecl()
/external/llvm/test/TableGen/
Dintrinsic-varargs.td21 list<LLVMType> ParamTypes = param_types;
Dintrinsic-order.td21 list<LLVMType> ParamTypes = param_types;
/external/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITCAPITest.cpp242 LLVMTypeRef ParamTypes[] = { LLVMInt32Type() }; in buildModuleWithCodeAndData() local
244 Module, "setGlobal", LLVMFunctionType(LLVMVoidType(), ParamTypes, 1, 0)); in buildModuleWithCodeAndData()
/external/llvm/unittests/Transforms/Utils/
DCloning.cpp235 DIArray ParamTypes = DBuilder.getOrCreateArray(ArrayRef<Value*>()); in CreateOldFunctionBodyAndDI() local
236 DICompositeType FuncType = DBuilder.createSubroutineType(File, ParamTypes); in CreateOldFunctionBodyAndDI()
/external/clang/include/clang/Sema/
DOverload.h606 QualType ParamTypes[3]; member
DSema.h1153 MutableArrayRef<QualType> ParamTypes,
5975 SmallVectorImpl<QualType> &ParamTypes, QualType *FunctionType,
6601 SmallVectorImpl<QualType> &ParamTypes,
/external/llvm/include/llvm/IR/
DIntrinsics.td204 // * ParamTypes is a list containing the parameter types expected for the
216 list<LLVMType> ParamTypes = param_types;
/external/llvm/lib/AsmParser/
DLLParser.cpp3753 std::vector<Type*> ParamTypes; in ParseInvoke() local
3755 ParamTypes.push_back(ArgList[i].V->getType()); in ParseInvoke()
3760 Ty = FunctionType::get(RetType, ParamTypes, false); in ParseInvoke()
4165 std::vector<Type*> ParamTypes; in ParseCall() local
4167 ParamTypes.push_back(ArgList[i].V->getType()); in ParseCall()
4172 Ty = FunctionType::get(RetType, ParamTypes, false); in ParseCall()
/external/llvm/include/llvm-c/
DCore.h889 LLVMTypeRef *ParamTypes, unsigned ParamCount,
/external/llvm/lib/IR/
DCore.cpp387 LLVMTypeRef *ParamTypes, unsigned ParamCount, in LLVMFunctionType() argument
389 ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount); in LLVMFunctionType()
/external/clang/lib/Serialization/
DASTReader.cpp5233 SmallVector<QualType, 16> ParamTypes; in readTypeRecord() local
5235 ParamTypes.push_back(readType(*Loc.F, Record, Idx)); in readTypeRecord()
5243 return Context.getFunctionType(ResultType, ParamTypes, EPI); in readTypeRecord()