blob: ae71d2c66bc53150799f6f16ecb65efd401ca8ff [file] [log] [blame]
Chris Lattner2c0f2c72003-08-06 04:23:04 +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>
Chris Lattner18a6a942003-08-06 04:31:26 +000013class Record;
14class RecordKeeper;
Chris Lattner2c0f2c72003-08-06 04:23:04 +000015
16struct TableGenBackend {
17
18 // run - All TableGen backends should implement the run method, which should
19 // be the main entry point.
20 virtual void run(std::ostream &OS) = 0;
21
22
23public: // Useful helper routines...
Chris Lattner18a6a942003-08-06 04:31:26 +000024 /// EmitSourceFileHeader - Output a LLVM style file header to the specified
25 /// ostream.
Chris Lattner2c0f2c72003-08-06 04:23:04 +000026 void EmitSourceFileHeader(const std::string &Desc, std::ostream &OS) const;
27
Chris Lattner18a6a942003-08-06 04:31:26 +000028 /// getQualifiedName - Return the name of the specified record, with a
29 /// namespace qualifier if the record contains one.
30 std::string getQualifiedName(Record *R) const;
31
32 /// getTarget - Return the current instance of the Target class.
33 Record *getTarget(RecordKeeper &RC) const;
Chris Lattner2c0f2c72003-08-06 04:23:04 +000034};
35
36#endif