2010-06-09 00:52:24 +08:00
|
|
|
//===-- SBInstructionList.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/SBInstructionList.h"
|
|
|
|
#include "lldb/API/SBInstruction.h"
|
2010-10-06 11:09:58 +08:00
|
|
|
#include "lldb/API/SBStream.h"
|
|
|
|
#include "lldb/Core/Disassembler.h"
|
|
|
|
#include "lldb/Core/Stream.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
using namespace lldb;
|
2010-10-06 11:09:58 +08:00
|
|
|
using namespace lldb_private;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
|
2010-10-06 11:09:58 +08:00
|
|
|
SBInstructionList::SBInstructionList () :
|
|
|
|
m_opaque_sp()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SBInstructionList::~SBInstructionList ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
SBInstructionList::GetSize ()
|
|
|
|
{
|
2010-10-06 11:09:58 +08:00
|
|
|
if (m_opaque_sp)
|
|
|
|
return m_opaque_sp->GetInstructionList().GetSize();
|
2010-06-09 00:52:24 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBInstruction
|
|
|
|
SBInstructionList::GetInstructionAtIndex (uint32_t idx)
|
|
|
|
{
|
|
|
|
SBInstruction inst;
|
2010-10-06 11:09:58 +08:00
|
|
|
if (m_opaque_sp && idx < m_opaque_sp->GetInstructionList().GetSize())
|
|
|
|
inst.SetOpaque (m_opaque_sp->GetInstructionList().GetInstructionAtIndex (idx));
|
2010-06-09 00:52:24 +08:00
|
|
|
return inst;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SBInstructionList::Clear ()
|
|
|
|
{
|
2010-10-06 11:09:58 +08:00
|
|
|
m_opaque_sp.reset();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SBInstructionList::AppendInstruction (SBInstruction insn)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-10-06 11:09:58 +08:00
|
|
|
void
|
|
|
|
SBInstructionList::SetDisassembler (const lldb::DisassemblerSP &opaque_sp)
|
|
|
|
{
|
|
|
|
m_opaque_sp = opaque_sp;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
void
|
|
|
|
SBInstructionList::Print (FILE *out)
|
|
|
|
{
|
|
|
|
if (out == NULL)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-10-06 11:09:58 +08:00
|
|
|
|
|
|
|
bool
|
|
|
|
SBInstructionList::GetDescription (lldb::SBStream &description)
|
|
|
|
{
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
size_t num_instructions = GetSize ();
|
|
|
|
if (num_instructions)
|
|
|
|
{
|
|
|
|
// Call the ref() to make sure a stream is created if one deesn't
|
|
|
|
// exist already inside description...
|
|
|
|
Stream &sref = description.ref();
|
|
|
|
for (size_t i=0; i<num_instructions; ++i)
|
|
|
|
{
|
|
|
|
Instruction *inst = m_opaque_sp->GetInstructionList().GetInstructionAtIndex (i).get();
|
|
|
|
if (inst == NULL)
|
|
|
|
break;
|
|
|
|
inst->Dump (&sref, true, NULL, 0, NULL, false);
|
|
|
|
sref.EOL();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|