mirror of
https://github.com/intel/llvm.git
synced 2026-01-15 04:17:17 +08:00
This fix really needed to happen as a previous fix I had submitted for calculating symbol sizes made many symbols appear to have zero size since the function that was calculating the symbol size was calling another function that would cause the calculation to happen again. This resulted in some symbols having zero size when they shouldn't. This could then cause infinite stack traces and many other side affects. llvm-svn: 152244
284 lines
8.6 KiB
C++
284 lines
8.6 KiB
C++
//===-- ThreadPlanStepRange.cpp ---------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lldb/Target/ThreadPlanStepRange.h"
|
|
|
|
// C Includes
|
|
// C++ Includes
|
|
// Other libraries and framework includes
|
|
// Project includes
|
|
|
|
#include "lldb/lldb-private-log.h"
|
|
#include "lldb/Core/Log.h"
|
|
#include "lldb/Core/Stream.h"
|
|
#include "lldb/Symbol/Function.h"
|
|
#include "lldb/Symbol/Symbol.h"
|
|
#include "lldb/Target/Process.h"
|
|
#include "lldb/Target/RegisterContext.h"
|
|
#include "lldb/Target/StopInfo.h"
|
|
#include "lldb/Target/Thread.h"
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
// ThreadPlanStepRange: Step through a stack range, either stepping over or into
|
|
// based on the value of \a type.
|
|
//----------------------------------------------------------------------
|
|
|
|
ThreadPlanStepRange::ThreadPlanStepRange (ThreadPlanKind kind,
|
|
const char *name,
|
|
Thread &thread,
|
|
const AddressRange &range,
|
|
const SymbolContext &addr_context,
|
|
lldb::RunMode stop_others) :
|
|
ThreadPlan (kind, name, thread, eVoteNoOpinion, eVoteNoOpinion),
|
|
m_addr_context (addr_context),
|
|
m_address_ranges (),
|
|
m_stop_others (stop_others),
|
|
m_stack_id (),
|
|
m_no_more_plans (false),
|
|
m_first_run_event (true)
|
|
{
|
|
AddRange(range);
|
|
m_stack_id = m_thread.GetStackFrameAtIndex(0)->GetStackID();
|
|
}
|
|
|
|
ThreadPlanStepRange::~ThreadPlanStepRange ()
|
|
{
|
|
}
|
|
|
|
bool
|
|
ThreadPlanStepRange::ValidatePlan (Stream *error)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
Vote
|
|
ThreadPlanStepRange::ShouldReportStop (Event *event_ptr)
|
|
{
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
|
|
|
|
const Vote vote = IsPlanComplete() ? eVoteYes : eVoteNo;
|
|
if (log)
|
|
log->Printf ("ThreadPlanStepRange::ShouldReportStop() returning vote %i\n", vote);
|
|
return vote;
|
|
}
|
|
|
|
void
|
|
ThreadPlanStepRange::AddRange(const AddressRange &new_range)
|
|
{
|
|
// For now I'm just adding the ranges. At some point we may want to
|
|
// condense the ranges if they overlap, though I don't think it is likely
|
|
// to be very important.
|
|
m_address_ranges.push_back (new_range);
|
|
}
|
|
|
|
void
|
|
ThreadPlanStepRange::DumpRanges(Stream *s)
|
|
{
|
|
size_t num_ranges = m_address_ranges.size();
|
|
if (num_ranges == 1)
|
|
{
|
|
m_address_ranges[0].Dump (s, m_thread.CalculateTarget().get(), Address::DumpStyleLoadAddress);
|
|
}
|
|
else
|
|
{
|
|
for (size_t i = 0; i < num_ranges; i++)
|
|
{
|
|
s->PutCString("%d: ");
|
|
m_address_ranges[i].Dump (s, m_thread.CalculateTarget().get(), Address::DumpStyleLoadAddress);
|
|
}
|
|
}
|
|
}
|
|
|
|
bool
|
|
ThreadPlanStepRange::InRange ()
|
|
{
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
|
|
bool ret_value = false;
|
|
|
|
lldb::addr_t pc_load_addr = m_thread.GetRegisterContext()->GetPC();
|
|
|
|
size_t num_ranges = m_address_ranges.size();
|
|
for (size_t i = 0; i < num_ranges; i++)
|
|
{
|
|
ret_value = m_address_ranges[i].ContainsLoadAddress(pc_load_addr, m_thread.CalculateTarget().get());
|
|
if (ret_value)
|
|
break;
|
|
}
|
|
|
|
if (!ret_value)
|
|
{
|
|
// See if we've just stepped to another part of the same line number...
|
|
StackFrame *frame = m_thread.GetStackFrameAtIndex(0).get();
|
|
|
|
SymbolContext new_context(frame->GetSymbolContext(eSymbolContextEverything));
|
|
if (m_addr_context.line_entry.IsValid() && new_context.line_entry.IsValid())
|
|
{
|
|
if (m_addr_context.line_entry.file == new_context.line_entry.file)
|
|
{
|
|
if (m_addr_context.line_entry.line == new_context.line_entry.line)
|
|
{
|
|
m_addr_context = new_context;
|
|
AddRange(m_addr_context.line_entry.range);
|
|
ret_value = true;
|
|
if (log)
|
|
{
|
|
StreamString s;
|
|
m_addr_context.line_entry.range.Dump (&s,
|
|
m_thread.CalculateTarget().get(),
|
|
Address::DumpStyleLoadAddress);
|
|
|
|
log->Printf ("Step range plan stepped to another range of same line: %s", s.GetData());
|
|
}
|
|
}
|
|
else if (new_context.line_entry.range.GetBaseAddress().GetLoadAddress(m_thread.CalculateTarget().get())
|
|
!= pc_load_addr)
|
|
{
|
|
// Another thing that sometimes happens here is that we step out of one line into the MIDDLE of another
|
|
// line. So far I mostly see this due to bugs in the debug information.
|
|
// But we probably don't want to be in the middle of a line range, so in that case reset the stepping
|
|
// range to the line we've stepped into the middle of and continue.
|
|
m_addr_context = new_context;
|
|
m_address_ranges.clear();
|
|
AddRange(m_addr_context.line_entry.range);
|
|
ret_value = true;
|
|
if (log)
|
|
{
|
|
StreamString s;
|
|
m_addr_context.line_entry.range.Dump (&s,
|
|
m_thread.CalculateTarget().get(),
|
|
Address::DumpStyleLoadAddress);
|
|
|
|
log->Printf ("Step range plan stepped to the middle of new line(%d): %s, continuing to clear this line.",
|
|
new_context.line_entry.line,
|
|
s.GetData());
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!ret_value && log)
|
|
log->Printf ("Step range plan out of range to 0x%llx", pc_load_addr);
|
|
|
|
return ret_value;
|
|
}
|
|
|
|
bool
|
|
ThreadPlanStepRange::InSymbol()
|
|
{
|
|
lldb::addr_t cur_pc = m_thread.GetRegisterContext()->GetPC();
|
|
if (m_addr_context.function != NULL)
|
|
{
|
|
return m_addr_context.function->GetAddressRange().ContainsLoadAddress (cur_pc, m_thread.CalculateTarget().get());
|
|
}
|
|
else if (m_addr_context.symbol)
|
|
{
|
|
AddressRange range(m_addr_context.symbol->GetAddress(), m_addr_context.symbol->GetByteSize());
|
|
return range.ContainsLoadAddress (cur_pc, m_thread.CalculateTarget().get());
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// FIXME: This should also handle inlining if we aren't going to do inlining in the
|
|
// main stack.
|
|
//
|
|
// Ideally we should remember the whole stack frame list, and then compare that
|
|
// to the current list.
|
|
|
|
lldb::FrameComparison
|
|
ThreadPlanStepRange::CompareCurrentFrameToStartFrame()
|
|
{
|
|
FrameComparison frame_order;
|
|
|
|
StackID cur_frame_id = m_thread.GetStackFrameAtIndex(0)->GetStackID();
|
|
|
|
if (cur_frame_id == m_stack_id)
|
|
{
|
|
frame_order = eFrameCompareEqual;
|
|
}
|
|
else if (cur_frame_id < m_stack_id)
|
|
{
|
|
frame_order = eFrameCompareYounger;
|
|
}
|
|
else
|
|
{
|
|
frame_order = eFrameCompareOlder;
|
|
}
|
|
return frame_order;
|
|
}
|
|
|
|
bool
|
|
ThreadPlanStepRange::StopOthers ()
|
|
{
|
|
if (m_stop_others == lldb::eOnlyThisThread
|
|
|| m_stop_others == lldb::eOnlyDuringStepping)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
ThreadPlanStepRange::WillStop ()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
StateType
|
|
ThreadPlanStepRange::GetPlanRunState ()
|
|
{
|
|
return eStateStepping;
|
|
}
|
|
|
|
bool
|
|
ThreadPlanStepRange::MischiefManaged ()
|
|
{
|
|
bool done = true;
|
|
if (!IsPlanComplete())
|
|
{
|
|
if (InRange())
|
|
{
|
|
done = false;
|
|
}
|
|
else
|
|
{
|
|
FrameComparison frame_order = CompareCurrentFrameToStartFrame();
|
|
if (frame_order != eFrameCompareOlder)
|
|
{
|
|
if (m_no_more_plans)
|
|
done = true;
|
|
else
|
|
done = false;
|
|
}
|
|
else
|
|
done = true;
|
|
}
|
|
}
|
|
|
|
if (done)
|
|
{
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
|
|
if (log)
|
|
log->Printf("Completed step through range plan.");
|
|
ThreadPlan::MischiefManaged ();
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
|
|
}
|