This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 347436e1d [lit] Force site configs to be run before source-tree configs new 3d7c399b5 Make breakpoint names real entities.
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/LLDB.h | 1 + include/lldb/API/SBBreakpoint.h | 10 +- include/lldb/API/SBBreakpointLocation.h | 1 + include/lldb/API/SBBreakpointName.h | 115 +++ include/lldb/API/SBDebugger.h | 2 + include/lldb/API/SBDefines.h | 6 + include/lldb/API/SBError.h | 1 + include/lldb/API/SBStream.h | 1 + include/lldb/API/SBStringList.h | 1 + include/lldb/API/SBTarget.h | 5 + include/lldb/API/SBThread.h | 1 + include/lldb/Breakpoint/Breakpoint.h | 38 +- include/lldb/Breakpoint/BreakpointIDList.h | 4 + include/lldb/Breakpoint/BreakpointList.h | 9 + include/lldb/Breakpoint/BreakpointName.h | 213 ++++ include/lldb/Breakpoint/BreakpointOptions.h | 38 +- include/lldb/Target/Target.h | 39 +- include/lldb/lldb-forward.h | 2 + lldb.xcodeproj/project.pbxproj | 26 + .../xcshareddata/xcschemes/LLDB.xcscheme | 2 + .../auto_continue/TestBreakpointAutoContinue.py | 2 +- .../breakpoint_command/TestBreakpointCommand.py | 2 +- .../breakpoint_names/TestBreakpointNames.py | 247 ++++- .../TestDefaultConstructorForAPIObjects.py | 11 + .../default-constructor/sb_breakpointname.py | 42 + scripts/Python/python-extensions.swig | 15 + scripts/Python/python-swigsafecast.swig | 7 + scripts/interface/SBBreakpoint.i | 6 - scripts/interface/SBBreakpointName.i | 108 +++ scripts/interface/SBDebugger.i | 5 + scripts/interface/SBTarget.i | 4 + scripts/lldb.swig | 2 + source/API/SBBreakpoint.cpp | 68 +- source/API/SBBreakpointName.cpp | 662 +++++++++++++ source/API/SBBreakpointOptionCommon.cpp | 84 ++ source/API/SBBreakpointOptionCommon.h | 35 + source/API/SBDebugger.cpp | 14 + source/API/SBTarget.cpp | 33 +- source/Breakpoint/Breakpoint.cpp | 20 +- source/Breakpoint/BreakpointID.cpp | 11 +- source/Breakpoint/BreakpointIDList.cpp | 34 +- source/Breakpoint/BreakpointList.cpp | 33 + source/Breakpoint/BreakpointName.cpp | 88 ++ source/Breakpoint/BreakpointOptions.cpp | 91 +- source/Commands/CommandObjectBreakpoint.cpp | 1017 +++++++++++--------- source/Commands/CommandObjectBreakpoint.h | 19 +- source/Commands/CommandObjectBreakpointCommand.cpp | 9 +- source/Interpreter/CommandObject.cpp | 3 +- .../RenderScriptRuntime/RenderScriptRuntime.cpp | 24 +- source/Target/Target.cpp | 140 +++ 50 files changed, 2744 insertions(+), 607 deletions(-) create mode 100644 include/lldb/API/SBBreakpointName.h create mode 100644 include/lldb/Breakpoint/BreakpointName.h create mode 100644 packages/Python/lldbsuite/test/python_api/default-constructor/s [...] create mode 100644 scripts/interface/SBBreakpointName.i create mode 100644 source/API/SBBreakpointName.cpp create mode 100644 source/API/SBBreakpointOptionCommon.cpp create mode 100644 source/API/SBBreakpointOptionCommon.h create mode 100644 source/Breakpoint/BreakpointName.cpp