This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 39acf00 remove dependence of TestGdbRemoteExitCode.py on parent direc [...] new 1bfce2a Added the "frame diagnose" command and use its output to make [...]
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/Core/Disassembler.h | 31 ++ include/lldb/Expression/DWARFExpression.h | 15 +- include/lldb/Target/ABI.h | 6 + include/lldb/Target/StackFrame.h | 50 +- include/lldb/Target/StopInfo.h | 3 + .../array}/Makefile | 0 .../frame-diagnose/array/TestArray.py | 25 + .../functionalities/frame-diagnose/array/main.c | 9 + .../bad-reference}/Makefile | 0 .../bad-reference/TestBadReference.py | 25 + .../frame-diagnose/bad-reference/main.cpp | 22 + .../complicated-expression}/Makefile | 0 .../TestComplicatedExpression.py | 25 + .../frame-diagnose/complicated-expression/main.c | 26 + .../dereference-argument}/Makefile | 0 .../TestDiagnoseDereferenceArgument.py | 25 + .../frame-diagnose/dereference-argument/main.c | 22 + .../dereference-function-return}/Makefile | 0 .../TestDiagnoseDereferenceFunctionReturn.py | 26 + .../dereference-function-return/main.c | 12 + .../dereference-this}/Makefile | 0 .../TestDiagnoseDereferenceThis.py | 25 + .../frame-diagnose/dereference-this/main.cpp | 15 + .../inheritance}/Makefile | 0 .../inheritance/TestDiagnoseInheritance.py | 25 + .../frame-diagnose/inheritance/main.cpp | 69 +++ .../local-variable}/Makefile | 0 .../local-variable/TestLocalVariable.py | 25 + .../frame-diagnose/local-variable/main.c | 4 + .../virtual-method-call}/Makefile | 0 .../TestDiagnoseDereferenceVirtualMethodCall.py | 25 + .../frame-diagnose/virtual-method-call/main.cpp | 16 + source/Commands/CommandObjectFrame.cpp | 203 +++++++ source/Expression/DWARFExpression.cpp | 148 ++++++ source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp | 7 + source/Plugins/ABI/SysV-arm64/ABISysV_arm64.h | 3 + source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp | 7 + source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.h | 5 +- .../Disassembler/llvm/DisassemblerLLVMC.cpp | 566 ++++++++++++++++++++ .../Plugins/Disassembler/llvm/DisassemblerLLVMC.h | 1 + source/Target/Process.cpp | 18 + source/Target/StackFrame.cpp | 583 +++++++++++++++++++++ source/Target/StopInfo.cpp | 46 ++ 43 files changed, 2109 insertions(+), 4 deletions(-) copy packages/Python/lldbsuite/test/functionalities/{breakpoint/breakpoint_ignore_ [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/a [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/a [...] copy packages/Python/lldbsuite/test/functionalities/{breakpoint/breakpoint_set_res [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/b [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/b [...] copy packages/Python/lldbsuite/test/functionalities/{breakpoint/breakpoint_ignore_ [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/c [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/c [...] copy packages/Python/lldbsuite/test/functionalities/{breakpoint/breakpoint_ignore_ [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/d [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/d [...] copy packages/Python/lldbsuite/test/functionalities/{breakpoint/breakpoint_set_res [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/d [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/d [...] copy packages/Python/lldbsuite/test/functionalities/{breakpoint/breakpoint_set_res [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/d [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/d [...] copy packages/Python/lldbsuite/test/functionalities/{breakpoint/breakpoint_set_res [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/i [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/i [...] copy packages/Python/lldbsuite/test/functionalities/{breakpoint/breakpoint_ignore_ [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/l [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/l [...] copy packages/Python/lldbsuite/test/functionalities/{breakpoint/breakpoint_set_res [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/v [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/frame-diagnose/v [...]