[Lldb-commits] [lldb] [lldb] Add frame recognizers for libc++	`std::invoke` (PR #105695)
    Jason Molenda via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Thu Aug 22 14:18:21 PDT 2024
    
    
  
================
@@ -53,10 +54,32 @@ class LibCXXFrameRecognizer : public StackFrameRecognizer {
 
 public:
   LibCXXFrameRecognizer()
-      : m_hidden_function_regex(
-            R"(^std::__1::(__function.*::operator\(\)|__invoke))"
-            R"((\[.*\])?)"    // ABI tag.
-            R"(( const)?$)"), // const.
+      : m_hidden_regex{
+            // internal implementation details of std::function
----------------
jasonmolenda wrote:
Love to see these example strings we're matching against
https://github.com/llvm/llvm-project/pull/105695
    
    
More information about the lldb-commits
mailing list