[Lldb-commits] [PATCH] D76011: Add a verification mechanism to CompilerType.

2020-03-14 Thread Raphael Isemann via Phabricator via lldb-commits
teemperor added a comment. I think this change is slightly orthogonal to the way we are supposed to construct types in LLDB. After the quirky bugs we had with Decl * and DeclContext * pointers in the CompilerDeclContext, I moved all the `Compiler*(TypeSystem *, opaque_ptr*)` constructors calls

[Lldb-commits] [PATCH] D76188: [lldb/Target] Support more than 2 symbols in StackFrameRecognizer

2020-03-14 Thread Med Ismail Bennani via Phabricator via lldb-commits
mib created this revision. mib added reviewers: JDevlieghere, labath. mib added a project: LLDB. Herald added a subscriber: lldb-commits. This patch changes the way the StackFrame Recognizers match a certain frame. Until now, recognizers could be registered with a function name but also an altern

[Lldb-commits] [PATCH] D76188: [lldb/Target] Support more than 2 symbols in StackFrameRecognizer

2020-03-14 Thread Frederic Riss via Phabricator via lldb-commits
friss added inline comments. Comment at: lldb/include/lldb/Target/StackFrameRecognizer.h:115 std::function const - &callback); + std::string module, std::vector &symbols, + bool regexp)> const &callback); ---