summaryrefslogtreecommitdiffstats
path: root/lldb/source/Target/ThreadPlanStepInstruction.cpp
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2012-03-01 20:01:22 +0000
committerJim Ingham <jingham@apple.com>2012-03-01 20:01:22 +0000
commit6b35c86fbe21c209aa436a78cac6b88428ddcb4c (patch)
treefa89154c3c63b8e426101e3077f690d96aa26e6f /lldb/source/Target/ThreadPlanStepInstruction.cpp
parentbe1c875a1c20dd3bd9e35c4c9627e24e8610b1b3 (diff)
downloadbcm5719-llvm-6b35c86fbe21c209aa436a78cac6b88428ddcb4c.tar.gz
bcm5719-llvm-6b35c86fbe21c209aa436a78cac6b88428ddcb4c.zip
Purge a couple more uses of stack count for stepping.
llvm-svn: 151833
Diffstat (limited to 'lldb/source/Target/ThreadPlanStepInstruction.cpp')
-rw-r--r--lldb/source/Target/ThreadPlanStepInstruction.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/lldb/source/Target/ThreadPlanStepInstruction.cpp b/lldb/source/Target/ThreadPlanStepInstruction.cpp
index ac337cbc8c4..c4b9ccac1f3 100644
--- a/lldb/source/Target/ThreadPlanStepInstruction.cpp
+++ b/lldb/source/Target/ThreadPlanStepInstruction.cpp
@@ -41,11 +41,10 @@ ThreadPlanStepInstruction::ThreadPlanStepInstruction
ThreadPlan (ThreadPlan::eKindStepInstruction, "Step over single instruction", thread, stop_vote, run_vote),
m_instruction_addr (0),
m_stop_other_threads (stop_other_threads),
- m_step_over (step_over),
- m_stack_depth (0)
+ m_step_over (step_over)
{
m_instruction_addr = m_thread.GetRegisterContext()->GetPC(0);
- m_stack_depth = m_thread.GetStackFrameCount();
+ m_stack_id = m_thread.GetStackFrameAtIndex(0)->GetStackID();
}
ThreadPlanStepInstruction::~ThreadPlanStepInstruction ()
@@ -102,7 +101,10 @@ ThreadPlanStepInstruction::ShouldStop (Event *event_ptr)
if (m_step_over)
{
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
- if (m_thread.GetStackFrameCount() <= m_stack_depth)
+
+ StackID cur_frame_zero_id = m_thread.GetStackFrameAtIndex(0)->GetStackID();
+
+ if (cur_frame_zero_id == m_stack_id || m_stack_id < cur_frame_zero_id)
{
if (m_thread.GetRegisterContext()->GetPC(0) != m_instruction_addr)
{
OpenPOWER on IntegriCloud