Home
last modified time | relevance | path

Searched refs:ArgVec (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp235 std::vector<std::string> ArgVec(ArgV, ArgV + ArgC); in LLVMRunFunctionAsMain() local
236 return unwrap(EE)->runFunctionAsMain(unwrap<Function>(F), ArgVec, EnvP); in LLVMRunFunctionAsMain()
244 std::vector<GenericValue> ArgVec; in LLVMRunFunction() local
245 ArgVec.reserve(NumArgs); in LLVMRunFunction()
247 ArgVec.push_back(*unwrap(Args[I])); in LLVMRunFunction()
250 *Result = unwrap(EE)->runFunction(unwrap<Function>(F), ArgVec); in LLVMRunFunction()
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp405 SmallString<0> ArgVec; in getModuleContextHash() local
406 ArgVec.reserve(4096); in getModuleContextHash()
408 Arg.toVector(ArgVec); in getModuleContextHash()
409 ArgVec.push_back('\0'); in getModuleContextHash()
411 HashBuilder.add(ArgVec); in getModuleContextHash()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp2048 Constant *ArgVec[] = {Ptr, Key, Disc, AddrDisc}; in get() local
2049 ConstantPtrAuthKeyType MapKey(ArgVec); in get()
2337 Constant *ArgVec[] = {C1, C2}; in get() local
2338 ConstantExprKeyType Key(Opcode, ArgVec, Flags); in get()
2489 std::vector<Constant*> ArgVec; in getGetElementPtr() local
2490 ArgVec.reserve(1 + Idxs.size()); in getGetElementPtr()
2491 ArgVec.push_back(C); in getGetElementPtr()
2506 ArgVec.push_back(Idx); in getGetElementPtr()
2509 const ConstantExprKeyType Key(Instruction::GetElementPtr, ArgVec, NW.getRaw(), in getGetElementPtr()
2531 Constant *ArgVec[] = { Val, Idx }; in getExtractElement() local
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp4150 SmallVector<const Stmt *, 4> ArgVec; in getAddrOfCXXCtorClosure() local
4154 ArgVec.push_back(PD->getDefaultArg()); in getAddrOfCXXCtorClosure()
4160 CGF.EmitCallArgs(Args, FPT, llvm::ArrayRef(ArgVec), CD, IsCopy ? 1 : 0); in getAddrOfCXXCtorClosure()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp5329 SmallVector<TemplateArgument, 4> ArgVec; in getTemplateSpecializationType() local
5330 ArgVec.reserve(Args.size()); in getTemplateSpecializationType()
5332 ArgVec.push_back(Arg.getArgument()); in getTemplateSpecializationType()
5334 return getTemplateSpecializationType(Template, ArgVec, Underlying); in getTemplateSpecializationType()