summaryrefslogtreecommitdiff
path: root/scripts/interface
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2017-05-08 17:13:54 +0000
committerDimitry Andric <dim@FreeBSD.org>2017-05-08 17:13:54 +0000
commit8b4000f13b303cc154136abc74c55670673e2a96 (patch)
treecde70521176ae2fac67cb037f0a876972b9cc5f0 /scripts/interface
parent52fd8de56a8a12201c1e6188e1f34d28c3d3398d (diff)
Notes
Diffstat (limited to 'scripts/interface')
-rw-r--r--scripts/interface/SBInstruction.i3
-rw-r--r--scripts/interface/SBInstructionList.i3
2 files changed, 6 insertions, 0 deletions
diff --git a/scripts/interface/SBInstruction.i b/scripts/interface/SBInstruction.i
index d5b60201e95e..c78799c6fe69 100644
--- a/scripts/interface/SBInstruction.i
+++ b/scripts/interface/SBInstruction.i
@@ -54,6 +54,9 @@ public:
bool
HasDelaySlot ();
+ bool
+ CanSetBreakpoint ();
+
void
Print (FILE *out);
diff --git a/scripts/interface/SBInstructionList.i b/scripts/interface/SBInstructionList.i
index 32603be5cc1e..f4b572c341cd 100644
--- a/scripts/interface/SBInstructionList.i
+++ b/scripts/interface/SBInstructionList.i
@@ -44,6 +44,9 @@ public:
lldb::SBInstruction
GetInstructionAtIndex (uint32_t idx);
+ size_t GetInstructionsCount(const SBAddress &start, const SBAddress &end,
+ bool canSetBreakpoint);
+
void
Clear ();