This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 2878bcde0 [testsuite] Skip an already failing test on MacOS. new 8b5784c66 [lldb] Introduce StackFrameRecognizer
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/lldb/API/SBVariablesOptions.h | 4 + include/lldb/Interpreter/OptionGroupVariable.h | 2 + include/lldb/Interpreter/ScriptInterpreter.h | 11 + include/lldb/Target/StackFrame.h | 3 + include/lldb/Target/StackFrameRecognizer.h | 129 +++++++ include/lldb/lldb-forward.h | 7 + lldb.xcodeproj/project.pbxproj | 6 + .../frame-recognizer}/Makefile | 3 +- .../frame-recognizer/TestFrameRecognizer.py | 102 ++++++ .../main.mm => frame-recognizer/main.m} | 21 +- .../functionalities/frame-recognizer/recognizer.py | 21 ++ scripts/Python/python-wrapper.swig | 46 +++ scripts/interface/SBVariablesOptions.i | 8 +- source/API/SBFrame.cpp | 25 +- source/API/SBVariablesOptions.cpp | 23 +- source/API/SystemInitializerFull.cpp | 11 +- source/Commands/CommandObjectFrame.cpp | 386 +++++++++++++++++++++ source/Interpreter/OptionGroupVariable.cpp | 7 + .../Python/ScriptInterpreterPython.cpp | 64 ++++ .../Python/ScriptInterpreterPython.h | 15 + source/Target/CMakeLists.txt | 1 + source/Target/StackFrame.cpp | 18 +- source/Target/StackFrameRecognizer.cpp | 190 ++++++++++ www/python-reference.html | 61 +++- 24 files changed, 1139 insertions(+), 25 deletions(-) create mode 100644 include/lldb/Target/StackFrameRecognizer.h copy packages/Python/lldbsuite/test/{python_api/objc_type => functionalities/frame [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-recognizer [...] copy packages/Python/lldbsuite/test/functionalities/{data-formatter/ostypeformatti [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-recognizer [...] create mode 100644 source/Target/StackFrameRecognizer.cpp