This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from ddd1175eb Revert r345686 due to build failures new a5a8f5bf5 [lldb] Introduce StackFrameRecognizer [take 3]
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 | 65 ++++ .../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, 1140 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