<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, Jun 10, 2014 at 7:26 PM, Richard <span dir="ltr"><<a href="mailto:legalize@xmission.com" target="_blank">legalize@xmission.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
In article <CAOsfVv=<a href="mailto:aBdSiMydayJkqiUEuRDzsZXUG0ArWyNHPHoDraUdZaA@mail.gmail.com">aBdSiMydayJkqiUEuRDzsZXUG0ArWyNHPHoDraUdZaA@mail.gmail.com</a>>,<br>
<div class="">    Manuel Klimek <<a href="mailto:klimek@google.com">klimek@google.com</a>> writes:<br>
<br>
> On Fri, Jun 6, 2014 at 9:04 PM, Richard <<a href="mailto:legalize@xmission.com">legalize@xmission.com</a>> wrote:<br>
><br>
</div><div class="">> > I'm thinking of contributing a matcher that allows you to match nodes<br>
> > based on the associated source file so that you can easily discard<br>
</div>> > matches outside the directory hierarchy(ies) of interest. [...]<br>
<div class="">><br>
> I think it's a good idea, but will not solve the general problem of<br>
> surprise when encountering source locations.<br>
<br>
</div>I take it you are referring to the discussion on this thread of:<br>
<br>
- do I refactor the location where a macro is invoked?<br>
- do I refactor the location where a macro is defined?<br>
<br>
Are there any other surprises relating to source location other than<br>
those relating to the site of a macro invocation vs. the site of a<br>
macro definition?<br></blockquote><div><br></div><div>Well, the problem that there are not only two locations to think about - macro expansion can have arbitrarily many steps, and which level of expansion is needed usually depends on what part of the AST one is looking at</div>
<div><br></div><div>a.h:</div><div>#define A(x) a(x)</div><div>b.h:</div><div>#define B(x) b(x)</div><div>c.cc:</div><div>B(c());</div><div><br></div><div>Now depending which part of a(b(c())) you want to look at, you'll get a different file.</div>
<div><br></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="HOEnZb"><div class="h5">--<br>
"The Direct3D Graphics Pipeline" free book <<a href="http://tinyurl.com/d3d-pipeline" target="_blank">http://tinyurl.com/d3d-pipeline</a>><br>
     The Computer Graphics Museum <<a href="http://ComputerGraphicsMuseum.org" target="_blank">http://ComputerGraphicsMuseum.org</a>><br>
         The Terminals Wiki <<a href="http://terminals.classiccmp.org" target="_blank">http://terminals.classiccmp.org</a>><br>
  Legalize Adulthood! (my blog) <<a href="http://LegalizeAdulthood.wordpress.com" target="_blank">http://LegalizeAdulthood.wordpress.com</a>><br>
_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
</div></div></blockquote></div><br></div></div>