Drop a RecordKeeper reference that wasn't necessary.
[oota-llvm.git] / utils / TableGen / TGParser.h
1 //===- TGParser.h - Parser for TableGen Files -------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This class represents the Parser for tablegen files.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef TGPARSER_H
15 #define TGPARSER_H
16
17 #include "TGLexer.h"
18 #include "llvm/ADT/Twine.h"
19 #include "llvm/Support/SourceMgr.h"
20 #include <map>
21
22 namespace llvm {
23   class Record;
24   class RecordVal;
25   class RecordKeeper;
26   struct RecTy;
27   struct Init;
28   struct MultiClass;
29   struct SubClassReference;
30   struct SubMultiClassReference;
31   
32   struct LetRecord {
33     std::string Name;
34     std::vector<unsigned> Bits;
35     Init *Value;
36     SMLoc Loc;
37     LetRecord(const std::string &N, const std::vector<unsigned> &B, Init *V,
38               SMLoc L)
39       : Name(N), Bits(B), Value(V), Loc(L) {
40     }
41   };
42   
43 class TGParser {
44   TGLexer Lex;
45   std::vector<std::vector<LetRecord> > LetStack;
46   std::map<std::string, MultiClass*> MultiClasses;
47   
48   /// CurMultiClass - If we are parsing a 'multiclass' definition, this is the 
49   /// current value.
50   MultiClass *CurMultiClass;
51
52   // Record tracker
53   RecordKeeper &Records;
54 public:
55   TGParser(SourceMgr &SrcMgr, RecordKeeper &records) : 
56     Lex(SrcMgr), CurMultiClass(0), Records(records) {}
57   
58   /// ParseFile - Main entrypoint for parsing a tblgen file.  These parser
59   /// routines return true on error, or false on success.
60   bool ParseFile();
61   
62   bool Error(SMLoc L, const Twine &Msg) const {
63     Lex.PrintError(L, Msg);
64     return true;
65   }
66   bool TokError(const Twine &Msg) const {
67     return Error(Lex.getLoc(), Msg);
68   }
69   const std::vector<std::string> &getDependencies() const {
70     return Lex.getDependencies();
71   }
72 private:  // Semantic analysis methods.
73   bool AddValue(Record *TheRec, SMLoc Loc, const RecordVal &RV);
74   bool SetValue(Record *TheRec, SMLoc Loc, const std::string &ValName, 
75                 const std::vector<unsigned> &BitList, Init *V);
76   bool AddSubClass(Record *Rec, SubClassReference &SubClass);
77   bool AddSubMultiClass(MultiClass *CurMC,
78                         SubMultiClassReference &SubMultiClass);
79
80 private:  // Parser methods.
81   bool ParseObjectList(MultiClass *MC = 0);
82   bool ParseObject(MultiClass *MC);
83   bool ParseClass();
84   bool ParseMultiClass();
85   bool ParseDefm(MultiClass *CurMultiClass);
86   bool ParseDef(MultiClass *CurMultiClass);
87   bool ParseTopLevelLet(MultiClass *CurMultiClass);
88   std::vector<LetRecord> ParseLetList();
89
90   bool ParseObjectBody(Record *CurRec);
91   bool ParseBody(Record *CurRec);
92   bool ParseBodyItem(Record *CurRec);
93
94   bool ParseTemplateArgList(Record *CurRec);
95   std::string ParseDeclaration(Record *CurRec, bool ParsingTemplateArgs);
96
97   SubClassReference ParseSubClassReference(Record *CurRec, bool isDefm);
98   SubMultiClassReference ParseSubMultiClassReference(MultiClass *CurMC);
99
100   Init *ParseIDValue(Record *CurRec);
101   Init *ParseIDValue(Record *CurRec, const std::string &Name, SMLoc NameLoc);
102   Init *ParseSimpleValue(Record *CurRec, RecTy *ItemType = 0);
103   Init *ParseValue(Record *CurRec, RecTy *ItemType = 0);
104   std::vector<Init*> ParseValueList(Record *CurRec, Record *ArgsRec = 0, RecTy *EltTy = 0);
105   std::vector<std::pair<llvm::Init*, std::string> > ParseDagArgList(Record *);
106   bool ParseOptionalRangeList(std::vector<unsigned> &Ranges);
107   bool ParseOptionalBitList(std::vector<unsigned> &Ranges);
108   std::vector<unsigned> ParseRangeList();
109   bool ParseRangePiece(std::vector<unsigned> &Ranges);
110   RecTy *ParseType();
111   Init *ParseOperation(Record *CurRec);
112   RecTy *ParseOperatorType();
113   std::string ParseObjectName();
114   Record *ParseClassID();
115   MultiClass *ParseMultiClassID();
116   Record *ParseDefmID();
117 };
118   
119 } // end namespace llvm
120
121 #endif