<div style="font-family: arial, helvetica, sans-serif; font-size: 10pt"><div dir="ltr">On Sun, Dec 2, 2012 at 12:48 PM, Hal Finkel <span dir="ltr"><<a href="mailto:hfinkel@anl.gov" target="_blank" class="cremed">hfinkel@anl.gov</a>></span> wrote:<br>
<div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br>
<br>
I'd like to propose a new form of memory-aliasing metadata: scoped no-alias metadata. This can be used to model local 'restrict' pointers in C99, but should also be useful for other frontends (I think, for example, that Fortran will want this as well). Currently, we only use the restrict qualifier on function arguments in Clang where we translate the restrict qualifier as a 'noalias' function parameter attribute.<br>

<br>
In C99, the 'restrict' guarantee holds only for the lifetime of the pointer, and different lifetime regions can exist within a single function. Furthermore, these lifetime regions can be nested. As a result, we'll need to assign a unique identifier to each lifetime region (roughly a block in C99, although this may be only a partial block if a restrict pointer is declared in the middle of the block). Also, during optimization, instructions from these different lifetime regions can be merged, so a particular pointer value may end up associated with multiple lifetime regions.<br>
</blockquote><div><br></div><div style>I think a good way to think about this is through the inliner. When we inline a function that has a noalias parameter, we should preserve that noalias for the region of code inlined, no? This might be simpler than describing it in terms of C99 initially, but I think we'll be able to support everything we need... Anyways, not really relevant to the proposal...</div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Similar to TBAA, the scoped lifetime regions are arranged into disjoint tree structures:<br>
!0 = metadata !{ metadata !"scope of foo()" }<br>
!1 = metadata !{ metadata !"scope 1", metadata !0 }<br>
!2 = metadata !{ metadata !"scope 2", metadata !0 }<br>
!3 = metadata !{ metadata !"scope 2.1", metadata !2 }<br>
!4 = metadata !{ metadata !"scope 2.2", metadata !2 }<br>
<br>
and these are used to mark the pointer values:<br>
 %arrayidx = getelementptr inbounds %struct.ST* %s, i64 1, i32 2, i32 1, i64 5, i64 13, !sna !3<br>
<br>
in C99 this corresponds to something like:<br>
void foo(...) {<br>
  // begin root scope for foo()<br>
  int *restrict a = ...;<br>
  ...<br>
  {<br>
    // things in this block have scope 1<br>
    int *restrict b = ...;<br>
    ...<br>
  }<br>
  ...<br>
  {<br>
    // things here have scope 2<br>
    int *restrict b = ...;<br>
    ...<br>
    {<br>
      // a new scope 2.1<br>
    }<br>
    ...<br>
    *b += 1; // some use of a restrict pointer<br>
    ...<br>
    // more restrict pointers are declared, start a new nested scope 2.2<br>
    int *restrict c = ...;<br>
    ...<br>
  }<br>
}<br>
<br>
When BasicAA compares to pointers for aliasing, as it recurses to find each pointer's base pointer, it collects a list of scope ids associated with each pointer. If one of the pointers is associated with a scope id that is identical to one associated with the other pointer, or is a descendant or parent to one associated with the other pointer, then the two pointers are assumed not to alias. When merging two pointer values, if both have scope ids, then the resulting value can carry both scope ids. If one does not have a scope id, then the resulting pointer must carry none (we can preserve optimization ability by moving the metadata from the value to be merged to its uses that are also pointer-manipulation instructions).<br>
</blockquote><div><br></div><div style>Maybe I'm misunderstanding, but why can you assume that a particular scope will have a distinct GEP to produce the pointer? Or are you really relying on the propagation from the pre-optimization copy of the pointer the frontend emits to the load/store instructions during optimization?</div>
<div style><br></div><div style>Why not just directly attach !noalias metadata to the loads and stores? It feels like that would simplify the rules here, and more closely match the way TBAA metadata works.</div><div> </div>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I think that the most difficult part of implementing this proposal would be updating the various transformation passes to preserve this metadata.<br>
</blockquote><div><br></div><div style>I think by directly attaching the aliasing information to loads and stores, this is made somewhat easier.</div><div style><br></div><div style>Dan, thoughts?</div></div></div></div></div>