2011-09-24 08:52:29 +08:00
|
|
|
//===-- SBSection.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/API/SBSection.h"
|
|
|
|
#include "lldb/API/SBStream.h"
|
2012-06-28 06:22:28 +08:00
|
|
|
#include "lldb/API/SBTarget.h"
|
2011-09-24 08:52:29 +08:00
|
|
|
#include "lldb/Core/DataBuffer.h"
|
|
|
|
#include "lldb/Core/DataExtractor.h"
|
|
|
|
#include "lldb/Core/Log.h"
|
|
|
|
#include "lldb/Core/Module.h"
|
2011-09-24 13:04:40 +08:00
|
|
|
#include "lldb/Core/Section.h"
|
|
|
|
#include "lldb/Core/StreamString.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/Symbol/ObjectFile.h"
|
2011-09-24 08:52:29 +08:00
|
|
|
|
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
|
|
|
|
SBSection::SBSection () :
|
2012-02-24 09:59:29 +08:00
|
|
|
m_opaque_wp ()
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SBSection::SBSection (const SBSection &rhs) :
|
2012-02-24 09:59:29 +08:00
|
|
|
m_opaque_wp (rhs.m_opaque_wp)
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-24 09:59:29 +08:00
|
|
|
SBSection::SBSection (const lldb::SectionSP §ion_sp) :
|
|
|
|
m_opaque_wp () // Don't init with section_sp otherwise this will throw if section_sp doesn't contain a valid Section *
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
if (section_sp)
|
|
|
|
m_opaque_wp = section_sp;
|
2011-09-24 08:52:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const SBSection &
|
|
|
|
SBSection::operator = (const SBSection &rhs)
|
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
m_opaque_wp = rhs.m_opaque_wp;
|
2011-09-24 08:52:29 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBSection::~SBSection ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBSection::IsValid () const
|
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP section_sp (GetSP());
|
|
|
|
return section_sp && section_sp->GetModule().get() != NULL;
|
2011-09-24 08:52:29 +08:00
|
|
|
}
|
|
|
|
|
2011-09-24 09:37:21 +08:00
|
|
|
const char *
|
|
|
|
SBSection::GetName ()
|
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP section_sp (GetSP());
|
|
|
|
if (section_sp)
|
|
|
|
return section_sp->GetName().GetCString();
|
2011-09-24 09:37:21 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2013-06-14 05:23:23 +08:00
|
|
|
|
|
|
|
lldb::SBSection
|
|
|
|
SBSection::GetParent()
|
|
|
|
{
|
|
|
|
lldb::SBSection sb_section;
|
|
|
|
SectionSP section_sp (GetSP());
|
|
|
|
if (section_sp)
|
|
|
|
{
|
|
|
|
SectionSP parent_section_sp (section_sp->GetParent());
|
|
|
|
if (parent_section_sp)
|
|
|
|
sb_section.SetSP(parent_section_sp);
|
|
|
|
}
|
|
|
|
return sb_section;
|
|
|
|
}
|
2011-09-24 09:37:21 +08:00
|
|
|
|
|
|
|
|
2011-09-24 08:52:29 +08:00
|
|
|
lldb::SBSection
|
|
|
|
SBSection::FindSubSection (const char *sect_name)
|
|
|
|
{
|
|
|
|
lldb::SBSection sb_section;
|
2012-02-24 09:59:29 +08:00
|
|
|
if (sect_name)
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP section_sp (GetSP());
|
|
|
|
if (section_sp)
|
|
|
|
{
|
|
|
|
ConstString const_sect_name(sect_name);
|
|
|
|
sb_section.SetSP(section_sp->GetChildren ().FindSectionByName(const_sect_name));
|
|
|
|
}
|
2011-09-24 08:52:29 +08:00
|
|
|
}
|
|
|
|
return sb_section;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
SBSection::GetNumSubSections ()
|
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP section_sp (GetSP());
|
|
|
|
if (section_sp)
|
|
|
|
return section_sp->GetChildren ().GetSize();
|
2011-09-24 08:52:29 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
lldb::SBSection
|
|
|
|
SBSection::GetSubSectionAtIndex (size_t idx)
|
|
|
|
{
|
|
|
|
lldb::SBSection sb_section;
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP section_sp (GetSP());
|
|
|
|
if (section_sp)
|
|
|
|
sb_section.SetSP (section_sp->GetChildren ().GetSectionAtIndex(idx));
|
2011-09-24 08:52:29 +08:00
|
|
|
return sb_section;
|
|
|
|
}
|
|
|
|
|
2012-02-24 09:59:29 +08:00
|
|
|
lldb::SectionSP
|
|
|
|
SBSection::GetSP() const
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
return m_opaque_wp.lock();
|
2011-09-24 08:52:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-02-24 09:59:29 +08:00
|
|
|
SBSection::SetSP(const lldb::SectionSP §ion_sp)
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
m_opaque_wp = section_sp;
|
2011-09-24 08:52:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lldb::addr_t
|
|
|
|
SBSection::GetFileAddress ()
|
|
|
|
{
|
|
|
|
lldb::addr_t file_addr = LLDB_INVALID_ADDRESS;
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP section_sp (GetSP());
|
|
|
|
if (section_sp)
|
|
|
|
return section_sp->GetFileAddress();
|
2011-09-24 08:52:29 +08:00
|
|
|
return file_addr;
|
|
|
|
}
|
|
|
|
|
2012-06-28 06:22:28 +08:00
|
|
|
lldb::addr_t
|
|
|
|
SBSection::GetLoadAddress (lldb::SBTarget &sb_target)
|
|
|
|
{
|
|
|
|
TargetSP target_sp(sb_target.GetSP());
|
|
|
|
if (target_sp)
|
|
|
|
{
|
|
|
|
SectionSP section_sp (GetSP());
|
|
|
|
if (section_sp)
|
|
|
|
return section_sp->GetLoadBaseAddress(target_sp.get());
|
|
|
|
}
|
|
|
|
return LLDB_INVALID_ADDRESS;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-09-24 08:52:29 +08:00
|
|
|
lldb::addr_t
|
|
|
|
SBSection::GetByteSize ()
|
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP section_sp (GetSP());
|
|
|
|
if (section_sp)
|
|
|
|
return section_sp->GetByteSize();
|
2011-09-24 08:52:29 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t
|
|
|
|
SBSection::GetFileOffset ()
|
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP section_sp (GetSP());
|
|
|
|
if (section_sp)
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
ModuleSP module_sp (section_sp->GetModule());
|
|
|
|
if (module_sp)
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
ObjectFile *objfile = module_sp->GetObjectFile();
|
|
|
|
if (objfile)
|
2013-02-07 01:22:03 +08:00
|
|
|
return objfile->GetFileOffset() + section_sp->GetFileOffset();
|
2011-09-24 08:52:29 +08:00
|
|
|
}
|
|
|
|
}
|
2012-02-24 09:59:29 +08:00
|
|
|
return UINT64_MAX;
|
2011-09-24 08:52:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t
|
|
|
|
SBSection::GetFileByteSize ()
|
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP section_sp (GetSP());
|
|
|
|
if (section_sp)
|
|
|
|
return section_sp->GetFileSize();
|
2011-09-24 08:52:29 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-24 13:04:40 +08:00
|
|
|
SBData
|
|
|
|
SBSection::GetSectionData ()
|
|
|
|
{
|
|
|
|
return GetSectionData (0, UINT64_MAX);
|
|
|
|
}
|
|
|
|
|
2011-09-24 08:52:29 +08:00
|
|
|
SBData
|
|
|
|
SBSection::GetSectionData (uint64_t offset, uint64_t size)
|
|
|
|
{
|
|
|
|
SBData sb_data;
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP section_sp (GetSP());
|
|
|
|
if (section_sp)
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
const uint64_t sect_file_size = section_sp->GetFileSize();
|
|
|
|
if (sect_file_size > 0)
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
ModuleSP module_sp (section_sp->GetModule());
|
|
|
|
if (module_sp)
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
ObjectFile *objfile = module_sp->GetObjectFile();
|
|
|
|
if (objfile)
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
2013-02-07 01:22:03 +08:00
|
|
|
const uint64_t sect_file_offset = objfile->GetFileOffset() + section_sp->GetFileOffset();
|
2012-02-24 09:59:29 +08:00
|
|
|
const uint64_t file_offset = sect_file_offset + offset;
|
|
|
|
uint64_t file_size = size;
|
|
|
|
if (file_size == UINT64_MAX)
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
file_size = section_sp->GetByteSize();
|
|
|
|
if (file_size > offset)
|
|
|
|
file_size -= offset;
|
|
|
|
else
|
|
|
|
file_size = 0;
|
|
|
|
}
|
|
|
|
DataBufferSP data_buffer_sp (objfile->GetFileSpec().ReadFileContents (file_offset, file_size));
|
|
|
|
if (data_buffer_sp && data_buffer_sp->GetByteSize() > 0)
|
|
|
|
{
|
|
|
|
DataExtractorSP data_extractor_sp (new DataExtractor (data_buffer_sp,
|
|
|
|
objfile->GetByteOrder(),
|
|
|
|
objfile->GetAddressByteSize()));
|
|
|
|
|
|
|
|
sb_data.SetOpaque (data_extractor_sp);
|
2011-09-24 08:52:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sb_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
SectionType
|
|
|
|
SBSection::GetSectionType ()
|
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP section_sp (GetSP());
|
|
|
|
if (section_sp.get())
|
|
|
|
return section_sp->GetType();
|
2011-09-24 08:52:29 +08:00
|
|
|
return eSectionTypeInvalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBSection::operator == (const SBSection &rhs)
|
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP lhs_section_sp (GetSP());
|
|
|
|
SectionSP rhs_section_sp (rhs.GetSP());
|
|
|
|
if (lhs_section_sp && rhs_section_sp)
|
|
|
|
return lhs_section_sp == rhs_section_sp;
|
2011-09-24 08:52:29 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBSection::operator != (const SBSection &rhs)
|
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP lhs_section_sp (GetSP());
|
|
|
|
SectionSP rhs_section_sp (rhs.GetSP());
|
|
|
|
return lhs_section_sp != rhs_section_sp;
|
2011-09-24 08:52:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBSection::GetDescription (SBStream &description)
|
|
|
|
{
|
2011-11-13 14:57:31 +08:00
|
|
|
Stream &strm = description.ref();
|
|
|
|
|
2012-02-24 09:59:29 +08:00
|
|
|
SectionSP section_sp (GetSP());
|
|
|
|
if (section_sp)
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
const addr_t file_addr = section_sp->GetFileAddress();
|
2012-11-30 05:49:15 +08:00
|
|
|
strm.Printf ("[0x%16.16" PRIx64 "-0x%16.16" PRIx64 ") ", file_addr, file_addr + section_sp->GetByteSize());
|
2012-02-24 09:59:29 +08:00
|
|
|
section_sp->DumpName(&strm);
|
2011-09-24 08:52:29 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-11-13 14:57:31 +08:00
|
|
|
strm.PutCString ("No value");
|
2011-09-24 08:52:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|