<div dir="ltr">Hi,<div><br></div><div>I need to access declarations of function parameters when I emit a call to this function. Namely, if certain function parameters are declared to be nonnull (by __attribute__((nonnull))), I can add corresponding attributes to the call site and emit a runtime check verifying that call arguments are indeed nonnull.</div>
<div><br></div><div>This turns out to be unexpectedly hard: when we emit a call (CodeGenFunction::EmitCall), we have the following information:</div><div>  1) CGFunctionInfo, which is essentially a vector describing types/ABI kinds of call arguments (of LLVM IR function).</div>
<div>  2) CallArgList, which has the same size as CGFunctionInfo and contains RValues - actual call arguments.</div><div>  3) (optional) Decl of a callee.</div><div>However, we don't have a mapping that would tell us which elements of CGFunctionInfo/CallArgList correspond to ParmVarDecl in a callee Decl (there can be different kinds of implicit arguments, like "this", or VTT, and their position in CallArgList is not trivially deducible).</div>
<div><br></div><div>Am I missing something obvious? Or this task indeed can't be done without significant refactoring of CGCall logic? Thanks.</div><div><div><br></div>-- <br><div dir="ltr">Alexey Samsonov<br><a href="mailto:vonosmas@gmail.com" target="_blank">vonosmas@gmail.com</a></div>

</div></div>