Home
last modified time | relevance | path

Searched refs:ArgTypes (Results 1 – 20 of 20) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DR600OpenCLImageTypeLoweringPass.cpp273 SmallVector<Type *, 8> ArgTypes; in addImplicitArgs() local
281 ArgTypes.push_back(FT->getParamType(i)); in addImplicitArgs()
289 ArgTypes.push_back(ImageSizeType); in addImplicitArgs()
294 ArgTypes.push_back(ImageFormatType); in addImplicitArgs()
305 auto NewFT = FunctionType::get(FT->getReturnType(), ArgTypes, false); in addImplicitArgs()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DResourceManager.h88 template <typename... ArgTypes>
91 ArgTypes... args) in checkObjectAllocation()
112 template <typename... ArgTypes>
115 ArgTypes... args) in checkObjectAllocationImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DDataFlowSanitizer.cpp490 SmallVector<Type *, 4> ArgTypes(T->param_begin(), T->param_end()); in getArgsFunctionType() local
491 ArgTypes.append(T->getNumParams(), ShadowTy); in getArgsFunctionType()
493 ArgTypes.push_back(ShadowPtrTy); in getArgsFunctionType()
497 return FunctionType::get(RetType, ArgTypes, T->isVarArg()); in getArgsFunctionType()
502 SmallVector<Type *, 4> ArgTypes; in getTrampolineFunctionType() local
503 ArgTypes.push_back(T->getPointerTo()); in getTrampolineFunctionType()
504 ArgTypes.append(T->param_begin(), T->param_end()); in getTrampolineFunctionType()
505 ArgTypes.append(T->getNumParams(), ShadowTy); in getTrampolineFunctionType()
508 ArgTypes.push_back(ShadowPtrTy); in getTrampolineFunctionType()
509 return FunctionType::get(T->getReturnType(), ArgTypes, false); in getTrampolineFunctionType()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DEntryExitInstrumenter.cpp41 Type *ArgTypes[] = {Type::getInt8PtrTy(C), Type::getInt8PtrTy(C)}; in insertCall() local
44 Func, FunctionType::get(Type::getVoidTy(C), ArgTypes, false)); in insertCall()
DCloneFunction.cpp239 std::vector<Type*> ArgTypes; in CloneFunction() local
246 ArgTypes.push_back(I.getType()); in CloneFunction()
250 ArgTypes, F->getFunctionType()->isVarArg()); in CloneFunction()
DCodeExtractor.cpp1104 std::vector<Type *> ArgTypes; in emitCallAndSwitchStatement() local
1107 ArgTypes.push_back((*v)->getType()); in emitCallAndSwitchStatement()
1110 StructArgTy = StructType::get(newFunction->getContext(), ArgTypes); in emitCallAndSwitchStatement()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DOptional.h74 template<typename ...ArgTypes>
75 void emplace(ArgTypes &&...Args) { in emplace()
78 new (storage.buffer) T(std::forward<ArgTypes>(Args)...); in emplace()
DAPFloat.h670 template <typename... ArgTypes>
671 Storage(const fltSemantics &Semantics, ArgTypes &&... Args) { in Storage()
673 new (&IEEE) IEEEFloat(Semantics, std::forward<ArgTypes>(Args)...); in Storage()
677 new (&Double) DoubleAPFloat(Semantics, std::forward<ArgTypes>(Args)...); in Storage()
DSmallVector.h635 template <typename... ArgTypes> void emplace_back(ArgTypes &&... Args) { in emplace_back()
638 ::new ((void *)this->end()) T(std::forward<ArgTypes>(Args)...); in emplace_back()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DOptional.h237 template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { in emplace()
238 Storage.emplace(std::forward<ArgTypes>(Args)...); in emplace()
DAPFloat.h708 template <typename... ArgTypes>
709 Storage(const fltSemantics &Semantics, ArgTypes &&... Args) { in Storage()
711 new (&IEEE) IEEEFloat(Semantics, std::forward<ArgTypes>(Args)...); in Storage()
715 new (&Double) DoubleAPFloat(Semantics, std::forward<ArgTypes>(Args)...); in Storage()
DSmallVector.h641 template <typename... ArgTypes> reference emplace_back(ArgTypes &&... Args) { in emplace_back()
644 ::new ((void *)this->end()) T(std::forward<ArgTypes>(Args)...); in emplace_back()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DSelectionDAG.h354 template <typename SDNodeT, typename... ArgTypes>
355 SDNodeT *newSDNode(ArgTypes &&... Args) {
357 SDNodeT(std::forward<ArgTypes>(Args)...);
366 template <typename SDNodeT, typename... ArgTypes>
368 ArgTypes &&... Args) {
372 return SDNodeT(IROrder, DebugLoc(), std::forward<ArgTypes>(Args)...)
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceTargetLoweringX8664.cpp6295 CfgVector<Type> ArgTypes; in genTargetHelperCallFor() local
6304 ArgTypes = {IceType_i64}; in genTargetHelperCallFor()
6306 ArgTypes = {IceType_i32}; in genTargetHelperCallFor()
6310 ArgTypes = {IceType_i32, IceType_i32}; in genTargetHelperCallFor()
6314 ArgTypes = {IceType_i32, IceType_i32, IceType_i32}; in genTargetHelperCallFor()
6318 ArgTypes = {IceType_i32, IceType_i32, IceType_i32}; in genTargetHelperCallFor()
6322 ArgTypes = {IceType_i32, IceType_i32, IceType_i32}; in genTargetHelperCallFor()
6326 ArgTypes = {IceType_i32}; in genTargetHelperCallFor()
6330 StackArgumentsSize = getCallStackArgumentsSizeBytes(ArgTypes, ReturnType); in genTargetHelperCallFor()
6349 TargetX8664::getCallStackArgumentsSizeBytes(const CfgVector<Type> &ArgTypes, in getCallStackArgumentsSizeBytes() argument
[all …]
DIceTargetLoweringX8632.cpp7031 CfgVector<Type> ArgTypes; in genTargetHelperCallFor() local
7040 ArgTypes = {IceType_i64}; in genTargetHelperCallFor()
7042 ArgTypes = {IceType_i32}; in genTargetHelperCallFor()
7046 ArgTypes = {IceType_i32, IceType_i32}; in genTargetHelperCallFor()
7050 ArgTypes = {IceType_i32, IceType_i32, IceType_i32}; in genTargetHelperCallFor()
7054 ArgTypes = {IceType_i32, IceType_i32, IceType_i32}; in genTargetHelperCallFor()
7058 ArgTypes = {IceType_i32, IceType_i32, IceType_i32}; in genTargetHelperCallFor()
7062 ArgTypes = {IceType_i32}; in genTargetHelperCallFor()
7066 StackArgumentsSize = getCallStackArgumentsSizeBytes(ArgTypes, ReturnType); in genTargetHelperCallFor()
7085 TargetX8632::getCallStackArgumentsSizeBytes(const CfgVector<Type> &ArgTypes, in getCallStackArgumentsSizeBytes() argument
[all …]
DIceTargetLoweringX8632.h287 uint32_t getCallStackArgumentsSizeBytes(const CfgVector<Type> &ArgTypes,
DIceTargetLoweringX8664.h283 uint32_t getCallStackArgumentsSizeBytes(const CfgVector<Type> &ArgTypes,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DLowerTypeTests.cpp1388 SmallVector<Type *, 16> ArgTypes; in createJumpTable() local
1389 ArgTypes.reserve(AsmArgs.size()); in createJumpTable()
1391 ArgTypes.push_back(Arg->getType()); in createJumpTable()
1393 InlineAsm::get(FunctionType::get(IRB.getVoidTy(), ArgTypes, false), in createJumpTable()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DIRBuilder.cpp619 Type *ArgTypes[] = { FuncPtrType }; in CreateGCStatepointCallCommon() local
622 ArgTypes); in CreateGCStatepointCallCommon()
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp918 template<typename Result, typename... ArgTypes>
919 struct IsFunPtr<Result(*)(ArgTypes...)>