HomeSort by relevance Sort by last modified time
    Searched defs:ArgTypes (Results 1 - 19 of 19) sorted by null

  /external/clang/lib/CodeGen/
CGCUDANV.cpp 82 std::vector<llvm::Type *> ArgTypes;
88 ArgTypes.push_back(cast<llvm::PointerType>(V->getType())->getElementType());
91 CGF.getLLVMContext(), ArgTypes);
102 llvm::ConstantExpr::getSizeOf(ArgTypes[I]),
CGStmt.cpp     [all...]
CodeGenFunction.cpp 593 SmallVector<QualType, 16> ArgTypes;
596 ArgTypes.push_back((*i)->getType());
600 getContext().getFunctionType(RetTy, ArgTypes,
    [all...]
CGCall.cpp 125 SmallVector<CanQualType, 16> argTypes;
126 return ::arrangeFreeFunctionType(*this, argTypes, FTP);
187 SmallVector<CanQualType, 16> argTypes;
191 argTypes.push_back(GetThisType(Context, RD));
193 argTypes.push_back(Context.VoidPtrTy);
195 return ::arrangeCXXMethodType(*this, argTypes,
224 SmallVector<CanQualType, 16> argTypes;
225 argTypes.push_back(GetThisType(Context, D->getParent()));
229 TheCXXABI.HasThisReturn(GD) ? argTypes.front() : Context.VoidTy;
235 argTypes.push_back(FTP->getParamType(i))
    [all...]
CodeGenFunction.h     [all...]
MicrosoftCXXABI.cpp 656 llvm::Type *ArgTypes[] = {CGF.Int8PtrTy};
658 llvm::FunctionType::get(CGF.Int8PtrTy, ArgTypes, false);
707 llvm::Type *ArgTypes[] = {CGF.Int8PtrTy, CGF.Int32Ty, CGF.Int8PtrTy,
710 llvm::FunctionType::get(CGF.Int8PtrTy, ArgTypes, false),
728 llvm::Type *ArgTypes[] = {CGF.Int8PtrTy};
730 llvm::FunctionType::get(CGF.Int8PtrTy, ArgTypes, false),
    [all...]
CGExpr.cpp     [all...]
CGObjCGNU.cpp     [all...]
  /external/llvm/lib/Target/R600/
AMDGPUPromoteAlloca.cpp 340 std::vector<Type*> ArgTypes;
343 ArgTypes.push_back(Call->getArgOperand(ArgIdx)->getType());
346 FunctionType *NewType = FunctionType::get(Call->getType(), ArgTypes,
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 216 std::vector<Type*> ArgTypes;
224 ArgTypes.push_back(I->getType());
228 ArgTypes, F->getFunctionType()->isVarArg());
CodeExtractor.cpp 452 std::vector<Type*> ArgTypes;
455 ArgTypes.push_back((*v)->getType());
458 Type *StructArgTy = StructType::get(newFunction->getContext(), ArgTypes);
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 195 typedef std::vector<llvm::Type*> ArgTypes;
215 const ArgTypes &theArgTypes,
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 344 llvm::SmallVector<Type *, 4> ArgTypes;
345 std::copy(T->param_begin(), T->param_end(), std::back_inserter(ArgTypes));
347 ArgTypes.push_back(ShadowTy);
349 ArgTypes.push_back(ShadowPtrTy);
353 return FunctionType::get(RetType, ArgTypes, T->isVarArg());
358 llvm::SmallVector<Type *, 4> ArgTypes;
359 ArgTypes.push_back(T->getPointerTo());
360 std::copy(T->param_begin(), T->param_end(), std::back_inserter(ArgTypes));
362 ArgTypes.push_back(ShadowTy);
365 ArgTypes.push_back(ShadowPtrTy)
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
SemaDecl.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 430 SmallVectorImpl<QualType> &ArgTypes,
    [all...]
RewriteObjC.cpp 364 SmallVectorImpl<QualType> &ArgTypes,
    [all...]

Completed in 349 milliseconds