<div dir="ltr">I just thought of something. Try threading the function or block decl through EmitCallArgs.  EmitCallArgs is responsible for evaluating all user-written Exprs, which should have a one-to-one correspondence with ParmVarDecls on the function or block decl.</div>
<div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Aug 14, 2014 at 11:26 AM, Alexey Samsonov <span dir="ltr"><<a href="mailto:vonosmas@gmail.com" target="_blank">vonosmas@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><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><span class="HOEnZb"><font color="#888888"><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></font></span></div>
</blockquote></div><br></div>