2009-11-25 03:13:23 +01:00
|
|
|
//===- DisassemblerEmitter.h - Disassembler Generator -----------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef DISASSEMBLEREMITTER_H
|
|
|
|
#define DISASSEMBLEREMITTER_H
|
|
|
|
|
2011-10-01 18:41:13 +02:00
|
|
|
#include "llvm/TableGen/TableGenBackend.h"
|
2009-11-25 03:13:23 +01:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class DisassemblerEmitter : public TableGenBackend {
|
|
|
|
RecordKeeper &Records;
|
|
|
|
public:
|
|
|
|
DisassemblerEmitter(RecordKeeper &R) : Records(R) {}
|
|
|
|
|
|
|
|
/// run - Output the disassembler.
|
|
|
|
void run(raw_ostream &o);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end llvm namespace
|
|
|
|
|
|
|
|
#endif
|