[Lldb-commits] [lldb] [lldb] Extend frame recognizers to hide frames from backtraces (PR #104523)

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 15 17:35:39 PDT 2024


================
@@ -979,6 +988,8 @@ size_t StackFrameList::GetStatus(Stream &strm, uint32_t first_frame,
     ++num_frames_displayed;
   }
 
+  if (filtered)
+    strm << "Note: Some frames were hidden by frame recognizers\n";
----------------
jasonmolenda wrote:

Are we exposing the term "frame recognizers" to users intentionally?  Could we express this as "Language implementation stack frames hidden"?  I'm not convinced this is better, just asking, a lot of our errors and warning messages use lldb-internal terminology and I don't think it's helpful.

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


More information about the lldb-commits mailing list