Home
last modified time | relevance | path

Searched refs:ArgPos (Results 1 – 4 of 4) sorted by relevance

/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DAttributor.cpp2084 IRPosition ArgPos = IRPosition::argument(Arg); in identifyDefaultAbstractAttributes() local
2087 getOrCreateAAFor<AAValueSimplify>(ArgPos); in identifyDefaultAbstractAttributes()
2090 getOrCreateAAFor<AAIsDead>(ArgPos); in identifyDefaultAbstractAttributes()
2093 getOrCreateAAFor<AANoUndef>(ArgPos); in identifyDefaultAbstractAttributes()
2097 getOrCreateAAFor<AANonNull>(ArgPos); in identifyDefaultAbstractAttributes()
2100 getOrCreateAAFor<AANoAlias>(ArgPos); in identifyDefaultAbstractAttributes()
2103 getOrCreateAAFor<AADereferenceable>(ArgPos); in identifyDefaultAbstractAttributes()
2106 getOrCreateAAFor<AAAlign>(ArgPos); in identifyDefaultAbstractAttributes()
2109 getOrCreateAAFor<AANoCapture>(ArgPos); in identifyDefaultAbstractAttributes()
2113 getOrCreateAAFor<AAMemoryBehavior>(ArgPos); in identifyDefaultAbstractAttributes()
[all …]
H A DAttributorAttributes.cpp1548 const IRPosition &ArgPos = IRPosition::argument(*Arg); in updateImpl() local
1549 auto &ArgAA = A.getAAFor<AANoFree>(*this, ArgPos, DepClassTy::REQUIRED); in updateImpl()
2974 const IRPosition &ArgPos = IRPosition::argument(*Arg); in updateImpl() local
2975 auto &ArgAA = A.getAAFor<AAIsDead>(*this, ArgPos, DepClassTy::REQUIRED); in updateImpl()
4468 const IRPosition &ArgPos = IRPosition::argument(*Arg); in updateImpl() local
4469 auto &ArgAA = A.getAAFor<AANoCapture>(*this, ArgPos, DepClassTy::REQUIRED); in updateImpl()
6100 const IRPosition &ArgPos = IRPosition::argument(*Arg); in updateImpl() local
6102 A.getAAFor<AAMemoryBehavior>(*this, ArgPos, DepClassTy::REQUIRED); in updateImpl()
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaOverload.cpp2919 unsigned ArgPos; in HandleFunctionTypeMismatch() local
2920 if (!FunctionParamTypesAreEqual(FromFunction, ToFunction, &ArgPos)) { in HandleFunctionTypeMismatch()
2921 PDiag << ft_parameter_mismatch << ArgPos + 1 in HandleFunctionTypeMismatch()
2922 << ToFunction->getParamType(ArgPos) in HandleFunctionTypeMismatch()
2923 << FromFunction->getParamType(ArgPos); in HandleFunctionTypeMismatch()
2961 unsigned *ArgPos) { in FunctionParamTypesAreEqual() argument
2972 if (ArgPos) in FunctionParamTypesAreEqual()
2973 *ArgPos = O - OldType->param_type_begin(); in FunctionParamTypesAreEqual()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h3418 unsigned *ArgPos = nullptr);