2010-06-09 00:52:24 +08:00
|
|
|
//===-- Disassembler.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/Core/Disassembler.h"
|
|
|
|
|
|
|
|
// C Includes
|
|
|
|
// C++ Includes
|
|
|
|
// Other libraries and framework includes
|
|
|
|
// Project includes
|
|
|
|
#include "lldb/lldb-private.h"
|
|
|
|
#include "lldb/Core/Error.h"
|
|
|
|
#include "lldb/Core/DataBufferHeap.h"
|
|
|
|
#include "lldb/Core/DataExtractor.h"
|
|
|
|
#include "lldb/Core/Debugger.h"
|
|
|
|
#include "lldb/Core/Module.h"
|
|
|
|
#include "lldb/Core/PluginManager.h"
|
|
|
|
#include "lldb/Core/Timer.h"
|
|
|
|
#include "lldb/Symbol/ObjectFile.h"
|
|
|
|
#include "lldb/Target/ExecutionContext.h"
|
|
|
|
#include "lldb/Target/Process.h"
|
|
|
|
#include "lldb/Target/StackFrame.h"
|
|
|
|
#include "lldb/Target/Target.h"
|
|
|
|
|
|
|
|
#define DEFAULT_DISASM_BYTE_SIZE 32
|
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
|
|
|
|
Disassembler*
|
|
|
|
Disassembler::FindPlugin (const ArchSpec &arch)
|
|
|
|
{
|
|
|
|
Timer scoped_timer (__PRETTY_FUNCTION__,
|
|
|
|
"Disassembler::FindPlugin (arch = %s)",
|
|
|
|
arch.AsCString());
|
|
|
|
|
|
|
|
std::auto_ptr<Disassembler> disassembler_ap;
|
|
|
|
DisassemblerCreateInstance create_callback;
|
|
|
|
for (uint32_t idx = 0; (create_callback = PluginManager::GetDisassemblerCreateCallbackAtIndex(idx)) != NULL; ++idx)
|
|
|
|
{
|
|
|
|
disassembler_ap.reset (create_callback(arch));
|
|
|
|
|
|
|
|
if (disassembler_ap.get())
|
|
|
|
return disassembler_ap.release();
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-07-01 07:03:03 +08:00
|
|
|
|
|
|
|
|
|
|
|
size_t
|
2010-06-09 00:52:24 +08:00
|
|
|
Disassembler::Disassemble
|
|
|
|
(
|
2010-06-23 09:19:29 +08:00
|
|
|
Debugger &debugger,
|
2010-06-09 00:52:24 +08:00
|
|
|
const ArchSpec &arch,
|
|
|
|
const ExecutionContext &exe_ctx,
|
2010-07-01 07:03:03 +08:00
|
|
|
SymbolContextList &sc_list,
|
|
|
|
uint32_t num_mixed_context_lines,
|
|
|
|
bool show_bytes,
|
2010-06-09 00:52:24 +08:00
|
|
|
Stream &strm
|
|
|
|
)
|
|
|
|
{
|
2010-07-01 07:03:03 +08:00
|
|
|
size_t success_count = 0;
|
|
|
|
const size_t count = sc_list.GetSize();
|
|
|
|
SymbolContext sc;
|
|
|
|
AddressRange range;
|
|
|
|
for (size_t i=0; i<count; ++i)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-07-01 07:03:03 +08:00
|
|
|
if (sc_list.GetContextAtIndex(i, sc) == false)
|
|
|
|
break;
|
|
|
|
if (sc.GetAddressRange(eSymbolContextFunction | eSymbolContextSymbol, range))
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-07-01 07:03:03 +08:00
|
|
|
if (Disassemble (debugger, arch, exe_ctx, range, num_mixed_context_lines, show_bytes, strm))
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-07-01 07:03:03 +08:00
|
|
|
++success_count;
|
|
|
|
strm.EOL();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2010-07-01 07:03:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return success_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Disassembler::Disassemble
|
|
|
|
(
|
|
|
|
Debugger &debugger,
|
|
|
|
const ArchSpec &arch,
|
|
|
|
const ExecutionContext &exe_ctx,
|
|
|
|
const ConstString &name,
|
|
|
|
Module *module,
|
|
|
|
uint32_t num_mixed_context_lines,
|
|
|
|
bool show_bytes,
|
|
|
|
Stream &strm
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (exe_ctx.target == NULL && name)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
SymbolContextList sc_list;
|
|
|
|
|
|
|
|
if (module)
|
|
|
|
{
|
|
|
|
if (!module->FindFunctions (name,
|
2010-09-15 13:51:24 +08:00
|
|
|
eFunctionNameTypeBase |
|
|
|
|
eFunctionNameTypeFull |
|
|
|
|
eFunctionNameTypeMethod |
|
|
|
|
eFunctionNameTypeSelector,
|
2010-07-01 07:03:03 +08:00
|
|
|
true,
|
|
|
|
sc_list))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (exe_ctx.target->GetImages().FindFunctions (name,
|
2010-09-15 13:51:24 +08:00
|
|
|
eFunctionNameTypeBase |
|
|
|
|
eFunctionNameTypeFull |
|
|
|
|
eFunctionNameTypeMethod |
|
|
|
|
eFunctionNameTypeSelector,
|
2010-07-27 08:55:47 +08:00
|
|
|
false,
|
2010-07-01 07:03:03 +08:00
|
|
|
sc_list))
|
|
|
|
{
|
|
|
|
return Disassemble (debugger, arch, exe_ctx, sc_list, num_mixed_context_lines, show_bytes, strm);
|
|
|
|
}
|
|
|
|
else if (exe_ctx.target->GetImages().FindSymbolsWithNameAndType(name, eSymbolTypeCode, sc_list))
|
|
|
|
{
|
|
|
|
return Disassemble (debugger, arch, exe_ctx, sc_list, num_mixed_context_lines, show_bytes, strm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-10-06 11:09:58 +08:00
|
|
|
|
|
|
|
lldb::DisassemblerSP
|
|
|
|
Disassembler::DisassembleRange
|
|
|
|
(
|
|
|
|
const ArchSpec &arch,
|
|
|
|
const ExecutionContext &exe_ctx,
|
|
|
|
const AddressRange &range
|
|
|
|
)
|
|
|
|
{
|
|
|
|
lldb::DisassemblerSP disasm_sp;
|
|
|
|
if (range.GetByteSize() > 0 && range.GetBaseAddress().IsValid())
|
|
|
|
{
|
|
|
|
disasm_sp.reset (Disassembler::FindPlugin(arch));
|
|
|
|
|
|
|
|
if (disasm_sp)
|
|
|
|
{
|
|
|
|
DataExtractor data;
|
|
|
|
size_t bytes_disassembled = disasm_sp->ParseInstructions (&exe_ctx, range, data);
|
|
|
|
if (bytes_disassembled == 0)
|
|
|
|
disasm_sp.reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return disasm_sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-01 07:03:03 +08:00
|
|
|
bool
|
|
|
|
Disassembler::Disassemble
|
|
|
|
(
|
|
|
|
Debugger &debugger,
|
|
|
|
const ArchSpec &arch,
|
|
|
|
const ExecutionContext &exe_ctx,
|
|
|
|
const AddressRange &disasm_range,
|
|
|
|
uint32_t num_mixed_context_lines,
|
|
|
|
bool show_bytes,
|
|
|
|
Stream &strm
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (disasm_range.GetByteSize())
|
|
|
|
{
|
2010-10-06 11:09:58 +08:00
|
|
|
std::auto_ptr<Disassembler> disasm_ap (Disassembler::FindPlugin(arch));
|
2010-07-01 07:03:03 +08:00
|
|
|
|
2010-10-06 11:09:58 +08:00
|
|
|
if (disasm_ap.get())
|
2010-07-01 07:03:03 +08:00
|
|
|
{
|
|
|
|
AddressRange range(disasm_range);
|
|
|
|
|
|
|
|
Process *process = exe_ctx.process;
|
|
|
|
|
|
|
|
// If we weren't passed in a section offset address range,
|
|
|
|
// try and resolve it to something
|
|
|
|
if (range.GetBaseAddress().IsSectionOffset() == false)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-09-15 07:36:40 +08:00
|
|
|
if (exe_ctx.target)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-09-15 07:36:40 +08:00
|
|
|
if (exe_ctx.target->GetSectionLoadList().IsEmpty())
|
|
|
|
{
|
|
|
|
exe_ctx.target->GetImages().ResolveFileAddress (range.GetBaseAddress().GetOffset(), range.GetBaseAddress());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
exe_ctx.target->GetSectionLoadList().ResolveLoadAddress (range.GetBaseAddress().GetOffset(), range.GetBaseAddress());
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DataExtractor data;
|
2010-10-06 11:09:58 +08:00
|
|
|
size_t bytes_disassembled = disasm_ap->ParseInstructions (&exe_ctx, range, data);
|
2010-06-09 00:52:24 +08:00
|
|
|
if (bytes_disassembled == 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// We got some things disassembled...
|
2010-10-06 11:09:58 +08:00
|
|
|
size_t num_instructions = disasm_ap->GetInstructionList().GetSize();
|
2010-06-09 00:52:24 +08:00
|
|
|
uint32_t offset = 0;
|
|
|
|
SymbolContext sc;
|
|
|
|
SymbolContext prev_sc;
|
|
|
|
AddressRange sc_range;
|
2010-07-01 07:03:03 +08:00
|
|
|
if (num_mixed_context_lines)
|
2010-06-09 00:52:24 +08:00
|
|
|
strm.IndentMore ();
|
|
|
|
|
2010-07-01 07:03:03 +08:00
|
|
|
|
|
|
|
Address addr(range.GetBaseAddress());
|
|
|
|
|
|
|
|
// We extract the section to make sure we don't transition out
|
|
|
|
// of the current section when disassembling
|
|
|
|
const Section *addr_section = addr.GetSection();
|
|
|
|
Module *range_module = range.GetBaseAddress().GetModule();
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
for (size_t i=0; i<num_instructions; ++i)
|
|
|
|
{
|
2010-10-06 11:09:58 +08:00
|
|
|
Instruction *inst = disasm_ap->GetInstructionList().GetInstructionAtIndex (i).get();
|
2010-06-09 00:52:24 +08:00
|
|
|
if (inst)
|
|
|
|
{
|
2010-07-01 07:03:03 +08:00
|
|
|
addr_t file_addr = addr.GetFileAddress();
|
|
|
|
if (addr_section == NULL || addr_section->ContainsFileAddress (file_addr) == false)
|
|
|
|
{
|
|
|
|
if (range_module)
|
|
|
|
range_module->ResolveFileAddress (file_addr, addr);
|
|
|
|
else if (exe_ctx.target)
|
|
|
|
exe_ctx.target->GetImages().ResolveFileAddress (file_addr, addr);
|
|
|
|
|
|
|
|
addr_section = addr.GetSection();
|
|
|
|
}
|
|
|
|
|
|
|
|
prev_sc = sc;
|
|
|
|
|
|
|
|
if (addr_section)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-07-01 07:03:03 +08:00
|
|
|
Module *module = addr_section->GetModule();
|
|
|
|
uint32_t resolved_mask = module->ResolveSymbolContextForAddress(addr, eSymbolContextEverything, sc);
|
|
|
|
if (resolved_mask)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-09-07 07:11:45 +08:00
|
|
|
if (!(prev_sc.function == sc.function || prev_sc.symbol == sc.symbol))
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-07-01 07:03:03 +08:00
|
|
|
if (prev_sc.function || prev_sc.symbol)
|
|
|
|
strm.EOL();
|
|
|
|
|
|
|
|
strm << sc.module_sp->GetFileSpec().GetFilename();
|
|
|
|
|
|
|
|
if (sc.function)
|
|
|
|
strm << '`' << sc.function->GetMangled().GetName();
|
|
|
|
else if (sc.symbol)
|
|
|
|
strm << '`' << sc.symbol->GetMangled().GetName();
|
|
|
|
strm << ":\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num_mixed_context_lines && !sc_range.ContainsFileAddress (addr))
|
|
|
|
{
|
|
|
|
sc.GetAddressRange (eSymbolContextEverything, sc_range);
|
|
|
|
|
|
|
|
if (sc != prev_sc)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-07-01 07:03:03 +08:00
|
|
|
if (offset != 0)
|
|
|
|
strm.EOL();
|
|
|
|
|
2010-09-15 13:51:24 +08:00
|
|
|
sc.DumpStopContext(&strm, process, addr, false, true, false);
|
|
|
|
strm.EOL();
|
2010-07-01 07:03:03 +08:00
|
|
|
|
|
|
|
if (sc.comp_unit && sc.line_entry.IsValid())
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-07-01 07:03:03 +08:00
|
|
|
debugger.GetSourceManager().DisplaySourceLinesWithLineNumbers (sc.line_entry.file,
|
|
|
|
sc.line_entry.line,
|
|
|
|
num_mixed_context_lines,
|
|
|
|
num_mixed_context_lines,
|
|
|
|
num_mixed_context_lines ? "->" : "",
|
|
|
|
&strm);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-07-01 07:03:03 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
sc.Clear();
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2010-07-01 07:03:03 +08:00
|
|
|
if (num_mixed_context_lines)
|
2010-06-09 00:52:24 +08:00
|
|
|
strm.IndentMore ();
|
|
|
|
strm.Indent();
|
|
|
|
size_t inst_byte_size = inst->GetByteSize();
|
2010-10-06 11:09:58 +08:00
|
|
|
inst->Dump(&strm, true, show_bytes ? &data : NULL, offset, &exe_ctx, show_bytes);
|
2010-06-09 00:52:24 +08:00
|
|
|
strm.EOL();
|
|
|
|
offset += inst_byte_size;
|
2010-07-01 07:03:03 +08:00
|
|
|
|
|
|
|
addr.SetOffset (addr.GetOffset() + inst_byte_size);
|
|
|
|
|
|
|
|
if (num_mixed_context_lines)
|
2010-06-09 00:52:24 +08:00
|
|
|
strm.IndentLess ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-07-01 07:03:03 +08:00
|
|
|
if (num_mixed_context_lines)
|
2010-06-09 00:52:24 +08:00
|
|
|
strm.IndentLess ();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-07-01 07:03:03 +08:00
|
|
|
|
|
|
|
bool
|
|
|
|
Disassembler::Disassemble
|
|
|
|
(
|
|
|
|
Debugger &debugger,
|
|
|
|
const ArchSpec &arch,
|
|
|
|
const ExecutionContext &exe_ctx,
|
|
|
|
uint32_t num_mixed_context_lines,
|
|
|
|
bool show_bytes,
|
|
|
|
Stream &strm
|
|
|
|
)
|
|
|
|
{
|
|
|
|
AddressRange range;
|
|
|
|
if (exe_ctx.frame)
|
|
|
|
{
|
|
|
|
SymbolContext sc(exe_ctx.frame->GetSymbolContext(eSymbolContextFunction | eSymbolContextSymbol));
|
|
|
|
if (sc.function)
|
|
|
|
{
|
|
|
|
range = sc.function->GetAddressRange();
|
|
|
|
}
|
|
|
|
else if (sc.symbol && sc.symbol->GetAddressRangePtr())
|
|
|
|
{
|
|
|
|
range = *sc.symbol->GetAddressRangePtr();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-08-25 05:05:24 +08:00
|
|
|
range.GetBaseAddress() = exe_ctx.frame->GetFrameCodeAddress();
|
2010-07-01 07:03:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (range.GetBaseAddress().IsValid() && range.GetByteSize() == 0)
|
|
|
|
range.SetByteSize (DEFAULT_DISASM_BYTE_SIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Disassemble(debugger, arch, exe_ctx, range, num_mixed_context_lines, show_bytes, strm);
|
|
|
|
}
|
|
|
|
|
2010-10-06 11:09:58 +08:00
|
|
|
Instruction::Instruction(const Address &addr) :
|
|
|
|
m_addr (addr)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-10-06 11:09:58 +08:00
|
|
|
Instruction::~Instruction()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-06 11:09:58 +08:00
|
|
|
InstructionList::InstructionList() :
|
2010-06-09 00:52:24 +08:00
|
|
|
m_instructions()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-10-06 11:09:58 +08:00
|
|
|
InstructionList::~InstructionList()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
2010-10-06 11:09:58 +08:00
|
|
|
InstructionList::GetSize() const
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
return m_instructions.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-06 11:09:58 +08:00
|
|
|
InstructionSP
|
|
|
|
InstructionList::GetInstructionAtIndex (uint32_t idx) const
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-10-06 11:09:58 +08:00
|
|
|
InstructionSP inst_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
if (idx < m_instructions.size())
|
2010-10-06 11:09:58 +08:00
|
|
|
inst_sp = m_instructions[idx];
|
|
|
|
return inst_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-10-06 11:09:58 +08:00
|
|
|
InstructionList::Clear()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
m_instructions.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-10-06 11:09:58 +08:00
|
|
|
InstructionList::Append (lldb::InstructionSP &inst_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
if (inst_sp)
|
|
|
|
m_instructions.push_back(inst_sp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
size_t
|
|
|
|
Disassembler::ParseInstructions
|
|
|
|
(
|
|
|
|
const ExecutionContext *exe_ctx,
|
2010-07-01 07:03:03 +08:00
|
|
|
const AddressRange &range,
|
2010-06-09 00:52:24 +08:00
|
|
|
DataExtractor& data
|
|
|
|
)
|
|
|
|
{
|
2010-07-01 07:03:03 +08:00
|
|
|
Target *target = exe_ctx->target;
|
|
|
|
const addr_t byte_size = range.GetByteSize();
|
|
|
|
if (target == NULL || byte_size == 0 || !range.GetBaseAddress().IsValid())
|
2010-06-09 00:52:24 +08:00
|
|
|
return 0;
|
|
|
|
|
2010-07-01 07:03:03 +08:00
|
|
|
DataBufferHeap *heap_buffer = new DataBufferHeap (byte_size, '\0');
|
|
|
|
DataBufferSP data_sp(heap_buffer);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
Error error;
|
2011-01-07 09:57:07 +08:00
|
|
|
bool prefer_file_cache = true;
|
|
|
|
const size_t bytes_read = target->ReadMemory (range.GetBaseAddress(), prefer_file_cache, heap_buffer->GetBytes(), heap_buffer->GetByteSize(), error);
|
2010-07-01 07:03:03 +08:00
|
|
|
|
|
|
|
if (bytes_read > 0)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-07-01 07:03:03 +08:00
|
|
|
if (bytes_read != heap_buffer->GetByteSize())
|
|
|
|
heap_buffer->SetByteSize (bytes_read);
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
data.SetData(data_sp);
|
2010-07-01 07:03:03 +08:00
|
|
|
if (exe_ctx->process)
|
|
|
|
{
|
|
|
|
data.SetByteOrder(exe_ctx->process->GetByteOrder());
|
|
|
|
data.SetAddressByteSize(exe_ctx->process->GetAddressByteSize());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
data.SetByteOrder(target->GetArchitecture().GetDefaultEndian());
|
|
|
|
data.SetAddressByteSize(target->GetArchitecture().GetAddressByteSize());
|
|
|
|
}
|
2010-10-06 11:09:58 +08:00
|
|
|
return DecodeInstructions (range.GetBaseAddress(), data, 0, UINT32_MAX);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Disassembler copy constructor
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
Disassembler::Disassembler(const ArchSpec& arch) :
|
|
|
|
m_arch (arch),
|
|
|
|
m_instruction_list(),
|
|
|
|
m_base_addr(LLDB_INVALID_ADDRESS)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Destructor
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
Disassembler::~Disassembler()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-10-06 11:09:58 +08:00
|
|
|
InstructionList &
|
2010-06-09 00:52:24 +08:00
|
|
|
Disassembler::GetInstructionList ()
|
|
|
|
{
|
|
|
|
return m_instruction_list;
|
|
|
|
}
|
|
|
|
|
2010-10-06 11:09:58 +08:00
|
|
|
const InstructionList &
|
2010-06-09 00:52:24 +08:00
|
|
|
Disassembler::GetInstructionList () const
|
|
|
|
{
|
|
|
|
return m_instruction_list;
|
|
|
|
}
|