Chris Lattner | f5bd1b7 | 2003-10-05 19:27:59 +0000 | [diff] [blame^] | 1 | //===- CodeEmitterGen.h - Code Emitter Generator ----------------*- C++ -*-===// |
| 2 | // |
| 3 | // FIXME: document |
| 4 | // |
| 5 | //===----------------------------------------------------------------------===// |
| 6 | |
| 7 | #ifndef CODEMITTERGEN_H |
| 8 | #define CODEMITTERGEN_H |
| 9 | |
| 10 | #include "TableGenBackend.h" |
| 11 | |
| 12 | class CodeEmitterGen : public TableGenBackend { |
| 13 | RecordKeeper &Records; |
| 14 | public: |
| 15 | CodeEmitterGen(RecordKeeper &R) : Records(R) {} |
| 16 | |
| 17 | // run - Output the code emitter |
| 18 | void run(std::ostream &o); |
| 19 | private: |
| 20 | void emitMachineOpEmitter(std::ostream &o, const std::string &Namespace); |
| 21 | void emitGetValueBit(std::ostream &o, const std::string &Namespace); |
| 22 | }; |
| 23 | |
| 24 | #endif |