2003-05-24 00:15:53 +00:00
|
|
|
//===- CodeEmitterGen.h - Code Emitter Generator ----------------*- C++ -*-===//
|
|
|
|
//
|
2003-07-31 04:32:37 +00:00
|
|
|
// FIXME: document
|
2003-05-24 00:15:53 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef CODEMITTERGEN_H
|
|
|
|
#define CODEMITTERGEN_H
|
|
|
|
|
|
|
|
#include "Record.h"
|
|
|
|
|
2003-07-31 04:32:37 +00:00
|
|
|
class CodeEmitterGen {
|
2003-05-24 00:15:53 +00:00
|
|
|
RecordKeeper &Records;
|
|
|
|
public:
|
|
|
|
CodeEmitterGen(RecordKeeper &R) : Records(R) {}
|
|
|
|
|
2003-07-31 04:38:26 +00:00
|
|
|
// run - Output the code emitter, returning true on failure.
|
|
|
|
bool run(std::ostream &o);
|
2003-07-31 04:32:37 +00:00
|
|
|
private:
|
2003-05-24 00:15:53 +00:00
|
|
|
void emitMachineOpEmitter(std::ostream &o, const std::string &Namespace);
|
|
|
|
void emitGetValueBit(std::ostream &o, const std::string &Namespace);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|