LLVM 17.0.0git
TGParser.h
Go to the documentation of this file.
1//===- TGParser.h - Parser for TableGen Files -------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This class represents the Parser for tablegen files.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_LIB_TABLEGEN_TGPARSER_H
14#define LLVM_LIB_TABLEGEN_TGPARSER_H
15
16#include "TGLexer.h"
17#include "llvm/TableGen/Error.h"
19#include <map>
20
21namespace llvm {
22 class SourceMgr;
23 class Twine;
24 struct ForeachLoop;
25 struct MultiClass;
26 struct SubClassReference;
27 struct SubMultiClassReference;
28
29 struct LetRecord {
31 std::vector<unsigned> Bits;
35 : Name(N), Bits(B), Value(V), Loc(L) {
36 }
37 };
38
39 /// RecordsEntry - Holds exactly one of a Record, ForeachLoop, or
40 /// AssertionInfo.
41 struct RecordsEntry {
42 std::unique_ptr<Record> Rec;
43 std::unique_ptr<ForeachLoop> Loop;
44 std::unique_ptr<Record::AssertionInfo> Assertion;
45
46 void dump() const;
47
48 RecordsEntry() = default;
49 RecordsEntry(std::unique_ptr<Record> Rec) : Rec(std::move(Rec)) {}
50 RecordsEntry(std::unique_ptr<ForeachLoop> Loop)
51 : Loop(std::move(Loop)) {}
52 RecordsEntry(std::unique_ptr<Record::AssertionInfo> Assertion)
54 };
55
56 /// ForeachLoop - Record the iteration state associated with a for loop.
57 /// This is used to instantiate items in the loop body.
58 ///
59 /// IterVar is allowed to be null, in which case no iteration variable is
60 /// defined in the loop at all. (This happens when a ForeachLoop is
61 /// constructed by desugaring an if statement.)
62 struct ForeachLoop {
66 std::vector<RecordsEntry> Entries;
67
68 void dump() const;
69
71 : Loc(Loc), IterVar(IVar), ListValue(LValue) {}
72 };
73
74 struct DefsetRecord {
76 RecTy *EltTy = nullptr;
78 };
79
81 // A scope to hold local variable definitions from defvar.
82 std::map<std::string, Init *, std::less<>> vars;
83 std::unique_ptr<TGLocalVarScope> parent;
84
85public:
86 TGLocalVarScope() = default;
87 TGLocalVarScope(std::unique_ptr<TGLocalVarScope> parent)
88 : parent(std::move(parent)) {}
89
90 std::unique_ptr<TGLocalVarScope> extractParent() {
91 // This is expected to be called just before we are destructed, so
92 // it doesn't much matter what state we leave 'parent' in.
93 return std::move(parent);
94 }
95
97 auto It = vars.find(Name);
98 if (It != vars.end())
99 return It->second;
100 if (parent)
101 return parent->getVar(Name);
102 return nullptr;
103 }
104
106 // When we check whether a variable is already defined, for the purpose of
107 // reporting an error on redefinition, we don't look up to the parent
108 // scope, because it's all right to shadow an outer definition with an
109 // inner one.
110 return vars.find(Name) != vars.end();
111 }
112
114 bool Ins = vars.insert(std::make_pair(std::string(Name), I)).second;
115 (void)Ins;
116 assert(Ins && "Local variable already exists");
117 }
118};
119
121 Record Rec; // Placeholder for template args and Name.
122 std::vector<RecordsEntry> Entries;
123
124 void dump() const;
125
127 Rec(Name, Loc, Records) {}
128};
129
130class TGParser {
131 TGLexer Lex;
132 std::vector<SmallVector<LetRecord, 4>> LetStack;
133 std::map<std::string, std::unique_ptr<MultiClass>> MultiClasses;
134
135 /// Loops - Keep track of any foreach loops we are within.
136 ///
137 std::vector<std::unique_ptr<ForeachLoop>> Loops;
138
140
141 /// CurMultiClass - If we are parsing a 'multiclass' definition, this is the
142 /// current value.
143 MultiClass *CurMultiClass;
144
145 /// CurLocalScope - Innermost of the current nested scopes for 'defvar' local
146 /// variables.
147 std::unique_ptr<TGLocalVarScope> CurLocalScope;
148
149 // Record tracker
150 RecordKeeper &Records;
151
152 // A "named boolean" indicating how to parse identifiers. Usually
153 // identifiers map to some existing object but in special cases
154 // (e.g. parsing def names) no such object exists yet because we are
155 // in the middle of creating in. For those situations, allow the
156 // parser to ignore missing object errors.
157 enum IDParseMode {
158 ParseValueMode, // We are parsing a value we expect to look up.
159 ParseNameMode, // We are parsing a name of an object that does not yet
160 // exist.
161 };
162
163 bool NoWarnOnUnusedTemplateArgs = false;
164 bool TrackReferenceLocs = false;
165
166public:
168 const bool NoWarnOnUnusedTemplateArgs = false,
169 const bool TrackReferenceLocs = false)
170 : Lex(SM, Macros), CurMultiClass(nullptr), Records(records),
171 NoWarnOnUnusedTemplateArgs(NoWarnOnUnusedTemplateArgs),
172 TrackReferenceLocs(TrackReferenceLocs) {}
173
174 /// ParseFile - Main entrypoint for parsing a tblgen file. These parser
175 /// routines return true on error, or false on success.
176 bool ParseFile();
177
178 bool Error(SMLoc L, const Twine &Msg) const {
179 PrintError(L, Msg);
180 return true;
181 }
182 bool TokError(const Twine &Msg) const {
183 return Error(Lex.getLoc(), Msg);
184 }
186 return Lex.getDependencies();
187 }
188
190 CurLocalScope = std::make_unique<TGLocalVarScope>(std::move(CurLocalScope));
191 // Returns a pointer to the new scope, so that the caller can pass it back
192 // to PopLocalScope which will check by assertion that the pushes and pops
193 // match up properly.
194 return CurLocalScope.get();
195 }
196 void PopLocalScope(TGLocalVarScope *ExpectedStackTop) {
197 assert(ExpectedStackTop == CurLocalScope.get() &&
198 "Mismatched pushes and pops of local variable scopes");
199 CurLocalScope = CurLocalScope->extractParent();
200 }
201
202private: // Semantic analysis methods.
203 bool AddValue(Record *TheRec, SMLoc Loc, const RecordVal &RV);
204 /// Set the value of a RecordVal within the given record. If `OverrideDefLoc`
205 /// is set, the provided location overrides any existing location of the
206 /// RecordVal.
207 bool SetValue(Record *TheRec, SMLoc Loc, Init *ValName,
208 ArrayRef<unsigned> BitList, Init *V,
209 bool AllowSelfAssignment = false, bool OverrideDefLoc = true);
210 bool AddSubClass(Record *Rec, SubClassReference &SubClass);
211 bool AddSubClass(RecordsEntry &Entry, SubClassReference &SubClass);
212 bool AddSubMultiClass(MultiClass *CurMC,
213 SubMultiClassReference &SubMultiClass);
214
215 using SubstStack = SmallVector<std::pair<Init *, Init *>, 8>;
216
217 bool addEntry(RecordsEntry E);
218 bool resolve(const ForeachLoop &Loop, SubstStack &Stack, bool Final,
219 std::vector<RecordsEntry> *Dest, SMLoc *Loc = nullptr);
220 bool resolve(const std::vector<RecordsEntry> &Source, SubstStack &Substs,
221 bool Final, std::vector<RecordsEntry> *Dest,
222 SMLoc *Loc = nullptr);
223 bool addDefOne(std::unique_ptr<Record> Rec);
224
225private: // Parser methods.
226 bool consume(tgtok::TokKind K);
227 bool ParseObjectList(MultiClass *MC = nullptr);
228 bool ParseObject(MultiClass *MC);
229 bool ParseClass();
230 bool ParseMultiClass();
231 bool ParseDefm(MultiClass *CurMultiClass);
232 bool ParseDef(MultiClass *CurMultiClass);
233 bool ParseDefset();
234 bool ParseDefvar();
235 bool ParseForeach(MultiClass *CurMultiClass);
236 bool ParseIf(MultiClass *CurMultiClass);
237 bool ParseIfBody(MultiClass *CurMultiClass, StringRef Kind);
238 bool ParseAssert(MultiClass *CurMultiClass, Record *CurRec = nullptr);
239 bool ParseTopLevelLet(MultiClass *CurMultiClass);
240 void ParseLetList(SmallVectorImpl<LetRecord> &Result);
241
242 bool ParseObjectBody(Record *CurRec);
243 bool ParseBody(Record *CurRec);
244 bool ParseBodyItem(Record *CurRec);
245
246 bool ParseTemplateArgList(Record *CurRec);
247 Init *ParseDeclaration(Record *CurRec, bool ParsingTemplateArgs);
248 VarInit *ParseForeachDeclaration(Init *&ForeachListValue);
249
250 SubClassReference ParseSubClassReference(Record *CurRec, bool isDefm);
251 SubMultiClassReference ParseSubMultiClassReference(MultiClass *CurMC);
252
253 Init *ParseIDValue(Record *CurRec, StringInit *Name, SMRange NameLoc,
254 IDParseMode Mode = ParseValueMode);
255 Init *ParseSimpleValue(Record *CurRec, RecTy *ItemType = nullptr,
256 IDParseMode Mode = ParseValueMode);
257 Init *ParseValue(Record *CurRec, RecTy *ItemType = nullptr,
258 IDParseMode Mode = ParseValueMode);
259 void ParseValueList(SmallVectorImpl<llvm::Init*> &Result,
260 Record *CurRec, RecTy *ItemType = nullptr);
261 bool ParseTemplateArgValueList(SmallVectorImpl<llvm::Init *> &Result,
262 Record *CurRec, Record *ArgsRec);
263 void ParseDagArgList(
264 SmallVectorImpl<std::pair<llvm::Init*, StringInit*>> &Result,
265 Record *CurRec);
266 bool ParseOptionalRangeList(SmallVectorImpl<unsigned> &Ranges);
267 bool ParseOptionalBitList(SmallVectorImpl<unsigned> &Ranges);
268 void ParseRangeList(SmallVectorImpl<unsigned> &Result);
269 bool ParseRangePiece(SmallVectorImpl<unsigned> &Ranges,
270 TypedInit *FirstItem = nullptr);
271 RecTy *ParseType();
272 Init *ParseOperation(Record *CurRec, RecTy *ItemType);
273 Init *ParseOperationSubstr(Record *CurRec, RecTy *ItemType);
274 Init *ParseOperationFind(Record *CurRec, RecTy *ItemType);
275 Init *ParseOperationForEachFilter(Record *CurRec, RecTy *ItemType);
276 Init *ParseOperationCond(Record *CurRec, RecTy *ItemType);
277 RecTy *ParseOperatorType();
278 Init *ParseObjectName(MultiClass *CurMultiClass);
279 Record *ParseClassID();
280 MultiClass *ParseMultiClassID();
281 bool ApplyLetStack(Record *CurRec);
282 bool ApplyLetStack(RecordsEntry &Entry);
283 bool CheckTemplateArgValues(SmallVectorImpl<llvm::Init *> &Values,
284 SMLoc Loc, Record *ArgsRec);
285};
286
287} // end namespace llvm
288
289#endif
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
std::string Name
#define I(x, y, z)
Definition: MD5.cpp:58
static cl::opt< RegAllocEvictionAdvisorAnalysis::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Development, "development", "for training")))
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
Lightweight error class with error context and mandatory checking.
Definition: Error.h:156
Represents a single loop in the control flow graph.
Definition: LoopInfo.h:547
This class represents a field in a record, including its name, type, value, and source location.
Definition: Record.h:1500
Represents a location in source code.
Definition: SMLoc.h:23
Represents a range in source code.
Definition: SMLoc.h:48
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: SmallVector.h:577
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1200
This owns the files read by a parser, handles include stacks, and handles diagnostic wrangling.
Definition: SourceMgr.h:31
"foo" - Represent an initialization by a string value.
Definition: Record.h:639
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
TGLexer - TableGen Lexer class.
Definition: TGLexer.h:81
SMLoc getLoc() const
Definition: TGLexer.cpp:62
std::set< std::string > DependenciesSetTy
Definition: TGLexer.h:98
const DependenciesSetTy & getDependencies() const
Definition: TGLexer.h:111
Init * getVar(StringRef Name) const
Definition: TGParser.h:96
std::unique_ptr< TGLocalVarScope > extractParent()
Definition: TGParser.h:90
TGLocalVarScope(std::unique_ptr< TGLocalVarScope > parent)
Definition: TGParser.h:87
bool varAlreadyDefined(StringRef Name) const
Definition: TGParser.h:105
void addVar(StringRef Name, Init *I)
Definition: TGParser.h:113
const TGLexer::DependenciesSetTy & getDependencies() const
Definition: TGParser.h:185
bool Error(SMLoc L, const Twine &Msg) const
Definition: TGParser.h:178
bool TokError(const Twine &Msg) const
Definition: TGParser.h:182
TGLocalVarScope * PushLocalScope()
Definition: TGParser.h:189
TGParser(SourceMgr &SM, ArrayRef< std::string > Macros, RecordKeeper &records, const bool NoWarnOnUnusedTemplateArgs=false, const bool TrackReferenceLocs=false)
Definition: TGParser.h:167
bool ParseFile()
ParseFile - Main entrypoint for parsing a tblgen file.
Definition: TGParser.cpp:3898
void PopLocalScope(TGLocalVarScope *ExpectedStackTop)
Definition: TGParser.h:196
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition: Twine.h:81
This is the common superclass of types that have a specific, explicit type, stored in ValueTy.
Definition: Record.h:422
LLVM Value Representation.
Definition: Value.h:74
'Opcode' - Represent a reference to an entire variable object.
Definition: Record.h:1170
@ MultiClass
Definition: TGLexer.h:51
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
void PrintError(const Twine &Msg)
Definition: Error.cpp:101
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1946
Definition: BitVector.h:858
#define N
SmallVector< Init *, 16 > Elements
Definition: TGParser.h:77
ForeachLoop - Record the iteration state associated with a for loop.
Definition: TGParser.h:62
std::vector< RecordsEntry > Entries
Definition: TGParser.h:66
VarInit * IterVar
Definition: TGParser.h:64
ForeachLoop(SMLoc Loc, VarInit *IVar, Init *LValue)
Definition: TGParser.h:70
void dump() const
Definition: TGParser.cpp:3952
Init * ListValue
Definition: TGParser.h:65
StringInit * Name
Definition: TGParser.h:30
std::vector< unsigned > Bits
Definition: TGParser.h:31
LetRecord(StringInit *N, ArrayRef< unsigned > B, Init *V, SMLoc L)
Definition: TGParser.h:34
Init * Value
Definition: TGParser.h:32
std::vector< RecordsEntry > Entries
Definition: TGParser.h:122
void dump() const
Definition: TGParser.cpp:3962
MultiClass(StringRef Name, SMLoc Loc, RecordKeeper &Records)
Definition: TGParser.h:126
RecordsEntry - Holds exactly one of a Record, ForeachLoop, or AssertionInfo.
Definition: TGParser.h:41
RecordsEntry()=default
RecordsEntry(std::unique_ptr< ForeachLoop > Loop)
Definition: TGParser.h:50
std::unique_ptr< ForeachLoop > Loop
Definition: TGParser.h:43
std::unique_ptr< Record::AssertionInfo > Assertion
Definition: TGParser.h:44
void dump() const
Definition: TGParser.cpp:3945
RecordsEntry(std::unique_ptr< Record > Rec)
Definition: TGParser.h:49
std::unique_ptr< Record > Rec
Definition: TGParser.h:42
RecordsEntry(std::unique_ptr< Record::AssertionInfo > Assertion)
Definition: TGParser.h:52