2010-06-09 00:52:24 +08:00
|
|
|
//===-- BreakpointLocationList.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/Breakpoint/BreakpointLocationList.h"
|
2013-11-09 08:03:31 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Breakpoint/BreakpointLocation.h"
|
2013-07-17 05:22:53 +08:00
|
|
|
#include "lldb/Breakpoint/Breakpoint.h"
|
2013-11-09 08:03:31 +08:00
|
|
|
#include "lldb/Core/ArchSpec.h"
|
|
|
|
#include "lldb/Core/Module.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"
|
2013-12-06 09:12:00 +08:00
|
|
|
#include "lldb/Target/SectionLoadList.h"
|
2013-07-17 05:22:53 +08:00
|
|
|
#include "lldb/Target/Target.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2013-12-06 09:12:00 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
2012-02-08 13:23:15 +08:00
|
|
|
BreakpointLocationList::BreakpointLocationList(Breakpoint &owner) :
|
2012-04-03 12:14:58 +08:00
|
|
|
m_owner (owner),
|
2010-06-09 00:52:24 +08:00
|
|
|
m_locations(),
|
|
|
|
m_address_to_location (),
|
2012-02-08 13:23:15 +08:00
|
|
|
m_mutex (Mutex::eMutexTypeRecursive),
|
2012-04-03 12:14:58 +08:00
|
|
|
m_next_id (0),
|
|
|
|
m_new_location_recorder (NULL)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
BreakpointLocationList::~BreakpointLocationList()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-02-05 08:38:04 +08:00
|
|
|
BreakpointLocationSP
|
2014-01-11 07:46:59 +08:00
|
|
|
BreakpointLocationList::Create (const Address &addr, bool resolve_indirect_symbols)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2011-02-05 08:38:04 +08:00
|
|
|
Mutex::Locker locker (m_mutex);
|
|
|
|
// The location ID is just the size of the location list + 1
|
2012-02-24 09:59:29 +08:00
|
|
|
lldb::break_id_t bp_loc_id = ++m_next_id;
|
2014-01-11 07:46:59 +08:00
|
|
|
BreakpointLocationSP bp_loc_sp (new BreakpointLocation (bp_loc_id, m_owner, addr, LLDB_INVALID_THREAD_ID, m_owner.IsHardware(), resolve_indirect_symbols));
|
2011-02-05 08:38:04 +08:00
|
|
|
m_locations.push_back (bp_loc_sp);
|
|
|
|
m_address_to_location[addr] = bp_loc_sp;
|
|
|
|
return bp_loc_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-07-10 04:39:50 +08:00
|
|
|
BreakpointLocationList::ShouldStop (StoppointCallbackContext *context, lldb::break_id_t break_id)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
BreakpointLocationSP bp = FindByID (break_id);
|
|
|
|
if (bp)
|
|
|
|
{
|
|
|
|
// Let the BreakpointLocation decide if it should stop here (could not have
|
|
|
|
// reached it's target hit count yet, or it could have a callback
|
|
|
|
// that decided it shouldn't stop (shared library loads/unloads).
|
|
|
|
return bp->ShouldStop (context);
|
|
|
|
}
|
|
|
|
// We should stop here since this BreakpointLocation isn't valid anymore or it
|
|
|
|
// doesn't exist.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-07-10 04:39:50 +08:00
|
|
|
lldb::break_id_t
|
2011-02-05 08:38:04 +08:00
|
|
|
BreakpointLocationList::FindIDByAddress (const Address &addr)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
BreakpointLocationSP bp_loc_sp = FindByAddress (addr);
|
|
|
|
if (bp_loc_sp)
|
|
|
|
{
|
|
|
|
return bp_loc_sp->GetID();
|
|
|
|
}
|
|
|
|
return LLDB_INVALID_BREAK_ID;
|
|
|
|
}
|
|
|
|
|
2013-12-03 10:31:17 +08:00
|
|
|
static bool
|
|
|
|
Compare (BreakpointLocationSP lhs, lldb::break_id_t val)
|
|
|
|
{
|
|
|
|
return lhs->GetID() < val;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
BreakpointLocationSP
|
2010-07-10 04:39:50 +08:00
|
|
|
BreakpointLocationList::FindByID (lldb::break_id_t break_id) const
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
Mutex::Locker locker (m_mutex);
|
2013-12-04 01:50:20 +08:00
|
|
|
collection::const_iterator end = m_locations.end();
|
|
|
|
collection::const_iterator pos = std::lower_bound(m_locations.begin(), end, break_id, Compare);
|
|
|
|
if (pos != end && (*pos)->GetID() == break_id)
|
|
|
|
return *(pos);
|
2013-12-03 10:31:17 +08:00
|
|
|
else
|
2013-12-04 01:50:20 +08:00
|
|
|
return BreakpointLocationSP();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
BreakpointLocationList::FindInModule (Module *module,
|
|
|
|
BreakpointLocationCollection& bp_loc_list)
|
|
|
|
{
|
|
|
|
Mutex::Locker locker (m_mutex);
|
|
|
|
const size_t orig_size = bp_loc_list.GetSize();
|
|
|
|
collection::iterator pos, end = m_locations.end();
|
|
|
|
|
|
|
|
for (pos = m_locations.begin(); pos != end; ++pos)
|
|
|
|
{
|
|
|
|
BreakpointLocationSP break_loc = (*pos);
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP section_sp (break_loc->GetAddress().GetSection());
|
|
|
|
if (section_sp && section_sp->GetModule().get() == module)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2011-08-12 05:43:13 +08:00
|
|
|
bp_loc_list.Add (break_loc);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return bp_loc_list.GetSize() - orig_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
const BreakpointLocationSP
|
2011-02-05 08:38:04 +08:00
|
|
|
BreakpointLocationList::FindByAddress (const Address &addr) const
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
Mutex::Locker locker (m_mutex);
|
2011-02-05 08:38:04 +08:00
|
|
|
BreakpointLocationSP bp_loc_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
if (!m_locations.empty())
|
|
|
|
{
|
2013-07-17 05:22:53 +08:00
|
|
|
Address so_addr;
|
|
|
|
|
|
|
|
if (addr.IsSectionOffset())
|
|
|
|
{
|
|
|
|
so_addr = addr;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Try and resolve as a load address if possible.
|
|
|
|
m_owner.GetTarget().GetSectionLoadList().ResolveLoadAddress (addr.GetOffset(), so_addr);
|
|
|
|
if (!so_addr.IsValid())
|
|
|
|
{
|
|
|
|
// The address didn't resolve, so just set to passed in addr.
|
|
|
|
so_addr = addr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
addr_map::const_iterator pos = m_address_to_location.find (so_addr);
|
2010-06-09 00:52:24 +08:00
|
|
|
if (pos != m_address_to_location.end())
|
2011-02-05 08:38:04 +08:00
|
|
|
bp_loc_sp = pos->second;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2011-02-05 08:38:04 +08:00
|
|
|
return bp_loc_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BreakpointLocationList::Dump (Stream *s) const
|
|
|
|
{
|
2011-09-21 05:44:10 +08:00
|
|
|
s->Printf("%p: ", this);
|
2011-03-19 09:12:21 +08:00
|
|
|
//s->Indent();
|
2010-06-09 00:52:24 +08:00
|
|
|
Mutex::Locker locker (m_mutex);
|
2012-11-30 05:49:15 +08:00
|
|
|
s->Printf("BreakpointLocationList with %" PRIu64 " BreakpointLocations:\n", (uint64_t)m_locations.size());
|
2010-06-09 00:52:24 +08:00
|
|
|
s->IndentMore();
|
|
|
|
collection::const_iterator pos, end = m_locations.end();
|
|
|
|
for (pos = m_locations.begin(); pos != end; ++pos)
|
|
|
|
(*pos).get()->Dump(s);
|
|
|
|
s->IndentLess();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BreakpointLocationSP
|
2013-01-26 02:06:21 +08:00
|
|
|
BreakpointLocationList::GetByIndex (size_t i)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
Mutex::Locker locker (m_mutex);
|
2011-02-05 08:38:04 +08:00
|
|
|
BreakpointLocationSP bp_loc_sp;
|
2010-07-10 04:39:50 +08:00
|
|
|
if (i < m_locations.size())
|
2011-02-05 08:38:04 +08:00
|
|
|
bp_loc_sp = m_locations[i];
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2011-02-05 08:38:04 +08:00
|
|
|
return bp_loc_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const BreakpointLocationSP
|
2013-01-26 02:06:21 +08:00
|
|
|
BreakpointLocationList::GetByIndex (size_t i) const
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
Mutex::Locker locker (m_mutex);
|
2011-02-05 08:38:04 +08:00
|
|
|
BreakpointLocationSP bp_loc_sp;
|
2010-07-10 04:39:50 +08:00
|
|
|
if (i < m_locations.size())
|
2011-02-05 08:38:04 +08:00
|
|
|
bp_loc_sp = m_locations[i];
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2011-02-05 08:38:04 +08:00
|
|
|
return bp_loc_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BreakpointLocationList::ClearAllBreakpointSites ()
|
|
|
|
{
|
|
|
|
Mutex::Locker locker (m_mutex);
|
|
|
|
collection::iterator pos, end = m_locations.end();
|
|
|
|
for (pos = m_locations.begin(); pos != end; ++pos)
|
|
|
|
(*pos)->ClearBreakpointSite();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BreakpointLocationList::ResolveAllBreakpointSites ()
|
|
|
|
{
|
|
|
|
Mutex::Locker locker (m_mutex);
|
|
|
|
collection::iterator pos, end = m_locations.end();
|
|
|
|
|
|
|
|
for (pos = m_locations.begin(); pos != end; ++pos)
|
2010-10-20 11:36:33 +08:00
|
|
|
{
|
|
|
|
if ((*pos)->IsEnabled())
|
|
|
|
(*pos)->ResolveBreakpointSite();
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2010-07-24 07:33:17 +08:00
|
|
|
uint32_t
|
|
|
|
BreakpointLocationList::GetHitCount () const
|
|
|
|
{
|
|
|
|
uint32_t hit_count = 0;
|
|
|
|
Mutex::Locker locker (m_mutex);
|
|
|
|
collection::const_iterator pos, end = m_locations.end();
|
|
|
|
for (pos = m_locations.begin(); pos != end; ++pos)
|
|
|
|
hit_count += (*pos)->GetHitCount();
|
|
|
|
return hit_count;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
size_t
|
|
|
|
BreakpointLocationList::GetNumResolvedLocations() const
|
|
|
|
{
|
|
|
|
Mutex::Locker locker (m_mutex);
|
|
|
|
size_t resolve_count = 0;
|
|
|
|
collection::const_iterator pos, end = m_locations.end();
|
|
|
|
for (pos = m_locations.begin(); pos != end; ++pos)
|
|
|
|
{
|
|
|
|
if ((*pos)->IsResolved())
|
|
|
|
++resolve_count;
|
|
|
|
}
|
|
|
|
return resolve_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BreakpointLocationList::GetDescription (Stream *s, lldb::DescriptionLevel level)
|
|
|
|
{
|
|
|
|
Mutex::Locker locker (m_mutex);
|
|
|
|
collection::iterator pos, end = m_locations.end();
|
|
|
|
|
|
|
|
for (pos = m_locations.begin(); pos != end; ++pos)
|
|
|
|
{
|
|
|
|
s->Printf(" ");
|
|
|
|
(*pos)->GetDescription(s, level);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-08 13:23:15 +08:00
|
|
|
BreakpointLocationSP
|
2014-01-11 07:46:59 +08:00
|
|
|
BreakpointLocationList::AddLocation (const Address &addr, bool resolve_indirect_symbols, bool *new_location)
|
2012-02-08 13:23:15 +08:00
|
|
|
{
|
|
|
|
Mutex::Locker locker (m_mutex);
|
|
|
|
|
|
|
|
if (new_location)
|
|
|
|
*new_location = false;
|
|
|
|
BreakpointLocationSP bp_loc_sp (FindByAddress(addr));
|
|
|
|
if (!bp_loc_sp)
|
|
|
|
{
|
2014-01-11 07:46:59 +08:00
|
|
|
bp_loc_sp = Create (addr, resolve_indirect_symbols);
|
2012-02-08 13:23:15 +08:00
|
|
|
if (bp_loc_sp)
|
|
|
|
{
|
|
|
|
bp_loc_sp->ResolveBreakpointSite();
|
|
|
|
|
|
|
|
if (new_location)
|
|
|
|
*new_location = true;
|
|
|
|
if(m_new_location_recorder)
|
|
|
|
{
|
|
|
|
m_new_location_recorder->Add(bp_loc_sp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return bp_loc_sp;
|
|
|
|
}
|
|
|
|
|
2012-02-24 09:59:29 +08:00
|
|
|
bool
|
|
|
|
BreakpointLocationList::RemoveLocation (const lldb::BreakpointLocationSP &bp_loc_sp)
|
|
|
|
{
|
|
|
|
if (bp_loc_sp)
|
|
|
|
{
|
|
|
|
Mutex::Locker locker (m_mutex);
|
|
|
|
|
|
|
|
m_address_to_location.erase (bp_loc_sp->GetAddress());
|
|
|
|
|
|
|
|
collection::iterator pos, end = m_locations.end();
|
|
|
|
for (pos = m_locations.begin(); pos != end; ++pos)
|
|
|
|
{
|
|
|
|
if ((*pos).get() == bp_loc_sp.get())
|
|
|
|
{
|
|
|
|
m_locations.erase (pos);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-11-09 08:03:31 +08:00
|
|
|
void
|
|
|
|
BreakpointLocationList::RemoveInvalidLocations (const ArchSpec &arch)
|
|
|
|
{
|
|
|
|
Mutex::Locker locker (m_mutex);
|
|
|
|
size_t idx = 0;
|
|
|
|
// Don't cache m_location.size() as it will change since we might
|
|
|
|
// remove locations from our vector...
|
|
|
|
while (idx < m_locations.size())
|
|
|
|
{
|
|
|
|
BreakpointLocation *bp_loc = m_locations[idx].get();
|
|
|
|
if (bp_loc->GetAddress().SectionWasDeleted())
|
|
|
|
{
|
|
|
|
// Section was deleted which means this breakpoint comes from a module
|
|
|
|
// that is no longer valid, so we should remove it.
|
|
|
|
m_locations.erase(m_locations.begin() + idx);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (arch.IsValid())
|
|
|
|
{
|
|
|
|
ModuleSP module_sp (bp_loc->GetAddress().GetModule());
|
|
|
|
if (module_sp)
|
|
|
|
{
|
|
|
|
if (!arch.IsCompatibleMatch(module_sp->GetArchitecture()))
|
|
|
|
{
|
|
|
|
// The breakpoint was in a module whose architecture is no longer
|
|
|
|
// compatible with "arch", so we need to remove it
|
|
|
|
m_locations.erase(m_locations.begin() + idx);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Only increment the index if we didn't remove the locations at index "idx"
|
|
|
|
++idx;
|
|
|
|
}
|
|
|
|
}
|
2012-02-08 13:23:15 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
BreakpointLocationList::StartRecordingNewLocations (BreakpointLocationCollection &new_locations)
|
|
|
|
{
|
|
|
|
Mutex::Locker locker (m_mutex);
|
|
|
|
assert (m_new_location_recorder == NULL);
|
|
|
|
m_new_location_recorder = &new_locations;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BreakpointLocationList::StopRecordingNewLocations ()
|
|
|
|
{
|
|
|
|
Mutex::Locker locker (m_mutex);
|
|
|
|
m_new_location_recorder = NULL;
|
|
|
|
}
|
|
|
|
|