You cannot export a class from a DLL without this on Windows, so it was causing lldb-mi to fail to link after recent changes. Please make sure to include this at the start of every public type in the future. llvm-svn: 229523
95 lines
1.9 KiB
C++
95 lines
1.9 KiB
C++
//===-- SBInstruction.h -----------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLDB_SBInstruction_h_
|
|
#define LLDB_SBInstruction_h_
|
|
|
|
#include "lldb/API/SBDefines.h"
|
|
#include "lldb/API/SBData.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
// There's a lot to be fixed here, but need to wait for underlying insn implementation
|
|
// to be revised & settle down first.
|
|
|
|
namespace lldb {
|
|
|
|
class LLDB_API SBInstruction
|
|
{
|
|
public:
|
|
|
|
SBInstruction ();
|
|
|
|
SBInstruction (const SBInstruction &rhs);
|
|
|
|
const SBInstruction &
|
|
operator = (const SBInstruction &rhs);
|
|
|
|
~SBInstruction ();
|
|
|
|
bool
|
|
IsValid();
|
|
|
|
SBAddress
|
|
GetAddress();
|
|
|
|
lldb::AddressClass
|
|
GetAddressClass ();
|
|
|
|
const char *
|
|
GetMnemonic (lldb::SBTarget target);
|
|
|
|
const char *
|
|
GetOperands (lldb::SBTarget target);
|
|
|
|
const char *
|
|
GetComment (lldb::SBTarget target);
|
|
|
|
lldb::SBData
|
|
GetData (lldb::SBTarget target);
|
|
|
|
size_t
|
|
GetByteSize ();
|
|
|
|
bool
|
|
DoesBranch ();
|
|
|
|
void
|
|
Print (FILE *out);
|
|
|
|
bool
|
|
GetDescription (lldb::SBStream &description);
|
|
|
|
bool
|
|
EmulateWithFrame (lldb::SBFrame &frame, uint32_t evaluate_options);
|
|
|
|
bool
|
|
DumpEmulation (const char * triple); // triple is to specify the architecture, e.g. 'armv6' or 'armv7-apple-ios'
|
|
|
|
bool
|
|
TestEmulation (lldb::SBStream &output_stream, const char *test_file);
|
|
|
|
protected:
|
|
friend class SBInstructionList;
|
|
|
|
SBInstruction (const lldb::InstructionSP &inst_sp);
|
|
|
|
void
|
|
SetOpaque (const lldb::InstructionSP &inst_sp);
|
|
|
|
private:
|
|
|
|
lldb::InstructionSP m_opaque_sp;
|
|
};
|
|
|
|
|
|
} // namespace lldb
|
|
|
|
#endif // LLDB_SBInstruction_h_
|