summaryrefslogtreecommitdiff
path: root/utils/TableGen/TableGenBackend.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-06 04:31:26 +0000
committerChris Lattner <sabre@nondot.org>2003-08-06 04:31:26 +0000
commit18a6a94e1fc5cd10d50a91598b1465f31e307266 (patch)
tree87b9e18c1bddabbf26815827395722ec0a2339ba /utils/TableGen/TableGenBackend.h
parent2c0f2c74bea4f40acb03b0c7c85d9cfc35feff2d (diff)
downloadllvm-18a6a94e1fc5cd10d50a91598b1465f31e307266.tar.gz
llvm-18a6a94e1fc5cd10d50a91598b1465f31e307266.tar.bz2
llvm-18a6a94e1fc5cd10d50a91598b1465f31e307266.tar.xz
Add more helper methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7626 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/TableGenBackend.h')
-rw-r--r--utils/TableGen/TableGenBackend.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/utils/TableGen/TableGenBackend.h b/utils/TableGen/TableGenBackend.h
index b9e8c49d4c..ae71d2c66b 100644
--- a/utils/TableGen/TableGenBackend.h
+++ b/utils/TableGen/TableGenBackend.h
@@ -10,6 +10,8 @@
#include <string>
#include <iosfwd>
+class Record;
+class RecordKeeper;
struct TableGenBackend {
@@ -19,8 +21,16 @@ struct TableGenBackend {
public: // Useful helper routines...
+ /// EmitSourceFileHeader - Output a LLVM style file header to the specified
+ /// ostream.
void EmitSourceFileHeader(const std::string &Desc, std::ostream &OS) const;
+ /// getQualifiedName - Return the name of the specified record, with a
+ /// namespace qualifier if the record contains one.
+ std::string getQualifiedName(Record *R) const;
+
+ /// getTarget - Return the current instance of the Target class.
+ Record *getTarget(RecordKeeper &RC) const;
};
#endif