2009-09-10 00:49:13 +02:00
|
|
|
//===-- llvm/MC/MCDisassembler.h - Disassembler interface -------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef MCDISASSEMBLER_H
|
|
|
|
#define MCDISASSEMBLER_H
|
|
|
|
|
2009-10-26 02:35:46 +01:00
|
|
|
#include "llvm/System/DataTypes.h"
|
2009-09-10 00:49:13 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class MCInst;
|
|
|
|
class MemoryObject;
|
|
|
|
class raw_ostream;
|
2010-04-13 23:21:57 +02:00
|
|
|
|
|
|
|
struct EDInstInfo;
|
2009-09-10 00:49:13 +02:00
|
|
|
|
|
|
|
/// MCDisassembler - Superclass for all disassemblers. Consumes a memory region
|
|
|
|
/// and provides an array of assembly instructions.
|
|
|
|
class MCDisassembler {
|
|
|
|
public:
|
|
|
|
/// Constructor - Performs initial setup for the disassembler.
|
2009-09-14 03:43:38 +02:00
|
|
|
MCDisassembler() {}
|
2009-09-10 00:49:13 +02:00
|
|
|
|
|
|
|
virtual ~MCDisassembler();
|
|
|
|
|
|
|
|
/// getInstruction - Returns the disassembly of a single instruction.
|
|
|
|
///
|
|
|
|
/// @param instr - An MCInst to populate with the contents of the
|
|
|
|
/// instruction.
|
|
|
|
/// @param size - A value to populate with the size of the instruction, or
|
|
|
|
/// the number of bytes consumed while attempting to decode
|
|
|
|
/// an invalid instruction.
|
|
|
|
/// @param region - The memory object to use as a source for machine code.
|
|
|
|
/// @param address - The address, in the memory space of region, of the first
|
|
|
|
/// byte of the instruction.
|
|
|
|
/// @param vStream - The stream to print warnings and diagnostic messages on.
|
|
|
|
/// @return - True if the instruction is valid; false otherwise.
|
|
|
|
virtual bool getInstruction(MCInst& instr,
|
|
|
|
uint64_t& size,
|
|
|
|
const MemoryObject ®ion,
|
|
|
|
uint64_t address,
|
|
|
|
raw_ostream &vStream) const = 0;
|
2010-04-13 23:21:57 +02:00
|
|
|
|
|
|
|
/// getEDInfo - Returns the enhanced insturction information corresponding to
|
|
|
|
/// the disassembler.
|
|
|
|
///
|
|
|
|
/// @return - An array of instruction information, with one entry for
|
|
|
|
/// each MCInst opcode this disassembler returns.
|
|
|
|
/// NULL if there is no info for this target.
|
2010-04-13 23:36:35 +02:00
|
|
|
virtual EDInstInfo *getEDInfo() const { return (EDInstInfo*)0; }
|
2010-04-13 23:21:57 +02:00
|
|
|
};
|
2009-09-10 00:49:13 +02:00
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|