Lines Matching defs:ArgList
25 SmallVectorImpl<llvm::Type *> &ArgList) const;
128 uint64_t TySize, SmallVectorImpl<llvm::Type *> &ArgList) const {
134 ArgList.push_back(IntTy);
136 // If necessary, add one more integer type to ArgList.
140 ArgList.push_back(llvm::IntegerType::get(getVMContext(), R));
146 SmallVector<llvm::Type*, 8> ArgList, IntArgList;
149 CoerceToIntArgs(TySize, ArgList);
150 return llvm::StructType::get(getVMContext(), ArgList);
160 CoerceToIntArgs(TySize, ArgList);
161 return llvm::StructType::get(getVMContext(), ArgList);
188 ArgList.push_back(I64);
191 ArgList.push_back(llvm::Type::getDoubleTy(getVMContext()));
196 ArgList.append(IntArgList.begin(), IntArgList.end());
198 return llvm::StructType::get(getVMContext(), ArgList);