2010-06-09 00:52:24 +08:00
|
|
|
//===-- Breakpoint.cpp ------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
|
|
// C Includes
|
|
|
|
// C++ Includes
|
|
|
|
// Other libraries and framework includes
|
|
|
|
// Project includes
|
|
|
|
|
|
|
|
#include "lldb/Core/Address.h"
|
|
|
|
#include "lldb/Breakpoint/Breakpoint.h"
|
|
|
|
#include "lldb/Breakpoint/BreakpointLocation.h"
|
2010-10-29 01:27:46 +08:00
|
|
|
#include "lldb/Breakpoint/BreakpointLocationCollection.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Breakpoint/BreakpointResolver.h"
|
2010-10-29 01:27:46 +08:00
|
|
|
#include "lldb/Breakpoint/BreakpointResolverFileLine.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Core/Log.h"
|
|
|
|
#include "lldb/Core/ModuleList.h"
|
|
|
|
#include "lldb/Core/SearchFilter.h"
|
<rdar://problem/11757916>
Make breakpoint setting by file and line much more efficient by only looking for inlined breakpoint locations if we are setting a breakpoint in anything but a source implementation file. Implementing this complex for a many reasons. Turns out that parsing compile units lazily had some issues with respect to how we need to do things with DWARF in .o files. So the fixes in the checkin for this makes these changes:
- Add a new setting called "target.inline-breakpoint-strategy" which can be set to "never", "always", or "headers". "never" will never try and set any inlined breakpoints (fastest). "always" always looks for inlined breakpoint locations (slowest, but most accurate). "headers", which is the default setting, will only look for inlined breakpoint locations if the breakpoint is set in what are consudered to be header files, which is realy defined as "not in an implementation source file".
- modify the breakpoint setting by file and line to check the current "target.inline-breakpoint-strategy" setting and act accordingly
- Modify compile units to be able to get their language and other info lazily. This allows us to create compile units from the debug map and not have to fill all of the details in, and then lazily discover this information as we go on debuggging. This is needed to avoid parsing all .o files when setting breakpoints in implementation only files (no inlines). Otherwise we would need to parse the .o file, the object file (mach-o in our case) and the symbol file (DWARF in the object file) just to see what the compile unit was.
- modify the "SymbolFileDWARFDebugMap" to subclass lldb_private::Module so that the virtual "GetObjectFile()" and "GetSymbolVendor()" functions can be intercepted when the .o file contenst are later lazilly needed. Prior to this fix, when we first instantiated the "SymbolFileDWARFDebugMap" class, we would also make modules, object files and symbol files for every .o file in the debug map because we needed to fix up the sections in the .o files with information that is in the executable debug map. Now we lazily do this in the DebugMapModule::GetObjectFile()
Cleaned up header includes a bit as well.
llvm-svn: 162860
2012-08-30 05:13:06 +08:00
|
|
|
#include "lldb/Core/Section.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Core/Stream.h"
|
|
|
|
#include "lldb/Core/StreamString.h"
|
|
|
|
#include "lldb/Symbol/SymbolContext.h"
|
|
|
|
#include "lldb/Target/Target.h"
|
2010-06-16 10:00:15 +08:00
|
|
|
#include "lldb/Target/ThreadSpec.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/lldb-private-log.h"
|
2010-10-29 01:27:46 +08:00
|
|
|
#include "llvm/Support/Casting.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
2010-10-29 01:27:46 +08:00
|
|
|
using namespace llvm;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
const ConstString &
|
|
|
|
Breakpoint::GetEventIdentifier ()
|
|
|
|
{
|
|
|
|
static ConstString g_identifier("event-identifier.breakpoint.changed");
|
|
|
|
return g_identifier;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Breakpoint constructor
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
Breakpoint::Breakpoint(Target &target, SearchFilterSP &filter_sp, BreakpointResolverSP &resolver_sp) :
|
2012-02-08 13:23:15 +08:00
|
|
|
m_being_created(true),
|
2010-06-09 00:52:24 +08:00
|
|
|
m_target (target),
|
|
|
|
m_filter_sp (filter_sp),
|
|
|
|
m_resolver_sp (resolver_sp),
|
|
|
|
m_options (),
|
2012-02-08 13:23:15 +08:00
|
|
|
m_locations (*this)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-02-08 13:23:15 +08:00
|
|
|
m_being_created = false;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Destructor
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
Breakpoint::~Breakpoint()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Breakpoint::IsInternal () const
|
|
|
|
{
|
|
|
|
return LLDB_BREAK_ID_IS_INTERNAL(m_bid);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Target&
|
|
|
|
Breakpoint::GetTarget ()
|
|
|
|
{
|
|
|
|
return m_target;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Target&
|
|
|
|
Breakpoint::GetTarget () const
|
|
|
|
{
|
|
|
|
return m_target;
|
|
|
|
}
|
|
|
|
|
|
|
|
BreakpointLocationSP
|
2011-02-05 08:38:04 +08:00
|
|
|
Breakpoint::AddLocation (const Address &addr, bool *new_location)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-02-08 13:23:15 +08:00
|
|
|
return m_locations.AddLocation (addr, new_location);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
BreakpointLocationSP
|
2011-02-05 08:38:04 +08:00
|
|
|
Breakpoint::FindLocationByAddress (const Address &addr)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
return m_locations.FindByAddress(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
break_id_t
|
2011-02-05 08:38:04 +08:00
|
|
|
Breakpoint::FindLocationIDByAddress (const Address &addr)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
return m_locations.FindIDByAddress(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
BreakpointLocationSP
|
|
|
|
Breakpoint::FindLocationByID (break_id_t bp_loc_id)
|
|
|
|
{
|
|
|
|
return m_locations.FindByID(bp_loc_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
BreakpointLocationSP
|
|
|
|
Breakpoint::GetLocationAtIndex (uint32_t index)
|
|
|
|
{
|
|
|
|
return m_locations.GetByIndex(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
// For each of the overall options we need to decide how they propagate to
|
|
|
|
// the location options. This will determine the precedence of options on
|
2012-01-26 07:08:23 +08:00
|
|
|
// the breakpoint vs. its locations.
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
// Disable at the breakpoint level should override the location settings.
|
|
|
|
// That way you can conveniently turn off a whole breakpoint without messing
|
|
|
|
// up the individual settings.
|
|
|
|
|
|
|
|
void
|
|
|
|
Breakpoint::SetEnabled (bool enable)
|
|
|
|
{
|
2012-02-08 13:23:15 +08:00
|
|
|
if (enable == m_options.IsEnabled())
|
|
|
|
return;
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
m_options.SetEnabled(enable);
|
|
|
|
if (enable)
|
|
|
|
m_locations.ResolveAllBreakpointSites();
|
|
|
|
else
|
|
|
|
m_locations.ClearAllBreakpointSites();
|
2012-02-08 13:23:15 +08:00
|
|
|
|
|
|
|
SendBreakpointChangedEvent (enable ? eBreakpointEventTypeEnabled : eBreakpointEventTypeDisabled);
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Breakpoint::IsEnabled ()
|
|
|
|
{
|
|
|
|
return m_options.IsEnabled();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-07-10 04:39:50 +08:00
|
|
|
Breakpoint::SetIgnoreCount (uint32_t n)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-02-08 13:23:15 +08:00
|
|
|
if (m_options.GetIgnoreCount() == n)
|
|
|
|
return;
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
m_options.SetIgnoreCount(n);
|
2012-02-08 13:23:15 +08:00
|
|
|
SendBreakpointChangedEvent (eBreakpointEventTypeIgnoreChanged);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2012-06-27 06:27:55 +08:00
|
|
|
void
|
|
|
|
Breakpoint::DecrementIgnoreCount ()
|
|
|
|
{
|
|
|
|
uint32_t ignore = m_options.GetIgnoreCount();
|
|
|
|
if (ignore != 0)
|
|
|
|
m_options.SetIgnoreCount(ignore - 1);
|
|
|
|
}
|
|
|
|
|
2010-07-10 04:39:50 +08:00
|
|
|
uint32_t
|
2010-06-09 00:52:24 +08:00
|
|
|
Breakpoint::GetIgnoreCount () const
|
|
|
|
{
|
|
|
|
return m_options.GetIgnoreCount();
|
|
|
|
}
|
|
|
|
|
2012-06-27 06:27:55 +08:00
|
|
|
bool
|
|
|
|
Breakpoint::IgnoreCountShouldStop ()
|
|
|
|
{
|
|
|
|
uint32_t ignore = GetIgnoreCount();
|
|
|
|
if (ignore != 0)
|
|
|
|
{
|
|
|
|
// When we get here we know the location that caused the stop doesn't have an ignore count,
|
|
|
|
// since by contract we call it first... So we don't have to find & decrement it, we only have
|
|
|
|
// to decrement our own ignore count.
|
|
|
|
DecrementIgnoreCount();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-07-24 07:33:17 +08:00
|
|
|
uint32_t
|
|
|
|
Breakpoint::GetHitCount () const
|
|
|
|
{
|
|
|
|
return m_locations.GetHitCount();
|
|
|
|
}
|
|
|
|
|
2012-10-06 03:16:31 +08:00
|
|
|
bool
|
|
|
|
Breakpoint::IsOneShot () const
|
|
|
|
{
|
|
|
|
return m_options.IsOneShot();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Breakpoint::SetOneShot (bool one_shot)
|
|
|
|
{
|
|
|
|
m_options.SetOneShot (one_shot);
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
void
|
|
|
|
Breakpoint::SetThreadID (lldb::tid_t thread_id)
|
|
|
|
{
|
2012-02-08 13:23:15 +08:00
|
|
|
if (m_options.GetThreadSpec()->GetTID() == thread_id)
|
|
|
|
return;
|
|
|
|
|
2010-06-16 10:00:15 +08:00
|
|
|
m_options.GetThreadSpec()->SetTID(thread_id);
|
2012-02-08 13:23:15 +08:00
|
|
|
SendBreakpointChangedEvent (eBreakpointEventTypeThreadChanged);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lldb::tid_t
|
2012-02-08 13:23:15 +08:00
|
|
|
Breakpoint::GetThreadID () const
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-02-08 13:23:15 +08:00
|
|
|
if (m_options.GetThreadSpecNoCreate() == NULL)
|
2010-06-16 10:00:15 +08:00
|
|
|
return LLDB_INVALID_THREAD_ID;
|
|
|
|
else
|
2012-02-08 13:23:15 +08:00
|
|
|
return m_options.GetThreadSpecNoCreate()->GetTID();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Breakpoint::SetThreadIndex (uint32_t index)
|
|
|
|
{
|
|
|
|
if (m_options.GetThreadSpec()->GetIndex() == index)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_options.GetThreadSpec()->SetIndex(index);
|
|
|
|
SendBreakpointChangedEvent (eBreakpointEventTypeThreadChanged);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
Breakpoint::GetThreadIndex() const
|
|
|
|
{
|
|
|
|
if (m_options.GetThreadSpecNoCreate() == NULL)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return m_options.GetThreadSpecNoCreate()->GetIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Breakpoint::SetThreadName (const char *thread_name)
|
|
|
|
{
|
2013-01-24 07:14:13 +08:00
|
|
|
if (m_options.GetThreadSpec()->GetName() != NULL
|
|
|
|
&& ::strcmp (m_options.GetThreadSpec()->GetName(), thread_name) == 0)
|
2012-02-08 13:23:15 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
m_options.GetThreadSpec()->SetName (thread_name);
|
|
|
|
SendBreakpointChangedEvent (eBreakpointEventTypeThreadChanged);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
Breakpoint::GetThreadName () const
|
|
|
|
{
|
|
|
|
if (m_options.GetThreadSpecNoCreate() == NULL)
|
|
|
|
return NULL;
|
|
|
|
else
|
|
|
|
return m_options.GetThreadSpecNoCreate()->GetName();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Breakpoint::SetQueueName (const char *queue_name)
|
|
|
|
{
|
2013-01-24 07:14:13 +08:00
|
|
|
if (m_options.GetThreadSpec()->GetQueueName() != NULL
|
|
|
|
&& ::strcmp (m_options.GetThreadSpec()->GetQueueName(), queue_name) == 0)
|
2012-02-08 13:23:15 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
m_options.GetThreadSpec()->SetQueueName (queue_name);
|
|
|
|
SendBreakpointChangedEvent (eBreakpointEventTypeThreadChanged);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
Breakpoint::GetQueueName () const
|
|
|
|
{
|
|
|
|
if (m_options.GetThreadSpecNoCreate() == NULL)
|
|
|
|
return NULL;
|
|
|
|
else
|
|
|
|
return m_options.GetThreadSpecNoCreate()->GetQueueName();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2010-10-15 07:45:03 +08:00
|
|
|
void
|
|
|
|
Breakpoint::SetCondition (const char *condition)
|
|
|
|
{
|
|
|
|
m_options.SetCondition (condition);
|
2012-02-08 13:23:15 +08:00
|
|
|
SendBreakpointChangedEvent (eBreakpointEventTypeConditionChanged);
|
2010-10-15 07:45:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
2011-06-16 05:16:00 +08:00
|
|
|
Breakpoint::GetConditionText () const
|
2010-10-15 07:45:03 +08:00
|
|
|
{
|
|
|
|
return m_options.GetConditionText();
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
// This function is used when "baton" doesn't need to be freed
|
|
|
|
void
|
|
|
|
Breakpoint::SetCallback (BreakpointHitCallback callback, void *baton, bool is_synchronous)
|
|
|
|
{
|
|
|
|
// The default "Baton" class will keep a copy of "baton" and won't free
|
|
|
|
// or delete it when it goes goes out of scope.
|
|
|
|
m_options.SetCallback(callback, BatonSP (new Baton(baton)), is_synchronous);
|
2012-02-08 13:23:15 +08:00
|
|
|
|
|
|
|
SendBreakpointChangedEvent (eBreakpointEventTypeCommandChanged);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// This function is used when a baton needs to be freed and therefore is
|
|
|
|
// contained in a "Baton" subclass.
|
|
|
|
void
|
|
|
|
Breakpoint::SetCallback (BreakpointHitCallback callback, const BatonSP &callback_baton_sp, bool is_synchronous)
|
|
|
|
{
|
|
|
|
m_options.SetCallback(callback, callback_baton_sp, is_synchronous);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Breakpoint::ClearCallback ()
|
|
|
|
{
|
|
|
|
m_options.ClearCallback ();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Breakpoint::InvokeCallback (StoppointCallbackContext *context, break_id_t bp_loc_id)
|
|
|
|
{
|
|
|
|
return m_options.InvokeCallback (context, GetID(), bp_loc_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
BreakpointOptions *
|
|
|
|
Breakpoint::GetOptions ()
|
|
|
|
{
|
|
|
|
return &m_options;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Breakpoint::ResolveBreakpoint ()
|
|
|
|
{
|
|
|
|
if (m_resolver_sp)
|
|
|
|
m_resolver_sp->ResolveBreakpoint(*m_filter_sp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Breakpoint::ResolveBreakpointInModules (ModuleList &module_list)
|
|
|
|
{
|
|
|
|
if (m_resolver_sp)
|
|
|
|
m_resolver_sp->ResolveBreakpointInModules(*m_filter_sp, module_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Breakpoint::ClearAllBreakpointSites ()
|
|
|
|
{
|
|
|
|
m_locations.ClearAllBreakpointSites();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// ModulesChanged: Pass in a list of new modules, and
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void
|
2012-05-18 02:38:42 +08:00
|
|
|
Breakpoint::ModulesChanged (ModuleList &module_list, bool load, bool delete_locations)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-05-30 10:19:25 +08:00
|
|
|
Mutex::Locker modules_mutex(module_list.GetMutex());
|
2010-06-09 00:52:24 +08:00
|
|
|
if (load)
|
|
|
|
{
|
|
|
|
// The logic for handling new modules is:
|
|
|
|
// 1) If the filter rejects this module, then skip it.
|
|
|
|
// 2) Run through the current location list and if there are any locations
|
|
|
|
// for that module, we mark the module as "seen" and we don't try to re-resolve
|
|
|
|
// breakpoint locations for that module.
|
|
|
|
// However, we do add breakpoint sites to these locations if needed.
|
|
|
|
// 3) If we don't see this module in our breakpoint location list, call ResolveInModules.
|
|
|
|
|
|
|
|
ModuleList new_modules; // We'll stuff the "unseen" modules in this list, and then resolve
|
2011-02-05 08:38:04 +08:00
|
|
|
// them after the locations pass. Have to do it this way because
|
|
|
|
// resolving breakpoints will add new locations potentially.
|
|
|
|
|
|
|
|
const size_t num_locs = m_locations.GetSize();
|
2012-05-30 10:19:25 +08:00
|
|
|
size_t num_modules = module_list.GetSize();
|
|
|
|
for (size_t i = 0; i < num_modules; i++)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
bool seen = false;
|
2012-05-30 10:19:25 +08:00
|
|
|
ModuleSP module_sp (module_list.GetModuleAtIndexUnlocked (i));
|
2010-06-09 00:52:24 +08:00
|
|
|
if (!m_filter_sp->ModulePasses (module_sp))
|
|
|
|
continue;
|
|
|
|
|
2011-02-05 08:38:04 +08:00
|
|
|
for (size_t loc_idx = 0; loc_idx < num_locs; loc_idx++)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-12-07 07:51:26 +08:00
|
|
|
BreakpointLocationSP break_loc = m_locations.GetByIndex(loc_idx);
|
2010-10-20 11:36:33 +08:00
|
|
|
if (!break_loc->IsEnabled())
|
|
|
|
continue;
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP section_sp (break_loc->GetAddress().GetSection());
|
|
|
|
if (!section_sp || section_sp->GetModule() == module_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
if (!seen)
|
|
|
|
seen = true;
|
|
|
|
|
|
|
|
if (!break_loc->ResolveBreakpointSite())
|
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log (lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_BREAKPOINTS));
|
2010-06-09 00:52:24 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf ("Warning: could not set breakpoint site for breakpoint location %d of breakpoint %d.\n",
|
|
|
|
break_loc->GetID(), GetID());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!seen)
|
2010-12-13 05:03:32 +08:00
|
|
|
new_modules.AppendIfNeeded (module_sp);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
}
|
2012-02-08 13:23:15 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
if (new_modules.GetSize() > 0)
|
|
|
|
{
|
2012-02-08 13:23:15 +08:00
|
|
|
// If this is not an internal breakpoint, set up to record the new locations, then dispatch
|
|
|
|
// an event with the new locations.
|
|
|
|
if (!IsInternal())
|
|
|
|
{
|
|
|
|
BreakpointEventData *new_locations_event = new BreakpointEventData (eBreakpointEventTypeLocationsAdded,
|
|
|
|
shared_from_this());
|
|
|
|
|
|
|
|
m_locations.StartRecordingNewLocations(new_locations_event->GetBreakpointLocationCollection());
|
|
|
|
|
|
|
|
ResolveBreakpointInModules(new_modules);
|
|
|
|
|
|
|
|
m_locations.StopRecordingNewLocations();
|
|
|
|
if (new_locations_event->GetBreakpointLocationCollection().GetSize() != 0)
|
|
|
|
{
|
|
|
|
SendBreakpointChangedEvent (new_locations_event);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
delete new_locations_event;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ResolveBreakpointInModules(new_modules);
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Go through the currently set locations and if any have breakpoints in
|
2012-05-18 02:38:42 +08:00
|
|
|
// the module list, then remove their breakpoint sites, and their locations if asked to.
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2012-02-08 13:23:15 +08:00
|
|
|
BreakpointEventData *removed_locations_event;
|
|
|
|
if (!IsInternal())
|
|
|
|
removed_locations_event = new BreakpointEventData (eBreakpointEventTypeLocationsRemoved,
|
|
|
|
shared_from_this());
|
|
|
|
else
|
|
|
|
removed_locations_event = NULL;
|
2012-05-30 10:19:25 +08:00
|
|
|
|
|
|
|
size_t num_modules = module_list.GetSize();
|
|
|
|
for (size_t i = 0; i < num_modules; i++)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-05-30 10:19:25 +08:00
|
|
|
ModuleSP module_sp (module_list.GetModuleAtIndexUnlocked (i));
|
2010-12-07 07:51:26 +08:00
|
|
|
if (m_filter_sp->ModulePasses (module_sp))
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
size_t loc_idx = 0;
|
2012-05-18 02:38:42 +08:00
|
|
|
size_t num_locations = m_locations.GetSize();
|
|
|
|
BreakpointLocationCollection locations_to_remove;
|
|
|
|
for (loc_idx = 0; loc_idx < num_locations; loc_idx++)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
BreakpointLocationSP break_loc_sp (m_locations.GetByIndex(loc_idx));
|
|
|
|
SectionSP section_sp (break_loc_sp->GetAddress().GetSection());
|
|
|
|
if (section_sp && section_sp->GetModule() == module_sp)
|
2010-12-07 07:51:26 +08:00
|
|
|
{
|
|
|
|
// Remove this breakpoint since the shared library is
|
|
|
|
// unloaded, but keep the breakpoint location around
|
|
|
|
// so we always get complete hit count and breakpoint
|
|
|
|
// lifetime info
|
2012-02-24 09:59:29 +08:00
|
|
|
break_loc_sp->ClearBreakpointSite();
|
2012-02-08 13:23:15 +08:00
|
|
|
if (removed_locations_event)
|
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
removed_locations_event->GetBreakpointLocationCollection().Add(break_loc_sp);
|
2012-02-08 13:23:15 +08:00
|
|
|
}
|
2012-05-18 02:38:42 +08:00
|
|
|
if (delete_locations)
|
|
|
|
locations_to_remove.Add (break_loc_sp);
|
|
|
|
|
2010-12-07 07:51:26 +08:00
|
|
|
}
|
2012-05-18 02:38:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (delete_locations)
|
|
|
|
{
|
|
|
|
size_t num_locations_to_remove = locations_to_remove.GetSize();
|
|
|
|
for (loc_idx = 0; loc_idx < num_locations_to_remove; loc_idx++)
|
|
|
|
m_locations.RemoveLocation (locations_to_remove.GetByIndex(loc_idx));
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-02-08 13:23:15 +08:00
|
|
|
SendBreakpointChangedEvent (removed_locations_event);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-18 02:38:42 +08:00
|
|
|
void
|
|
|
|
Breakpoint::ModuleReplaced (ModuleSP old_module_sp, ModuleSP new_module_sp)
|
|
|
|
{
|
|
|
|
ModuleList temp_list;
|
|
|
|
temp_list.Append (new_module_sp);
|
|
|
|
ModulesChanged (temp_list, true);
|
|
|
|
|
|
|
|
// TO DO: For now I'm just adding locations for the new module and removing the
|
|
|
|
// breakpoint locations that were in the old module.
|
|
|
|
// We should really go find the ones that are in the new module & if we can determine that they are "equivalent"
|
|
|
|
// carry over the options from the old location to the new.
|
|
|
|
|
|
|
|
temp_list.Clear();
|
|
|
|
temp_list.Append (old_module_sp);
|
|
|
|
ModulesChanged (temp_list, false, true);
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
void
|
|
|
|
Breakpoint::Dump (Stream *)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
Breakpoint::GetNumResolvedLocations() const
|
|
|
|
{
|
|
|
|
// Return the number of breakpoints that are actually resolved and set
|
|
|
|
// down in the inferior process.
|
|
|
|
return m_locations.GetNumResolvedLocations();
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
Breakpoint::GetNumLocations() const
|
|
|
|
{
|
|
|
|
return m_locations.GetSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Breakpoint::GetDescription (Stream *s, lldb::DescriptionLevel level, bool show_locations)
|
|
|
|
{
|
2010-07-10 04:39:50 +08:00
|
|
|
const size_t num_locations = GetNumLocations ();
|
|
|
|
const size_t num_resolved_locations = GetNumResolvedLocations ();
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2012-09-22 08:04:04 +08:00
|
|
|
assert (s != NULL);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// They just made the breakpoint, they don't need to be told HOW they made it...
|
|
|
|
// Also, we'll print the breakpoint number differently depending on whether there is 1 or more locations.
|
|
|
|
if (level != eDescriptionLevelInitial)
|
|
|
|
{
|
|
|
|
s->Printf("%i: ", GetID());
|
|
|
|
GetResolverDescription (s);
|
|
|
|
GetFilterDescription (s);
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
switch (level)
|
|
|
|
{
|
|
|
|
case lldb::eDescriptionLevelBrief:
|
|
|
|
case lldb::eDescriptionLevelFull:
|
|
|
|
if (num_locations > 0)
|
|
|
|
{
|
2012-11-30 05:49:15 +08:00
|
|
|
s->Printf(", locations = %" PRIu64, (uint64_t)num_locations);
|
2010-06-09 00:52:24 +08:00
|
|
|
if (num_resolved_locations > 0)
|
2012-11-30 05:49:15 +08:00
|
|
|
s->Printf(", resolved = %" PRIu64, (uint64_t)num_resolved_locations);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-03-06 08:37:27 +08:00
|
|
|
// Don't print the pending notification for exception resolvers since we don't generally
|
|
|
|
// know how to set them until the target is run.
|
|
|
|
if (m_resolver_sp->getResolverID() != BreakpointResolver::ExceptionResolver)
|
|
|
|
s->Printf(", locations = 0 (pending)");
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2010-06-18 09:00:58 +08:00
|
|
|
GetOptions()->GetDescription(s, level);
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
if (level == lldb::eDescriptionLevelFull)
|
|
|
|
{
|
2010-06-18 09:00:58 +08:00
|
|
|
s->IndentLess();
|
|
|
|
s->EOL();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
break;
|
2012-09-22 08:04:04 +08:00
|
|
|
|
|
|
|
case lldb::eDescriptionLevelInitial:
|
|
|
|
s->Printf ("Breakpoint %i: ", GetID());
|
|
|
|
if (num_locations == 0)
|
|
|
|
{
|
|
|
|
s->Printf ("no locations (pending).");
|
|
|
|
}
|
|
|
|
else if (num_locations == 1)
|
|
|
|
{
|
|
|
|
// If there is one location only, we'll just print that location information. But don't do this if
|
|
|
|
// show locations is true, then that will be handled below.
|
|
|
|
if (show_locations == false)
|
|
|
|
{
|
|
|
|
GetLocationAtIndex(0)->GetDescription(s, level);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
s->Printf ("%zd locations.", num_locations);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
s->Printf ("%zd locations.", num_locations);
|
|
|
|
}
|
|
|
|
s->EOL();
|
|
|
|
break;
|
2010-06-09 00:52:24 +08:00
|
|
|
case lldb::eDescriptionLevelVerbose:
|
|
|
|
// Verbose mode does a debug dump of the breakpoint
|
|
|
|
Dump (s);
|
2010-06-18 09:00:58 +08:00
|
|
|
s->EOL ();
|
2011-03-19 09:12:21 +08:00
|
|
|
//s->Indent();
|
2010-06-18 09:00:58 +08:00
|
|
|
GetOptions()->GetDescription(s, level);
|
2010-06-09 00:52:24 +08:00
|
|
|
break;
|
2010-07-10 04:39:50 +08:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2011-05-14 09:11:02 +08:00
|
|
|
// The brief description is just the location name (1.2 or whatever). That's pointless to
|
|
|
|
// show in the breakpoint's description, so suppress it.
|
|
|
|
if (show_locations && level != lldb::eDescriptionLevelBrief)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
s->IndentMore();
|
2010-07-10 04:39:50 +08:00
|
|
|
for (size_t i = 0; i < num_locations; ++i)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
BreakpointLocation *loc = GetLocationAtIndex(i).get();
|
|
|
|
loc->GetDescription(s, level);
|
|
|
|
s->EOL();
|
|
|
|
}
|
|
|
|
s->IndentLess();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-09 09:49:26 +08:00
|
|
|
void
|
|
|
|
Breakpoint::GetResolverDescription (Stream *s)
|
|
|
|
{
|
|
|
|
if (m_resolver_sp)
|
|
|
|
m_resolver_sp->GetDescription (s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
Breakpoint::GetMatchingFileLine (const ConstString &filename, uint32_t line_number, BreakpointLocationCollection &loc_coll)
|
|
|
|
{
|
|
|
|
// TODO: To be correct, this method needs to fill the breakpoint location collection
|
|
|
|
// with the location IDs which match the filename and line_number.
|
|
|
|
//
|
|
|
|
|
|
|
|
if (m_resolver_sp)
|
|
|
|
{
|
|
|
|
BreakpointResolverFileLine *resolverFileLine = dyn_cast<BreakpointResolverFileLine>(m_resolver_sp.get());
|
|
|
|
if (resolverFileLine &&
|
|
|
|
resolverFileLine->m_file_spec.GetFilename() == filename &&
|
|
|
|
resolverFileLine->m_line_number == line_number)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Breakpoint::GetFilterDescription (Stream *s)
|
|
|
|
{
|
|
|
|
m_filter_sp->GetDescription (s);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Breakpoint::SendBreakpointChangedEvent (lldb::BreakpointEventType eventKind)
|
|
|
|
{
|
|
|
|
if (!m_being_created
|
|
|
|
&& !IsInternal()
|
|
|
|
&& GetTarget().EventTypeHasListeners(Target::eBroadcastBitBreakpointChanged))
|
|
|
|
{
|
|
|
|
BreakpointEventData *data = new Breakpoint::BreakpointEventData (eventKind, shared_from_this());
|
|
|
|
|
|
|
|
GetTarget().BroadcastEvent (Target::eBroadcastBitBreakpointChanged, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Breakpoint::SendBreakpointChangedEvent (BreakpointEventData *data)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (data == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!m_being_created
|
|
|
|
&& !IsInternal()
|
|
|
|
&& GetTarget().EventTypeHasListeners(Target::eBroadcastBitBreakpointChanged))
|
|
|
|
GetTarget().BroadcastEvent (Target::eBroadcastBitBreakpointChanged, data);
|
|
|
|
else
|
|
|
|
delete data;
|
|
|
|
}
|
|
|
|
|
2010-07-24 07:33:17 +08:00
|
|
|
Breakpoint::BreakpointEventData::BreakpointEventData (BreakpointEventType sub_type,
|
2012-02-08 13:23:15 +08:00
|
|
|
const BreakpointSP &new_breakpoint_sp) :
|
2010-06-09 00:52:24 +08:00
|
|
|
EventData (),
|
2010-07-24 07:33:17 +08:00
|
|
|
m_breakpoint_event (sub_type),
|
2010-06-09 00:52:24 +08:00
|
|
|
m_new_breakpoint_sp (new_breakpoint_sp)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Breakpoint::BreakpointEventData::~BreakpointEventData ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const ConstString &
|
|
|
|
Breakpoint::BreakpointEventData::GetFlavorString ()
|
|
|
|
{
|
|
|
|
static ConstString g_flavor ("Breakpoint::BreakpointEventData");
|
|
|
|
return g_flavor;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ConstString &
|
|
|
|
Breakpoint::BreakpointEventData::GetFlavor () const
|
|
|
|
{
|
|
|
|
return BreakpointEventData::GetFlavorString ();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BreakpointSP &
|
|
|
|
Breakpoint::BreakpointEventData::GetBreakpoint ()
|
|
|
|
{
|
|
|
|
return m_new_breakpoint_sp;
|
|
|
|
}
|
|
|
|
|
2010-07-24 07:33:17 +08:00
|
|
|
BreakpointEventType
|
|
|
|
Breakpoint::BreakpointEventData::GetBreakpointEventType () const
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-07-24 07:33:17 +08:00
|
|
|
return m_breakpoint_event;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Breakpoint::BreakpointEventData::Dump (Stream *s) const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-02-08 13:23:15 +08:00
|
|
|
const Breakpoint::BreakpointEventData *
|
|
|
|
Breakpoint::BreakpointEventData::GetEventDataFromEvent (const Event *event)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-02-08 13:23:15 +08:00
|
|
|
if (event)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-02-08 13:23:15 +08:00
|
|
|
const EventData *event_data = event->GetData();
|
2010-06-09 00:52:24 +08:00
|
|
|
if (event_data && event_data->GetFlavor() == BreakpointEventData::GetFlavorString())
|
2012-02-08 13:23:15 +08:00
|
|
|
return static_cast <const BreakpointEventData *> (event->GetData());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-07-24 07:33:17 +08:00
|
|
|
BreakpointEventType
|
|
|
|
Breakpoint::BreakpointEventData::GetBreakpointEventTypeFromEvent (const EventSP &event_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-02-08 13:23:15 +08:00
|
|
|
const BreakpointEventData *data = GetEventDataFromEvent (event_sp.get());
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
if (data == NULL)
|
2010-07-24 07:33:17 +08:00
|
|
|
return eBreakpointEventTypeInvalidType;
|
2010-06-09 00:52:24 +08:00
|
|
|
else
|
2010-07-24 07:33:17 +08:00
|
|
|
return data->GetBreakpointEventType();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
BreakpointSP
|
|
|
|
Breakpoint::BreakpointEventData::GetBreakpointFromEvent (const EventSP &event_sp)
|
|
|
|
{
|
2010-07-24 07:33:17 +08:00
|
|
|
BreakpointSP bp_sp;
|
|
|
|
|
2012-02-08 13:23:15 +08:00
|
|
|
const BreakpointEventData *data = GetEventDataFromEvent (event_sp.get());
|
2010-07-24 07:33:17 +08:00
|
|
|
if (data)
|
2012-02-08 13:23:15 +08:00
|
|
|
bp_sp = data->m_new_breakpoint_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-07-24 07:33:17 +08:00
|
|
|
return bp_sp;
|
|
|
|
}
|
|
|
|
|
2012-02-08 13:23:15 +08:00
|
|
|
uint32_t
|
|
|
|
Breakpoint::BreakpointEventData::GetNumBreakpointLocationsFromEvent (const EventSP &event_sp)
|
|
|
|
{
|
|
|
|
const BreakpointEventData *data = GetEventDataFromEvent (event_sp.get());
|
|
|
|
if (data)
|
|
|
|
return data->m_locations.GetSize();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-07-24 07:33:17 +08:00
|
|
|
lldb::BreakpointLocationSP
|
|
|
|
Breakpoint::BreakpointEventData::GetBreakpointLocationAtIndexFromEvent (const lldb::EventSP &event_sp, uint32_t bp_loc_idx)
|
|
|
|
{
|
|
|
|
lldb::BreakpointLocationSP bp_loc_sp;
|
|
|
|
|
2012-02-08 13:23:15 +08:00
|
|
|
const BreakpointEventData *data = GetEventDataFromEvent (event_sp.get());
|
2010-07-24 07:33:17 +08:00
|
|
|
if (data)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2012-02-08 13:23:15 +08:00
|
|
|
bp_loc_sp = data->m_locations.GetByIndex(bp_loc_idx);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2010-07-24 07:33:17 +08:00
|
|
|
|
|
|
|
return bp_loc_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|