summaryrefslogtreecommitdiff
path: root/lldb/examples
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2016-05-03 00:14:52 +0000
committerJim Ingham <jingham@apple.com>2016-05-03 00:14:52 +0000
commitb09795c15363dc9087267053c78369f3eb748594 (patch)
tree1981898d4777c37b00f440edb7dc971a02192cc0 /lldb/examples
parent987744c4af3ebad8995d108e8b21e258193a2b58 (diff)
Another little example use of scripted thread plans.
Diffstat (limited to 'lldb/examples')
-rw-r--r--lldb/examples/python/scripted_step.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/lldb/examples/python/scripted_step.py b/lldb/examples/python/scripted_step.py
index 8affb9e8322..6be39718872 100644
--- a/lldb/examples/python/scripted_step.py
+++ b/lldb/examples/python/scripted_step.py
@@ -184,3 +184,28 @@ class StepCheckingCondition:
def should_step (self):
return True
+# Here's an example that steps out of the current frame, gathers some information
+# and then continues. The information in this case is rax. Currently the thread
+# plans are not a safe place to call lldb command-line commands, so the information
+# is gathered through SB API calls.
+
+class FinishPrintAndContinue:
+ def __init__ (self, thread_plan, dict):
+ self.thread_plan = thread_plan
+ self.step_out_thread_plan = thread_plan.QueueThreadPlanForStepOut(0, True)
+ self.thread = self.thread_plan.GetThread()
+
+ def explains_stop (self, event):
+ return False
+
+ def should_stop (self, event):
+ if self.step_out_thread_plan.IsPlanComplete():
+ frame_0 = self.thread.frames[0]
+ rax_value = frame_0.FindRegister("rax")
+ if rax_value.GetError().Success():
+ print "RAX on exit: ", rax_value.GetValue()
+ else:
+ print "Couldn't get rax value:", rax_value.GetError().GetCString()
+
+ self.thread_plan.SetPlanComplete(True)
+ return False