[Lldb-commits] [PATCH] D54221: Add setting to require hardware breakpoints.
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 7 12:36:29 PST 2018
JDevlieghere created this revision.
JDevlieghere added reviewers: jingham, jasonmolenda.
JDevlieghere added a project: LLDB.
Herald added subscribers: teemperor, abidh.
When debugging read-only memory we cannot use software breakpoint. We already have support for hardware breakpoints and users can specify them with `-H`. However, there's no option to force hardware breakpoints even while stepping.
This patch adds a setting `target.require-hardware-breakpoint` that forces LLDB to always use hardware breakpoints. Because hardware breakpoints are a limited resource and therefore can fail to resolve, this patch also extends error handling in thread plans, where breakpoints are used for stepping.
Repository:
rLLDB LLDB
https://reviews.llvm.org/D54221
Files:
include/lldb/API/SBBreakpoint.h
include/lldb/Breakpoint/Breakpoint.h
include/lldb/Target/Target.h
include/lldb/Target/Thread.h
include/lldb/Target/ThreadPlanBase.h
include/lldb/Target/ThreadPlanStepInRange.h
include/lldb/Target/ThreadPlanStepInstruction.h
include/lldb/Target/ThreadPlanStepOut.h
include/lldb/Target/ThreadPlanStepRange.h
include/lldb/Target/ThreadPlanStepThrough.h
include/lldb/Target/ThreadPlanStepUntil.h
packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/Makefile
packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/TestRequireHWBreakpoints.py
packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/main.c
scripts/interface/SBBreakpoint.i
source/API/SBBreakpoint.cpp
source/API/SBThread.cpp
source/API/SBThreadPlan.cpp
source/Breakpoint/Breakpoint.cpp
source/Commands/CommandObjectThread.cpp
source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
source/Target/Process.cpp
source/Target/StopInfo.cpp
source/Target/Target.cpp
source/Target/Thread.cpp
source/Target/ThreadPlanCallOnFunctionExit.cpp
source/Target/ThreadPlanShouldStopHere.cpp
source/Target/ThreadPlanStepInRange.cpp
source/Target/ThreadPlanStepInstruction.cpp
source/Target/ThreadPlanStepOut.cpp
source/Target/ThreadPlanStepOverRange.cpp
source/Target/ThreadPlanStepRange.cpp
source/Target/ThreadPlanStepThrough.cpp
source/Target/ThreadPlanStepUntil.cpp
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D54221.173004.patch
Type: text/x-patch
Size: 65388 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20181107/0104af84/attachment-0001.bin>
More information about the lldb-commits
mailing list