<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, Jun 9, 2015 at 3:52 AM, Manuel Klimek <span dir="ltr"><<a href="mailto:klimek@google.com" target="_blank">klimek@google.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">Yea, this is really hard currently in clang's design: the only place at which the lookup information is available is during semantic analysis on clang's stack :(<div><br></div><div>This has been one of the most requested features though, so perhaps we can find a way to allow re-querying some flows of sema (or being able to optionally store some info) for this.</div><div><br></div><div>cc'ing Richard for ideas.<br></div></div></blockquote><div><br></div><div>It seems relatively straightforward to walk the AST and rebuild the Scope information that Sema would need to perform an unqualified name lookup from a specified context. A starting point of a clang::Expr is not sufficient, however, because that doesn't identify a unique place in the AST; we'd need to know the path taken to get there. (I'd imagine your AST visitor could easily accumulate this information when it's looking for places to transform.)</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div class="gmail_quote"><div><div class="h5"><div dir="ltr">On Tue, Jun 9, 2015 at 10:05 AM Kevin Funk <<a href="mailto:kfunk@kde.org" target="_blank">kfunk@kde.org</a>> wrote:<br></div></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">On Tuesday 09 June 2015 06:27:02 Wilhelm wrote:<br>
> (snip)<br>
><br>
> Am 08.06.2015 um 13:54 schrieb Kevin Funk:<br>
> (snip)<br>
><br>
> > Now the part I'm struggling with is how to make sure the "member name"<br>
> > is a non-ambiguous identifier from the current context so I can just<br>
> > strip "this->". How can I find out the accessible declarations (or just<br>
> > the ids) from the context of the expression referencing `this`? I'm<br>
> > missing API to get the clang::DeclContext, plus looking up declarations<br>
> > accessible from within this context.<br>
<br>
I didn't get a lot of replies to my actual question, so let's maybe simplify<br>
it a bit.<br>
<br>
My root problem:<br>
Given an instance of clang::Expr: how can I deduce the context of this<br>
expression and get a list of declarations which are accessible from this<br>
context. What API can I use for this?<br>
<br>
This sounds trivial, but I didn't figure it out yet. Apparently I'm missing<br>
something obvious here.<br>
<br>
Thanks.<br>
<br>
--<br></div></div>
Kevin Funk | <a href="mailto:kfunk@kde.org" target="_blank">kfunk@kde.org</a> | <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__kfunk.org&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=CnzuN65ENJ1H9py9XLiRvC_UQz6u3oG6GUNn7_wosSM&m=0-TmJV3km6oae_OufNUiY1UWQp3VyPDeGlqLJNNiP4w&s=PzxJUBSDPEWKyxQC0KhYDBDdimdzyDT9RTGoE0DUAsI&e=" target="_blank">http://kfunk.org</a>_______________________________________________<span class=""><br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu" target="_blank">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>
</span></blockquote></div></div></div>
</blockquote></div><br></div></div>