blob: 8dfbaddad160c442138d27fd0985f27fedf74e5a [file] [log] [blame]
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001//===- TableGenBackend.h - Base class for TableGen Backends -----*- C++ -*-===//
2//
3// The TableGenBackend class is provided as a common interface for all TableGen
4// backends. It provides useful services and an standardized interface.
5//
6//===----------------------------------------------------------------------===//
7
8#ifndef TABLEGENBACKEND_H
9#define TABLEGENBACKEND_H
10
11#include <string>
12#include <iosfwd>
13class Record;
14class RecordKeeper;
15
16struct TableGenBackend {
17 virtual ~TableGenBackend() {}
18
19 // run - All TableGen backends should implement the run method, which should
20 // be the main entry point.
21 virtual void run(std::ostream &OS) = 0;
22
23
24public: // Useful helper routines...
25 /// EmitSourceFileHeader - Output a LLVM style file header to the specified
26 /// ostream.
27 void EmitSourceFileHeader(const std::string &Desc, std::ostream &OS) const;
28
29 /// getQualifiedName - Return the name of the specified record, with a
30 /// namespace qualifier if the record contains one.
31 std::string getQualifiedName(Record *R) const;
32};
33
34#endif