mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 09:41:05 -04:00
(A number of files not required for the FreeBSD build have been removed.) Sponsored by: DARPA, AFRL
94 lines
1.9 KiB
C++
94 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 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_
|