Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DAttributor.cpp3233 IRPosition ArgPos = IRPosition::argument(Arg); in identifyDefaultAbstractAttributes() local
3239 getAssumedSimplified(ArgPos, /* AA */ nullptr, UsedAssumedInformation, in identifyDefaultAbstractAttributes()
3243 getOrCreateAAFor<AAIsDead>(ArgPos); in identifyDefaultAbstractAttributes()
3246 getOrCreateAAFor<AANoUndef>(ArgPos); in identifyDefaultAbstractAttributes()
3250 getOrCreateAAFor<AANonNull>(ArgPos); in identifyDefaultAbstractAttributes()
3253 getOrCreateAAFor<AANoAlias>(ArgPos); in identifyDefaultAbstractAttributes()
3256 getOrCreateAAFor<AADereferenceable>(ArgPos); in identifyDefaultAbstractAttributes()
3259 getOrCreateAAFor<AAAlign>(ArgPos); in identifyDefaultAbstractAttributes()
3262 getOrCreateAAFor<AANoCapture>(ArgPos); in identifyDefaultAbstractAttributes()
3266 getOrCreateAAFor<AAMemoryBehavior>(ArgPos); in identifyDefaultAbstractAttributes()
[all …]
H A DAttributorAttributes.cpp1914 const IRPosition &ArgPos = IRPosition::argument(*Arg); in updateImpl() local
1916 A.getAAFor<AAPointerInfo>(*this, ArgPos, DepClassTy::REQUIRED); in updateImpl()
2564 const IRPosition &ArgPos = IRPosition::argument(*Arg); in updateImpl() local
2565 auto &ArgAA = A.getAAFor<AANoFree>(*this, ArgPos, DepClassTy::REQUIRED); in updateImpl()
4309 const IRPosition &ArgPos = IRPosition::argument(*Arg); in updateImpl() local
4310 auto &ArgAA = A.getAAFor<AAIsDead>(*this, ArgPos, DepClassTy::REQUIRED); in updateImpl()
5605 const IRPosition &ArgPos = IRPosition::argument(*Arg); in updateImpl() local
5607 A.getAAFor<AAInstanceInfo>(*this, ArgPos, DepClassTy::REQUIRED); in updateImpl()
5947 const IRPosition &ArgPos = IRPosition::argument(*Arg); in updateImpl() local
5948 auto &ArgAA = A.getAAFor<AANoCapture>(*this, ArgPos, DepClassTy::REQUIRED); in updateImpl()
[all …]
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaOverload.cpp3027 unsigned ArgPos; in HandleFunctionTypeMismatch() local
3028 if (!FunctionParamTypesAreEqual(FromFunction, ToFunction, &ArgPos)) { in HandleFunctionTypeMismatch()
3029 PDiag << ft_parameter_mismatch << ArgPos + 1 in HandleFunctionTypeMismatch()
3030 << ToFunction->getParamType(ArgPos) in HandleFunctionTypeMismatch()
3031 << FromFunction->getParamType(ArgPos); in HandleFunctionTypeMismatch()
3072 unsigned *ArgPos, bool Reversed) { in FunctionParamTypesAreEqual() argument
3086 if (ArgPos) in FunctionParamTypesAreEqual()
3087 *ArgPos = I; in FunctionParamTypesAreEqual()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h3796 unsigned *ArgPos = nullptr,