2010-06-09 00:52:24 +08:00
|
|
|
//===-- SBModule.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/SBModule.h"
|
2010-09-11 02:31:35 +08:00
|
|
|
#include "lldb/API/SBAddress.h"
|
|
|
|
#include "lldb/API/SBFileSpec.h"
|
2012-02-05 10:38:54 +08:00
|
|
|
#include "lldb/API/SBProcess.h"
|
2010-09-20 13:20:02 +08:00
|
|
|
#include "lldb/API/SBStream.h"
|
2011-06-21 09:34:41 +08:00
|
|
|
#include "lldb/API/SBSymbolContextList.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Core/Module.h"
|
2010-10-26 11:11:13 +08:00
|
|
|
#include "lldb/Core/Log.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-11-01 03:57:43 +08:00
|
|
|
#include "lldb/Core/StreamString.h"
|
2011-06-30 06:09:02 +08:00
|
|
|
#include "lldb/Core/ValueObjectList.h"
|
|
|
|
#include "lldb/Core/ValueObjectVariable.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-07-30 03:53:35 +08:00
|
|
|
#include "lldb/Symbol/SymbolVendor.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/Symtab.h"
|
2011-06-30 06:09:02 +08:00
|
|
|
#include "lldb/Symbol/VariableList.h"
|
|
|
|
#include "lldb/Target/Target.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
using namespace lldb;
|
2010-10-26 11:11:13 +08:00
|
|
|
using namespace lldb_private;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
SBModule::SBModule () :
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp ()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SBModule::SBModule (const lldb::ModuleSP& module_sp) :
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp (module_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-11-06 07:17:00 +08:00
|
|
|
SBModule::SBModule(const SBModule &rhs) :
|
|
|
|
m_opaque_sp (rhs.m_opaque_sp)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-02-05 10:38:54 +08:00
|
|
|
SBModule::SBModule (lldb::SBProcess &process, lldb::addr_t header_addr) :
|
|
|
|
m_opaque_sp ()
|
|
|
|
{
|
|
|
|
ProcessSP process_sp (process.GetSP());
|
|
|
|
if (process_sp)
|
2012-02-14 07:10:39 +08:00
|
|
|
{
|
2013-02-02 05:38:35 +08:00
|
|
|
m_opaque_sp = process_sp->ReadModuleFromMemory (FileSpec(), header_addr);
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
Target &target = process_sp->GetTarget();
|
|
|
|
bool changed = false;
|
|
|
|
m_opaque_sp->SetLoadAddress(target, 0, changed);
|
|
|
|
target.GetImages().Append(m_opaque_sp);
|
|
|
|
}
|
2012-02-14 07:10:39 +08:00
|
|
|
}
|
2012-02-05 10:38:54 +08:00
|
|
|
}
|
|
|
|
|
2010-11-06 07:17:00 +08:00
|
|
|
const SBModule &
|
|
|
|
SBModule::operator = (const SBModule &rhs)
|
|
|
|
{
|
|
|
|
if (this != &rhs)
|
|
|
|
m_opaque_sp = rhs.m_opaque_sp;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBModule::~SBModule ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBModule::IsValid () const
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
return m_opaque_sp.get() != NULL;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2011-12-20 04:39:44 +08:00
|
|
|
void
|
|
|
|
SBModule::Clear()
|
|
|
|
{
|
|
|
|
m_opaque_sp.reset();
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBFileSpec
|
|
|
|
SBModule::GetFileSpec () const
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBFileSpec file_spec;
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
|
|
|
file_spec.SetFileSpec(module_sp->GetFileSpec());
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
2010-10-31 11:01:06 +08:00
|
|
|
log->Printf ("SBModule(%p)::GetFileSpec () => SBFileSpec(%p)",
|
2012-02-23 03:41:02 +08:00
|
|
|
module_sp.get(), file_spec.get());
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return file_spec;
|
|
|
|
}
|
|
|
|
|
2011-04-30 09:09:13 +08:00
|
|
|
lldb::SBFileSpec
|
|
|
|
SBModule::GetPlatformFileSpec () const
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2011-04-30 09:09:13 +08:00
|
|
|
|
|
|
|
SBFileSpec file_spec;
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
|
|
|
file_spec.SetFileSpec(module_sp->GetPlatformFileSpec());
|
2011-04-30 09:09:13 +08:00
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
log->Printf ("SBModule(%p)::GetPlatformFileSpec () => SBFileSpec(%p)",
|
2012-02-23 03:41:02 +08:00
|
|
|
module_sp.get(), file_spec.get());
|
2011-04-30 09:09:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return file_spec;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBModule::SetPlatformFileSpec (const lldb::SBFileSpec &platform_file)
|
|
|
|
{
|
|
|
|
bool result = false;
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2011-04-30 09:09:13 +08:00
|
|
|
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
2011-04-30 09:09:13 +08:00
|
|
|
{
|
2012-02-23 03:41:02 +08:00
|
|
|
module_sp->SetPlatformFileSpec(*platform_file);
|
2011-04-30 09:09:13 +08:00
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
2013-04-30 01:25:54 +08:00
|
|
|
log->Printf ("SBModule(%p)::SetPlatformFileSpec (SBFileSpec(%p (%s)) => %i",
|
2012-02-23 03:41:02 +08:00
|
|
|
module_sp.get(),
|
2011-04-30 09:09:13 +08:00
|
|
|
platform_file.get(),
|
2013-04-30 01:25:54 +08:00
|
|
|
platform_file->GetPath().c_str(),
|
2011-04-30 09:09:13 +08:00
|
|
|
result);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
const uint8_t *
|
|
|
|
SBModule::GetUUIDBytes () const
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-10-30 12:51:46 +08:00
|
|
|
const uint8_t *uuid_bytes = NULL;
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
|
|
|
uuid_bytes = (const uint8_t *)module_sp->GetUUID().GetBytes();
|
2010-10-30 12:51:46 +08:00
|
|
|
|
|
|
|
if (log)
|
2010-10-26 11:11:13 +08:00
|
|
|
{
|
2010-10-30 12:51:46 +08:00
|
|
|
if (uuid_bytes)
|
2010-10-26 11:11:13 +08:00
|
|
|
{
|
2010-10-30 12:51:46 +08:00
|
|
|
StreamString s;
|
2012-02-23 03:41:02 +08:00
|
|
|
module_sp->GetUUID().Dump (&s);
|
|
|
|
log->Printf ("SBModule(%p)::GetUUIDBytes () => %s", module_sp.get(), s.GetData());
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
2010-10-30 12:51:46 +08:00
|
|
|
else
|
2012-02-23 03:41:02 +08:00
|
|
|
log->Printf ("SBModule(%p)::GetUUIDBytes () => NULL", module_sp.get());
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
2010-10-30 12:51:46 +08:00
|
|
|
return uuid_bytes;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-01 08:35:55 +08:00
|
|
|
const char *
|
|
|
|
SBModule::GetUUIDString () const
|
|
|
|
{
|
2013-03-28 07:08:40 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2011-04-01 08:35:55 +08:00
|
|
|
|
2013-05-04 07:56:12 +08:00
|
|
|
static char uuid_string_buffer[80];
|
|
|
|
const char *uuid_c_string = NULL;
|
|
|
|
std::string uuid_string;
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
2013-05-04 07:56:12 +08:00
|
|
|
uuid_string = module_sp->GetUUID().GetAsString();
|
|
|
|
|
|
|
|
if (!uuid_string.empty())
|
|
|
|
{
|
|
|
|
strncpy (uuid_string_buffer, uuid_string.c_str(), sizeof (uuid_string_buffer));
|
|
|
|
uuid_c_string = uuid_string_buffer;
|
|
|
|
}
|
2011-04-01 08:35:55 +08:00
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
2013-05-04 07:56:12 +08:00
|
|
|
if (!uuid_string.empty())
|
2011-04-01 08:35:55 +08:00
|
|
|
{
|
|
|
|
StreamString s;
|
2012-02-23 03:41:02 +08:00
|
|
|
module_sp->GetUUID().Dump (&s);
|
|
|
|
log->Printf ("SBModule(%p)::GetUUIDString () => %s", module_sp.get(), s.GetData());
|
2011-04-01 08:35:55 +08:00
|
|
|
}
|
|
|
|
else
|
2012-02-23 03:41:02 +08:00
|
|
|
log->Printf ("SBModule(%p)::GetUUIDString () => NULL", module_sp.get());
|
2011-04-01 08:35:55 +08:00
|
|
|
}
|
|
|
|
return uuid_c_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
bool
|
|
|
|
SBModule::operator == (const SBModule &rhs) const
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
|
|
|
return m_opaque_sp.get() == rhs.m_opaque_sp.get();
|
2010-06-09 00:52:24 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBModule::operator != (const SBModule &rhs) const
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
|
|
|
return m_opaque_sp.get() != rhs.m_opaque_sp.get();
|
2010-06-09 00:52:24 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-01-30 17:04:36 +08:00
|
|
|
ModuleSP
|
|
|
|
SBModule::GetSP () const
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
|
|
|
return m_opaque_sp;
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
void
|
2012-01-30 17:04:36 +08:00
|
|
|
SBModule::SetSP (const ModuleSP &module_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp = module_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2011-09-24 08:52:29 +08:00
|
|
|
SBAddress
|
|
|
|
SBModule::ResolveFileAddress (lldb::addr_t vm_addr)
|
2010-09-11 02:31:35 +08:00
|
|
|
{
|
2011-09-24 08:52:29 +08:00
|
|
|
lldb::SBAddress sb_addr;
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
|
|
|
Address addr;
|
2012-02-23 03:41:02 +08:00
|
|
|
if (module_sp->ResolveFileAddress (vm_addr, addr))
|
2011-09-24 08:52:29 +08:00
|
|
|
sb_addr.ref() = addr;
|
|
|
|
}
|
|
|
|
return sb_addr;
|
2010-09-11 02:31:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SBSymbolContext
|
|
|
|
SBModule::ResolveSymbolContextForAddress (const SBAddress& addr, uint32_t resolve_scope)
|
|
|
|
{
|
|
|
|
SBSymbolContext sb_sc;
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp && addr.IsValid())
|
|
|
|
module_sp->ResolveSymbolContextForAddress (addr.ref(), resolve_scope, *sb_sc);
|
2010-09-11 02:31:35 +08:00
|
|
|
return sb_sc;
|
|
|
|
}
|
|
|
|
|
2010-09-20 13:20:02 +08:00
|
|
|
bool
|
|
|
|
SBModule::GetDescription (SBStream &description)
|
|
|
|
{
|
2011-11-13 14:57:31 +08:00
|
|
|
Stream &strm = description.ref();
|
|
|
|
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
2010-09-20 13:20:02 +08:00
|
|
|
{
|
2012-02-23 03:41:02 +08:00
|
|
|
module_sp->GetDescription (&strm);
|
2010-09-20 13:20:02 +08:00
|
|
|
}
|
|
|
|
else
|
2011-11-13 14:57:31 +08:00
|
|
|
strm.PutCString ("No value");
|
2010-09-20 13:20:02 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2010-12-07 13:40:31 +08:00
|
|
|
|
2012-03-17 04:46:10 +08:00
|
|
|
uint32_t
|
|
|
|
SBModule::GetNumCompileUnits()
|
|
|
|
{
|
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
|
|
|
{
|
|
|
|
return module_sp->GetNumCompileUnits ();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBCompileUnit
|
|
|
|
SBModule::GetCompileUnitAtIndex (uint32_t index)
|
|
|
|
{
|
|
|
|
SBCompileUnit sb_cu;
|
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
|
|
|
{
|
|
|
|
CompUnitSP cu_sp = module_sp->GetCompileUnitAtIndex (index);
|
|
|
|
sb_cu.reset(cu_sp.get());
|
|
|
|
}
|
|
|
|
return sb_cu;
|
|
|
|
}
|
|
|
|
|
2010-12-07 13:40:31 +08:00
|
|
|
size_t
|
|
|
|
SBModule::GetNumSymbols ()
|
|
|
|
{
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
2010-12-07 13:40:31 +08:00
|
|
|
{
|
2012-02-23 03:41:02 +08:00
|
|
|
ObjectFile *obj_file = module_sp->GetObjectFile();
|
2010-12-07 13:40:31 +08:00
|
|
|
if (obj_file)
|
|
|
|
{
|
|
|
|
Symtab *symtab = obj_file->GetSymtab();
|
|
|
|
if (symtab)
|
|
|
|
return symtab->GetNumSymbols();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBSymbol
|
|
|
|
SBModule::GetSymbolAtIndex (size_t idx)
|
|
|
|
{
|
|
|
|
SBSymbol sb_symbol;
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
2010-12-07 13:40:31 +08:00
|
|
|
{
|
2012-02-23 03:41:02 +08:00
|
|
|
ObjectFile *obj_file = module_sp->GetObjectFile();
|
2010-12-07 13:40:31 +08:00
|
|
|
if (obj_file)
|
|
|
|
{
|
|
|
|
Symtab *symtab = obj_file->GetSymtab();
|
|
|
|
if (symtab)
|
|
|
|
sb_symbol.SetSymbol(symtab->SymbolAtIndex (idx));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sb_symbol;
|
|
|
|
}
|
2011-06-21 09:34:41 +08:00
|
|
|
|
2012-12-04 10:22:16 +08:00
|
|
|
lldb::SBSymbol
|
|
|
|
SBModule::FindSymbol (const char *name,
|
|
|
|
lldb::SymbolType symbol_type)
|
|
|
|
{
|
|
|
|
SBSymbol sb_symbol;
|
|
|
|
if (name && name[0])
|
|
|
|
{
|
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
|
|
|
{
|
|
|
|
ObjectFile *obj_file = module_sp->GetObjectFile();
|
|
|
|
if (obj_file)
|
|
|
|
{
|
|
|
|
Symtab *symtab = obj_file->GetSymtab();
|
|
|
|
if (symtab)
|
|
|
|
sb_symbol.SetSymbol(symtab->FindFirstSymbolWithNameAndType(ConstString(name), symbol_type, Symtab::eDebugAny, Symtab::eVisibilityAny));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sb_symbol;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
lldb::SBSymbolContextList
|
|
|
|
SBModule::FindSymbols (const char *name, lldb::SymbolType symbol_type)
|
|
|
|
{
|
|
|
|
SBSymbolContextList sb_sc_list;
|
|
|
|
if (name && name[0])
|
|
|
|
{
|
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
|
|
|
{
|
|
|
|
ObjectFile *obj_file = module_sp->GetObjectFile();
|
|
|
|
if (obj_file)
|
|
|
|
{
|
|
|
|
Symtab *symtab = obj_file->GetSymtab();
|
|
|
|
if (symtab)
|
|
|
|
{
|
|
|
|
std::vector<uint32_t> matching_symbol_indexes;
|
|
|
|
const size_t num_matches = symtab->FindAllSymbolsWithNameAndType(ConstString(name), symbol_type, matching_symbol_indexes);
|
|
|
|
if (num_matches)
|
|
|
|
{
|
|
|
|
SymbolContext sc;
|
|
|
|
sc.module_sp = module_sp;
|
|
|
|
SymbolContextList &sc_list = *sb_sc_list;
|
|
|
|
for (size_t i=0; i<num_matches; ++i)
|
|
|
|
{
|
|
|
|
sc.symbol = symtab->SymbolAtIndex (matching_symbol_indexes[i]);
|
|
|
|
if (sc.symbol)
|
|
|
|
sc_list.Append(sc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sb_sc_list;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-09-24 08:52:29 +08:00
|
|
|
size_t
|
|
|
|
SBModule::GetNumSections ()
|
|
|
|
{
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
2012-02-23 03:41:02 +08:00
|
|
|
ObjectFile *obj_file = module_sp->GetObjectFile();
|
2011-09-24 08:52:29 +08:00
|
|
|
if (obj_file)
|
|
|
|
{
|
|
|
|
SectionList *section_list = obj_file->GetSectionList ();
|
|
|
|
if (section_list)
|
|
|
|
return section_list->GetSize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBSection
|
|
|
|
SBModule::GetSectionAtIndex (size_t idx)
|
|
|
|
{
|
|
|
|
SBSection sb_section;
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
2012-02-23 03:41:02 +08:00
|
|
|
ObjectFile *obj_file = module_sp->GetObjectFile();
|
2011-09-24 08:52:29 +08:00
|
|
|
if (obj_file)
|
|
|
|
{
|
|
|
|
SectionList *section_list = obj_file->GetSectionList ();
|
|
|
|
|
|
|
|
if (section_list)
|
2012-02-24 09:59:29 +08:00
|
|
|
sb_section.SetSP(section_list->GetSectionAtIndex (idx));
|
2011-09-24 08:52:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return sb_section;
|
|
|
|
}
|
|
|
|
|
Removed all of the "#ifndef SWIG" from the SB header files since we are using
interface (.i) files for each class.
Changed the FindFunction class from:
uint32_t
SBTarget::FindFunctions (const char *name,
uint32_t name_type_mask,
bool append,
lldb::SBSymbolContextList& sc_list)
uint32_t
SBModule::FindFunctions (const char *name,
uint32_t name_type_mask,
bool append,
lldb::SBSymbolContextList& sc_list)
To:
lldb::SBSymbolContextList
SBTarget::FindFunctions (const char *name,
uint32_t name_type_mask = lldb::eFunctionNameTypeAny);
lldb::SBSymbolContextList
SBModule::FindFunctions (const char *name,
uint32_t name_type_mask = lldb::eFunctionNameTypeAny);
This makes the API easier to use from python. Also added the ability to
append a SBSymbolContext or a SBSymbolContextList to a SBSymbolContextList.
Exposed properties for lldb.SBSymbolContextList in python:
lldb.SBSymbolContextList.modules => list() or all lldb.SBModule objects in the list
lldb.SBSymbolContextList.compile_units => list() or all lldb.SBCompileUnits objects in the list
lldb.SBSymbolContextList.functions => list() or all lldb.SBFunction objects in the list
lldb.SBSymbolContextList.blocks => list() or all lldb.SBBlock objects in the list
lldb.SBSymbolContextList.line_entries => list() or all lldb.SBLineEntry objects in the list
lldb.SBSymbolContextList.symbols => list() or all lldb.SBSymbol objects in the list
This allows a call to the SBTarget::FindFunctions(...) and SBModule::FindFunctions(...)
and then the result can be used to extract the desired information:
sc_list = lldb.target.FindFunctions("erase")
for function in sc_list.functions:
print function
for symbol in sc_list.symbols:
print symbol
Exposed properties for the lldb.SBSymbolContext objects in python:
lldb.SBSymbolContext.module => lldb.SBModule
lldb.SBSymbolContext.compile_unit => lldb.SBCompileUnit
lldb.SBSymbolContext.function => lldb.SBFunction
lldb.SBSymbolContext.block => lldb.SBBlock
lldb.SBSymbolContext.line_entry => lldb.SBLineEntry
lldb.SBSymbolContext.symbol => lldb.SBSymbol
Exposed properties for the lldb.SBBlock objects in python:
lldb.SBBlock.parent => lldb.SBBlock for the parent block that contains
lldb.SBBlock.sibling => lldb.SBBlock for the sibling block to the current block
lldb.SBBlock.first_child => lldb.SBBlock for the first child block to the current block
lldb.SBBlock.call_site => for inline functions, return a lldb.declaration object that gives the call site file, line and column
lldb.SBBlock.name => for inline functions this is the name of the inline function that this block represents
lldb.SBBlock.inlined_block => returns the inlined function block that contains this block (might return itself if the current block is an inlined block)
lldb.SBBlock.range[int] => access the address ranges for a block by index, a list() with start and end address is returned
lldb.SBBlock.ranges => an array or all address ranges for this block
lldb.SBBlock.num_ranges => the number of address ranges for this blcok
SBFunction objects can now get the SBType and the SBBlock that represents the
top scope of the function.
SBBlock objects can now get the variable list from the current block. The value
list returned allows varaibles to be viewed prior with no process if code
wants to check the variables in a function. There are two ways to get a variable
list from a SBBlock:
lldb::SBValueList
SBBlock::GetVariables (lldb::SBFrame& frame,
bool arguments,
bool locals,
bool statics,
lldb::DynamicValueType use_dynamic);
lldb::SBValueList
SBBlock::GetVariables (lldb::SBTarget& target,
bool arguments,
bool locals,
bool statics);
When a SBFrame is used, the values returned will be locked down to the frame
and the values will be evaluated in the context of that frame.
When a SBTarget is used, global an static variables can be viewed without a
running process.
llvm-svn: 149853
2012-02-06 09:44:54 +08:00
|
|
|
lldb::SBSymbolContextList
|
2011-06-21 09:34:41 +08:00
|
|
|
SBModule::FindFunctions (const char *name,
|
Removed all of the "#ifndef SWIG" from the SB header files since we are using
interface (.i) files for each class.
Changed the FindFunction class from:
uint32_t
SBTarget::FindFunctions (const char *name,
uint32_t name_type_mask,
bool append,
lldb::SBSymbolContextList& sc_list)
uint32_t
SBModule::FindFunctions (const char *name,
uint32_t name_type_mask,
bool append,
lldb::SBSymbolContextList& sc_list)
To:
lldb::SBSymbolContextList
SBTarget::FindFunctions (const char *name,
uint32_t name_type_mask = lldb::eFunctionNameTypeAny);
lldb::SBSymbolContextList
SBModule::FindFunctions (const char *name,
uint32_t name_type_mask = lldb::eFunctionNameTypeAny);
This makes the API easier to use from python. Also added the ability to
append a SBSymbolContext or a SBSymbolContextList to a SBSymbolContextList.
Exposed properties for lldb.SBSymbolContextList in python:
lldb.SBSymbolContextList.modules => list() or all lldb.SBModule objects in the list
lldb.SBSymbolContextList.compile_units => list() or all lldb.SBCompileUnits objects in the list
lldb.SBSymbolContextList.functions => list() or all lldb.SBFunction objects in the list
lldb.SBSymbolContextList.blocks => list() or all lldb.SBBlock objects in the list
lldb.SBSymbolContextList.line_entries => list() or all lldb.SBLineEntry objects in the list
lldb.SBSymbolContextList.symbols => list() or all lldb.SBSymbol objects in the list
This allows a call to the SBTarget::FindFunctions(...) and SBModule::FindFunctions(...)
and then the result can be used to extract the desired information:
sc_list = lldb.target.FindFunctions("erase")
for function in sc_list.functions:
print function
for symbol in sc_list.symbols:
print symbol
Exposed properties for the lldb.SBSymbolContext objects in python:
lldb.SBSymbolContext.module => lldb.SBModule
lldb.SBSymbolContext.compile_unit => lldb.SBCompileUnit
lldb.SBSymbolContext.function => lldb.SBFunction
lldb.SBSymbolContext.block => lldb.SBBlock
lldb.SBSymbolContext.line_entry => lldb.SBLineEntry
lldb.SBSymbolContext.symbol => lldb.SBSymbol
Exposed properties for the lldb.SBBlock objects in python:
lldb.SBBlock.parent => lldb.SBBlock for the parent block that contains
lldb.SBBlock.sibling => lldb.SBBlock for the sibling block to the current block
lldb.SBBlock.first_child => lldb.SBBlock for the first child block to the current block
lldb.SBBlock.call_site => for inline functions, return a lldb.declaration object that gives the call site file, line and column
lldb.SBBlock.name => for inline functions this is the name of the inline function that this block represents
lldb.SBBlock.inlined_block => returns the inlined function block that contains this block (might return itself if the current block is an inlined block)
lldb.SBBlock.range[int] => access the address ranges for a block by index, a list() with start and end address is returned
lldb.SBBlock.ranges => an array or all address ranges for this block
lldb.SBBlock.num_ranges => the number of address ranges for this blcok
SBFunction objects can now get the SBType and the SBBlock that represents the
top scope of the function.
SBBlock objects can now get the variable list from the current block. The value
list returned allows varaibles to be viewed prior with no process if code
wants to check the variables in a function. There are two ways to get a variable
list from a SBBlock:
lldb::SBValueList
SBBlock::GetVariables (lldb::SBFrame& frame,
bool arguments,
bool locals,
bool statics,
lldb::DynamicValueType use_dynamic);
lldb::SBValueList
SBBlock::GetVariables (lldb::SBTarget& target,
bool arguments,
bool locals,
bool statics);
When a SBFrame is used, the values returned will be locked down to the frame
and the values will be evaluated in the context of that frame.
When a SBTarget is used, global an static variables can be viewed without a
running process.
llvm-svn: 149853
2012-02-06 09:44:54 +08:00
|
|
|
uint32_t name_type_mask)
|
2011-06-21 09:34:41 +08:00
|
|
|
{
|
Removed all of the "#ifndef SWIG" from the SB header files since we are using
interface (.i) files for each class.
Changed the FindFunction class from:
uint32_t
SBTarget::FindFunctions (const char *name,
uint32_t name_type_mask,
bool append,
lldb::SBSymbolContextList& sc_list)
uint32_t
SBModule::FindFunctions (const char *name,
uint32_t name_type_mask,
bool append,
lldb::SBSymbolContextList& sc_list)
To:
lldb::SBSymbolContextList
SBTarget::FindFunctions (const char *name,
uint32_t name_type_mask = lldb::eFunctionNameTypeAny);
lldb::SBSymbolContextList
SBModule::FindFunctions (const char *name,
uint32_t name_type_mask = lldb::eFunctionNameTypeAny);
This makes the API easier to use from python. Also added the ability to
append a SBSymbolContext or a SBSymbolContextList to a SBSymbolContextList.
Exposed properties for lldb.SBSymbolContextList in python:
lldb.SBSymbolContextList.modules => list() or all lldb.SBModule objects in the list
lldb.SBSymbolContextList.compile_units => list() or all lldb.SBCompileUnits objects in the list
lldb.SBSymbolContextList.functions => list() or all lldb.SBFunction objects in the list
lldb.SBSymbolContextList.blocks => list() or all lldb.SBBlock objects in the list
lldb.SBSymbolContextList.line_entries => list() or all lldb.SBLineEntry objects in the list
lldb.SBSymbolContextList.symbols => list() or all lldb.SBSymbol objects in the list
This allows a call to the SBTarget::FindFunctions(...) and SBModule::FindFunctions(...)
and then the result can be used to extract the desired information:
sc_list = lldb.target.FindFunctions("erase")
for function in sc_list.functions:
print function
for symbol in sc_list.symbols:
print symbol
Exposed properties for the lldb.SBSymbolContext objects in python:
lldb.SBSymbolContext.module => lldb.SBModule
lldb.SBSymbolContext.compile_unit => lldb.SBCompileUnit
lldb.SBSymbolContext.function => lldb.SBFunction
lldb.SBSymbolContext.block => lldb.SBBlock
lldb.SBSymbolContext.line_entry => lldb.SBLineEntry
lldb.SBSymbolContext.symbol => lldb.SBSymbol
Exposed properties for the lldb.SBBlock objects in python:
lldb.SBBlock.parent => lldb.SBBlock for the parent block that contains
lldb.SBBlock.sibling => lldb.SBBlock for the sibling block to the current block
lldb.SBBlock.first_child => lldb.SBBlock for the first child block to the current block
lldb.SBBlock.call_site => for inline functions, return a lldb.declaration object that gives the call site file, line and column
lldb.SBBlock.name => for inline functions this is the name of the inline function that this block represents
lldb.SBBlock.inlined_block => returns the inlined function block that contains this block (might return itself if the current block is an inlined block)
lldb.SBBlock.range[int] => access the address ranges for a block by index, a list() with start and end address is returned
lldb.SBBlock.ranges => an array or all address ranges for this block
lldb.SBBlock.num_ranges => the number of address ranges for this blcok
SBFunction objects can now get the SBType and the SBBlock that represents the
top scope of the function.
SBBlock objects can now get the variable list from the current block. The value
list returned allows varaibles to be viewed prior with no process if code
wants to check the variables in a function. There are two ways to get a variable
list from a SBBlock:
lldb::SBValueList
SBBlock::GetVariables (lldb::SBFrame& frame,
bool arguments,
bool locals,
bool statics,
lldb::DynamicValueType use_dynamic);
lldb::SBValueList
SBBlock::GetVariables (lldb::SBTarget& target,
bool arguments,
bool locals,
bool statics);
When a SBFrame is used, the values returned will be locked down to the frame
and the values will be evaluated in the context of that frame.
When a SBTarget is used, global an static variables can be viewed without a
running process.
llvm-svn: 149853
2012-02-06 09:44:54 +08:00
|
|
|
lldb::SBSymbolContextList sb_sc_list;
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (name && module_sp)
|
2011-06-21 09:34:41 +08:00
|
|
|
{
|
Removed all of the "#ifndef SWIG" from the SB header files since we are using
interface (.i) files for each class.
Changed the FindFunction class from:
uint32_t
SBTarget::FindFunctions (const char *name,
uint32_t name_type_mask,
bool append,
lldb::SBSymbolContextList& sc_list)
uint32_t
SBModule::FindFunctions (const char *name,
uint32_t name_type_mask,
bool append,
lldb::SBSymbolContextList& sc_list)
To:
lldb::SBSymbolContextList
SBTarget::FindFunctions (const char *name,
uint32_t name_type_mask = lldb::eFunctionNameTypeAny);
lldb::SBSymbolContextList
SBModule::FindFunctions (const char *name,
uint32_t name_type_mask = lldb::eFunctionNameTypeAny);
This makes the API easier to use from python. Also added the ability to
append a SBSymbolContext or a SBSymbolContextList to a SBSymbolContextList.
Exposed properties for lldb.SBSymbolContextList in python:
lldb.SBSymbolContextList.modules => list() or all lldb.SBModule objects in the list
lldb.SBSymbolContextList.compile_units => list() or all lldb.SBCompileUnits objects in the list
lldb.SBSymbolContextList.functions => list() or all lldb.SBFunction objects in the list
lldb.SBSymbolContextList.blocks => list() or all lldb.SBBlock objects in the list
lldb.SBSymbolContextList.line_entries => list() or all lldb.SBLineEntry objects in the list
lldb.SBSymbolContextList.symbols => list() or all lldb.SBSymbol objects in the list
This allows a call to the SBTarget::FindFunctions(...) and SBModule::FindFunctions(...)
and then the result can be used to extract the desired information:
sc_list = lldb.target.FindFunctions("erase")
for function in sc_list.functions:
print function
for symbol in sc_list.symbols:
print symbol
Exposed properties for the lldb.SBSymbolContext objects in python:
lldb.SBSymbolContext.module => lldb.SBModule
lldb.SBSymbolContext.compile_unit => lldb.SBCompileUnit
lldb.SBSymbolContext.function => lldb.SBFunction
lldb.SBSymbolContext.block => lldb.SBBlock
lldb.SBSymbolContext.line_entry => lldb.SBLineEntry
lldb.SBSymbolContext.symbol => lldb.SBSymbol
Exposed properties for the lldb.SBBlock objects in python:
lldb.SBBlock.parent => lldb.SBBlock for the parent block that contains
lldb.SBBlock.sibling => lldb.SBBlock for the sibling block to the current block
lldb.SBBlock.first_child => lldb.SBBlock for the first child block to the current block
lldb.SBBlock.call_site => for inline functions, return a lldb.declaration object that gives the call site file, line and column
lldb.SBBlock.name => for inline functions this is the name of the inline function that this block represents
lldb.SBBlock.inlined_block => returns the inlined function block that contains this block (might return itself if the current block is an inlined block)
lldb.SBBlock.range[int] => access the address ranges for a block by index, a list() with start and end address is returned
lldb.SBBlock.ranges => an array or all address ranges for this block
lldb.SBBlock.num_ranges => the number of address ranges for this blcok
SBFunction objects can now get the SBType and the SBBlock that represents the
top scope of the function.
SBBlock objects can now get the variable list from the current block. The value
list returned allows varaibles to be viewed prior with no process if code
wants to check the variables in a function. There are two ways to get a variable
list from a SBBlock:
lldb::SBValueList
SBBlock::GetVariables (lldb::SBFrame& frame,
bool arguments,
bool locals,
bool statics,
lldb::DynamicValueType use_dynamic);
lldb::SBValueList
SBBlock::GetVariables (lldb::SBTarget& target,
bool arguments,
bool locals,
bool statics);
When a SBFrame is used, the values returned will be locked down to the frame
and the values will be evaluated in the context of that frame.
When a SBTarget is used, global an static variables can be viewed without a
running process.
llvm-svn: 149853
2012-02-06 09:44:54 +08:00
|
|
|
const bool append = true;
|
2011-06-21 09:34:41 +08:00
|
|
|
const bool symbols_ok = true;
|
2012-02-11 06:52:19 +08:00
|
|
|
const bool inlines_ok = true;
|
2012-02-23 03:41:02 +08:00
|
|
|
module_sp->FindFunctions (ConstString(name),
|
|
|
|
NULL,
|
|
|
|
name_type_mask,
|
|
|
|
symbols_ok,
|
|
|
|
inlines_ok,
|
|
|
|
append,
|
|
|
|
*sb_sc_list);
|
2011-06-21 09:34:41 +08:00
|
|
|
}
|
Removed all of the "#ifndef SWIG" from the SB header files since we are using
interface (.i) files for each class.
Changed the FindFunction class from:
uint32_t
SBTarget::FindFunctions (const char *name,
uint32_t name_type_mask,
bool append,
lldb::SBSymbolContextList& sc_list)
uint32_t
SBModule::FindFunctions (const char *name,
uint32_t name_type_mask,
bool append,
lldb::SBSymbolContextList& sc_list)
To:
lldb::SBSymbolContextList
SBTarget::FindFunctions (const char *name,
uint32_t name_type_mask = lldb::eFunctionNameTypeAny);
lldb::SBSymbolContextList
SBModule::FindFunctions (const char *name,
uint32_t name_type_mask = lldb::eFunctionNameTypeAny);
This makes the API easier to use from python. Also added the ability to
append a SBSymbolContext or a SBSymbolContextList to a SBSymbolContextList.
Exposed properties for lldb.SBSymbolContextList in python:
lldb.SBSymbolContextList.modules => list() or all lldb.SBModule objects in the list
lldb.SBSymbolContextList.compile_units => list() or all lldb.SBCompileUnits objects in the list
lldb.SBSymbolContextList.functions => list() or all lldb.SBFunction objects in the list
lldb.SBSymbolContextList.blocks => list() or all lldb.SBBlock objects in the list
lldb.SBSymbolContextList.line_entries => list() or all lldb.SBLineEntry objects in the list
lldb.SBSymbolContextList.symbols => list() or all lldb.SBSymbol objects in the list
This allows a call to the SBTarget::FindFunctions(...) and SBModule::FindFunctions(...)
and then the result can be used to extract the desired information:
sc_list = lldb.target.FindFunctions("erase")
for function in sc_list.functions:
print function
for symbol in sc_list.symbols:
print symbol
Exposed properties for the lldb.SBSymbolContext objects in python:
lldb.SBSymbolContext.module => lldb.SBModule
lldb.SBSymbolContext.compile_unit => lldb.SBCompileUnit
lldb.SBSymbolContext.function => lldb.SBFunction
lldb.SBSymbolContext.block => lldb.SBBlock
lldb.SBSymbolContext.line_entry => lldb.SBLineEntry
lldb.SBSymbolContext.symbol => lldb.SBSymbol
Exposed properties for the lldb.SBBlock objects in python:
lldb.SBBlock.parent => lldb.SBBlock for the parent block that contains
lldb.SBBlock.sibling => lldb.SBBlock for the sibling block to the current block
lldb.SBBlock.first_child => lldb.SBBlock for the first child block to the current block
lldb.SBBlock.call_site => for inline functions, return a lldb.declaration object that gives the call site file, line and column
lldb.SBBlock.name => for inline functions this is the name of the inline function that this block represents
lldb.SBBlock.inlined_block => returns the inlined function block that contains this block (might return itself if the current block is an inlined block)
lldb.SBBlock.range[int] => access the address ranges for a block by index, a list() with start and end address is returned
lldb.SBBlock.ranges => an array or all address ranges for this block
lldb.SBBlock.num_ranges => the number of address ranges for this blcok
SBFunction objects can now get the SBType and the SBBlock that represents the
top scope of the function.
SBBlock objects can now get the variable list from the current block. The value
list returned allows varaibles to be viewed prior with no process if code
wants to check the variables in a function. There are two ways to get a variable
list from a SBBlock:
lldb::SBValueList
SBBlock::GetVariables (lldb::SBFrame& frame,
bool arguments,
bool locals,
bool statics,
lldb::DynamicValueType use_dynamic);
lldb::SBValueList
SBBlock::GetVariables (lldb::SBTarget& target,
bool arguments,
bool locals,
bool statics);
When a SBFrame is used, the values returned will be locked down to the frame
and the values will be evaluated in the context of that frame.
When a SBTarget is used, global an static variables can be viewed without a
running process.
llvm-svn: 149853
2012-02-06 09:44:54 +08:00
|
|
|
return sb_sc_list;
|
2011-06-21 09:34:41 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 06:09:02 +08:00
|
|
|
|
|
|
|
SBValueList
|
|
|
|
SBModule::FindGlobalVariables (SBTarget &target, const char *name, uint32_t max_matches)
|
|
|
|
{
|
|
|
|
SBValueList sb_value_list;
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (name && module_sp)
|
2011-06-30 06:09:02 +08:00
|
|
|
{
|
|
|
|
VariableList variable_list;
|
2012-02-23 03:41:02 +08:00
|
|
|
const uint32_t match_count = module_sp->FindGlobalVariables (ConstString (name),
|
|
|
|
NULL,
|
|
|
|
false,
|
|
|
|
max_matches,
|
|
|
|
variable_list);
|
2011-06-30 06:09:02 +08:00
|
|
|
|
|
|
|
if (match_count > 0)
|
|
|
|
{
|
|
|
|
for (uint32_t i=0; i<match_count; ++i)
|
|
|
|
{
|
|
|
|
lldb::ValueObjectSP valobj_sp;
|
2012-01-30 15:41:31 +08:00
|
|
|
TargetSP target_sp (target.GetSP());
|
|
|
|
valobj_sp = ValueObjectVariable::Create (target_sp.get(), variable_list.GetVariableAtIndex(i));
|
2011-06-30 06:09:02 +08:00
|
|
|
if (valobj_sp)
|
2013-02-08 02:23:56 +08:00
|
|
|
sb_value_list.Append(SBValue(valobj_sp));
|
2011-06-30 06:09:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sb_value_list;
|
|
|
|
}
|
2011-07-30 03:53:35 +08:00
|
|
|
|
2013-01-17 02:53:52 +08:00
|
|
|
lldb::SBValue
|
|
|
|
SBModule::FindFirstGlobalVariable (lldb::SBTarget &target, const char *name)
|
|
|
|
{
|
|
|
|
SBValueList sb_value_list(FindGlobalVariables(target, name, 1));
|
|
|
|
if (sb_value_list.IsValid() && sb_value_list.GetSize() > 0)
|
|
|
|
return sb_value_list.GetValueAtIndex(0);
|
|
|
|
return SBValue();
|
|
|
|
}
|
|
|
|
|
2011-07-30 03:53:35 +08:00
|
|
|
lldb::SBType
|
2011-12-20 04:16:22 +08:00
|
|
|
SBModule::FindFirstType (const char *name_cstr)
|
2011-07-30 03:53:35 +08:00
|
|
|
{
|
2011-08-04 06:57:10 +08:00
|
|
|
SBType sb_type;
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (name_cstr && module_sp)
|
2011-07-30 03:53:35 +08:00
|
|
|
{
|
2011-08-04 06:57:10 +08:00
|
|
|
SymbolContext sc;
|
2012-03-27 07:03:23 +08:00
|
|
|
const bool exact_match = false;
|
2011-08-04 06:57:10 +08:00
|
|
|
ConstString name(name_cstr);
|
|
|
|
|
2012-12-06 05:24:42 +08:00
|
|
|
sb_type = SBType (module_sp->FindFirstType(sc, name, exact_match));
|
2011-08-04 06:57:10 +08:00
|
|
|
|
2012-12-06 05:24:42 +08:00
|
|
|
if (!sb_type.IsValid())
|
|
|
|
sb_type = SBType (ClangASTType::GetBasicType (module_sp->GetClangASTContext().getASTContext(), name));
|
2011-07-30 03:53:35 +08:00
|
|
|
}
|
2011-08-04 06:57:10 +08:00
|
|
|
return sb_type;
|
2011-07-30 03:53:35 +08:00
|
|
|
}
|
|
|
|
|
2012-12-06 05:24:42 +08:00
|
|
|
lldb::SBType
|
|
|
|
SBModule::GetBasicType(lldb::BasicType type)
|
|
|
|
{
|
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
|
|
|
return SBType (ClangASTType::GetBasicType (module_sp->GetClangASTContext().getASTContext(), type));
|
|
|
|
return SBType();
|
|
|
|
}
|
|
|
|
|
2011-07-30 03:53:35 +08:00
|
|
|
lldb::SBTypeList
|
2011-12-20 04:16:22 +08:00
|
|
|
SBModule::FindTypes (const char *type)
|
2011-07-30 03:53:35 +08:00
|
|
|
{
|
|
|
|
SBTypeList retval;
|
|
|
|
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (type && module_sp)
|
2011-07-30 03:53:35 +08:00
|
|
|
{
|
2011-08-04 06:57:10 +08:00
|
|
|
SymbolContext sc;
|
|
|
|
TypeList type_list;
|
2012-03-27 07:03:23 +08:00
|
|
|
const bool exact_match = false;
|
2011-08-04 06:57:10 +08:00
|
|
|
ConstString name(type);
|
2012-12-06 05:24:42 +08:00
|
|
|
const uint32_t num_matches = module_sp->FindTypes (sc,
|
|
|
|
name,
|
|
|
|
exact_match,
|
|
|
|
UINT32_MAX,
|
|
|
|
type_list);
|
2011-07-30 03:53:35 +08:00
|
|
|
|
2012-12-06 05:24:42 +08:00
|
|
|
if (num_matches > 0)
|
|
|
|
{
|
|
|
|
for (size_t idx = 0; idx < num_matches; idx++)
|
|
|
|
{
|
|
|
|
TypeSP type_sp (type_list.GetTypeAtIndex(idx));
|
|
|
|
if (type_sp)
|
|
|
|
retval.Append(SBType(type_sp));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2011-08-04 06:57:10 +08:00
|
|
|
{
|
2012-12-06 05:24:42 +08:00
|
|
|
SBType sb_type(ClangASTType::GetBasicType (module_sp->GetClangASTContext().getASTContext(), name));
|
|
|
|
if (sb_type.IsValid())
|
|
|
|
retval.Append(sb_type);
|
2011-08-04 06:57:10 +08:00
|
|
|
}
|
2011-07-30 03:53:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
2011-08-10 10:10:13 +08:00
|
|
|
}
|
2011-09-24 08:52:29 +08:00
|
|
|
|
|
|
|
|
|
|
|
SBSection
|
|
|
|
SBModule::FindSection (const char *sect_name)
|
|
|
|
{
|
|
|
|
SBSection sb_section;
|
|
|
|
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (sect_name && module_sp)
|
2011-09-24 08:52:29 +08:00
|
|
|
{
|
2012-02-23 03:41:02 +08:00
|
|
|
ObjectFile *objfile = module_sp->GetObjectFile();
|
2011-09-24 08:52:29 +08:00
|
|
|
if (objfile)
|
|
|
|
{
|
|
|
|
SectionList *section_list = objfile->GetSectionList();
|
|
|
|
if (section_list)
|
|
|
|
{
|
|
|
|
ConstString const_sect_name(sect_name);
|
|
|
|
SectionSP section_sp (section_list->FindSectionByName(const_sect_name));
|
|
|
|
if (section_sp)
|
|
|
|
{
|
2012-02-24 09:59:29 +08:00
|
|
|
sb_section.SetSP (section_sp);
|
2011-09-24 08:52:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sb_section;
|
|
|
|
}
|
|
|
|
|
2012-01-29 14:07:39 +08:00
|
|
|
lldb::ByteOrder
|
|
|
|
SBModule::GetByteOrder ()
|
|
|
|
{
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
|
|
|
return module_sp->GetArchitecture().GetByteOrder();
|
2012-01-29 14:07:39 +08:00
|
|
|
return eByteOrderInvalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
SBModule::GetTriple ()
|
|
|
|
{
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
2012-01-29 14:07:39 +08:00
|
|
|
{
|
2012-02-23 03:41:02 +08:00
|
|
|
std::string triple (module_sp->GetArchitecture().GetTriple().str());
|
2012-01-29 14:07:39 +08:00
|
|
|
// Unique the string so we don't run into ownership issues since
|
|
|
|
// the const strings put the string into the string pool once and
|
|
|
|
// the strings never comes out
|
|
|
|
ConstString const_triple (triple.c_str());
|
|
|
|
return const_triple.GetCString();
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
SBModule::GetAddressByteSize()
|
|
|
|
{
|
2012-02-23 03:41:02 +08:00
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
|
|
|
return module_sp->GetArchitecture().GetAddressByteSize();
|
2012-01-29 14:07:39 +08:00
|
|
|
return sizeof(void*);
|
|
|
|
}
|
|
|
|
|
2012-02-23 03:41:02 +08:00
|
|
|
|
|
|
|
uint32_t
|
|
|
|
SBModule::GetVersion (uint32_t *versions, uint32_t num_versions)
|
|
|
|
{
|
|
|
|
ModuleSP module_sp (GetSP ());
|
|
|
|
if (module_sp)
|
2012-09-05 02:47:54 +08:00
|
|
|
return module_sp->GetVersion(versions, num_versions);
|
|
|
|
else
|
2012-02-23 03:41:02 +08:00
|
|
|
{
|
2012-09-05 02:47:54 +08:00
|
|
|
if (versions && num_versions)
|
|
|
|
{
|
|
|
|
for (uint32_t i=0; i<num_versions; ++i)
|
|
|
|
versions[i] = UINT32_MAX;
|
|
|
|
}
|
|
|
|
return 0;
|
2012-02-23 03:41:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|