2009-12-22 23:50:29 +01:00
|
|
|
//===- Disassembler.h - Text File Disassembler ----------------------------===//
|
2009-12-17 02:49:59 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This class implements the disassembler of strings of bytes written in
|
|
|
|
// hexadecimal, from standard input or from a file.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-12-22 23:50:29 +01:00
|
|
|
#ifndef DISASSEMBLER_H
|
|
|
|
#define DISASSEMBLER_H
|
2009-12-17 02:49:59 +01:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class Target;
|
|
|
|
class MemoryBuffer;
|
2010-08-20 03:07:01 +02:00
|
|
|
class raw_ostream;
|
2009-12-17 02:49:59 +01:00
|
|
|
|
2009-12-22 23:50:29 +01:00
|
|
|
class Disassembler {
|
2009-12-17 02:49:59 +01:00
|
|
|
public:
|
|
|
|
static int disassemble(const Target &target,
|
|
|
|
const std::string &tripleString,
|
2010-08-20 03:07:01 +02:00
|
|
|
MemoryBuffer &buffer,
|
|
|
|
raw_ostream &Out);
|
2010-04-12 21:43:00 +02:00
|
|
|
|
|
|
|
static int disassembleEnhanced(const std::string &tripleString,
|
2010-08-20 03:07:01 +02:00
|
|
|
MemoryBuffer &buffer,
|
|
|
|
raw_ostream &Out);
|
2009-12-17 02:49:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|