diff options
author | Jim Ingham <jingham@apple.com> | 2012-12-12 19:58:40 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-12-12 19:58:40 +0000 |
commit | c627682ef7b5c67222c3a08f3e982697feb564d7 (patch) | |
tree | 947414007c0eac254436c8e952ac3e00243da590 /lldb/source/Target/Thread.cpp | |
parent | e11ab3aafedc9fdaecc5ed5e91741897bd0009cf (diff) | |
download | bcm5719-llvm-c627682ef7b5c67222c3a08f3e982697feb564d7.tar.gz bcm5719-llvm-c627682ef7b5c67222c3a08f3e982697feb564d7.zip |
Fixed a few bugs in the "step in" thread plan logic.
Added a "step-in-target" flag to "thread step-in" so if you have something like:
Process 28464 stopped
* thread #1: tid = 0x1c03, function: main , stop reason = breakpoint 1.1
frame #0: 0x0000000100000e08 a.out`main at main.c:62
61
-> 62 int A6 = complex (a(4), b(5), c(6)); // Stop here to step targetting b and hitting breakpoint.
63
and you want to get into "complex" skipping a, b and c, you can do:
(lldb) step -t complex
Process 28464 stopped
* thread #1: tid = 0x1c03, function: complex , stop reason = step in
frame #0: 0x0000000100000d0d a.out`complex at main.c:44
41
42 int complex (int first, int second, int third)
43 {
-> 44 return first + second + third; // Step in targetting complex should stop here
45 }
46
47 int main (int argc, char const *argv[])
llvm-svn: 170008
Diffstat (limited to 'lldb/source/Target/Thread.cpp')
-rw-r--r-- | lldb/source/Target/Thread.cpp | 39 |
1 files changed, 26 insertions, 13 deletions
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp index 34b8600a815..7c5a0d7c2fc 100644 --- a/lldb/source/Target/Thread.cpp +++ b/lldb/source/Target/Thread.cpp @@ -1188,28 +1188,41 @@ Thread::QueueThreadPlanForStepSingleInstruction } ThreadPlan * -Thread::QueueThreadPlanForStepRange +Thread::QueueThreadPlanForStepOverRange ( bool abort_other_plans, - StepType type, const AddressRange &range, - const SymbolContext &addr_context, + const SymbolContext &addr_context, + lldb::RunMode stop_other_threads +) +{ + ThreadPlanSP thread_plan_sp; + thread_plan_sp.reset (new ThreadPlanStepOverRange (*this, range, addr_context, stop_other_threads)); + + QueueThreadPlan (thread_plan_sp, abort_other_plans); + return thread_plan_sp.get(); +} + +ThreadPlan * +Thread::QueueThreadPlanForStepInRange +( + bool abort_other_plans, + const AddressRange &range, + const SymbolContext &addr_context, + const char *step_in_target, lldb::RunMode stop_other_threads, bool avoid_code_without_debug_info ) { ThreadPlanSP thread_plan_sp; - if (type == eStepTypeInto) - { - ThreadPlanStepInRange *plan = new ThreadPlanStepInRange (*this, range, addr_context, stop_other_threads); - if (avoid_code_without_debug_info) - plan->GetFlags().Set (ThreadPlanShouldStopHere::eAvoidNoDebug); - else - plan->GetFlags().Clear (ThreadPlanShouldStopHere::eAvoidNoDebug); - thread_plan_sp.reset (plan); - } + ThreadPlanStepInRange *plan = new ThreadPlanStepInRange (*this, range, addr_context, stop_other_threads); + if (avoid_code_without_debug_info) + plan->GetFlags().Set (ThreadPlanShouldStopHere::eAvoidNoDebug); else - thread_plan_sp.reset (new ThreadPlanStepOverRange (*this, range, addr_context, stop_other_threads)); + plan->GetFlags().Clear (ThreadPlanShouldStopHere::eAvoidNoDebug); + if (step_in_target) + plan->SetStepInTarget(step_in_target); + thread_plan_sp.reset (plan); QueueThreadPlan (thread_plan_sp, abort_other_plans); return thread_plan_sp.get(); |