Searched refs:ArgsTy (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | BuildLibCalls.h | 42 template <typename... ArgsTy> 45 Type *RetTy, ArgsTy... Args) { in getOrInsertLibFunc() 46 SmallVector<Type*, sizeof...(ArgsTy)> ArgTys{Args...}; in getOrInsertLibFunc() 52 template <typename... ArgsTy> 54 LibFunc TheLibFunc, Type *RetTy, ArgsTy... Args) { in getOrInsertLibFunc() 59 template <typename... ArgsTy> 63 FunctionType *Invalid, ArgsTy... Args) = delete;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | StringMap.h | 367 template <typename... ArgsTy> 368 std::pair<iterator, bool> try_emplace(StringRef Key, ArgsTy &&...Args) { in try_emplace() 369 return try_emplace_with_hash(Key, hash(Key), std::forward<ArgsTy>(Args)...); in try_emplace() 372 template <typename... ArgsTy> 375 ArgsTy &&...Args) { in try_emplace_with_hash() 385 MapEntryTy::create(Key, getAllocator(), std::forward<ArgsTy>(Args)...); in try_emplace_with_hash()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Module.h | 411 template <typename... ArgsTy> 414 ArgsTy... Args) { in getOrInsertFunction() 415 SmallVector<Type*, sizeof...(ArgsTy)> ArgTys{Args...}; in getOrInsertFunction() 422 template <typename... ArgsTy> 424 ArgsTy... Args) { in getOrInsertFunction() 429 template <typename... ArgsTy> 432 FunctionType *Invalid, ArgsTy... Args) = delete;
|
H A D | InstrTypes.h | 1253 template <class... ArgsTy> 1254 CallBase(AttributeList const &A, FunctionType *FT, ArgsTy &&... Args) 1255 : Instruction(std::forward<ArgsTy>(Args)...), Attrs(A), FTy(FT) {}
|
H A D | IntrinsicsNVVM.td | 550 list<LLVMType> ArgsTy = !if(sync, 4551 Intrinsic<i.RetTy, i.ArgsTy, 4557 def i.Name : Intrinsic<i.RetTy, i.ArgsTy,
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | GenericLoopInfo.h | 566 template <typename... ArgsTy> LoopT *AllocateLoop(ArgsTy &&...Args) { 568 return new (Storage) LoopT(std::forward<ArgsTy>(Args)...); in releaseMemory()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | MustExecute.cpp | 395 template <typename K, typename V, typename FnTy, typename... ArgsTy> 397 FnTy &&Fn, ArgsTy &&...args) { in getOrCreateCachedOptional() 400 OptVal = Fn(std::forward<ArgsTy>(args)...); in getOrCreateCachedOptional()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-stress/ |
H A D | llvm-stress.cpp | 134 Type* ArgsTy[] = { in GenEmptyFunction() local 143 auto *FuncTy = FunctionType::get(Type::getVoidTy(Context), ArgsTy, false); in GenEmptyFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | MemorySanitizer.cpp | 568 template <typename... ArgsTy> 570 ArgsTy... Args); 762 template <typename... ArgsTy> 765 ArgsTy... Args) { in getOrInsertMsanMetadataFunction() 770 std::forward<ArgsTy>(Args)...); in getOrInsertMsanMetadataFunction() 774 std::forward<ArgsTy>(Args)...); in getOrInsertMsanMetadataFunction() 1765 template <typename... ArgsTy> 1767 ArgsTy... Args) { in createMetadataCall() 1770 {MS.MsanMetadataAlloca, std::forward<ArgsTy>(Args)...}); in createMetadataCall() 1774 return IRB.CreateCall(Callee, {std::forward<ArgsTy>(Args)...}); in createMetadataCall()
|