2009-12-22 23:50:29 +01:00
|
|
|
//===- Disassembler.h - Text File Disassembler ----------------------------===//
|
2009-12-17 02:49:59 +01:00
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2009-12-17 02:49:59 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This class implements the disassembler of strings of bytes written in
|
|
|
|
// hexadecimal, from standard input or from a file.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 18:26:38 +02:00
|
|
|
#ifndef LLVM_TOOLS_LLVM_MC_DISASSEMBLER_H
|
|
|
|
#define LLVM_TOOLS_LLVM_MC_DISASSEMBLER_H
|
2009-12-17 02:49:59 +01:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class MemoryBuffer;
|
2011-03-21 05:13:46 +01:00
|
|
|
class Target;
|
2010-08-20 03:07:01 +02:00
|
|
|
class raw_ostream;
|
2012-04-16 13:32:10 +02:00
|
|
|
class SourceMgr;
|
|
|
|
class MCSubtargetInfo;
|
|
|
|
class MCStreamer;
|
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:
|
2012-04-16 13:32:10 +02:00
|
|
|
static int disassemble(const Target &T,
|
|
|
|
const std::string &Triple,
|
|
|
|
MCSubtargetInfo &STI,
|
|
|
|
MCStreamer &Streamer,
|
|
|
|
MemoryBuffer &Buffer,
|
|
|
|
SourceMgr &SM,
|
2010-08-20 03:07:01 +02:00
|
|
|
raw_ostream &Out);
|
2009-12-17 02:49:59 +01:00
|
|
|
};
|
2011-05-09 22:05:25 +02:00
|
|
|
|
2009-12-17 02:49:59 +01:00
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|