This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from af5506cfd [reproducer] Post-commit cleanup new 92ece34c9 Add setting to require hardware breakpoints. new e080ab94d Fix copy/paste mistake for r346919.
The 2 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/SBBreakpoint.h | 2 + include/lldb/API/SBThreadPlan.h | 12 ++ include/lldb/Breakpoint/Breakpoint.h | 8 ++ include/lldb/Target/Target.h | 4 + include/lldb/Target/Thread.h | 71 +++++++----- include/lldb/Target/ThreadPlan.h | 6 +- include/lldb/Target/ThreadPlanPython.h | 1 + include/lldb/Target/ThreadPlanShouldStopHere.h | 14 ++- include/lldb/Target/ThreadPlanStepInRange.h | 6 +- include/lldb/Target/ThreadPlanStepInstruction.h | 3 +- include/lldb/Target/ThreadPlanStepOut.h | 2 +- include/lldb/Target/ThreadPlanStepThrough.h | 3 +- include/lldb/Target/ThreadPlanStepUntil.h | 2 +- include/lldb/lldb-private-interfaces.h | 4 +- .../Makefile | 0 .../TestRequireHWBreakpoints.py | 102 +++++++++++++++++ .../breakpoint/require_hw_breakpoints/main.c | 9 ++ .../step_scripted/TestStepScripted.py | 2 +- scripts/interface/SBBreakpoint.i | 3 + source/API/SBBreakpoint.cpp | 7 ++ source/API/SBThread.cpp | 98 ++++++++++------- source/API/SBThreadPlan.cpp | 94 ++++++++++++++-- source/Breakpoint/Breakpoint.cpp | 4 + source/Commands/CommandObjectThread.cpp | 41 ++++--- source/Core/Debugger.cpp | 2 +- .../AppleThreadPlanStepThroughObjCTrampoline.cpp | 6 +- source/Target/Process.cpp | 2 +- source/Target/StopInfo.cpp | 16 ++- source/Target/Target.cpp | 23 +++- source/Target/Thread.cpp | 121 ++++++++++++--------- source/Target/ThreadPlan.cpp | 1 + source/Target/ThreadPlanCallOnFunctionExit.cpp | 7 +- source/Target/ThreadPlanPython.cpp | 18 +-- source/Target/ThreadPlanRunToAddress.cpp | 10 +- source/Target/ThreadPlanShouldStopHere.cpp | 27 ++--- source/Target/ThreadPlanStepInRange.cpp | 32 ++++-- source/Target/ThreadPlanStepInstruction.cpp | 13 ++- source/Target/ThreadPlanStepOut.cpp | 27 +++-- source/Target/ThreadPlanStepOverRange.cpp | 32 ++++-- source/Target/ThreadPlanStepRange.cpp | 18 ++- source/Target/ThreadPlanStepThrough.cpp | 25 ++++- source/Target/ThreadPlanStepUntil.cpp | 15 ++- 42 files changed, 658 insertions(+), 235 deletions(-) copy packages/Python/lldbsuite/test/functionalities/breakpoint/{breakpoint_locatio [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/breakpoint/requi [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/breakpoint/requi [...]