2009-12-22 22:50:29 +00:00
|
|
|
//===- Disassembler.h - Text File Disassembler ----------------------------===//
|
2009-12-17 01:49:59 +00: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 22:50:29 +00:00
|
|
|
#ifndef DISASSEMBLER_H
|
|
|
|
#define DISASSEMBLER_H
|
2009-12-17 01:49:59 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class Target;
|
|
|
|
class MemoryBuffer;
|
|
|
|
|
2009-12-22 22:50:29 +00:00
|
|
|
class Disassembler {
|
2009-12-17 01:49:59 +00:00
|
|
|
public:
|
|
|
|
static int disassemble(const Target &target,
|
|
|
|
const std::string &tripleString,
|
|
|
|
MemoryBuffer &buffer);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|