<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></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 6, 2015, at 3:50 PM, Siva Chandra <<a href="mailto:sivachandra@google.com" class="">sivachandra@google.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><br class="Apple-interchange-newline"><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><div class="gmail_quote" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">On Thu, Aug 6, 2015 at 3:38 PM, Enrico Granata<span class="Apple-converted-space"> </span><span dir="ltr" class=""><<a href="mailto:egranata@apple.com" target="_blank" class="">egranata@apple.com</a>></span><span class="Apple-converted-space"> </span>wrote:<br class=""><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;"><div style="word-wrap: break-word;" class=""><br class=""><div class=""><span class=""><blockquote type="cite" class=""><div class="">On Aug 6, 2015, at 3:33 PM, Siva Chandra <<a href="mailto:sivachandra@google.com" target="_blank" class="">sivachandra@google.com</a>> wrote:</div><br class=""><div class=""><div dir="ltr" class=""><br class=""><div class="gmail_extra"><br class=""><div class="gmail_quote">On Thu, Aug 6, 2015 at 2:43 PM, Enrico Granata<span class="Apple-converted-space"> </span><span dir="ltr" class=""><<a href="mailto:egranata@apple.com" target="_blank" class="">egranata@apple.com</a>></span><span class="Apple-converted-space"> </span>wrote:<br class=""><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;"><div style="word-wrap: break-word;" class=""><div class="">To be honest, my favorite approach would be to modify clang’s TypePrinter to do this, and then hooking up GetDisplayTypeName() to use whatever flags would be necessary to invoke that bit of magic</div></div></blockquote><div class=""><br class=""></div><div class="">Do you mean that clang's "pretty printer" should be made extensible by a script?</div><div class=""> </div></div></div></div></div></blockquote><div class=""><br class=""></div></span><div class="">Nope, what I am imagining is not an extensible system</div><div class=""><br class=""></div><div class="">When LLDB goes to print a type it asks the compiler “what is the name of this type that I should display?”</div><div class="">By default, clang prints the fully specialized template, including type arguments that have their default value. My theory is that we would want to add a mode to the type printer to say “simplify type name”, and that would do sensible things to get a display name that is more compact</div></div></div></blockquote><div class=""><br class=""></div><div class="">So, how would clang know about the "simplified" or "friendly" name for a type? Even in case of standard library types, the underlying types (with unfriendly type names) could be anything. For example, libstdc++ and STLport have different underlying naming conventions. So does libc++ I would imagine (I have not spent enough time yet staring at libc++ code).</div><div class=""><br class=""></div></div></div></blockquote><div><br class=""></div><div>The obvious mechanism is that the compiler has knowledge of the structure of the type - so it can make printing decisions based on that type structure</div><div>In this case, I imagine a viable approach would be having rules like omitting the values of template arguments that have a default value, omit inlined namespaces, ...</div><br class=""><blockquote type="cite" class=""><div class=""><div class="gmail_quote" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;"><div style="word-wrap: break-word;" class=""><div class=""><div class=""><br class=""></div><div class="">That seems more interesting than a set of regular expression heuristics on the type name, which is probably all you could do without specialized compiler-<i class="">y</i><span class="Apple-converted-space"> </span>knowledge of types </div></div></div></blockquote><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;"><div style="word-wrap: break-word;" class=""><div class=""><div class=""><div class="h5"><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;"><div style="word-wrap: break-word;" class=""><div class=""><div class=""><div class=""><br class=""></div><div class=""><blockquote type="cite" class=""><div class="">On Aug 6, 2015, at 2:33 PM, Siva Chandra <<a href="mailto:sivachandra@google.com" target="_blank" class="">sivachandra@google.com</a>> wrote:</div><br class=""><div class=""><div class="">FWIW, GDB has a similar concept called type-printers:<br class=""><a href="https://sourceware.org/gdb/current/onlinedocs/gdb/Type-Printing-API.html" target="_blank" class="">https://sourceware.org/gdb/current/onlinedocs/gdb/Type-Printing-API.html</a><br class=""><br class="">On Thu, Aug 6, 2015 at 2:24 PM, Siva Chandra <<a href="mailto:sivachandra@google.com" target="_blank" class="">sivachandra@google.com</a>> wrote:<br class=""><blockquote type="cite" class="">Hi Enrico,<br class=""><br class="">I was thinking about the same issue today. Could we add a concept<br class="">called "TypeNameModifier" and provide ability to define modifiers in<br class="">scripts and command line? With this, a name like<br class="">std::__1::basic_string<...> can be modified into a more friendly name<br class="">like std::string? We could ofcourse have more complex modifications.<br class=""><br class="">I think it is doable, but what is your (and the community's) opinion<br class="">about adding such a feature? If you are OK, I would like to take up<br class="">adding such a feature.<br class=""><br class="">Thanks,<br class="">Siva Chandra<br class=""><br class="">On Thu, Aug 6, 2015 at 2:15 PM, Enrico Granata via lldb-dev<br class=""><<a href="mailto:lldb-dev@lists.llvm.org" target="_blank" class="">lldb-dev@lists.llvm.org</a>> wrote:<br class=""><blockquote type="cite" class="">Hi Eugene,<br class=""><br class="">On Aug 6, 2015, at 2:02 PM, Eugene Birukov via lldb-dev<br class=""><<a href="mailto:lldb-dev@lists.llvm.org" target="_blank" class="">lldb-dev@lists.llvm.org</a>> wrote:<br class=""><br class="">Hi,<br class=""><br class="">I am using LLDB C++ API to create custom debugger and trying to dump<br class="">variables with their types. To do that I am using SBValue.GetTypeName() API.<br class="">Some types are OK, but some others - especially ones related to STL - are<br class="">quite unreadable:<br class=""><br class=""><br class="">those type names are the actual fully-specialized STL type names. I am not<br class="">sure how to control GDB to stop truncating your string formatting, but after<br class="">the “…” there actually is more text<br class="">It looks like what you have is std::unique_ptr<std::vector<std::string> > ><br class="">and those templates all take more arguments which are defaulted so you don’t<br class="">have to type them in code - but are reflected in the type name<br class=""><br class="">(gdb) p value.GetTypeName()<br class="">$1 = 0x7fffe419be40<br class="">"std::__1::unique_ptr<std::__1::vector<std::__1::basic_string<char,<br class="">std::__1::char_traits<char>, std::__1::allocator<char> >,<br class="">std::__1::allocator<std::__1::basic_string<char,<br class="">std::__1::char_traits<char"...<br class="">(gdb) p value.GetDisplayTypeName()<br class="">$2 = 0x7fffe419be40<br class="">"std::__1::unique_ptr<std::__1::vector<std::__1::basic_string<char,<br class="">std::__1::char_traits<char>, std::__1::allocator<char> >,<br class="">std::__1::allocator<std::__1::basic_string<char,<br class="">std::__1::char_traits<char"...<br class="">(gdb)<br class=""><br class=""><br class="">So, is there any way to convert them into some more human-friendly form?<br class=""><br class=""><br class="">Not currently. What one would have to do is hook into the C++ type printing<br class="">logic such that it would know to leave out these extra template arguments<br class="">when they have a default value<br class=""><br class=""><br class="">Thanks,<br class="">Eugene<br class="">_______________________________________________<br class="">lldb-dev mailing list<br class=""><a href="mailto:lldb-dev@lists.llvm.org" target="_blank" class="">lldb-dev@lists.llvm.org</a><br class=""><a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev" target="_blank" class="">http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev</a><br class=""><br class=""><br class=""><br class="">Thanks,<br class="">- Enrico<br class="">📩 egranata@.com ️ 27683<br class=""><br class=""><br class="">_______________________________________________<br class="">lldb-dev mailing list<br class=""><a href="mailto:lldb-dev@lists.llvm.org" target="_blank" class="">lldb-dev@lists.llvm.org</a><br class=""><a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev" target="_blank" class="">http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev</a><br class=""><br class=""></blockquote></blockquote></div></div></blockquote></div><br class=""><div class=""><div style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;" class=""><br class="">Thanks,</div><div style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;" class=""><i class="">- Enrico</i><br class="">📩 egranata@<font color="#ff2600" class=""></font>.com ☎️ 27683</div></div><br class=""></div></div></div></blockquote></div><br class=""></div></div></div></blockquote></div></div></div><div class=""><div class="h5"><br class=""><div class=""><div style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;" class=""><br class="">Thanks,</div><div style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;" class=""><i class="">- Enrico</i><br class="">📩 egranata@<font color="#ff2600" class=""></font>.com ☎️ 27683</div></div></div></div></div></blockquote></div></div></blockquote></div><br class=""><div class="">
<div class="" style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class="Apple-interchange-newline">Thanks,</div><div class="" style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><i class="">- Enrico</i><br class="">📩 egranata@<font color="#ff2600" class=""></font>.com ☎️ 27683</div>
</div>
<br class=""></body></html>