<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Aug 26, 2016, at 8:33 AM, David Blaikie via cfe-users <<a href="mailto:cfe-users@lists.llvm.org" class="">cfe-users@lists.llvm.org</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class="">There's no structural identity of code in Clang that I know of - I know someone's building a tool for doing structural similarity for things like plagiarism detection (I think there are some patches on the clang mailing list).<br class=""><br class=""></div></div></blockquote><div><br class=""></div><div>+ Raphael, who is the GSoC student currently working on a similar problem. Raphael is upstreaming his patches into the clang static analyzer.</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class="">But if you only need identity within a single process, the pointer value of the pointer to any AST construct is a unique identity you can use.<br class=""><br class="">(line/file/column isn't sufficiently unique - you could have a file that is included under different macro situations and each time it defines a different function, but all those functions would appear to be defined on the same line/file of that included file - or a macro that defines multiple functions - both can be resolved by looking at the more complete location information (including macro locations, etc))</div><br class=""><div class="gmail_quote"><div dir="ltr" class="">On Fri, Aug 26, 2016 at 5:11 AM folkert via cfe-users <<a href="mailto:cfe-users@lists.llvm.org" class="">cfe-users@lists.llvm.org</a>> wrote:<br class=""></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br class="">
<br class="">
The Sun java compiler allows you to (from java) walk the AST and<br class="">
investigate it. Each token is stored in an object. Each object has a<br class="">
hash() method which uniquely identifies it.<br class="">
<br class="">
Now I was wondering: can I do so with the LLVM tooling as well? I could<br class="">
of course if I want to identify e.g. a function name just pick the line-<br class="">
and column number and maybe include the function name itself as well but<br class="">
that would constantly change when lines are added and/or removed.<br class="">
<br class="">
Any suggestions?<br class="">
<br class="">
<br class="">
regards,<br class="">
<br class="">
Folkert van Heusden<br class="">
<br class="">
--<br class="">
---------------------------------------------------------------------<br class="">
Phone: +31-6-41278122, PGP-key: 1F28D8AE, <a href="http://www.vanheusden.com/" rel="noreferrer" target="_blank" class="">www.vanheusden.com</a><br class="">
_______________________________________________<br class="">
cfe-users mailing list<br class="">
<a href="mailto:cfe-users@lists.llvm.org" target="_blank" class="">cfe-users@lists.llvm.org</a><br class="">
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-users" rel="noreferrer" target="_blank" class="">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-users</a><br class="">
</blockquote></div>
_______________________________________________<br class="">cfe-users mailing list<br class=""><a href="mailto:cfe-users@lists.llvm.org" class="">cfe-users@lists.llvm.org</a><br class="">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-users<br class=""></div></blockquote></div><br class=""></body></html>