Lines Matching defs:ArgList
25 SmallVectorImpl<llvm::Type *> &ArgList) const;
111 uint64_t TySize, SmallVectorImpl<llvm::Type *> &ArgList) const {
117 ArgList.push_back(IntTy);
119 // If necessary, add one more integer type to ArgList.
123 ArgList.push_back(llvm::IntegerType::get(getVMContext(), R));
129 SmallVector<llvm::Type*, 8> ArgList, IntArgList;
132 CoerceToIntArgs(TySize, ArgList);
133 return llvm::StructType::get(getVMContext(), ArgList);
143 CoerceToIntArgs(TySize, ArgList);
144 return llvm::StructType::get(getVMContext(), ArgList);
171 ArgList.push_back(I64);
174 ArgList.push_back(llvm::Type::getDoubleTy(getVMContext()));
179 ArgList.append(IntArgList.begin(), IntArgList.end());
181 return llvm::StructType::get(getVMContext(), ArgList);