1 //===- TGParser.cpp - Parser for TableGen Files ---------------------------===//
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
7 //===----------------------------------------------------------------------===//
9 // Implement the Parser for TableGen.
11 //===----------------------------------------------------------------------===//
14 #include "llvm/ADT/None.h"
15 #include "llvm/ADT/STLExtras.h"
16 #include "llvm/ADT/SmallVector.h"
17 #include "llvm/ADT/StringExtras.h"
18 #include "llvm/Config/llvm-config.h"
19 #include "llvm/Support/Casting.h"
20 #include "llvm/Support/Compiler.h"
21 #include "llvm/Support/ErrorHandling.h"
22 #include "llvm/Support/raw_ostream.h"
23 #include "llvm/TableGen/Record.h"
30 //===----------------------------------------------------------------------===//
31 // Support Code for the Semantic Actions.
32 //===----------------------------------------------------------------------===//
36 struct SubClassReference
{
39 SmallVector
<Init
*, 4> TemplateArgs
;
41 SubClassReference() : Rec(nullptr) {}
43 bool isInvalid() const { return Rec
== nullptr; }
46 struct SubMultiClassReference
{
49 SmallVector
<Init
*, 4> TemplateArgs
;
51 SubMultiClassReference() : MC(nullptr) {}
53 bool isInvalid() const { return MC
== nullptr; }
57 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
58 LLVM_DUMP_METHOD
void SubMultiClassReference::dump() const {
59 errs() << "Multiclass:\n";
63 errs() << "Template args:\n";
64 for (Init
*TA
: TemplateArgs
)
69 } // end namespace llvm
71 static bool checkBitsConcrete(Record
&R
, const RecordVal
&RV
) {
72 BitsInit
*BV
= cast
<BitsInit
>(RV
.getValue());
73 for (unsigned i
= 0, e
= BV
->getNumBits(); i
!= e
; ++i
) {
74 Init
*Bit
= BV
->getBit(i
);
75 bool IsReference
= false;
76 if (auto VBI
= dyn_cast
<VarBitInit
>(Bit
)) {
77 if (auto VI
= dyn_cast
<VarInit
>(VBI
->getBitVar())) {
78 if (R
.getValue(VI
->getName()))
81 } else if (isa
<VarInit
>(Bit
)) {
84 if (!(IsReference
|| Bit
->isConcrete()))
90 static void checkConcrete(Record
&R
) {
91 for (const RecordVal
&RV
: R
.getValues()) {
92 // HACK: Disable this check for variables declared with 'field'. This is
93 // done merely because existing targets have legitimate cases of
94 // non-concrete variables in helper defs. Ideally, we'd introduce a
95 // 'maybe' or 'optional' modifier instead of this.
99 if (Init
*V
= RV
.getValue()) {
100 bool Ok
= isa
<BitsInit
>(V
) ? checkBitsConcrete(R
, RV
) : V
->isConcrete();
102 PrintError(R
.getLoc(),
103 Twine("Initializer of '") + RV
.getNameInitAsString() +
104 "' in '" + R
.getNameInitAsString() +
105 "' could not be fully resolved: " +
106 RV
.getValue()->getAsString());
112 /// Return an Init with a qualifier prefix referring
113 /// to CurRec's name.
114 static Init
*QualifyName(Record
&CurRec
, MultiClass
*CurMultiClass
,
115 Init
*Name
, StringRef Scoper
) {
117 BinOpInit::getStrConcat(CurRec
.getNameInit(), StringInit::get(Scoper
));
118 NewName
= BinOpInit::getStrConcat(NewName
, Name
);
119 if (CurMultiClass
&& Scoper
!= "::") {
120 Init
*Prefix
= BinOpInit::getStrConcat(CurMultiClass
->Rec
.getNameInit(),
121 StringInit::get("::"));
122 NewName
= BinOpInit::getStrConcat(Prefix
, NewName
);
125 if (BinOpInit
*BinOp
= dyn_cast
<BinOpInit
>(NewName
))
126 NewName
= BinOp
->Fold(&CurRec
);
130 /// Return the qualified version of the implicit 'NAME' template argument.
131 static Init
*QualifiedNameOfImplicitName(Record
&Rec
,
132 MultiClass
*MC
= nullptr) {
133 return QualifyName(Rec
, MC
, StringInit::get("NAME"), MC
? "::" : ":");
136 static Init
*QualifiedNameOfImplicitName(MultiClass
*MC
) {
137 return QualifiedNameOfImplicitName(MC
->Rec
, MC
);
140 bool TGParser::AddValue(Record
*CurRec
, SMLoc Loc
, const RecordVal
&RV
) {
142 CurRec
= &CurMultiClass
->Rec
;
144 if (RecordVal
*ERV
= CurRec
->getValue(RV
.getNameInit())) {
145 // The value already exists in the class, treat this as a set.
146 if (ERV
->setValue(RV
.getValue()))
147 return Error(Loc
, "New definition of '" + RV
.getName() + "' of type '" +
148 RV
.getType()->getAsString() + "' is incompatible with " +
149 "previous definition of type '" +
150 ERV
->getType()->getAsString() + "'");
152 CurRec
->addValue(RV
);
158 /// Return true on error, false on success.
159 bool TGParser::SetValue(Record
*CurRec
, SMLoc Loc
, Init
*ValName
,
160 ArrayRef
<unsigned> BitList
, Init
*V
,
161 bool AllowSelfAssignment
) {
162 if (!V
) return false;
164 if (!CurRec
) CurRec
= &CurMultiClass
->Rec
;
166 RecordVal
*RV
= CurRec
->getValue(ValName
);
168 return Error(Loc
, "Value '" + ValName
->getAsUnquotedString() +
171 // Do not allow assignments like 'X = X'. This will just cause infinite loops
172 // in the resolution machinery.
174 if (VarInit
*VI
= dyn_cast
<VarInit
>(V
))
175 if (VI
->getNameInit() == ValName
&& !AllowSelfAssignment
)
176 return Error(Loc
, "Recursion / self-assignment forbidden");
178 // If we are assigning to a subset of the bits in the value... then we must be
179 // assigning to a field of BitsRecTy, which must have a BitsInit
182 if (!BitList
.empty()) {
183 BitsInit
*CurVal
= dyn_cast
<BitsInit
>(RV
->getValue());
185 return Error(Loc
, "Value '" + ValName
->getAsUnquotedString() +
186 "' is not a bits type");
188 // Convert the incoming value to a bits type of the appropriate size...
189 Init
*BI
= V
->getCastTo(BitsRecTy::get(BitList
.size()));
191 return Error(Loc
, "Initializer is not compatible with bit range");
193 SmallVector
<Init
*, 16> NewBits(CurVal
->getNumBits());
195 // Loop over bits, assigning values as appropriate.
196 for (unsigned i
= 0, e
= BitList
.size(); i
!= e
; ++i
) {
197 unsigned Bit
= BitList
[i
];
199 return Error(Loc
, "Cannot set bit #" + Twine(Bit
) + " of value '" +
200 ValName
->getAsUnquotedString() + "' more than once");
201 NewBits
[Bit
] = BI
->getBit(i
);
204 for (unsigned i
= 0, e
= CurVal
->getNumBits(); i
!= e
; ++i
)
206 NewBits
[i
] = CurVal
->getBit(i
);
208 V
= BitsInit::get(NewBits
);
211 if (RV
->setValue(V
)) {
212 std::string InitType
;
213 if (BitsInit
*BI
= dyn_cast
<BitsInit
>(V
))
214 InitType
= (Twine("' of type bit initializer with length ") +
215 Twine(BI
->getNumBits())).str();
216 else if (TypedInit
*TI
= dyn_cast
<TypedInit
>(V
))
217 InitType
= (Twine("' of type '") + TI
->getType()->getAsString()).str();
218 return Error(Loc
, "Value '" + ValName
->getAsUnquotedString() +
219 "' of type '" + RV
->getType()->getAsString() +
220 "' is incompatible with initializer '" +
221 V
->getAsString() + InitType
+ "'");
226 /// AddSubClass - Add SubClass as a subclass to CurRec, resolving its template
227 /// args as SubClass's template arguments.
228 bool TGParser::AddSubClass(Record
*CurRec
, SubClassReference
&SubClass
) {
229 Record
*SC
= SubClass
.Rec
;
230 // Add all of the values in the subclass into the current class.
231 for (const RecordVal
&Val
: SC
->getValues())
232 if (AddValue(CurRec
, SubClass
.RefRange
.Start
, Val
))
235 ArrayRef
<Init
*> TArgs
= SC
->getTemplateArgs();
237 // Ensure that an appropriate number of template arguments are specified.
238 if (TArgs
.size() < SubClass
.TemplateArgs
.size())
239 return Error(SubClass
.RefRange
.Start
,
240 "More template args specified than expected");
242 // Loop over all of the template arguments, setting them to the specified
243 // value or leaving them as the default if necessary.
244 MapResolver
R(CurRec
);
246 for (unsigned i
= 0, e
= TArgs
.size(); i
!= e
; ++i
) {
247 if (i
< SubClass
.TemplateArgs
.size()) {
248 // If a value is specified for this template arg, set it now.
249 if (SetValue(CurRec
, SubClass
.RefRange
.Start
, TArgs
[i
],
250 None
, SubClass
.TemplateArgs
[i
]))
252 } else if (!CurRec
->getValue(TArgs
[i
])->getValue()->isComplete()) {
253 return Error(SubClass
.RefRange
.Start
,
254 "Value not specified for template argument #" +
255 Twine(i
) + " (" + TArgs
[i
]->getAsUnquotedString() +
256 ") of subclass '" + SC
->getNameInitAsString() + "'!");
259 R
.set(TArgs
[i
], CurRec
->getValue(TArgs
[i
])->getValue());
261 CurRec
->removeValue(TArgs
[i
]);
265 if (CurRec
->isClass())
267 VarInit::get(QualifiedNameOfImplicitName(*CurRec
), StringRecTy::get());
269 Name
= CurRec
->getNameInit();
270 R
.set(QualifiedNameOfImplicitName(*SC
), Name
);
272 CurRec
->resolveReferences(R
);
274 // Since everything went well, we can now set the "superclass" list for the
276 ArrayRef
<std::pair
<Record
*, SMRange
>> SCs
= SC
->getSuperClasses();
277 for (const auto &SCPair
: SCs
) {
278 if (CurRec
->isSubClassOf(SCPair
.first
))
279 return Error(SubClass
.RefRange
.Start
,
280 "Already subclass of '" + SCPair
.first
->getName() + "'!\n");
281 CurRec
->addSuperClass(SCPair
.first
, SCPair
.second
);
284 if (CurRec
->isSubClassOf(SC
))
285 return Error(SubClass
.RefRange
.Start
,
286 "Already subclass of '" + SC
->getName() + "'!\n");
287 CurRec
->addSuperClass(SC
, SubClass
.RefRange
);
291 bool TGParser::AddSubClass(RecordsEntry
&Entry
, SubClassReference
&SubClass
) {
293 return AddSubClass(Entry
.Rec
.get(), SubClass
);
295 for (auto &E
: Entry
.Loop
->Entries
) {
296 if (AddSubClass(E
, SubClass
))
303 /// AddSubMultiClass - Add SubMultiClass as a subclass to
304 /// CurMC, resolving its template args as SubMultiClass's
305 /// template arguments.
306 bool TGParser::AddSubMultiClass(MultiClass
*CurMC
,
307 SubMultiClassReference
&SubMultiClass
) {
308 MultiClass
*SMC
= SubMultiClass
.MC
;
310 ArrayRef
<Init
*> SMCTArgs
= SMC
->Rec
.getTemplateArgs();
311 if (SMCTArgs
.size() < SubMultiClass
.TemplateArgs
.size())
312 return Error(SubMultiClass
.RefRange
.Start
,
313 "More template args specified than expected");
315 // Prepare the mapping of template argument name to value, filling in default
316 // values if necessary.
317 SubstStack TemplateArgs
;
318 for (unsigned i
= 0, e
= SMCTArgs
.size(); i
!= e
; ++i
) {
319 if (i
< SubMultiClass
.TemplateArgs
.size()) {
320 TemplateArgs
.emplace_back(SMCTArgs
[i
], SubMultiClass
.TemplateArgs
[i
]);
322 Init
*Default
= SMC
->Rec
.getValue(SMCTArgs
[i
])->getValue();
323 if (!Default
->isComplete()) {
324 return Error(SubMultiClass
.RefRange
.Start
,
325 "value not specified for template argument #" + Twine(i
) +
326 " (" + SMCTArgs
[i
]->getAsUnquotedString() +
327 ") of multiclass '" + SMC
->Rec
.getNameInitAsString() +
330 TemplateArgs
.emplace_back(SMCTArgs
[i
], Default
);
334 TemplateArgs
.emplace_back(
335 QualifiedNameOfImplicitName(SMC
),
336 VarInit::get(QualifiedNameOfImplicitName(CurMC
), StringRecTy::get()));
338 // Add all of the defs in the subclass into the current multiclass.
339 return resolve(SMC
->Entries
, TemplateArgs
, false, &CurMC
->Entries
);
342 /// Add a record or foreach loop to the current context (global record keeper,
343 /// current inner-most foreach loop, or multiclass).
344 bool TGParser::addEntry(RecordsEntry E
) {
345 assert(!E
.Rec
|| !E
.Loop
);
347 if (!Loops
.empty()) {
348 Loops
.back()->Entries
.push_back(std::move(E
));
354 return resolve(*E
.Loop
, Stack
, CurMultiClass
== nullptr,
355 CurMultiClass
? &CurMultiClass
->Entries
: nullptr);
359 CurMultiClass
->Entries
.push_back(std::move(E
));
363 return addDefOne(std::move(E
.Rec
));
366 /// Resolve the entries in \p Loop, going over inner loops recursively
367 /// and making the given subsitutions of (name, value) pairs.
369 /// The resulting records are stored in \p Dest if non-null. Otherwise, they
370 /// are added to the global record keeper.
371 bool TGParser::resolve(const ForeachLoop
&Loop
, SubstStack
&Substs
,
372 bool Final
, std::vector
<RecordsEntry
> *Dest
,
375 for (const auto &S
: Substs
)
376 R
.set(S
.first
, S
.second
);
377 Init
*List
= Loop
.ListValue
->resolveReferences(R
);
378 auto LI
= dyn_cast
<ListInit
>(List
);
381 Dest
->emplace_back(make_unique
<ForeachLoop
>(Loop
.Loc
, Loop
.IterVar
,
383 return resolve(Loop
.Entries
, Substs
, Final
, &Dest
->back().Loop
->Entries
,
387 PrintError(Loop
.Loc
, Twine("attempting to loop over '") +
388 List
->getAsString() + "', expected a list");
393 for (auto Elt
: *LI
) {
394 Substs
.emplace_back(Loop
.IterVar
->getNameInit(), Elt
);
395 Error
= resolve(Loop
.Entries
, Substs
, Final
, Dest
);
403 /// Resolve the entries in \p Source, going over loops recursively and
404 /// making the given substitutions of (name, value) pairs.
406 /// The resulting records are stored in \p Dest if non-null. Otherwise, they
407 /// are added to the global record keeper.
408 bool TGParser::resolve(const std::vector
<RecordsEntry
> &Source
,
409 SubstStack
&Substs
, bool Final
,
410 std::vector
<RecordsEntry
> *Dest
, SMLoc
*Loc
) {
412 for (auto &E
: Source
) {
414 Error
= resolve(*E
.Loop
, Substs
, Final
, Dest
);
416 auto Rec
= make_unique
<Record
>(*E
.Rec
);
418 Rec
->appendLoc(*Loc
);
420 MapResolver
R(Rec
.get());
421 for (const auto &S
: Substs
)
422 R
.set(S
.first
, S
.second
);
423 Rec
->resolveReferences(R
);
426 Dest
->push_back(std::move(Rec
));
428 Error
= addDefOne(std::move(Rec
));
436 /// Resolve the record fully and add it to the record keeper.
437 bool TGParser::addDefOne(std::unique_ptr
<Record
> Rec
) {
438 if (Record
*Prev
= Records
.getDef(Rec
->getNameInitAsString())) {
439 if (!Rec
->isAnonymous()) {
440 PrintError(Rec
->getLoc(),
441 "def already exists: " + Rec
->getNameInitAsString());
442 PrintNote(Prev
->getLoc(), "location of previous definition");
445 Rec
->setName(Records
.getNewAnonymousName());
448 Rec
->resolveReferences();
451 if (!isa
<StringInit
>(Rec
->getNameInit())) {
452 PrintError(Rec
->getLoc(), Twine("record name '") +
453 Rec
->getNameInit()->getAsString() +
454 "' could not be fully resolved");
458 // If ObjectBody has template arguments, it's an error.
459 assert(Rec
->getTemplateArgs().empty() && "How'd this get template args?");
461 for (DefsetRecord
*Defset
: Defsets
) {
462 DefInit
*I
= Rec
->getDefInit();
463 if (!I
->getType()->typeIsA(Defset
->EltTy
)) {
464 PrintError(Rec
->getLoc(), Twine("adding record of incompatible type '") +
465 I
->getType()->getAsString() +
467 PrintNote(Defset
->Loc
, "location of defset declaration");
470 Defset
->Elements
.push_back(I
);
473 Records
.addDef(std::move(Rec
));
477 //===----------------------------------------------------------------------===//
479 //===----------------------------------------------------------------------===//
481 /// isObjectStart - Return true if this is a valid first token for an Object.
482 static bool isObjectStart(tgtok::TokKind K
) {
483 return K
== tgtok::Class
|| K
== tgtok::Def
|| K
== tgtok::Defm
||
484 K
== tgtok::Let
|| K
== tgtok::MultiClass
|| K
== tgtok::Foreach
||
488 /// ParseObjectName - If a valid object name is specified, return it. If no
489 /// name is specified, return the unset initializer. Return nullptr on parse
491 /// ObjectName ::= Value [ '#' Value ]*
492 /// ObjectName ::= /*empty*/
494 Init
*TGParser::ParseObjectName(MultiClass
*CurMultiClass
) {
495 switch (Lex
.getCode()) {
499 // These are all of the tokens that can begin an object body.
500 // Some of these can also begin values but we disallow those cases
501 // because they are unlikely to be useful.
502 return UnsetInit::get();
507 Record
*CurRec
= nullptr;
509 CurRec
= &CurMultiClass
->Rec
;
511 Init
*Name
= ParseValue(CurRec
, StringRecTy::get(), ParseNameMode
);
516 Init
*NameStr
= QualifiedNameOfImplicitName(CurMultiClass
);
517 HasReferenceResolver
R(NameStr
);
518 Name
->resolveReferences(R
);
520 Name
= BinOpInit::getStrConcat(VarInit::get(NameStr
, StringRecTy::get()),
527 /// ParseClassID - Parse and resolve a reference to a class name. This returns
532 Record
*TGParser::ParseClassID() {
533 if (Lex
.getCode() != tgtok::Id
) {
534 TokError("expected name for ClassID");
538 Record
*Result
= Records
.getClass(Lex
.getCurStrVal());
540 std::string
Msg("Couldn't find class '" + Lex
.getCurStrVal() + "'");
541 if (MultiClasses
[Lex
.getCurStrVal()].get())
542 TokError(Msg
+ ". Use 'defm' if you meant to use multiclass '" +
543 Lex
.getCurStrVal() + "'");
552 /// ParseMultiClassID - Parse and resolve a reference to a multiclass name.
553 /// This returns null on error.
555 /// MultiClassID ::= ID
557 MultiClass
*TGParser::ParseMultiClassID() {
558 if (Lex
.getCode() != tgtok::Id
) {
559 TokError("expected name for MultiClassID");
563 MultiClass
*Result
= MultiClasses
[Lex
.getCurStrVal()].get();
565 TokError("Couldn't find multiclass '" + Lex
.getCurStrVal() + "'");
571 /// ParseSubClassReference - Parse a reference to a subclass or to a templated
572 /// subclass. This returns a SubClassRefTy with a null Record* on error.
574 /// SubClassRef ::= ClassID
575 /// SubClassRef ::= ClassID '<' ValueList '>'
577 SubClassReference
TGParser::
578 ParseSubClassReference(Record
*CurRec
, bool isDefm
) {
579 SubClassReference Result
;
580 Result
.RefRange
.Start
= Lex
.getLoc();
583 if (MultiClass
*MC
= ParseMultiClassID())
584 Result
.Rec
= &MC
->Rec
;
586 Result
.Rec
= ParseClassID();
588 if (!Result
.Rec
) return Result
;
590 // If there is no template arg list, we're done.
591 if (Lex
.getCode() != tgtok::less
) {
592 Result
.RefRange
.End
= Lex
.getLoc();
595 Lex
.Lex(); // Eat the '<'
597 if (Lex
.getCode() == tgtok::greater
) {
598 TokError("subclass reference requires a non-empty list of template values");
599 Result
.Rec
= nullptr;
603 ParseValueList(Result
.TemplateArgs
, CurRec
, Result
.Rec
);
604 if (Result
.TemplateArgs
.empty()) {
605 Result
.Rec
= nullptr; // Error parsing value list.
609 if (Lex
.getCode() != tgtok::greater
) {
610 TokError("expected '>' in template value list");
611 Result
.Rec
= nullptr;
615 Result
.RefRange
.End
= Lex
.getLoc();
620 /// ParseSubMultiClassReference - Parse a reference to a subclass or to a
621 /// templated submulticlass. This returns a SubMultiClassRefTy with a null
622 /// Record* on error.
624 /// SubMultiClassRef ::= MultiClassID
625 /// SubMultiClassRef ::= MultiClassID '<' ValueList '>'
627 SubMultiClassReference
TGParser::
628 ParseSubMultiClassReference(MultiClass
*CurMC
) {
629 SubMultiClassReference Result
;
630 Result
.RefRange
.Start
= Lex
.getLoc();
632 Result
.MC
= ParseMultiClassID();
633 if (!Result
.MC
) return Result
;
635 // If there is no template arg list, we're done.
636 if (Lex
.getCode() != tgtok::less
) {
637 Result
.RefRange
.End
= Lex
.getLoc();
640 Lex
.Lex(); // Eat the '<'
642 if (Lex
.getCode() == tgtok::greater
) {
643 TokError("subclass reference requires a non-empty list of template values");
648 ParseValueList(Result
.TemplateArgs
, &CurMC
->Rec
, &Result
.MC
->Rec
);
649 if (Result
.TemplateArgs
.empty()) {
650 Result
.MC
= nullptr; // Error parsing value list.
654 if (Lex
.getCode() != tgtok::greater
) {
655 TokError("expected '>' in template value list");
660 Result
.RefRange
.End
= Lex
.getLoc();
665 /// ParseRangePiece - Parse a bit/value range.
666 /// RangePiece ::= INTVAL
667 /// RangePiece ::= INTVAL '-' INTVAL
668 /// RangePiece ::= INTVAL INTVAL
669 bool TGParser::ParseRangePiece(SmallVectorImpl
<unsigned> &Ranges
) {
670 if (Lex
.getCode() != tgtok::IntVal
) {
671 TokError("expected integer or bitrange");
674 int64_t Start
= Lex
.getCurIntVal();
678 return TokError("invalid range, cannot be negative");
680 switch (Lex
.Lex()) { // eat first character.
682 Ranges
.push_back(Start
);
685 if (Lex
.Lex() != tgtok::IntVal
) {
686 TokError("expected integer value as end of range");
689 End
= Lex
.getCurIntVal();
692 End
= -Lex
.getCurIntVal();
696 return TokError("invalid range, cannot be negative");
701 for (; Start
<= End
; ++Start
)
702 Ranges
.push_back(Start
);
704 for (; Start
>= End
; --Start
)
705 Ranges
.push_back(Start
);
709 /// ParseRangeList - Parse a list of scalars and ranges into scalar values.
711 /// RangeList ::= RangePiece (',' RangePiece)*
713 void TGParser::ParseRangeList(SmallVectorImpl
<unsigned> &Result
) {
714 // Parse the first piece.
715 if (ParseRangePiece(Result
)) {
719 while (Lex
.getCode() == tgtok::comma
) {
720 Lex
.Lex(); // Eat the comma.
722 // Parse the next range piece.
723 if (ParseRangePiece(Result
)) {
730 /// ParseOptionalRangeList - Parse either a range list in <>'s or nothing.
731 /// OptionalRangeList ::= '<' RangeList '>'
732 /// OptionalRangeList ::= /*empty*/
733 bool TGParser::ParseOptionalRangeList(SmallVectorImpl
<unsigned> &Ranges
) {
734 if (Lex
.getCode() != tgtok::less
)
737 SMLoc StartLoc
= Lex
.getLoc();
738 Lex
.Lex(); // eat the '<'
740 // Parse the range list.
741 ParseRangeList(Ranges
);
742 if (Ranges
.empty()) return true;
744 if (Lex
.getCode() != tgtok::greater
) {
745 TokError("expected '>' at end of range list");
746 return Error(StartLoc
, "to match this '<'");
748 Lex
.Lex(); // eat the '>'.
752 /// ParseOptionalBitList - Parse either a bit list in {}'s or nothing.
753 /// OptionalBitList ::= '{' RangeList '}'
754 /// OptionalBitList ::= /*empty*/
755 bool TGParser::ParseOptionalBitList(SmallVectorImpl
<unsigned> &Ranges
) {
756 if (Lex
.getCode() != tgtok::l_brace
)
759 SMLoc StartLoc
= Lex
.getLoc();
760 Lex
.Lex(); // eat the '{'
762 // Parse the range list.
763 ParseRangeList(Ranges
);
764 if (Ranges
.empty()) return true;
766 if (Lex
.getCode() != tgtok::r_brace
) {
767 TokError("expected '}' at end of bit list");
768 return Error(StartLoc
, "to match this '{'");
770 Lex
.Lex(); // eat the '}'.
774 /// ParseType - Parse and return a tblgen type. This returns null on error.
776 /// Type ::= STRING // string type
777 /// Type ::= CODE // code type
778 /// Type ::= BIT // bit type
779 /// Type ::= BITS '<' INTVAL '>' // bits<x> type
780 /// Type ::= INT // int type
781 /// Type ::= LIST '<' Type '>' // list<x> type
782 /// Type ::= DAG // dag type
783 /// Type ::= ClassID // Record Type
785 RecTy
*TGParser::ParseType() {
786 switch (Lex
.getCode()) {
787 default: TokError("Unknown token when expecting a type"); return nullptr;
788 case tgtok::String
: Lex
.Lex(); return StringRecTy::get();
789 case tgtok::Code
: Lex
.Lex(); return CodeRecTy::get();
790 case tgtok::Bit
: Lex
.Lex(); return BitRecTy::get();
791 case tgtok::Int
: Lex
.Lex(); return IntRecTy::get();
792 case tgtok::Dag
: Lex
.Lex(); return DagRecTy::get();
794 if (Record
*R
= ParseClassID()) return RecordRecTy::get(R
);
795 TokError("unknown class name");
798 if (Lex
.Lex() != tgtok::less
) { // Eat 'bits'
799 TokError("expected '<' after bits type");
802 if (Lex
.Lex() != tgtok::IntVal
) { // Eat '<'
803 TokError("expected integer in bits<n> type");
806 uint64_t Val
= Lex
.getCurIntVal();
807 if (Lex
.Lex() != tgtok::greater
) { // Eat count.
808 TokError("expected '>' at end of bits<n> type");
811 Lex
.Lex(); // Eat '>'
812 return BitsRecTy::get(Val
);
815 if (Lex
.Lex() != tgtok::less
) { // Eat 'bits'
816 TokError("expected '<' after list type");
819 Lex
.Lex(); // Eat '<'
820 RecTy
*SubType
= ParseType();
821 if (!SubType
) return nullptr;
823 if (Lex
.getCode() != tgtok::greater
) {
824 TokError("expected '>' at end of list<ty> type");
827 Lex
.Lex(); // Eat '>'
828 return ListRecTy::get(SubType
);
833 /// ParseIDValue - This is just like ParseIDValue above, but it assumes the ID
834 /// has already been read.
835 Init
*TGParser::ParseIDValue(Record
*CurRec
, StringInit
*Name
, SMLoc NameLoc
,
838 if (const RecordVal
*RV
= CurRec
->getValue(Name
))
839 return VarInit::get(Name
, RV
->getType());
842 if ((CurRec
&& CurRec
->isClass()) || CurMultiClass
) {
843 Init
*TemplateArgName
;
846 QualifyName(CurMultiClass
->Rec
, CurMultiClass
, Name
, "::");
848 TemplateArgName
= QualifyName(*CurRec
, CurMultiClass
, Name
, ":");
850 Record
*TemplateRec
= CurMultiClass
? &CurMultiClass
->Rec
: CurRec
;
851 if (TemplateRec
->isTemplateArg(TemplateArgName
)) {
852 const RecordVal
*RV
= TemplateRec
->getValue(TemplateArgName
);
853 assert(RV
&& "Template arg doesn't exist??");
854 return VarInit::get(TemplateArgName
, RV
->getType());
855 } else if (Name
->getValue() == "NAME") {
856 return VarInit::get(TemplateArgName
, StringRecTy::get());
860 // If this is in a foreach loop, make sure it's not a loop iterator
861 for (const auto &L
: Loops
) {
862 VarInit
*IterVar
= dyn_cast
<VarInit
>(L
->IterVar
);
863 if (IterVar
&& IterVar
->getNameInit() == Name
)
867 if (Mode
== ParseNameMode
)
870 if (Init
*I
= Records
.getGlobal(Name
->getValue()))
873 // Allow self-references of concrete defs, but delay the lookup so that we
874 // get the correct type.
875 if (CurRec
&& !CurRec
->isClass() && !CurMultiClass
&&
876 CurRec
->getNameInit() == Name
)
877 return UnOpInit::get(UnOpInit::CAST
, Name
, CurRec
->getType());
879 Error(NameLoc
, "Variable not defined: '" + Name
->getValue() + "'");
883 /// ParseOperation - Parse an operator. This returns null on error.
885 /// Operation ::= XOperator ['<' Type '>'] '(' Args ')'
887 Init
*TGParser::ParseOperation(Record
*CurRec
, RecTy
*ItemType
) {
888 switch (Lex
.getCode()) {
890 TokError("unknown operation");
896 case tgtok::XCast
: { // Value ::= !unop '(' Value ')'
897 UnOpInit::UnaryOp Code
;
898 RecTy
*Type
= nullptr;
900 switch (Lex
.getCode()) {
901 default: llvm_unreachable("Unhandled code!");
903 Lex
.Lex(); // eat the operation
904 Code
= UnOpInit::CAST
;
906 Type
= ParseOperatorType();
909 TokError("did not get type for unary operator");
915 Lex
.Lex(); // eat the operation
916 Code
= UnOpInit::HEAD
;
919 Lex
.Lex(); // eat the operation
920 Code
= UnOpInit::TAIL
;
924 Code
= UnOpInit::SIZE
;
925 Type
= IntRecTy::get();
928 Lex
.Lex(); // eat the operation
929 Code
= UnOpInit::EMPTY
;
930 Type
= IntRecTy::get();
933 if (Lex
.getCode() != tgtok::l_paren
) {
934 TokError("expected '(' after unary operator");
937 Lex
.Lex(); // eat the '('
939 Init
*LHS
= ParseValue(CurRec
);
940 if (!LHS
) return nullptr;
942 if (Code
== UnOpInit::HEAD
||
943 Code
== UnOpInit::TAIL
||
944 Code
== UnOpInit::EMPTY
) {
945 ListInit
*LHSl
= dyn_cast
<ListInit
>(LHS
);
946 StringInit
*LHSs
= dyn_cast
<StringInit
>(LHS
);
947 TypedInit
*LHSt
= dyn_cast
<TypedInit
>(LHS
);
948 if (!LHSl
&& !LHSs
&& !LHSt
) {
949 TokError("expected list or string type argument in unary operator");
953 ListRecTy
*LType
= dyn_cast
<ListRecTy
>(LHSt
->getType());
954 StringRecTy
*SType
= dyn_cast
<StringRecTy
>(LHSt
->getType());
955 if (!LType
&& !SType
) {
956 TokError("expected list or string type argument in unary operator");
961 if (Code
== UnOpInit::HEAD
|| Code
== UnOpInit::TAIL
||
962 Code
== UnOpInit::SIZE
) {
963 if (!LHSl
&& !LHSt
) {
964 TokError("expected list type argument in unary operator");
969 if (Code
== UnOpInit::HEAD
|| Code
== UnOpInit::TAIL
) {
970 if (LHSl
&& LHSl
->empty()) {
971 TokError("empty list argument in unary operator");
975 Init
*Item
= LHSl
->getElement(0);
976 TypedInit
*Itemt
= dyn_cast
<TypedInit
>(Item
);
978 TokError("untyped list element in unary operator");
981 Type
= (Code
== UnOpInit::HEAD
) ? Itemt
->getType()
982 : ListRecTy::get(Itemt
->getType());
984 assert(LHSt
&& "expected list type argument in unary operator");
985 ListRecTy
*LType
= dyn_cast
<ListRecTy
>(LHSt
->getType());
987 TokError("expected list type argument in unary operator");
990 Type
= (Code
== UnOpInit::HEAD
) ? LType
->getElementType() : LType
;
995 if (Lex
.getCode() != tgtok::r_paren
) {
996 TokError("expected ')' in unary operator");
999 Lex
.Lex(); // eat the ')'
1000 return (UnOpInit::get(Code
, LHS
, Type
))->Fold(CurRec
);
1004 // Value ::= !isa '<' Type '>' '(' Value ')'
1005 Lex
.Lex(); // eat the operation
1007 RecTy
*Type
= ParseOperatorType();
1011 if (Lex
.getCode() != tgtok::l_paren
) {
1012 TokError("expected '(' after type of !isa");
1015 Lex
.Lex(); // eat the '('
1017 Init
*LHS
= ParseValue(CurRec
);
1021 if (Lex
.getCode() != tgtok::r_paren
) {
1022 TokError("expected ')' in !isa");
1025 Lex
.Lex(); // eat the ')'
1027 return (IsAOpInit::get(Type
, LHS
))->Fold();
1030 case tgtok::XConcat
:
1044 case tgtok::XListConcat
:
1045 case tgtok::XListSplat
:
1046 case tgtok::XStrConcat
: { // Value ::= !binop '(' Value ',' Value ')'
1047 tgtok::TokKind OpTok
= Lex
.getCode();
1048 SMLoc OpLoc
= Lex
.getLoc();
1049 Lex
.Lex(); // eat the operation
1051 BinOpInit::BinaryOp Code
;
1053 default: llvm_unreachable("Unhandled code!");
1054 case tgtok::XConcat
: Code
= BinOpInit::CONCAT
; break;
1055 case tgtok::XADD
: Code
= BinOpInit::ADD
; break;
1056 case tgtok::XMUL
: Code
= BinOpInit::MUL
; break;
1057 case tgtok::XAND
: Code
= BinOpInit::AND
; break;
1058 case tgtok::XOR
: Code
= BinOpInit::OR
; break;
1059 case tgtok::XSRA
: Code
= BinOpInit::SRA
; break;
1060 case tgtok::XSRL
: Code
= BinOpInit::SRL
; break;
1061 case tgtok::XSHL
: Code
= BinOpInit::SHL
; break;
1062 case tgtok::XEq
: Code
= BinOpInit::EQ
; break;
1063 case tgtok::XNe
: Code
= BinOpInit::NE
; break;
1064 case tgtok::XLe
: Code
= BinOpInit::LE
; break;
1065 case tgtok::XLt
: Code
= BinOpInit::LT
; break;
1066 case tgtok::XGe
: Code
= BinOpInit::GE
; break;
1067 case tgtok::XGt
: Code
= BinOpInit::GT
; break;
1068 case tgtok::XListConcat
: Code
= BinOpInit::LISTCONCAT
; break;
1069 case tgtok::XListSplat
: Code
= BinOpInit::LISTSPLAT
; break;
1070 case tgtok::XStrConcat
: Code
= BinOpInit::STRCONCAT
; break;
1073 RecTy
*Type
= nullptr;
1074 RecTy
*ArgType
= nullptr;
1077 llvm_unreachable("Unhandled code!");
1078 case tgtok::XConcat
:
1079 Type
= DagRecTy::get();
1080 ArgType
= DagRecTy::get();
1089 Type
= IntRecTy::get();
1090 ArgType
= IntRecTy::get();
1094 Type
= BitRecTy::get();
1095 // ArgType for Eq / Ne is not known at this point
1101 Type
= BitRecTy::get();
1102 ArgType
= IntRecTy::get();
1104 case tgtok::XListConcat
:
1105 // We don't know the list type until we parse the first argument
1108 case tgtok::XListSplat
:
1109 // Can't do any typechecking until we parse the first argument.
1111 case tgtok::XStrConcat
:
1112 Type
= StringRecTy::get();
1113 ArgType
= StringRecTy::get();
1117 if (Type
&& ItemType
&& !Type
->typeIsConvertibleTo(ItemType
)) {
1118 Error(OpLoc
, Twine("expected value of type '") +
1119 ItemType
->getAsString() + "', got '" +
1120 Type
->getAsString() + "'");
1124 if (Lex
.getCode() != tgtok::l_paren
) {
1125 TokError("expected '(' after binary operator");
1128 Lex
.Lex(); // eat the '('
1130 SmallVector
<Init
*, 2> InitList
;
1133 SMLoc InitLoc
= Lex
.getLoc();
1134 InitList
.push_back(ParseValue(CurRec
, ArgType
));
1135 if (!InitList
.back()) return nullptr;
1137 // All BinOps require their arguments to be of compatible types.
1138 TypedInit
*TI
= dyn_cast
<TypedInit
>(InitList
.back());
1140 ArgType
= TI
->getType();
1143 case BinOpInit::LISTCONCAT
:
1144 if (!isa
<ListRecTy
>(ArgType
)) {
1145 Error(InitLoc
, Twine("expected a list, got value of type '") +
1146 ArgType
->getAsString() + "'");
1150 case BinOpInit::LISTSPLAT
:
1151 if (ItemType
&& InitList
.size() == 1) {
1152 if (!isa
<ListRecTy
>(ItemType
)) {
1154 Twine("expected output type to be a list, got type '") +
1155 ItemType
->getAsString() + "'");
1158 if (!ArgType
->getListTy()->typeIsConvertibleTo(ItemType
)) {
1159 Error(OpLoc
, Twine("expected first arg type to be '") +
1160 ArgType
->getAsString() +
1161 "', got value of type '" +
1162 cast
<ListRecTy
>(ItemType
)
1169 if (InitList
.size() == 2 && !isa
<IntRecTy
>(ArgType
)) {
1170 Error(InitLoc
, Twine("expected second parameter to be an int, got "
1171 "value of type '") +
1172 ArgType
->getAsString() + "'");
1175 ArgType
= nullptr; // Broken invariant: types not identical.
1179 if (!ArgType
->typeIsConvertibleTo(IntRecTy::get()) &&
1180 !ArgType
->typeIsConvertibleTo(StringRecTy::get())) {
1181 Error(InitLoc
, Twine("expected int, bits, or string; got value of "
1182 "type '") + ArgType
->getAsString() + "'");
1186 default: llvm_unreachable("other ops have fixed argument types");
1189 RecTy
*Resolved
= resolveTypes(ArgType
, TI
->getType());
1191 Error(InitLoc
, Twine("expected value of type '") +
1192 ArgType
->getAsString() + "', got '" +
1193 TI
->getType()->getAsString() + "'");
1196 if (Code
!= BinOpInit::ADD
&& Code
!= BinOpInit::AND
&&
1197 Code
!= BinOpInit::OR
&& Code
!= BinOpInit::SRA
&&
1198 Code
!= BinOpInit::SRL
&& Code
!= BinOpInit::SHL
&&
1199 Code
!= BinOpInit::MUL
)
1203 if (Lex
.getCode() != tgtok::comma
)
1205 Lex
.Lex(); // eat the ','
1208 if (Lex
.getCode() != tgtok::r_paren
) {
1209 TokError("expected ')' in operator");
1212 Lex
.Lex(); // eat the ')'
1214 // listconcat returns a list with type of the argument.
1215 if (Code
== BinOpInit::LISTCONCAT
)
1217 // listsplat returns a list of type of the *first* argument.
1218 if (Code
== BinOpInit::LISTSPLAT
)
1219 Type
= cast
<TypedInit
>(InitList
.front())->getType()->getListTy();
1221 // We allow multiple operands to associative operators like !strconcat as
1222 // shorthand for nesting them.
1223 if (Code
== BinOpInit::STRCONCAT
|| Code
== BinOpInit::LISTCONCAT
||
1224 Code
== BinOpInit::CONCAT
|| Code
== BinOpInit::ADD
||
1225 Code
== BinOpInit::AND
|| Code
== BinOpInit::OR
||
1226 Code
== BinOpInit::MUL
) {
1227 while (InitList
.size() > 2) {
1228 Init
*RHS
= InitList
.pop_back_val();
1229 RHS
= (BinOpInit::get(Code
, InitList
.back(), RHS
, Type
))->Fold(CurRec
);
1230 InitList
.back() = RHS
;
1234 if (InitList
.size() == 2)
1235 return (BinOpInit::get(Code
, InitList
[0], InitList
[1], Type
))
1238 Error(OpLoc
, "expected two operands to operator");
1242 case tgtok::XForEach
: { // Value ::= !foreach '(' Id ',' Value ',' Value ')'
1243 SMLoc OpLoc
= Lex
.getLoc();
1244 Lex
.Lex(); // eat the operation
1245 if (Lex
.getCode() != tgtok::l_paren
) {
1246 TokError("expected '(' after !foreach");
1250 if (Lex
.Lex() != tgtok::Id
) { // eat the '('
1251 TokError("first argument of !foreach must be an identifier");
1255 Init
*LHS
= StringInit::get(Lex
.getCurStrVal());
1257 if (CurRec
&& CurRec
->getValue(LHS
)) {
1258 TokError((Twine("iteration variable '") + LHS
->getAsString() +
1259 "' already defined")
1264 if (Lex
.Lex() != tgtok::comma
) { // eat the id
1265 TokError("expected ',' in ternary operator");
1268 Lex
.Lex(); // eat the ','
1270 Init
*MHS
= ParseValue(CurRec
);
1274 if (Lex
.getCode() != tgtok::comma
) {
1275 TokError("expected ',' in ternary operator");
1278 Lex
.Lex(); // eat the ','
1280 TypedInit
*MHSt
= dyn_cast
<TypedInit
>(MHS
);
1282 TokError("could not get type of !foreach input");
1286 RecTy
*InEltType
= nullptr;
1287 RecTy
*OutEltType
= nullptr;
1290 if (ListRecTy
*InListTy
= dyn_cast
<ListRecTy
>(MHSt
->getType())) {
1291 InEltType
= InListTy
->getElementType();
1293 if (ListRecTy
*OutListTy
= dyn_cast
<ListRecTy
>(ItemType
)) {
1294 OutEltType
= OutListTy
->getElementType();
1297 "expected value of type '" + Twine(ItemType
->getAsString()) +
1298 "', but got !foreach of list type");
1302 } else if (DagRecTy
*InDagTy
= dyn_cast
<DagRecTy
>(MHSt
->getType())) {
1303 InEltType
= InDagTy
;
1304 if (ItemType
&& !isa
<DagRecTy
>(ItemType
)) {
1306 "expected value of type '" + Twine(ItemType
->getAsString()) +
1307 "', but got !foreach of dag type");
1312 TokError("!foreach must have list or dag input");
1316 // We need to create a temporary record to provide a scope for the iteration
1317 // variable while parsing top-level foreach's.
1318 std::unique_ptr
<Record
> ParseRecTmp
;
1319 Record
*ParseRec
= CurRec
;
1321 ParseRecTmp
= make_unique
<Record
>(".parse", ArrayRef
<SMLoc
>{}, Records
);
1322 ParseRec
= ParseRecTmp
.get();
1325 ParseRec
->addValue(RecordVal(LHS
, InEltType
, false));
1326 Init
*RHS
= ParseValue(ParseRec
, OutEltType
);
1327 ParseRec
->removeValue(LHS
);
1331 if (Lex
.getCode() != tgtok::r_paren
) {
1332 TokError("expected ')' in binary operator");
1335 Lex
.Lex(); // eat the ')'
1339 OutType
= InEltType
;
1341 TypedInit
*RHSt
= dyn_cast
<TypedInit
>(RHS
);
1343 TokError("could not get type of !foreach result");
1346 OutType
= RHSt
->getType()->getListTy();
1349 return (TernOpInit::get(TernOpInit::FOREACH
, LHS
, MHS
, RHS
, OutType
))
1355 case tgtok::XSubst
: { // Value ::= !ternop '(' Value ',' Value ',' Value ')'
1356 TernOpInit::TernaryOp Code
;
1357 RecTy
*Type
= nullptr;
1359 tgtok::TokKind LexCode
= Lex
.getCode();
1360 Lex
.Lex(); // eat the operation
1362 default: llvm_unreachable("Unhandled code!");
1364 Code
= TernOpInit::DAG
;
1365 Type
= DagRecTy::get();
1369 Code
= TernOpInit::IF
;
1372 Code
= TernOpInit::SUBST
;
1375 if (Lex
.getCode() != tgtok::l_paren
) {
1376 TokError("expected '(' after ternary operator");
1379 Lex
.Lex(); // eat the '('
1381 Init
*LHS
= ParseValue(CurRec
);
1382 if (!LHS
) return nullptr;
1384 if (Lex
.getCode() != tgtok::comma
) {
1385 TokError("expected ',' in ternary operator");
1388 Lex
.Lex(); // eat the ','
1390 SMLoc MHSLoc
= Lex
.getLoc();
1391 Init
*MHS
= ParseValue(CurRec
, ItemType
);
1395 if (Lex
.getCode() != tgtok::comma
) {
1396 TokError("expected ',' in ternary operator");
1399 Lex
.Lex(); // eat the ','
1401 SMLoc RHSLoc
= Lex
.getLoc();
1402 Init
*RHS
= ParseValue(CurRec
, ItemType
);
1406 if (Lex
.getCode() != tgtok::r_paren
) {
1407 TokError("expected ')' in binary operator");
1410 Lex
.Lex(); // eat the ')'
1413 default: llvm_unreachable("Unhandled code!");
1415 TypedInit
*MHSt
= dyn_cast
<TypedInit
>(MHS
);
1416 if (!MHSt
&& !isa
<UnsetInit
>(MHS
)) {
1417 Error(MHSLoc
, "could not determine type of the child list in !dag");
1420 if (MHSt
&& !isa
<ListRecTy
>(MHSt
->getType())) {
1421 Error(MHSLoc
, Twine("expected list of children, got type '") +
1422 MHSt
->getType()->getAsString() + "'");
1426 TypedInit
*RHSt
= dyn_cast
<TypedInit
>(RHS
);
1427 if (!RHSt
&& !isa
<UnsetInit
>(RHS
)) {
1428 Error(RHSLoc
, "could not determine type of the name list in !dag");
1431 if (RHSt
&& StringRecTy::get()->getListTy() != RHSt
->getType()) {
1432 Error(RHSLoc
, Twine("expected list<string>, got type '") +
1433 RHSt
->getType()->getAsString() + "'");
1437 if (!MHSt
&& !RHSt
) {
1439 "cannot have both unset children and unset names in !dag");
1445 RecTy
*MHSTy
= nullptr;
1446 RecTy
*RHSTy
= nullptr;
1448 if (TypedInit
*MHSt
= dyn_cast
<TypedInit
>(MHS
))
1449 MHSTy
= MHSt
->getType();
1450 if (BitsInit
*MHSbits
= dyn_cast
<BitsInit
>(MHS
))
1451 MHSTy
= BitsRecTy::get(MHSbits
->getNumBits());
1452 if (isa
<BitInit
>(MHS
))
1453 MHSTy
= BitRecTy::get();
1455 if (TypedInit
*RHSt
= dyn_cast
<TypedInit
>(RHS
))
1456 RHSTy
= RHSt
->getType();
1457 if (BitsInit
*RHSbits
= dyn_cast
<BitsInit
>(RHS
))
1458 RHSTy
= BitsRecTy::get(RHSbits
->getNumBits());
1459 if (isa
<BitInit
>(RHS
))
1460 RHSTy
= BitRecTy::get();
1462 // For UnsetInit, it's typed from the other hand.
1463 if (isa
<UnsetInit
>(MHS
))
1465 if (isa
<UnsetInit
>(RHS
))
1468 if (!MHSTy
|| !RHSTy
) {
1469 TokError("could not get type for !if");
1473 Type
= resolveTypes(MHSTy
, RHSTy
);
1475 TokError(Twine("inconsistent types '") + MHSTy
->getAsString() +
1476 "' and '" + RHSTy
->getAsString() + "' for !if");
1481 case tgtok::XSubst
: {
1482 TypedInit
*RHSt
= dyn_cast
<TypedInit
>(RHS
);
1484 TokError("could not get type for !subst");
1487 Type
= RHSt
->getType();
1491 return (TernOpInit::get(Code
, LHS
, MHS
, RHS
, Type
))->Fold(CurRec
);
1495 return ParseOperationCond(CurRec
, ItemType
);
1497 case tgtok::XFoldl
: {
1498 // Value ::= !foldl '(' Id ',' Id ',' Value ',' Value ',' Value ')'
1499 Lex
.Lex(); // eat the operation
1500 if (Lex
.getCode() != tgtok::l_paren
) {
1501 TokError("expected '(' after !foldl");
1504 Lex
.Lex(); // eat the '('
1506 Init
*StartUntyped
= ParseValue(CurRec
);
1510 TypedInit
*Start
= dyn_cast
<TypedInit
>(StartUntyped
);
1512 TokError(Twine("could not get type of !foldl start: '") +
1513 StartUntyped
->getAsString() + "'");
1517 if (Lex
.getCode() != tgtok::comma
) {
1518 TokError("expected ',' in !foldl");
1521 Lex
.Lex(); // eat the ','
1523 Init
*ListUntyped
= ParseValue(CurRec
);
1527 TypedInit
*List
= dyn_cast
<TypedInit
>(ListUntyped
);
1529 TokError(Twine("could not get type of !foldl list: '") +
1530 ListUntyped
->getAsString() + "'");
1534 ListRecTy
*ListType
= dyn_cast
<ListRecTy
>(List
->getType());
1536 TokError(Twine("!foldl list must be a list, but is of type '") +
1537 List
->getType()->getAsString());
1541 if (Lex
.getCode() != tgtok::comma
) {
1542 TokError("expected ',' in !foldl");
1546 if (Lex
.Lex() != tgtok::Id
) { // eat the ','
1547 TokError("third argument of !foldl must be an identifier");
1551 Init
*A
= StringInit::get(Lex
.getCurStrVal());
1552 if (CurRec
&& CurRec
->getValue(A
)) {
1553 TokError((Twine("left !foldl variable '") + A
->getAsString() +
1554 "' already defined")
1559 if (Lex
.Lex() != tgtok::comma
) { // eat the id
1560 TokError("expected ',' in !foldl");
1564 if (Lex
.Lex() != tgtok::Id
) { // eat the ','
1565 TokError("fourth argument of !foldl must be an identifier");
1569 Init
*B
= StringInit::get(Lex
.getCurStrVal());
1570 if (CurRec
&& CurRec
->getValue(B
)) {
1571 TokError((Twine("right !foldl variable '") + B
->getAsString() +
1572 "' already defined")
1577 if (Lex
.Lex() != tgtok::comma
) { // eat the id
1578 TokError("expected ',' in !foldl");
1581 Lex
.Lex(); // eat the ','
1583 // We need to create a temporary record to provide a scope for the iteration
1584 // variable while parsing top-level foreach's.
1585 std::unique_ptr
<Record
> ParseRecTmp
;
1586 Record
*ParseRec
= CurRec
;
1588 ParseRecTmp
= make_unique
<Record
>(".parse", ArrayRef
<SMLoc
>{}, Records
);
1589 ParseRec
= ParseRecTmp
.get();
1592 ParseRec
->addValue(RecordVal(A
, Start
->getType(), false));
1593 ParseRec
->addValue(RecordVal(B
, ListType
->getElementType(), false));
1594 Init
*ExprUntyped
= ParseValue(ParseRec
);
1595 ParseRec
->removeValue(A
);
1596 ParseRec
->removeValue(B
);
1600 TypedInit
*Expr
= dyn_cast
<TypedInit
>(ExprUntyped
);
1602 TokError("could not get type of !foldl expression");
1606 if (Expr
->getType() != Start
->getType()) {
1607 TokError(Twine("!foldl expression must be of same type as start (") +
1608 Start
->getType()->getAsString() + "), but is of type " +
1609 Expr
->getType()->getAsString());
1613 if (Lex
.getCode() != tgtok::r_paren
) {
1614 TokError("expected ')' in fold operator");
1617 Lex
.Lex(); // eat the ')'
1619 return FoldOpInit::get(Start
, List
, A
, B
, Expr
, Start
->getType())
1625 /// ParseOperatorType - Parse a type for an operator. This returns
1628 /// OperatorType ::= '<' Type '>'
1630 RecTy
*TGParser::ParseOperatorType() {
1631 RecTy
*Type
= nullptr;
1633 if (Lex
.getCode() != tgtok::less
) {
1634 TokError("expected type name for operator");
1637 Lex
.Lex(); // eat the <
1642 TokError("expected type name for operator");
1646 if (Lex
.getCode() != tgtok::greater
) {
1647 TokError("expected type name for operator");
1650 Lex
.Lex(); // eat the >
1655 Init
*TGParser::ParseOperationCond(Record
*CurRec
, RecTy
*ItemType
) {
1656 Lex
.Lex(); // eat the operation 'cond'
1658 if (Lex
.getCode() != tgtok::l_paren
) {
1659 TokError("expected '(' after !cond operator");
1662 Lex
.Lex(); // eat the '('
1664 // Parse through '[Case: Val,]+'
1665 SmallVector
<Init
*, 4> Case
;
1666 SmallVector
<Init
*, 4> Val
;
1668 if (Lex
.getCode() == tgtok::r_paren
) {
1669 Lex
.Lex(); // eat the ')'
1673 Init
*V
= ParseValue(CurRec
);
1678 if (Lex
.getCode() != tgtok::colon
) {
1679 TokError("expected ':' following a condition in !cond operator");
1682 Lex
.Lex(); // eat the ':'
1684 V
= ParseValue(CurRec
, ItemType
);
1689 if (Lex
.getCode() == tgtok::r_paren
) {
1690 Lex
.Lex(); // eat the ')'
1694 if (Lex
.getCode() != tgtok::comma
) {
1695 TokError("expected ',' or ')' following a value in !cond operator");
1698 Lex
.Lex(); // eat the ','
1701 if (Case
.size() < 1) {
1702 TokError("there should be at least 1 'condition : value' in the !cond operator");
1707 RecTy
*Type
= nullptr;
1708 for (Init
*V
: Val
) {
1709 RecTy
*VTy
= nullptr;
1710 if (TypedInit
*Vt
= dyn_cast
<TypedInit
>(V
))
1711 VTy
= Vt
->getType();
1712 if (BitsInit
*Vbits
= dyn_cast
<BitsInit
>(V
))
1713 VTy
= BitsRecTy::get(Vbits
->getNumBits());
1714 if (isa
<BitInit
>(V
))
1715 VTy
= BitRecTy::get();
1717 if (Type
== nullptr) {
1718 if (!isa
<UnsetInit
>(V
))
1721 if (!isa
<UnsetInit
>(V
)) {
1722 RecTy
*RType
= resolveTypes(Type
, VTy
);
1724 TokError(Twine("inconsistent types '") + Type
->getAsString() +
1725 "' and '" + VTy
->getAsString() + "' for !cond");
1734 TokError("could not determine type for !cond from its arguments");
1737 return CondOpInit::get(Case
, Val
, Type
)->Fold(CurRec
);
1740 /// ParseSimpleValue - Parse a tblgen value. This returns null on error.
1742 /// SimpleValue ::= IDValue
1743 /// SimpleValue ::= INTVAL
1744 /// SimpleValue ::= STRVAL+
1745 /// SimpleValue ::= CODEFRAGMENT
1746 /// SimpleValue ::= '?'
1747 /// SimpleValue ::= '{' ValueList '}'
1748 /// SimpleValue ::= ID '<' ValueListNE '>'
1749 /// SimpleValue ::= '[' ValueList ']'
1750 /// SimpleValue ::= '(' IDValue DagArgList ')'
1751 /// SimpleValue ::= CONCATTOK '(' Value ',' Value ')'
1752 /// SimpleValue ::= ADDTOK '(' Value ',' Value ')'
1753 /// SimpleValue ::= SHLTOK '(' Value ',' Value ')'
1754 /// SimpleValue ::= SRATOK '(' Value ',' Value ')'
1755 /// SimpleValue ::= SRLTOK '(' Value ',' Value ')'
1756 /// SimpleValue ::= LISTCONCATTOK '(' Value ',' Value ')'
1757 /// SimpleValue ::= LISTSPLATTOK '(' Value ',' Value ')'
1758 /// SimpleValue ::= STRCONCATTOK '(' Value ',' Value ')'
1759 /// SimpleValue ::= COND '(' [Value ':' Value,]+ ')'
1761 Init
*TGParser::ParseSimpleValue(Record
*CurRec
, RecTy
*ItemType
,
1764 switch (Lex
.getCode()) {
1765 default: TokError("Unknown token when parsing a value"); break;
1767 // This is a leading paste operation. This is deprecated but
1768 // still exists in some .td files. Ignore it.
1769 Lex
.Lex(); // Skip '#'.
1770 return ParseSimpleValue(CurRec
, ItemType
, Mode
);
1771 case tgtok::IntVal
: R
= IntInit::get(Lex
.getCurIntVal()); Lex
.Lex(); break;
1772 case tgtok::BinaryIntVal
: {
1773 auto BinaryVal
= Lex
.getCurBinaryIntVal();
1774 SmallVector
<Init
*, 16> Bits(BinaryVal
.second
);
1775 for (unsigned i
= 0, e
= BinaryVal
.second
; i
!= e
; ++i
)
1776 Bits
[i
] = BitInit::get(BinaryVal
.first
& (1LL << i
));
1777 R
= BitsInit::get(Bits
);
1781 case tgtok::StrVal
: {
1782 std::string Val
= Lex
.getCurStrVal();
1785 // Handle multiple consecutive concatenated strings.
1786 while (Lex
.getCode() == tgtok::StrVal
) {
1787 Val
+= Lex
.getCurStrVal();
1791 R
= StringInit::get(Val
);
1794 case tgtok::CodeFragment
:
1795 R
= CodeInit::get(Lex
.getCurStrVal(), Lex
.getLoc());
1798 case tgtok::question
:
1799 R
= UnsetInit::get();
1803 SMLoc NameLoc
= Lex
.getLoc();
1804 StringInit
*Name
= StringInit::get(Lex
.getCurStrVal());
1805 if (Lex
.Lex() != tgtok::less
) // consume the Id.
1806 return ParseIDValue(CurRec
, Name
, NameLoc
, Mode
); // Value ::= IDValue
1808 // Value ::= ID '<' ValueListNE '>'
1809 if (Lex
.Lex() == tgtok::greater
) {
1810 TokError("expected non-empty value list");
1814 // This is a CLASS<initvalslist> expression. This is supposed to synthesize
1815 // a new anonymous definition, deriving from CLASS<initvalslist> with no
1817 Record
*Class
= Records
.getClass(Name
->getValue());
1819 Error(NameLoc
, "Expected a class name, got '" + Name
->getValue() + "'");
1823 SmallVector
<Init
*, 8> Args
;
1824 ParseValueList(Args
, CurRec
, Class
);
1825 if (Args
.empty()) return nullptr;
1827 if (Lex
.getCode() != tgtok::greater
) {
1828 TokError("expected '>' at end of value list");
1831 Lex
.Lex(); // eat the '>'
1833 // Typecheck the template arguments list
1834 ArrayRef
<Init
*> ExpectedArgs
= Class
->getTemplateArgs();
1835 if (ExpectedArgs
.size() < Args
.size()) {
1837 "More template args specified than expected");
1841 for (unsigned i
= 0, e
= ExpectedArgs
.size(); i
!= e
; ++i
) {
1842 RecordVal
*ExpectedArg
= Class
->getValue(ExpectedArgs
[i
]);
1843 if (i
< Args
.size()) {
1844 if (TypedInit
*TI
= dyn_cast
<TypedInit
>(Args
[i
])) {
1845 RecTy
*ExpectedType
= ExpectedArg
->getType();
1846 if (!TI
->getType()->typeIsConvertibleTo(ExpectedType
)) {
1848 "Value specified for template argument #" + Twine(i
) + " (" +
1849 ExpectedArg
->getNameInitAsString() + ") is of type '" +
1850 TI
->getType()->getAsString() + "', expected '" +
1851 ExpectedType
->getAsString() + "': " + TI
->getAsString());
1856 } else if (ExpectedArg
->getValue()->isComplete())
1860 "Value not specified for template argument #" + Twine(i
) + " (" +
1861 ExpectedArgs
[i
]->getAsUnquotedString() + ")");
1865 return VarDefInit::get(Class
, Args
)->Fold();
1867 case tgtok::l_brace
: { // Value ::= '{' ValueList '}'
1868 SMLoc BraceLoc
= Lex
.getLoc();
1869 Lex
.Lex(); // eat the '{'
1870 SmallVector
<Init
*, 16> Vals
;
1872 if (Lex
.getCode() != tgtok::r_brace
) {
1873 ParseValueList(Vals
, CurRec
);
1874 if (Vals
.empty()) return nullptr;
1876 if (Lex
.getCode() != tgtok::r_brace
) {
1877 TokError("expected '}' at end of bit list value");
1880 Lex
.Lex(); // eat the '}'
1882 SmallVector
<Init
*, 16> NewBits
;
1884 // As we parse { a, b, ... }, 'a' is the highest bit, but we parse it
1885 // first. We'll first read everything in to a vector, then we can reverse
1886 // it to get the bits in the correct order for the BitsInit value.
1887 for (unsigned i
= 0, e
= Vals
.size(); i
!= e
; ++i
) {
1888 // FIXME: The following two loops would not be duplicated
1889 // if the API was a little more orthogonal.
1891 // bits<n> values are allowed to initialize n bits.
1892 if (BitsInit
*BI
= dyn_cast
<BitsInit
>(Vals
[i
])) {
1893 for (unsigned i
= 0, e
= BI
->getNumBits(); i
!= e
; ++i
)
1894 NewBits
.push_back(BI
->getBit((e
- i
) - 1));
1897 // bits<n> can also come from variable initializers.
1898 if (VarInit
*VI
= dyn_cast
<VarInit
>(Vals
[i
])) {
1899 if (BitsRecTy
*BitsRec
= dyn_cast
<BitsRecTy
>(VI
->getType())) {
1900 for (unsigned i
= 0, e
= BitsRec
->getNumBits(); i
!= e
; ++i
)
1901 NewBits
.push_back(VI
->getBit((e
- i
) - 1));
1904 // Fallthrough to try convert this to a bit.
1906 // All other values must be convertible to just a single bit.
1907 Init
*Bit
= Vals
[i
]->getCastTo(BitRecTy::get());
1909 Error(BraceLoc
, "Element #" + Twine(i
) + " (" + Vals
[i
]->getAsString() +
1910 ") is not convertable to a bit");
1913 NewBits
.push_back(Bit
);
1915 std::reverse(NewBits
.begin(), NewBits
.end());
1916 return BitsInit::get(NewBits
);
1918 case tgtok::l_square
: { // Value ::= '[' ValueList ']'
1919 Lex
.Lex(); // eat the '['
1920 SmallVector
<Init
*, 16> Vals
;
1922 RecTy
*DeducedEltTy
= nullptr;
1923 ListRecTy
*GivenListTy
= nullptr;
1926 ListRecTy
*ListType
= dyn_cast
<ListRecTy
>(ItemType
);
1928 TokError(Twine("Type mismatch for list, expected list type, got ") +
1929 ItemType
->getAsString());
1932 GivenListTy
= ListType
;
1935 if (Lex
.getCode() != tgtok::r_square
) {
1936 ParseValueList(Vals
, CurRec
, nullptr,
1937 GivenListTy
? GivenListTy
->getElementType() : nullptr);
1938 if (Vals
.empty()) return nullptr;
1940 if (Lex
.getCode() != tgtok::r_square
) {
1941 TokError("expected ']' at end of list value");
1944 Lex
.Lex(); // eat the ']'
1946 RecTy
*GivenEltTy
= nullptr;
1947 if (Lex
.getCode() == tgtok::less
) {
1948 // Optional list element type
1949 Lex
.Lex(); // eat the '<'
1951 GivenEltTy
= ParseType();
1953 // Couldn't parse element type
1957 if (Lex
.getCode() != tgtok::greater
) {
1958 TokError("expected '>' at end of list element type");
1961 Lex
.Lex(); // eat the '>'
1965 RecTy
*EltTy
= nullptr;
1966 for (Init
*V
: Vals
) {
1967 TypedInit
*TArg
= dyn_cast
<TypedInit
>(V
);
1970 EltTy
= resolveTypes(EltTy
, TArg
->getType());
1972 TokError("Incompatible types in list elements");
1976 EltTy
= TArg
->getType();
1983 // Verify consistency
1984 if (!EltTy
->typeIsConvertibleTo(GivenEltTy
)) {
1985 TokError("Incompatible types in list elements");
1994 TokError("No type for list");
1997 DeducedEltTy
= GivenListTy
->getElementType();
1999 // Make sure the deduced type is compatible with the given type
2001 if (!EltTy
->typeIsConvertibleTo(GivenListTy
->getElementType())) {
2002 TokError(Twine("Element type mismatch for list: element type '") +
2003 EltTy
->getAsString() + "' not convertible to '" +
2004 GivenListTy
->getElementType()->getAsString());
2008 DeducedEltTy
= EltTy
;
2011 return ListInit::get(Vals
, DeducedEltTy
);
2013 case tgtok::l_paren
: { // Value ::= '(' IDValue DagArgList ')'
2014 Lex
.Lex(); // eat the '('
2015 if (Lex
.getCode() != tgtok::Id
&& Lex
.getCode() != tgtok::XCast
) {
2016 TokError("expected identifier in dag init");
2020 Init
*Operator
= ParseValue(CurRec
);
2021 if (!Operator
) return nullptr;
2023 // If the operator name is present, parse it.
2024 StringInit
*OperatorName
= nullptr;
2025 if (Lex
.getCode() == tgtok::colon
) {
2026 if (Lex
.Lex() != tgtok::VarName
) { // eat the ':'
2027 TokError("expected variable name in dag operator");
2030 OperatorName
= StringInit::get(Lex
.getCurStrVal());
2031 Lex
.Lex(); // eat the VarName.
2034 SmallVector
<std::pair
<llvm::Init
*, StringInit
*>, 8> DagArgs
;
2035 if (Lex
.getCode() != tgtok::r_paren
) {
2036 ParseDagArgList(DagArgs
, CurRec
);
2037 if (DagArgs
.empty()) return nullptr;
2040 if (Lex
.getCode() != tgtok::r_paren
) {
2041 TokError("expected ')' in dag init");
2044 Lex
.Lex(); // eat the ')'
2046 return DagInit::get(Operator
, OperatorName
, DagArgs
);
2053 case tgtok::XCast
: // Value ::= !unop '(' Value ')'
2055 case tgtok::XConcat
:
2070 case tgtok::XListConcat
:
2071 case tgtok::XListSplat
:
2072 case tgtok::XStrConcat
: // Value ::= !binop '(' Value ',' Value ')'
2076 case tgtok::XForEach
:
2077 case tgtok::XSubst
: { // Value ::= !ternop '(' Value ',' Value ',' Value ')'
2078 return ParseOperation(CurRec
, ItemType
);
2085 /// ParseValue - Parse a tblgen value. This returns null on error.
2087 /// Value ::= SimpleValue ValueSuffix*
2088 /// ValueSuffix ::= '{' BitList '}'
2089 /// ValueSuffix ::= '[' BitList ']'
2090 /// ValueSuffix ::= '.' ID
2092 Init
*TGParser::ParseValue(Record
*CurRec
, RecTy
*ItemType
, IDParseMode Mode
) {
2093 Init
*Result
= ParseSimpleValue(CurRec
, ItemType
, Mode
);
2094 if (!Result
) return nullptr;
2096 // Parse the suffixes now if present.
2098 switch (Lex
.getCode()) {
2099 default: return Result
;
2100 case tgtok::l_brace
: {
2101 if (Mode
== ParseNameMode
)
2102 // This is the beginning of the object body.
2105 SMLoc CurlyLoc
= Lex
.getLoc();
2106 Lex
.Lex(); // eat the '{'
2107 SmallVector
<unsigned, 16> Ranges
;
2108 ParseRangeList(Ranges
);
2109 if (Ranges
.empty()) return nullptr;
2111 // Reverse the bitlist.
2112 std::reverse(Ranges
.begin(), Ranges
.end());
2113 Result
= Result
->convertInitializerBitRange(Ranges
);
2115 Error(CurlyLoc
, "Invalid bit range for value");
2120 if (Lex
.getCode() != tgtok::r_brace
) {
2121 TokError("expected '}' at end of bit range list");
2127 case tgtok::l_square
: {
2128 SMLoc SquareLoc
= Lex
.getLoc();
2129 Lex
.Lex(); // eat the '['
2130 SmallVector
<unsigned, 16> Ranges
;
2131 ParseRangeList(Ranges
);
2132 if (Ranges
.empty()) return nullptr;
2134 Result
= Result
->convertInitListSlice(Ranges
);
2136 Error(SquareLoc
, "Invalid range for list slice");
2141 if (Lex
.getCode() != tgtok::r_square
) {
2142 TokError("expected ']' at end of list slice");
2148 case tgtok::period
: {
2149 if (Lex
.Lex() != tgtok::Id
) { // eat the .
2150 TokError("expected field identifier after '.'");
2153 StringInit
*FieldName
= StringInit::get(Lex
.getCurStrVal());
2154 if (!Result
->getFieldType(FieldName
)) {
2155 TokError("Cannot access field '" + Lex
.getCurStrVal() + "' of value '" +
2156 Result
->getAsString() + "'");
2159 Result
= FieldInit::get(Result
, FieldName
)->Fold(CurRec
);
2160 Lex
.Lex(); // eat field name
2165 SMLoc PasteLoc
= Lex
.getLoc();
2166 TypedInit
*LHS
= dyn_cast
<TypedInit
>(Result
);
2168 Error(PasteLoc
, "LHS of paste is not typed!");
2172 // Check if it's a 'listA # listB'
2173 if (isa
<ListRecTy
>(LHS
->getType())) {
2174 Lex
.Lex(); // Eat the '#'.
2176 switch (Lex
.getCode()) {
2179 case tgtok::l_brace
:
2180 Result
= LHS
; // trailing paste, ignore.
2183 Init
*RHSResult
= ParseValue(CurRec
, ItemType
, ParseNameMode
);
2184 Result
= BinOpInit::getListConcat(LHS
, RHSResult
);
2189 // Create a !strconcat() operation, first casting each operand to
2190 // a string if necessary.
2191 if (LHS
->getType() != StringRecTy::get()) {
2192 auto CastLHS
= dyn_cast
<TypedInit
>(
2193 UnOpInit::get(UnOpInit::CAST
, LHS
, StringRecTy::get())
2197 Twine("can't cast '") + LHS
->getAsString() + "' to string");
2203 TypedInit
*RHS
= nullptr;
2205 Lex
.Lex(); // Eat the '#'.
2206 switch (Lex
.getCode()) {
2209 case tgtok::l_brace
:
2210 // These are all of the tokens that can begin an object body.
2211 // Some of these can also begin values but we disallow those cases
2212 // because they are unlikely to be useful.
2214 // Trailing paste, concat with an empty string.
2215 RHS
= StringInit::get("");
2219 Init
*RHSResult
= ParseValue(CurRec
, nullptr, ParseNameMode
);
2220 RHS
= dyn_cast
<TypedInit
>(RHSResult
);
2222 Error(PasteLoc
, "RHS of paste is not typed!");
2226 if (RHS
->getType() != StringRecTy::get()) {
2227 auto CastRHS
= dyn_cast
<TypedInit
>(
2228 UnOpInit::get(UnOpInit::CAST
, RHS
, StringRecTy::get())
2232 Twine("can't cast '") + RHS
->getAsString() + "' to string");
2241 Result
= BinOpInit::getStrConcat(LHS
, RHS
);
2247 /// ParseDagArgList - Parse the argument list for a dag literal expression.
2249 /// DagArg ::= Value (':' VARNAME)?
2250 /// DagArg ::= VARNAME
2251 /// DagArgList ::= DagArg
2252 /// DagArgList ::= DagArgList ',' DagArg
2253 void TGParser::ParseDagArgList(
2254 SmallVectorImpl
<std::pair
<llvm::Init
*, StringInit
*>> &Result
,
2258 // DagArg ::= VARNAME
2259 if (Lex
.getCode() == tgtok::VarName
) {
2260 // A missing value is treated like '?'.
2261 StringInit
*VarName
= StringInit::get(Lex
.getCurStrVal());
2262 Result
.emplace_back(UnsetInit::get(), VarName
);
2265 // DagArg ::= Value (':' VARNAME)?
2266 Init
*Val
= ParseValue(CurRec
);
2272 // If the variable name is present, add it.
2273 StringInit
*VarName
= nullptr;
2274 if (Lex
.getCode() == tgtok::colon
) {
2275 if (Lex
.Lex() != tgtok::VarName
) { // eat the ':'
2276 TokError("expected variable name in dag literal");
2280 VarName
= StringInit::get(Lex
.getCurStrVal());
2281 Lex
.Lex(); // eat the VarName.
2284 Result
.push_back(std::make_pair(Val
, VarName
));
2286 if (Lex
.getCode() != tgtok::comma
) break;
2287 Lex
.Lex(); // eat the ','
2291 /// ParseValueList - Parse a comma separated list of values, returning them as a
2292 /// vector. Note that this always expects to be able to parse at least one
2293 /// value. It returns an empty list if this is not possible.
2295 /// ValueList ::= Value (',' Value)
2297 void TGParser::ParseValueList(SmallVectorImpl
<Init
*> &Result
, Record
*CurRec
,
2298 Record
*ArgsRec
, RecTy
*EltTy
) {
2299 RecTy
*ItemType
= EltTy
;
2300 unsigned int ArgN
= 0;
2301 if (ArgsRec
&& !EltTy
) {
2302 ArrayRef
<Init
*> TArgs
= ArgsRec
->getTemplateArgs();
2303 if (TArgs
.empty()) {
2304 TokError("template argument provided to non-template class");
2308 const RecordVal
*RV
= ArgsRec
->getValue(TArgs
[ArgN
]);
2310 errs() << "Cannot find template arg " << ArgN
<< " (" << TArgs
[ArgN
]
2313 assert(RV
&& "Template argument record not found??");
2314 ItemType
= RV
->getType();
2317 Result
.push_back(ParseValue(CurRec
, ItemType
));
2318 if (!Result
.back()) {
2323 while (Lex
.getCode() == tgtok::comma
) {
2324 Lex
.Lex(); // Eat the comma
2326 // ignore trailing comma for lists
2327 if (Lex
.getCode() == tgtok::r_square
)
2330 if (ArgsRec
&& !EltTy
) {
2331 ArrayRef
<Init
*> TArgs
= ArgsRec
->getTemplateArgs();
2332 if (ArgN
>= TArgs
.size()) {
2333 TokError("too many template arguments");
2337 const RecordVal
*RV
= ArgsRec
->getValue(TArgs
[ArgN
]);
2338 assert(RV
&& "Template argument record not found??");
2339 ItemType
= RV
->getType();
2342 Result
.push_back(ParseValue(CurRec
, ItemType
));
2343 if (!Result
.back()) {
2350 /// ParseDeclaration - Read a declaration, returning the name of field ID, or an
2351 /// empty string on error. This can happen in a number of different context's,
2352 /// including within a def or in the template args for a def (which which case
2353 /// CurRec will be non-null) and within the template args for a multiclass (in
2354 /// which case CurRec will be null, but CurMultiClass will be set). This can
2355 /// also happen within a def that is within a multiclass, which will set both
2356 /// CurRec and CurMultiClass.
2358 /// Declaration ::= FIELD? Type ID ('=' Value)?
2360 Init
*TGParser::ParseDeclaration(Record
*CurRec
,
2361 bool ParsingTemplateArgs
) {
2362 // Read the field prefix if present.
2363 bool HasField
= Lex
.getCode() == tgtok::Field
;
2364 if (HasField
) Lex
.Lex();
2366 RecTy
*Type
= ParseType();
2367 if (!Type
) return nullptr;
2369 if (Lex
.getCode() != tgtok::Id
) {
2370 TokError("Expected identifier in declaration");
2374 std::string Str
= Lex
.getCurStrVal();
2375 if (Str
== "NAME") {
2376 TokError("'" + Str
+ "' is a reserved variable name");
2380 SMLoc IdLoc
= Lex
.getLoc();
2381 Init
*DeclName
= StringInit::get(Str
);
2384 if (ParsingTemplateArgs
) {
2386 DeclName
= QualifyName(*CurRec
, CurMultiClass
, DeclName
, ":");
2388 assert(CurMultiClass
);
2390 DeclName
= QualifyName(CurMultiClass
->Rec
, CurMultiClass
, DeclName
,
2395 if (AddValue(CurRec
, IdLoc
, RecordVal(DeclName
, Type
, HasField
)))
2398 // If a value is present, parse it.
2399 if (Lex
.getCode() == tgtok::equal
) {
2401 SMLoc ValLoc
= Lex
.getLoc();
2402 Init
*Val
= ParseValue(CurRec
, Type
);
2404 SetValue(CurRec
, ValLoc
, DeclName
, None
, Val
))
2405 // Return the name, even if an error is thrown. This is so that we can
2406 // continue to make some progress, even without the value having been
2414 /// ParseForeachDeclaration - Read a foreach declaration, returning
2415 /// the name of the declared object or a NULL Init on error. Return
2416 /// the name of the parsed initializer list through ForeachListName.
2418 /// ForeachDeclaration ::= ID '=' '{' RangeList '}'
2419 /// ForeachDeclaration ::= ID '=' RangePiece
2420 /// ForeachDeclaration ::= ID '=' Value
2422 VarInit
*TGParser::ParseForeachDeclaration(Init
*&ForeachListValue
) {
2423 if (Lex
.getCode() != tgtok::Id
) {
2424 TokError("Expected identifier in foreach declaration");
2428 Init
*DeclName
= StringInit::get(Lex
.getCurStrVal());
2431 // If a value is present, parse it.
2432 if (Lex
.getCode() != tgtok::equal
) {
2433 TokError("Expected '=' in foreach declaration");
2436 Lex
.Lex(); // Eat the '='
2438 RecTy
*IterType
= nullptr;
2439 SmallVector
<unsigned, 16> Ranges
;
2441 switch (Lex
.getCode()) {
2442 case tgtok::IntVal
: { // RangePiece.
2443 if (ParseRangePiece(Ranges
))
2448 case tgtok::l_brace
: { // '{' RangeList '}'
2449 Lex
.Lex(); // eat the '{'
2450 ParseRangeList(Ranges
);
2451 if (Lex
.getCode() != tgtok::r_brace
) {
2452 TokError("expected '}' at end of bit range list");
2460 SMLoc ValueLoc
= Lex
.getLoc();
2461 Init
*I
= ParseValue(nullptr);
2462 TypedInit
*TI
= dyn_cast
<TypedInit
>(I
);
2463 if (!TI
|| !isa
<ListRecTy
>(TI
->getType())) {
2466 Type
= (Twine("' of type '") + TI
->getType()->getAsString()).str();
2467 Error(ValueLoc
, "expected a list, got '" + I
->getAsString() + Type
+ "'");
2469 PrintNote({}, "references to multiclass template arguments cannot be "
2470 "resolved at this time");
2473 ForeachListValue
= I
;
2474 IterType
= cast
<ListRecTy
>(TI
->getType())->getElementType();
2479 if (!Ranges
.empty()) {
2480 assert(!IterType
&& "Type already initialized?");
2481 IterType
= IntRecTy::get();
2482 std::vector
<Init
*> Values
;
2483 for (unsigned R
: Ranges
)
2484 Values
.push_back(IntInit::get(R
));
2485 ForeachListValue
= ListInit::get(Values
, IterType
);
2491 return VarInit::get(DeclName
, IterType
);
2494 /// ParseTemplateArgList - Read a template argument list, which is a non-empty
2495 /// sequence of template-declarations in <>'s. If CurRec is non-null, these are
2496 /// template args for a def, which may or may not be in a multiclass. If null,
2497 /// these are the template args for a multiclass.
2499 /// TemplateArgList ::= '<' Declaration (',' Declaration)* '>'
2501 bool TGParser::ParseTemplateArgList(Record
*CurRec
) {
2502 assert(Lex
.getCode() == tgtok::less
&& "Not a template arg list!");
2503 Lex
.Lex(); // eat the '<'
2505 Record
*TheRecToAddTo
= CurRec
? CurRec
: &CurMultiClass
->Rec
;
2507 // Read the first declaration.
2508 Init
*TemplArg
= ParseDeclaration(CurRec
, true/*templateargs*/);
2512 TheRecToAddTo
->addTemplateArg(TemplArg
);
2514 while (Lex
.getCode() == tgtok::comma
) {
2515 Lex
.Lex(); // eat the ','
2517 // Read the following declarations.
2518 SMLoc Loc
= Lex
.getLoc();
2519 TemplArg
= ParseDeclaration(CurRec
, true/*templateargs*/);
2523 if (TheRecToAddTo
->isTemplateArg(TemplArg
))
2524 return Error(Loc
, "template argument with the same name has already been "
2527 TheRecToAddTo
->addTemplateArg(TemplArg
);
2530 if (Lex
.getCode() != tgtok::greater
)
2531 return TokError("expected '>' at end of template argument list");
2532 Lex
.Lex(); // eat the '>'.
2536 /// ParseBodyItem - Parse a single item at within the body of a def or class.
2538 /// BodyItem ::= Declaration ';'
2539 /// BodyItem ::= LET ID OptionalBitList '=' Value ';'
2540 bool TGParser::ParseBodyItem(Record
*CurRec
) {
2541 if (Lex
.getCode() != tgtok::Let
) {
2542 if (!ParseDeclaration(CurRec
, false))
2545 if (Lex
.getCode() != tgtok::semi
)
2546 return TokError("expected ';' after declaration");
2551 // LET ID OptionalRangeList '=' Value ';'
2552 if (Lex
.Lex() != tgtok::Id
)
2553 return TokError("expected field identifier after let");
2555 SMLoc IdLoc
= Lex
.getLoc();
2556 StringInit
*FieldName
= StringInit::get(Lex
.getCurStrVal());
2557 Lex
.Lex(); // eat the field name.
2559 SmallVector
<unsigned, 16> BitList
;
2560 if (ParseOptionalBitList(BitList
))
2562 std::reverse(BitList
.begin(), BitList
.end());
2564 if (Lex
.getCode() != tgtok::equal
)
2565 return TokError("expected '=' in let expression");
2566 Lex
.Lex(); // eat the '='.
2568 RecordVal
*Field
= CurRec
->getValue(FieldName
);
2570 return TokError("Value '" + FieldName
->getValue() + "' unknown!");
2572 RecTy
*Type
= Field
->getType();
2574 Init
*Val
= ParseValue(CurRec
, Type
);
2575 if (!Val
) return true;
2577 if (Lex
.getCode() != tgtok::semi
)
2578 return TokError("expected ';' after let expression");
2581 return SetValue(CurRec
, IdLoc
, FieldName
, BitList
, Val
);
2584 /// ParseBody - Read the body of a class or def. Return true on error, false on
2588 /// Body ::= '{' BodyList '}'
2589 /// BodyList BodyItem*
2591 bool TGParser::ParseBody(Record
*CurRec
) {
2592 // If this is a null definition, just eat the semi and return.
2593 if (Lex
.getCode() == tgtok::semi
) {
2598 if (Lex
.getCode() != tgtok::l_brace
)
2599 return TokError("Expected ';' or '{' to start body");
2603 while (Lex
.getCode() != tgtok::r_brace
)
2604 if (ParseBodyItem(CurRec
))
2612 /// Apply the current let bindings to \a CurRec.
2613 /// \returns true on error, false otherwise.
2614 bool TGParser::ApplyLetStack(Record
*CurRec
) {
2615 for (SmallVectorImpl
<LetRecord
> &LetInfo
: LetStack
)
2616 for (LetRecord
&LR
: LetInfo
)
2617 if (SetValue(CurRec
, LR
.Loc
, LR
.Name
, LR
.Bits
, LR
.Value
))
2622 bool TGParser::ApplyLetStack(RecordsEntry
&Entry
) {
2624 return ApplyLetStack(Entry
.Rec
.get());
2626 for (auto &E
: Entry
.Loop
->Entries
) {
2627 if (ApplyLetStack(E
))
2634 /// ParseObjectBody - Parse the body of a def or class. This consists of an
2635 /// optional ClassList followed by a Body. CurRec is the current def or class
2636 /// that is being parsed.
2638 /// ObjectBody ::= BaseClassList Body
2639 /// BaseClassList ::= /*empty*/
2640 /// BaseClassList ::= ':' BaseClassListNE
2641 /// BaseClassListNE ::= SubClassRef (',' SubClassRef)*
2643 bool TGParser::ParseObjectBody(Record
*CurRec
) {
2644 // If there is a baseclass list, read it.
2645 if (Lex
.getCode() == tgtok::colon
) {
2648 // Read all of the subclasses.
2649 SubClassReference SubClass
= ParseSubClassReference(CurRec
, false);
2652 if (!SubClass
.Rec
) return true;
2655 if (AddSubClass(CurRec
, SubClass
))
2658 if (Lex
.getCode() != tgtok::comma
) break;
2659 Lex
.Lex(); // eat ','.
2660 SubClass
= ParseSubClassReference(CurRec
, false);
2664 if (ApplyLetStack(CurRec
))
2667 return ParseBody(CurRec
);
2670 /// ParseDef - Parse and return a top level or multiclass def, return the record
2671 /// corresponding to it. This returns null on error.
2673 /// DefInst ::= DEF ObjectName ObjectBody
2675 bool TGParser::ParseDef(MultiClass
*CurMultiClass
) {
2676 SMLoc DefLoc
= Lex
.getLoc();
2677 assert(Lex
.getCode() == tgtok::Def
&& "Unknown tok");
2678 Lex
.Lex(); // Eat the 'def' token.
2680 // Parse ObjectName and make a record for it.
2681 std::unique_ptr
<Record
> CurRec
;
2682 Init
*Name
= ParseObjectName(CurMultiClass
);
2686 if (isa
<UnsetInit
>(Name
))
2687 CurRec
= make_unique
<Record
>(Records
.getNewAnonymousName(), DefLoc
, Records
,
2688 /*Anonymous=*/true);
2690 CurRec
= make_unique
<Record
>(Name
, DefLoc
, Records
);
2692 if (ParseObjectBody(CurRec
.get()))
2695 return addEntry(std::move(CurRec
));
2698 /// ParseDefset - Parse a defset statement.
2700 /// Defset ::= DEFSET Type Id '=' '{' ObjectList '}'
2702 bool TGParser::ParseDefset() {
2703 assert(Lex
.getCode() == tgtok::Defset
);
2704 Lex
.Lex(); // Eat the 'defset' token
2706 DefsetRecord Defset
;
2707 Defset
.Loc
= Lex
.getLoc();
2708 RecTy
*Type
= ParseType();
2711 if (!isa
<ListRecTy
>(Type
))
2712 return Error(Defset
.Loc
, "expected list type");
2713 Defset
.EltTy
= cast
<ListRecTy
>(Type
)->getElementType();
2715 if (Lex
.getCode() != tgtok::Id
)
2716 return TokError("expected identifier");
2717 StringInit
*DeclName
= StringInit::get(Lex
.getCurStrVal());
2718 if (Records
.getGlobal(DeclName
->getValue()))
2719 return TokError("def or global variable of this name already exists");
2721 if (Lex
.Lex() != tgtok::equal
) // Eat the identifier
2722 return TokError("expected '='");
2723 if (Lex
.Lex() != tgtok::l_brace
) // Eat the '='
2724 return TokError("expected '{'");
2725 SMLoc BraceLoc
= Lex
.getLoc();
2726 Lex
.Lex(); // Eat the '{'
2728 Defsets
.push_back(&Defset
);
2729 bool Err
= ParseObjectList(nullptr);
2734 if (Lex
.getCode() != tgtok::r_brace
) {
2735 TokError("expected '}' at end of defset");
2736 return Error(BraceLoc
, "to match this '{'");
2738 Lex
.Lex(); // Eat the '}'
2740 Records
.addExtraGlobal(DeclName
->getValue(),
2741 ListInit::get(Defset
.Elements
, Defset
.EltTy
));
2745 /// ParseForeach - Parse a for statement. Return the record corresponding
2746 /// to it. This returns true on error.
2748 /// Foreach ::= FOREACH Declaration IN '{ ObjectList '}'
2749 /// Foreach ::= FOREACH Declaration IN Object
2751 bool TGParser::ParseForeach(MultiClass
*CurMultiClass
) {
2752 SMLoc Loc
= Lex
.getLoc();
2753 assert(Lex
.getCode() == tgtok::Foreach
&& "Unknown tok");
2754 Lex
.Lex(); // Eat the 'for' token.
2756 // Make a temporary object to record items associated with the for
2758 Init
*ListValue
= nullptr;
2759 VarInit
*IterName
= ParseForeachDeclaration(ListValue
);
2761 return TokError("expected declaration in for");
2763 if (Lex
.getCode() != tgtok::In
)
2764 return TokError("Unknown tok");
2765 Lex
.Lex(); // Eat the in
2767 // Create a loop object and remember it.
2768 Loops
.push_back(llvm::make_unique
<ForeachLoop
>(Loc
, IterName
, ListValue
));
2770 if (Lex
.getCode() != tgtok::l_brace
) {
2771 // FOREACH Declaration IN Object
2772 if (ParseObject(CurMultiClass
))
2775 SMLoc BraceLoc
= Lex
.getLoc();
2776 // Otherwise, this is a group foreach.
2777 Lex
.Lex(); // eat the '{'.
2779 // Parse the object list.
2780 if (ParseObjectList(CurMultiClass
))
2783 if (Lex
.getCode() != tgtok::r_brace
) {
2784 TokError("expected '}' at end of foreach command");
2785 return Error(BraceLoc
, "to match this '{'");
2787 Lex
.Lex(); // Eat the }
2790 // Resolve the loop or store it for later resolution.
2791 std::unique_ptr
<ForeachLoop
> Loop
= std::move(Loops
.back());
2794 return addEntry(std::move(Loop
));
2797 /// ParseClass - Parse a tblgen class definition.
2799 /// ClassInst ::= CLASS ID TemplateArgList? ObjectBody
2801 bool TGParser::ParseClass() {
2802 assert(Lex
.getCode() == tgtok::Class
&& "Unexpected token!");
2805 if (Lex
.getCode() != tgtok::Id
)
2806 return TokError("expected class name after 'class' keyword");
2808 Record
*CurRec
= Records
.getClass(Lex
.getCurStrVal());
2810 // If the body was previously defined, this is an error.
2811 if (!CurRec
->getValues().empty() ||
2812 !CurRec
->getSuperClasses().empty() ||
2813 !CurRec
->getTemplateArgs().empty())
2814 return TokError("Class '" + CurRec
->getNameInitAsString() +
2815 "' already defined");
2817 // If this is the first reference to this class, create and add it.
2819 llvm::make_unique
<Record
>(Lex
.getCurStrVal(), Lex
.getLoc(), Records
,
2821 CurRec
= NewRec
.get();
2822 Records
.addClass(std::move(NewRec
));
2824 Lex
.Lex(); // eat the name.
2826 // If there are template args, parse them.
2827 if (Lex
.getCode() == tgtok::less
)
2828 if (ParseTemplateArgList(CurRec
))
2831 return ParseObjectBody(CurRec
);
2834 /// ParseLetList - Parse a non-empty list of assignment expressions into a list
2837 /// LetList ::= LetItem (',' LetItem)*
2838 /// LetItem ::= ID OptionalRangeList '=' Value
2840 void TGParser::ParseLetList(SmallVectorImpl
<LetRecord
> &Result
) {
2842 if (Lex
.getCode() != tgtok::Id
) {
2843 TokError("expected identifier in let definition");
2848 StringInit
*Name
= StringInit::get(Lex
.getCurStrVal());
2849 SMLoc NameLoc
= Lex
.getLoc();
2850 Lex
.Lex(); // Eat the identifier.
2852 // Check for an optional RangeList.
2853 SmallVector
<unsigned, 16> Bits
;
2854 if (ParseOptionalRangeList(Bits
)) {
2858 std::reverse(Bits
.begin(), Bits
.end());
2860 if (Lex
.getCode() != tgtok::equal
) {
2861 TokError("expected '=' in let expression");
2865 Lex
.Lex(); // eat the '='.
2867 Init
*Val
= ParseValue(nullptr);
2873 // Now that we have everything, add the record.
2874 Result
.emplace_back(Name
, Bits
, Val
, NameLoc
);
2876 if (Lex
.getCode() != tgtok::comma
)
2878 Lex
.Lex(); // eat the comma.
2882 /// ParseTopLevelLet - Parse a 'let' at top level. This can be a couple of
2883 /// different related productions. This works inside multiclasses too.
2885 /// Object ::= LET LetList IN '{' ObjectList '}'
2886 /// Object ::= LET LetList IN Object
2888 bool TGParser::ParseTopLevelLet(MultiClass
*CurMultiClass
) {
2889 assert(Lex
.getCode() == tgtok::Let
&& "Unexpected token");
2892 // Add this entry to the let stack.
2893 SmallVector
<LetRecord
, 8> LetInfo
;
2894 ParseLetList(LetInfo
);
2895 if (LetInfo
.empty()) return true;
2896 LetStack
.push_back(std::move(LetInfo
));
2898 if (Lex
.getCode() != tgtok::In
)
2899 return TokError("expected 'in' at end of top-level 'let'");
2902 // If this is a scalar let, just handle it now
2903 if (Lex
.getCode() != tgtok::l_brace
) {
2904 // LET LetList IN Object
2905 if (ParseObject(CurMultiClass
))
2907 } else { // Object ::= LETCommand '{' ObjectList '}'
2908 SMLoc BraceLoc
= Lex
.getLoc();
2909 // Otherwise, this is a group let.
2910 Lex
.Lex(); // eat the '{'.
2912 // Parse the object list.
2913 if (ParseObjectList(CurMultiClass
))
2916 if (Lex
.getCode() != tgtok::r_brace
) {
2917 TokError("expected '}' at end of top level let command");
2918 return Error(BraceLoc
, "to match this '{'");
2923 // Outside this let scope, this let block is not active.
2924 LetStack
.pop_back();
2928 /// ParseMultiClass - Parse a multiclass definition.
2930 /// MultiClassInst ::= MULTICLASS ID TemplateArgList?
2931 /// ':' BaseMultiClassList '{' MultiClassObject+ '}'
2932 /// MultiClassObject ::= DefInst
2933 /// MultiClassObject ::= MultiClassInst
2934 /// MultiClassObject ::= DefMInst
2935 /// MultiClassObject ::= LETCommand '{' ObjectList '}'
2936 /// MultiClassObject ::= LETCommand Object
2938 bool TGParser::ParseMultiClass() {
2939 assert(Lex
.getCode() == tgtok::MultiClass
&& "Unexpected token");
2940 Lex
.Lex(); // Eat the multiclass token.
2942 if (Lex
.getCode() != tgtok::Id
)
2943 return TokError("expected identifier after multiclass for name");
2944 std::string Name
= Lex
.getCurStrVal();
2947 MultiClasses
.insert(std::make_pair(Name
,
2948 llvm::make_unique
<MultiClass
>(Name
, Lex
.getLoc(),Records
)));
2951 return TokError("multiclass '" + Name
+ "' already defined");
2953 CurMultiClass
= Result
.first
->second
.get();
2954 Lex
.Lex(); // Eat the identifier.
2956 // If there are template args, parse them.
2957 if (Lex
.getCode() == tgtok::less
)
2958 if (ParseTemplateArgList(nullptr))
2961 bool inherits
= false;
2963 // If there are submulticlasses, parse them.
2964 if (Lex
.getCode() == tgtok::colon
) {
2969 // Read all of the submulticlasses.
2970 SubMultiClassReference SubMultiClass
=
2971 ParseSubMultiClassReference(CurMultiClass
);
2974 if (!SubMultiClass
.MC
) return true;
2977 if (AddSubMultiClass(CurMultiClass
, SubMultiClass
))
2980 if (Lex
.getCode() != tgtok::comma
) break;
2981 Lex
.Lex(); // eat ','.
2982 SubMultiClass
= ParseSubMultiClassReference(CurMultiClass
);
2986 if (Lex
.getCode() != tgtok::l_brace
) {
2988 return TokError("expected '{' in multiclass definition");
2989 if (Lex
.getCode() != tgtok::semi
)
2990 return TokError("expected ';' in multiclass definition");
2991 Lex
.Lex(); // eat the ';'.
2993 if (Lex
.Lex() == tgtok::r_brace
) // eat the '{'.
2994 return TokError("multiclass must contain at least one def");
2996 while (Lex
.getCode() != tgtok::r_brace
) {
2997 switch (Lex
.getCode()) {
2999 return TokError("expected 'let', 'def', 'defm' or 'foreach' in "
3004 case tgtok::Foreach
:
3005 if (ParseObject(CurMultiClass
))
3010 Lex
.Lex(); // eat the '}'.
3013 CurMultiClass
= nullptr;
3017 /// ParseDefm - Parse the instantiation of a multiclass.
3019 /// DefMInst ::= DEFM ID ':' DefmSubClassRef ';'
3021 bool TGParser::ParseDefm(MultiClass
*CurMultiClass
) {
3022 assert(Lex
.getCode() == tgtok::Defm
&& "Unexpected token!");
3023 Lex
.Lex(); // eat the defm
3025 Init
*DefmName
= ParseObjectName(CurMultiClass
);
3028 if (isa
<UnsetInit
>(DefmName
)) {
3029 DefmName
= Records
.getNewAnonymousName();
3031 DefmName
= BinOpInit::getStrConcat(
3032 VarInit::get(QualifiedNameOfImplicitName(CurMultiClass
),
3033 StringRecTy::get()),
3037 if (Lex
.getCode() != tgtok::colon
)
3038 return TokError("expected ':' after defm identifier");
3040 // Keep track of the new generated record definitions.
3041 std::vector
<RecordsEntry
> NewEntries
;
3043 // This record also inherits from a regular class (non-multiclass)?
3044 bool InheritFromClass
= false;
3049 SMLoc SubClassLoc
= Lex
.getLoc();
3050 SubClassReference Ref
= ParseSubClassReference(nullptr, true);
3053 if (!Ref
.Rec
) return true;
3055 // To instantiate a multiclass, we need to first get the multiclass, then
3056 // instantiate each def contained in the multiclass with the SubClassRef
3057 // template parameters.
3058 MultiClass
*MC
= MultiClasses
[Ref
.Rec
->getName()].get();
3059 assert(MC
&& "Didn't lookup multiclass correctly?");
3060 ArrayRef
<Init
*> TemplateVals
= Ref
.TemplateArgs
;
3062 // Verify that the correct number of template arguments were specified.
3063 ArrayRef
<Init
*> TArgs
= MC
->Rec
.getTemplateArgs();
3064 if (TArgs
.size() < TemplateVals
.size())
3065 return Error(SubClassLoc
,
3066 "more template args specified than multiclass expects");
3069 for (unsigned i
= 0, e
= TArgs
.size(); i
!= e
; ++i
) {
3070 if (i
< TemplateVals
.size()) {
3071 Substs
.emplace_back(TArgs
[i
], TemplateVals
[i
]);
3073 Init
*Default
= MC
->Rec
.getValue(TArgs
[i
])->getValue();
3074 if (!Default
->isComplete()) {
3075 return Error(SubClassLoc
,
3076 "value not specified for template argument #" +
3077 Twine(i
) + " (" + TArgs
[i
]->getAsUnquotedString() +
3078 ") of multiclass '" + MC
->Rec
.getNameInitAsString() +
3081 Substs
.emplace_back(TArgs
[i
], Default
);
3085 Substs
.emplace_back(QualifiedNameOfImplicitName(MC
), DefmName
);
3087 if (resolve(MC
->Entries
, Substs
, CurMultiClass
== nullptr, &NewEntries
,
3091 if (Lex
.getCode() != tgtok::comma
) break;
3092 Lex
.Lex(); // eat ','.
3094 if (Lex
.getCode() != tgtok::Id
)
3095 return TokError("expected identifier");
3097 SubClassLoc
= Lex
.getLoc();
3099 // A defm can inherit from regular classes (non-multiclass) as
3100 // long as they come in the end of the inheritance list.
3101 InheritFromClass
= (Records
.getClass(Lex
.getCurStrVal()) != nullptr);
3103 if (InheritFromClass
)
3106 Ref
= ParseSubClassReference(nullptr, true);
3109 if (InheritFromClass
) {
3110 // Process all the classes to inherit as if they were part of a
3111 // regular 'def' and inherit all record values.
3112 SubClassReference SubClass
= ParseSubClassReference(nullptr, false);
3115 if (!SubClass
.Rec
) return true;
3117 // Get the expanded definition prototypes and teach them about
3118 // the record values the current class to inherit has
3119 for (auto &E
: NewEntries
) {
3121 if (AddSubClass(E
, SubClass
))
3125 if (Lex
.getCode() != tgtok::comma
) break;
3126 Lex
.Lex(); // eat ','.
3127 SubClass
= ParseSubClassReference(nullptr, false);
3131 for (auto &E
: NewEntries
) {
3132 if (ApplyLetStack(E
))
3135 addEntry(std::move(E
));
3138 if (Lex
.getCode() != tgtok::semi
)
3139 return TokError("expected ';' at end of defm");
3146 /// Object ::= ClassInst
3147 /// Object ::= DefInst
3148 /// Object ::= MultiClassInst
3149 /// Object ::= DefMInst
3150 /// Object ::= LETCommand '{' ObjectList '}'
3151 /// Object ::= LETCommand Object
3152 bool TGParser::ParseObject(MultiClass
*MC
) {
3153 switch (Lex
.getCode()) {
3155 return TokError("Expected class, def, defm, defset, multiclass, let or "
3157 case tgtok::Let
: return ParseTopLevelLet(MC
);
3158 case tgtok::Def
: return ParseDef(MC
);
3159 case tgtok::Foreach
: return ParseForeach(MC
);
3160 case tgtok::Defm
: return ParseDefm(MC
);
3163 return TokError("defset is not allowed inside multiclass");
3164 return ParseDefset();
3167 return TokError("class is not allowed inside multiclass");
3169 return TokError("class is not allowed inside foreach loop");
3170 return ParseClass();
3171 case tgtok::MultiClass
:
3173 return TokError("multiclass is not allowed inside foreach loop");
3174 return ParseMultiClass();
3179 /// ObjectList :== Object*
3180 bool TGParser::ParseObjectList(MultiClass
*MC
) {
3181 while (isObjectStart(Lex
.getCode())) {
3182 if (ParseObject(MC
))
3188 bool TGParser::ParseFile() {
3189 Lex
.Lex(); // Prime the lexer.
3190 if (ParseObjectList()) return true;
3192 // If we have unread input at the end of the file, report it.
3193 if (Lex
.getCode() == tgtok::Eof
)
3196 return TokError("Unexpected input at top level");
3199 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3200 LLVM_DUMP_METHOD
void RecordsEntry::dump() const {
3207 LLVM_DUMP_METHOD
void ForeachLoop::dump() const {
3208 errs() << "foreach " << IterVar
->getAsString() << " = "
3209 << ListValue
->getAsString() << " in {\n";
3211 for (const auto &E
: Entries
)
3217 LLVM_DUMP_METHOD
void MultiClass::dump() const {
3218 errs() << "Record:\n";
3221 errs() << "Defs:\n";
3222 for (const auto &E
: Entries
)