<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Thanks.<br class=""><div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class="gmail_quote"><div dir="ltr" class="gmail_attr">> But this is a C program. What does template mean in C?</div><div class="gmail_attr">That appears to be a simple C function then with two ulong params.</div></div></div></div></blockquote><div><br class=""></div><div>But, I don’t always see #types. Most of the time, generateUSRForDecl returns just function names without #type but only a few cases have #type that block CTU analysis from loading the corresponding ASTs. On the other hand, entries in ctu-dir do not contain #type.</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class="gmail_quote"><div class=""> > Also, ASTImporter sometimes raises “name conflict” even though the function has a unique name and the AST file is in ctu-dir.</div><div class="">You may get a "name conflict" if two nodes in the merged AST has different definitions.</div><div class="">Here is one example with two TUs:</div><div class="">// a.c</div><div class="">enum A { x, y, z };</div><div class="">// b.c<br class=""></div><div class="">enum B { z };</div><div class="">Now merging them would result a conflicting definition for the global enum constant `z` which has the value 2 in a.c and 0 in b.c. This is a warning/error because we cannot answer which value we should use during the analysis.</div></div></div></div></blockquote><div><br class=""></div><div>Can this kind of conflicts happen for functions also?</div><div><br class=""></div>I appreciate your help.</div><div><br class=""></div><div>- Kihong </div><div><br class=""></div><div><br class=""></div><div><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class="gmail_quote"><div class=""><br class=""></div><div class="">Gabor</div><div class=""><br class=""></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div style="overflow-wrap: break-word;" class=""><div class=""><div class=""><blockquote type="cite" class=""><div class="">On May 20, 2019, at 8:38 AM, Gábor Márton <<a href="mailto:martongabesz@gmail.com" target="_blank" class="">martongabesz@gmail.com</a>> wrote:</div><br class="gmail-m_-6520166798576337586Apple-interchange-newline"><div class=""><div dir="ltr" class="">Taking a look at USRGeneration.cpp, it seems to me that '#l#l' indicates two (template?) arguments with ulong types.<div class=""><br class=""></div><div class="">Gabor</div></div><br class=""><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sat, May 18, 2019 at 10:43 PM Kihong Heo via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org" target="_blank" class="">cfe-dev@lists.llvm.org</a>> wrote:<br class=""></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi list,<br class="">
<br class="">
index::generateUSRForDecl sometimes returns USR names followed by special characters such as<br class="">
<br class="">
c:@F@UA_memoryManager_calloc#l#l<br class="">
c:ua_types.c@F@clear_noInit#*v#*1$@S@UA_DataType#<br class="">
<br class="">
Could someone explain what “#l#l” mean?<br class="">
And the second case looks quite different from other cases. It would be appreciated if you could give some explanation.<br class="">
<br class="">
Thanks,<br class="">
Kihong<br class="">
<br class="">
<br class="">
_______________________________________________<br class="">
cfe-dev mailing list<br class="">
<a href="mailto:cfe-dev@lists.llvm.org" target="_blank" class="">cfe-dev@lists.llvm.org</a><br class="">
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank" class="">https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a><br class="">
</blockquote></div>
</div></blockquote></div><br class=""></div></div></blockquote></div></div>
</div></blockquote></div><br class=""></body></html>