[libcxxabi] [lldb] [llvm] [WIP] [libcxxabi][ItaniumDemangle] Add infrastructure to track location information of parts of a demangled function name (PR #133249)

Michael Buch via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 3 03:09:08 PDT 2025


================
@@ -6176,6 +6180,10 @@ struct ManglingParser : AbstractManglingParser<ManglingParser<Alloc>, Alloc> {
                                Alloc>::AbstractManglingParser;
 };
 
+inline void OutputBuffer::printLeft(const Node &N) { N.printLeft(*this); }
----------------
Michael137 wrote:

@zygoloid is this what you had in mind? I moved the `TrackingOutputBuffer` into LLDB now. That's where all the tracking logic would live. It's a bit unfortunate we have to duplicate some of the printing logic there (though at least we're only doing it for a couple of nodes)

https://github.com/llvm/llvm-project/pull/133249


More information about the llvm-commits mailing list