blob: dd3a0967d1440550a54f0d5b9aab04702142edca [file] [log] [blame]
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001//===- TGParser.cpp - Parser for TableGen Files ---------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner8adcd9f2007-12-29 20:37:13 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerf4127dd2007-11-22 20:49:04 +00007//
8//===----------------------------------------------------------------------===//
9//
10// Implement the Parser for TableGen.
11//
12//===----------------------------------------------------------------------===//
13
14#include "TGParser.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/SmallVector.h"
Chris Lattnerf4127dd2007-11-22 20:49:04 +000016#include "llvm/ADT/StringExtras.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/Support/CommandLine.h"
18#include "llvm/TableGen/Record.h"
Daniel Dunbar38a22bf2009-07-03 00:10:29 +000019#include <algorithm>
20#include <sstream>
Chris Lattnerf4127dd2007-11-22 20:49:04 +000021using namespace llvm;
22
23//===----------------------------------------------------------------------===//
24// Support Code for the Semantic Actions.
25//===----------------------------------------------------------------------===//
26
27namespace llvm {
Chris Lattnerf4127dd2007-11-22 20:49:04 +000028struct SubClassReference {
Jordan Rosef12e8a92013-01-10 18:50:11 +000029 SMRange RefRange;
Chris Lattnerf4127dd2007-11-22 20:49:04 +000030 Record *Rec;
David Greeneaf8ee2c2011-07-29 22:43:06 +000031 std::vector<Init*> TemplateArgs;
Craig Topper011817a2014-04-09 04:50:04 +000032 SubClassReference() : Rec(nullptr) {}
David Greene7049e792009-04-24 16:55:41 +000033
Craig Topper011817a2014-04-09 04:50:04 +000034 bool isInvalid() const { return Rec == nullptr; }
Chris Lattnerf4127dd2007-11-22 20:49:04 +000035};
David Greene753ed8f2009-04-22 16:42:54 +000036
37struct SubMultiClassReference {
Jordan Rosef12e8a92013-01-10 18:50:11 +000038 SMRange RefRange;
David Greene753ed8f2009-04-22 16:42:54 +000039 MultiClass *MC;
David Greeneaf8ee2c2011-07-29 22:43:06 +000040 std::vector<Init*> TemplateArgs;
Craig Topper011817a2014-04-09 04:50:04 +000041 SubMultiClassReference() : MC(nullptr) {}
Bob Wilson3d948162009-04-28 19:41:44 +000042
Craig Topper011817a2014-04-09 04:50:04 +000043 bool isInvalid() const { return MC == nullptr; }
David Greene7049e792009-04-24 16:55:41 +000044 void dump() const;
David Greene753ed8f2009-04-22 16:42:54 +000045};
David Greene7049e792009-04-24 16:55:41 +000046
47void SubMultiClassReference::dump() const {
Daniel Dunbar38a22bf2009-07-03 00:10:29 +000048 errs() << "Multiclass:\n";
Bob Wilson7248f862009-11-22 04:24:42 +000049
David Greene7049e792009-04-24 16:55:41 +000050 MC->dump();
Bob Wilson7248f862009-11-22 04:24:42 +000051
Daniel Dunbar38a22bf2009-07-03 00:10:29 +000052 errs() << "Template args:\n";
David Greeneaf8ee2c2011-07-29 22:43:06 +000053 for (std::vector<Init *>::const_iterator i = TemplateArgs.begin(),
David Greene7049e792009-04-24 16:55:41 +000054 iend = TemplateArgs.end();
55 i != iend;
56 ++i) {
57 (*i)->dump();
58 }
59}
60
Chris Lattnerf4127dd2007-11-22 20:49:04 +000061} // end namespace llvm
62
Chris Lattner526c8cb2009-06-21 03:39:35 +000063bool TGParser::AddValue(Record *CurRec, SMLoc Loc, const RecordVal &RV) {
Craig Topper011817a2014-04-09 04:50:04 +000064 if (!CurRec)
Chris Lattnerf4127dd2007-11-22 20:49:04 +000065 CurRec = &CurMultiClass->Rec;
Bob Wilson7248f862009-11-22 04:24:42 +000066
Jakob Stoklund Olesen9d1c5ee2012-01-13 03:16:35 +000067 if (RecordVal *ERV = CurRec->getValue(RV.getNameInit())) {
Chris Lattnerf4127dd2007-11-22 20:49:04 +000068 // The value already exists in the class, treat this as a set.
69 if (ERV->setValue(RV.getValue()))
70 return Error(Loc, "New definition of '" + RV.getName() + "' of type '" +
71 RV.getType()->getAsString() + "' is incompatible with " +
Bob Wilson7248f862009-11-22 04:24:42 +000072 "previous definition of type '" +
Chris Lattnerf4127dd2007-11-22 20:49:04 +000073 ERV->getType()->getAsString() + "'");
74 } else {
75 CurRec->addValue(RV);
76 }
77 return false;
78}
79
80/// SetValue -
81/// Return true on error, false on success.
David Greene3ca42122011-10-19 13:02:39 +000082bool TGParser::SetValue(Record *CurRec, SMLoc Loc, Init *ValName,
David Greeneaf8ee2c2011-07-29 22:43:06 +000083 const std::vector<unsigned> &BitList, Init *V) {
Chris Lattnerf4127dd2007-11-22 20:49:04 +000084 if (!V) return false;
85
Craig Topper011817a2014-04-09 04:50:04 +000086 if (!CurRec) CurRec = &CurMultiClass->Rec;
Chris Lattnerf4127dd2007-11-22 20:49:04 +000087
88 RecordVal *RV = CurRec->getValue(ValName);
Craig Topper011817a2014-04-09 04:50:04 +000089 if (!RV)
David Greene3ca42122011-10-19 13:02:39 +000090 return Error(Loc, "Value '" + ValName->getAsUnquotedString()
91 + "' unknown!");
Chris Lattnerf4127dd2007-11-22 20:49:04 +000092
93 // Do not allow assignments like 'X = X'. This will just cause infinite loops
94 // in the resolution machinery.
95 if (BitList.empty())
Sean Silvafb509ed2012-10-10 20:24:43 +000096 if (VarInit *VI = dyn_cast<VarInit>(V))
David Greene3ca42122011-10-19 13:02:39 +000097 if (VI->getNameInit() == ValName)
Chris Lattnerf4127dd2007-11-22 20:49:04 +000098 return false;
Bob Wilson7248f862009-11-22 04:24:42 +000099
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000100 // If we are assigning to a subset of the bits in the value... then we must be
101 // assigning to a field of BitsRecTy, which must have a BitsInit
102 // initializer.
103 //
104 if (!BitList.empty()) {
Sean Silvafb509ed2012-10-10 20:24:43 +0000105 BitsInit *CurVal = dyn_cast<BitsInit>(RV->getValue());
Craig Topper011817a2014-04-09 04:50:04 +0000106 if (!CurVal)
David Greene3ca42122011-10-19 13:02:39 +0000107 return Error(Loc, "Value '" + ValName->getAsUnquotedString()
108 + "' is not a bits type");
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000109
110 // Convert the incoming value to a bits type of the appropriate size...
David Greeneaf8ee2c2011-07-29 22:43:06 +0000111 Init *BI = V->convertInitializerTo(BitsRecTy::get(BitList.size()));
Craig Topper011817a2014-04-09 04:50:04 +0000112 if (!BI) {
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000113 return Error(Loc, "Initializer is not compatible with bit range");
114 }
Bob Wilson7248f862009-11-22 04:24:42 +0000115
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000116 // We should have a BitsInit type now.
Sean Silvafb509ed2012-10-10 20:24:43 +0000117 BitsInit *BInit = dyn_cast<BitsInit>(BI);
Craig Toppere73658d2014-04-28 04:05:08 +0000118 assert(BInit != nullptr);
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000119
David Greeneaf8ee2c2011-07-29 22:43:06 +0000120 SmallVector<Init *, 16> NewBits(CurVal->getNumBits());
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000121
122 // Loop over bits, assigning values as appropriate.
123 for (unsigned i = 0, e = BitList.size(); i != e; ++i) {
124 unsigned Bit = BitList[i];
David Greeneb3da8122011-07-29 19:07:00 +0000125 if (NewBits[Bit])
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000126 return Error(Loc, "Cannot set bit #" + utostr(Bit) + " of value '" +
David Greene3ca42122011-10-19 13:02:39 +0000127 ValName->getAsUnquotedString() + "' more than once");
David Greeneb3da8122011-07-29 19:07:00 +0000128 NewBits[Bit] = BInit->getBit(i);
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000129 }
130
131 for (unsigned i = 0, e = CurVal->getNumBits(); i != e; ++i)
Craig Topper011817a2014-04-09 04:50:04 +0000132 if (!NewBits[i])
David Greeneb3da8122011-07-29 19:07:00 +0000133 NewBits[i] = CurVal->getBit(i);
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000134
David Greenee32ebf22011-07-29 19:07:07 +0000135 V = BitsInit::get(NewBits);
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000136 }
137
138 if (RV->setValue(V))
David Greene3ca42122011-10-19 13:02:39 +0000139 return Error(Loc, "Value '" + ValName->getAsUnquotedString() + "' of type '"
140 + RV->getType()->getAsString() +
141 "' is incompatible with initializer '" + V->getAsString()
142 + "'");
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000143 return false;
144}
145
146/// AddSubClass - Add SubClass as a subclass to CurRec, resolving its template
147/// args as SubClass's template arguments.
Cedric Venetd1e179d2009-02-14 16:06:42 +0000148bool TGParser::AddSubClass(Record *CurRec, SubClassReference &SubClass) {
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000149 Record *SC = SubClass.Rec;
150 // Add all of the values in the subclass into the current class.
151 const std::vector<RecordVal> &Vals = SC->getValues();
152 for (unsigned i = 0, e = Vals.size(); i != e; ++i)
Jordan Rosef12e8a92013-01-10 18:50:11 +0000153 if (AddValue(CurRec, SubClass.RefRange.Start, Vals[i]))
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000154 return true;
155
David Greenedb10e692011-10-19 13:02:42 +0000156 const std::vector<Init *> &TArgs = SC->getTemplateArgs();
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000157
158 // Ensure that an appropriate number of template arguments are specified.
159 if (TArgs.size() < SubClass.TemplateArgs.size())
Jordan Rosef12e8a92013-01-10 18:50:11 +0000160 return Error(SubClass.RefRange.Start,
161 "More template args specified than expected");
Bob Wilson7248f862009-11-22 04:24:42 +0000162
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000163 // Loop over all of the template arguments, setting them to the specified
164 // value or leaving them as the default if necessary.
165 for (unsigned i = 0, e = TArgs.size(); i != e; ++i) {
166 if (i < SubClass.TemplateArgs.size()) {
167 // If a value is specified for this template arg, set it now.
Jordan Rosef12e8a92013-01-10 18:50:11 +0000168 if (SetValue(CurRec, SubClass.RefRange.Start, TArgs[i],
169 std::vector<unsigned>(), SubClass.TemplateArgs[i]))
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000170 return true;
Bob Wilson7248f862009-11-22 04:24:42 +0000171
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000172 // Resolve it next.
173 CurRec->resolveReferencesTo(CurRec->getValue(TArgs[i]));
Bob Wilson7248f862009-11-22 04:24:42 +0000174
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000175 // Now remove it.
176 CurRec->removeValue(TArgs[i]);
177
178 } else if (!CurRec->getValue(TArgs[i])->getValue()->isComplete()) {
Jordan Rosef12e8a92013-01-10 18:50:11 +0000179 return Error(SubClass.RefRange.Start,
180 "Value not specified for template argument #"
David Greenedb10e692011-10-19 13:02:42 +0000181 + utostr(i) + " (" + TArgs[i]->getAsUnquotedString()
182 + ") of subclass '" + SC->getNameInitAsString() + "'!");
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000183 }
184 }
185
186 // Since everything went well, we can now set the "superclass" list for the
187 // current record.
188 const std::vector<Record*> &SCs = SC->getSuperClasses();
Jordan Rosef12e8a92013-01-10 18:50:11 +0000189 ArrayRef<SMRange> SCRanges = SC->getSuperClassRanges();
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000190 for (unsigned i = 0, e = SCs.size(); i != e; ++i) {
191 if (CurRec->isSubClassOf(SCs[i]))
Jordan Rosef12e8a92013-01-10 18:50:11 +0000192 return Error(SubClass.RefRange.Start,
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000193 "Already subclass of '" + SCs[i]->getName() + "'!\n");
Jordan Rosef12e8a92013-01-10 18:50:11 +0000194 CurRec->addSuperClass(SCs[i], SCRanges[i]);
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000195 }
Bob Wilson7248f862009-11-22 04:24:42 +0000196
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000197 if (CurRec->isSubClassOf(SC))
Jordan Rosef12e8a92013-01-10 18:50:11 +0000198 return Error(SubClass.RefRange.Start,
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000199 "Already subclass of '" + SC->getName() + "'!\n");
Jordan Rosef12e8a92013-01-10 18:50:11 +0000200 CurRec->addSuperClass(SC, SubClass.RefRange);
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000201 return false;
202}
203
David Greene753ed8f2009-04-22 16:42:54 +0000204/// AddSubMultiClass - Add SubMultiClass as a subclass to
Bob Wilsonf71e6562009-04-30 18:26:19 +0000205/// CurMC, resolving its template args as SubMultiClass's
David Greene753ed8f2009-04-22 16:42:54 +0000206/// template arguments.
Bob Wilsonf71e6562009-04-30 18:26:19 +0000207bool TGParser::AddSubMultiClass(MultiClass *CurMC,
Bob Wilson92ab8202009-04-30 17:46:20 +0000208 SubMultiClassReference &SubMultiClass) {
David Greene753ed8f2009-04-22 16:42:54 +0000209 MultiClass *SMC = SubMultiClass.MC;
Bob Wilsonf71e6562009-04-30 18:26:19 +0000210 Record *CurRec = &CurMC->Rec;
David Greene753ed8f2009-04-22 16:42:54 +0000211
Bob Wilsonf71e6562009-04-30 18:26:19 +0000212 const std::vector<RecordVal> &MCVals = CurRec->getValues();
David Greene753ed8f2009-04-22 16:42:54 +0000213
214 // Add all of the values in the subclass into the current class.
215 const std::vector<RecordVal> &SMCVals = SMC->Rec.getValues();
216 for (unsigned i = 0, e = SMCVals.size(); i != e; ++i)
Jordan Rosef12e8a92013-01-10 18:50:11 +0000217 if (AddValue(CurRec, SubMultiClass.RefRange.Start, SMCVals[i]))
David Greene753ed8f2009-04-22 16:42:54 +0000218 return true;
219
Bob Wilsonf71e6562009-04-30 18:26:19 +0000220 int newDefStart = CurMC->DefPrototypes.size();
David Greene7049e792009-04-24 16:55:41 +0000221
David Greene753ed8f2009-04-22 16:42:54 +0000222 // Add all of the defs in the subclass into the current multiclass.
223 for (MultiClass::RecordVector::const_iterator i = SMC->DefPrototypes.begin(),
224 iend = SMC->DefPrototypes.end();
225 i != iend;
226 ++i) {
227 // Clone the def and add it to the current multiclass
228 Record *NewDef = new Record(**i);
229
230 // Add all of the values in the superclass into the current def.
231 for (unsigned i = 0, e = MCVals.size(); i != e; ++i)
Jordan Rosef12e8a92013-01-10 18:50:11 +0000232 if (AddValue(NewDef, SubMultiClass.RefRange.Start, MCVals[i]))
David Greene753ed8f2009-04-22 16:42:54 +0000233 return true;
234
Bob Wilsonf71e6562009-04-30 18:26:19 +0000235 CurMC->DefPrototypes.push_back(NewDef);
David Greene753ed8f2009-04-22 16:42:54 +0000236 }
Bob Wilson3d948162009-04-28 19:41:44 +0000237
David Greenedb10e692011-10-19 13:02:42 +0000238 const std::vector<Init *> &SMCTArgs = SMC->Rec.getTemplateArgs();
David Greene753ed8f2009-04-22 16:42:54 +0000239
David Greene7049e792009-04-24 16:55:41 +0000240 // Ensure that an appropriate number of template arguments are
241 // specified.
David Greene753ed8f2009-04-22 16:42:54 +0000242 if (SMCTArgs.size() < SubMultiClass.TemplateArgs.size())
Jordan Rosef12e8a92013-01-10 18:50:11 +0000243 return Error(SubMultiClass.RefRange.Start,
David Greene7049e792009-04-24 16:55:41 +0000244 "More template args specified than expected");
Bob Wilson3d948162009-04-28 19:41:44 +0000245
David Greene753ed8f2009-04-22 16:42:54 +0000246 // Loop over all of the template arguments, setting them to the specified
247 // value or leaving them as the default if necessary.
248 for (unsigned i = 0, e = SMCTArgs.size(); i != e; ++i) {
249 if (i < SubMultiClass.TemplateArgs.size()) {
David Greene7049e792009-04-24 16:55:41 +0000250 // If a value is specified for this template arg, set it in the
251 // superclass now.
Jordan Rosef12e8a92013-01-10 18:50:11 +0000252 if (SetValue(CurRec, SubMultiClass.RefRange.Start, SMCTArgs[i],
Bob Wilson3d948162009-04-28 19:41:44 +0000253 std::vector<unsigned>(),
David Greene753ed8f2009-04-22 16:42:54 +0000254 SubMultiClass.TemplateArgs[i]))
255 return true;
256
257 // Resolve it next.
258 CurRec->resolveReferencesTo(CurRec->getValue(SMCTArgs[i]));
Bob Wilson3d948162009-04-28 19:41:44 +0000259
David Greene753ed8f2009-04-22 16:42:54 +0000260 // Now remove it.
261 CurRec->removeValue(SMCTArgs[i]);
262
David Greene7049e792009-04-24 16:55:41 +0000263 // If a value is specified for this template arg, set it in the
264 // new defs now.
265 for (MultiClass::RecordVector::iterator j =
Bob Wilsonf71e6562009-04-30 18:26:19 +0000266 CurMC->DefPrototypes.begin() + newDefStart,
267 jend = CurMC->DefPrototypes.end();
David Greene753ed8f2009-04-22 16:42:54 +0000268 j != jend;
269 ++j) {
270 Record *Def = *j;
271
Jordan Rosef12e8a92013-01-10 18:50:11 +0000272 if (SetValue(Def, SubMultiClass.RefRange.Start, SMCTArgs[i],
Bob Wilson3d948162009-04-28 19:41:44 +0000273 std::vector<unsigned>(),
David Greene753ed8f2009-04-22 16:42:54 +0000274 SubMultiClass.TemplateArgs[i]))
275 return true;
276
277 // Resolve it next.
278 Def->resolveReferencesTo(Def->getValue(SMCTArgs[i]));
279
280 // Now remove it
281 Def->removeValue(SMCTArgs[i]);
282 }
283 } else if (!CurRec->getValue(SMCTArgs[i])->getValue()->isComplete()) {
Jordan Rosef12e8a92013-01-10 18:50:11 +0000284 return Error(SubMultiClass.RefRange.Start,
David Greene7049e792009-04-24 16:55:41 +0000285 "Value not specified for template argument #"
David Greenedb10e692011-10-19 13:02:42 +0000286 + utostr(i) + " (" + SMCTArgs[i]->getAsUnquotedString()
287 + ") of subclass '" + SMC->Rec.getNameInitAsString() + "'!");
David Greene753ed8f2009-04-22 16:42:54 +0000288 }
289 }
290
291 return false;
292}
293
David Greenefb927af2012-02-22 16:09:41 +0000294/// ProcessForeachDefs - Given a record, apply all of the variable
295/// values in all surrounding foreach loops, creating new records for
296/// each combination of values.
Jakob Stoklund Olesen8a120b12012-05-24 22:17:33 +0000297bool TGParser::ProcessForeachDefs(Record *CurRec, SMLoc Loc) {
298 if (Loops.empty())
299 return false;
300
David Greenefb927af2012-02-22 16:09:41 +0000301 // We want to instantiate a new copy of CurRec for each combination
302 // of nested loop iterator values. We don't want top instantiate
303 // any copies until we have values for each loop iterator.
304 IterSet IterVals;
Jakob Stoklund Olesen8a120b12012-05-24 22:17:33 +0000305 return ProcessForeachDefs(CurRec, Loc, IterVals);
David Greenefb927af2012-02-22 16:09:41 +0000306}
307
308/// ProcessForeachDefs - Given a record, a loop and a loop iterator,
309/// apply each of the variable values in this loop and then process
310/// subloops.
Jakob Stoklund Olesen8a120b12012-05-24 22:17:33 +0000311bool TGParser::ProcessForeachDefs(Record *CurRec, SMLoc Loc, IterSet &IterVals){
312 // Recursively build a tuple of iterator values.
313 if (IterVals.size() != Loops.size()) {
314 assert(IterVals.size() < Loops.size());
315 ForeachLoop &CurLoop = Loops[IterVals.size()];
Sean Silvafb509ed2012-10-10 20:24:43 +0000316 ListInit *List = dyn_cast<ListInit>(CurLoop.ListValue);
Craig Topper011817a2014-04-09 04:50:04 +0000317 if (!List) {
Jakob Stoklund Olesen8a120b12012-05-24 22:17:33 +0000318 Error(Loc, "Loop list is not a list");
319 return true;
320 }
David Greenefb927af2012-02-22 16:09:41 +0000321
Jakob Stoklund Olesen8a120b12012-05-24 22:17:33 +0000322 // Process each value.
323 for (int64_t i = 0; i < List->getSize(); ++i) {
Craig Topper011817a2014-04-09 04:50:04 +0000324 Init *ItemVal = List->resolveListElementReference(*CurRec, nullptr, i);
Jakob Stoklund Olesen8a120b12012-05-24 22:17:33 +0000325 IterVals.push_back(IterRecord(CurLoop.IterVar, ItemVal));
326 if (ProcessForeachDefs(CurRec, Loc, IterVals))
327 return true;
328 IterVals.pop_back();
329 }
330 return false;
331 }
332
333 // This is the bottom of the recursion. We have all of the iterator values
334 // for this point in the iteration space. Instantiate a new record to
335 // reflect this combination of values.
336 Record *IterRec = new Record(*CurRec);
337
338 // Set the iterator values now.
339 for (unsigned i = 0, e = IterVals.size(); i != e; ++i) {
340 VarInit *IterVar = IterVals[i].IterVar;
Sean Silvafb509ed2012-10-10 20:24:43 +0000341 TypedInit *IVal = dyn_cast<TypedInit>(IterVals[i].IterValue);
Craig Topper011817a2014-04-09 04:50:04 +0000342 if (!IVal) {
Jakob Stoklund Olesen8a120b12012-05-24 22:17:33 +0000343 Error(Loc, "foreach iterator value is untyped");
344 return true;
345 }
346
347 IterRec->addValue(RecordVal(IterVar->getName(), IVal->getType(), false));
348
349 if (SetValue(IterRec, Loc, IterVar->getName(),
350 std::vector<unsigned>(), IVal)) {
351 Error(Loc, "when instantiating this def");
352 return true;
353 }
354
355 // Resolve it next.
356 IterRec->resolveReferencesTo(IterRec->getValue(IterVar->getName()));
357
358 // Remove it.
359 IterRec->removeValue(IterVar->getName());
360 }
361
362 if (Records.getDef(IterRec->getNameInitAsString())) {
363 Error(Loc, "def already exists: " + IterRec->getNameInitAsString());
David Greenefb927af2012-02-22 16:09:41 +0000364 return true;
365 }
366
Jakob Stoklund Olesen8a120b12012-05-24 22:17:33 +0000367 Records.addDef(IterRec);
368 IterRec->resolveReferences();
David Greenefb927af2012-02-22 16:09:41 +0000369 return false;
370}
371
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000372//===----------------------------------------------------------------------===//
373// Parser Code
374//===----------------------------------------------------------------------===//
375
376/// isObjectStart - Return true if this is a valid first token for an Object.
377static bool isObjectStart(tgtok::TokKind K) {
378 return K == tgtok::Class || K == tgtok::Def ||
David Greenefb927af2012-02-22 16:09:41 +0000379 K == tgtok::Defm || K == tgtok::Let ||
380 K == tgtok::MultiClass || K == tgtok::Foreach;
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000381}
382
Alp Tokerce91fe52013-12-21 18:51:00 +0000383/// GetNewAnonymousName - Generate a unique anonymous name that can be used as
384/// an identifier.
385std::string TGParser::GetNewAnonymousName() {
Michael J. Spencer2bb7db92013-02-26 21:29:47 +0000386 unsigned Tmp = AnonCounter++; // MSVC2012 ICEs without this.
Alp Tokerce91fe52013-12-21 18:51:00 +0000387 return "anonymous_" + utostr(Tmp);
Chris Lattner7538ed82010-10-05 22:51:56 +0000388}
389
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000390/// ParseObjectName - If an object name is specified, return it. Otherwise,
Jordan Roseabdd99b2013-01-10 18:50:05 +0000391/// return 0.
David Greene2affd672011-10-19 13:04:29 +0000392/// ObjectName ::= Value [ '#' Value ]*
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000393/// ObjectName ::= /*empty*/
394///
David Greene2affd672011-10-19 13:04:29 +0000395Init *TGParser::ParseObjectName(MultiClass *CurMultiClass) {
396 switch (Lex.getCode()) {
397 case tgtok::colon:
398 case tgtok::semi:
399 case tgtok::l_brace:
400 // These are all of the tokens that can begin an object body.
401 // Some of these can also begin values but we disallow those cases
402 // because they are unlikely to be useful.
Craig Topper011817a2014-04-09 04:50:04 +0000403 return nullptr;
David Greene2affd672011-10-19 13:04:29 +0000404 default:
405 break;
406 }
Mikhail Glushenkovde683892010-10-23 07:32:37 +0000407
Craig Topper011817a2014-04-09 04:50:04 +0000408 Record *CurRec = nullptr;
David Greene2affd672011-10-19 13:04:29 +0000409 if (CurMultiClass)
410 CurRec = &CurMultiClass->Rec;
411
Craig Topper011817a2014-04-09 04:50:04 +0000412 RecTy *Type = nullptr;
David Greene2affd672011-10-19 13:04:29 +0000413 if (CurRec) {
Sean Silva88eb8dd2012-10-10 20:24:47 +0000414 const TypedInit *CurRecName = dyn_cast<TypedInit>(CurRec->getNameInit());
David Greene2affd672011-10-19 13:04:29 +0000415 if (!CurRecName) {
416 TokError("Record name is not typed!");
Craig Topper011817a2014-04-09 04:50:04 +0000417 return nullptr;
David Greene2affd672011-10-19 13:04:29 +0000418 }
419 Type = CurRecName->getType();
420 }
421
422 return ParseValue(CurRec, Type, ParseNameMode);
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000423}
424
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000425/// ParseClassID - Parse and resolve a reference to a class name. This returns
426/// null on error.
427///
428/// ClassID ::= ID
429///
430Record *TGParser::ParseClassID() {
431 if (Lex.getCode() != tgtok::Id) {
432 TokError("expected name for ClassID");
Craig Topper011817a2014-04-09 04:50:04 +0000433 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000434 }
Bob Wilson7248f862009-11-22 04:24:42 +0000435
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000436 Record *Result = Records.getClass(Lex.getCurStrVal());
Craig Topper011817a2014-04-09 04:50:04 +0000437 if (!Result)
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000438 TokError("Couldn't find class '" + Lex.getCurStrVal() + "'");
Bob Wilson7248f862009-11-22 04:24:42 +0000439
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000440 Lex.Lex();
441 return Result;
442}
443
Bob Wilson3d948162009-04-28 19:41:44 +0000444/// ParseMultiClassID - Parse and resolve a reference to a multiclass name.
445/// This returns null on error.
David Greene753ed8f2009-04-22 16:42:54 +0000446///
447/// MultiClassID ::= ID
448///
449MultiClass *TGParser::ParseMultiClassID() {
450 if (Lex.getCode() != tgtok::Id) {
Sean Silva710c3ae2013-01-09 02:11:57 +0000451 TokError("expected name for MultiClassID");
Craig Topper011817a2014-04-09 04:50:04 +0000452 return nullptr;
David Greene753ed8f2009-04-22 16:42:54 +0000453 }
Bob Wilson3d948162009-04-28 19:41:44 +0000454
David Greene753ed8f2009-04-22 16:42:54 +0000455 MultiClass *Result = MultiClasses[Lex.getCurStrVal()];
Craig Topper011817a2014-04-09 04:50:04 +0000456 if (!Result)
Sean Silva710c3ae2013-01-09 02:11:57 +0000457 TokError("Couldn't find multiclass '" + Lex.getCurStrVal() + "'");
Bob Wilson3d948162009-04-28 19:41:44 +0000458
David Greene753ed8f2009-04-22 16:42:54 +0000459 Lex.Lex();
460 return Result;
461}
462
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000463/// ParseSubClassReference - Parse a reference to a subclass or to a templated
464/// subclass. This returns a SubClassRefTy with a null Record* on error.
465///
466/// SubClassRef ::= ClassID
467/// SubClassRef ::= ClassID '<' ValueList '>'
468///
469SubClassReference TGParser::
470ParseSubClassReference(Record *CurRec, bool isDefm) {
471 SubClassReference Result;
Jordan Rosef12e8a92013-01-10 18:50:11 +0000472 Result.RefRange.Start = Lex.getLoc();
Bob Wilson7248f862009-11-22 04:24:42 +0000473
Sean Silva0657b402013-01-09 02:17:14 +0000474 if (isDefm) {
475 if (MultiClass *MC = ParseMultiClassID())
476 Result.Rec = &MC->Rec;
477 } else {
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000478 Result.Rec = ParseClassID();
Sean Silva0657b402013-01-09 02:17:14 +0000479 }
Craig Topper011817a2014-04-09 04:50:04 +0000480 if (!Result.Rec) return Result;
Bob Wilson7248f862009-11-22 04:24:42 +0000481
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000482 // If there is no template arg list, we're done.
Jordan Rosef12e8a92013-01-10 18:50:11 +0000483 if (Lex.getCode() != tgtok::less) {
484 Result.RefRange.End = Lex.getLoc();
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000485 return Result;
Jordan Rosef12e8a92013-01-10 18:50:11 +0000486 }
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000487 Lex.Lex(); // Eat the '<'
Bob Wilson7248f862009-11-22 04:24:42 +0000488
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000489 if (Lex.getCode() == tgtok::greater) {
490 TokError("subclass reference requires a non-empty list of template values");
Craig Topper011817a2014-04-09 04:50:04 +0000491 Result.Rec = nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000492 return Result;
493 }
Bob Wilson7248f862009-11-22 04:24:42 +0000494
David Greene8618f952009-06-08 20:23:18 +0000495 Result.TemplateArgs = ParseValueList(CurRec, Result.Rec);
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000496 if (Result.TemplateArgs.empty()) {
Craig Topper011817a2014-04-09 04:50:04 +0000497 Result.Rec = nullptr; // Error parsing value list.
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000498 return Result;
499 }
Bob Wilson7248f862009-11-22 04:24:42 +0000500
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000501 if (Lex.getCode() != tgtok::greater) {
502 TokError("expected '>' in template value list");
Craig Topper011817a2014-04-09 04:50:04 +0000503 Result.Rec = nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000504 return Result;
505 }
506 Lex.Lex();
Jordan Rosef12e8a92013-01-10 18:50:11 +0000507 Result.RefRange.End = Lex.getLoc();
Bob Wilson7248f862009-11-22 04:24:42 +0000508
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000509 return Result;
510}
511
Bob Wilson3d948162009-04-28 19:41:44 +0000512/// ParseSubMultiClassReference - Parse a reference to a subclass or to a
513/// templated submulticlass. This returns a SubMultiClassRefTy with a null
514/// Record* on error.
David Greene753ed8f2009-04-22 16:42:54 +0000515///
516/// SubMultiClassRef ::= MultiClassID
517/// SubMultiClassRef ::= MultiClassID '<' ValueList '>'
518///
519SubMultiClassReference TGParser::
520ParseSubMultiClassReference(MultiClass *CurMC) {
521 SubMultiClassReference Result;
Jordan Rosef12e8a92013-01-10 18:50:11 +0000522 Result.RefRange.Start = Lex.getLoc();
Bob Wilson3d948162009-04-28 19:41:44 +0000523
David Greene753ed8f2009-04-22 16:42:54 +0000524 Result.MC = ParseMultiClassID();
Craig Topper011817a2014-04-09 04:50:04 +0000525 if (!Result.MC) return Result;
Bob Wilson3d948162009-04-28 19:41:44 +0000526
David Greene753ed8f2009-04-22 16:42:54 +0000527 // If there is no template arg list, we're done.
Jordan Rosef12e8a92013-01-10 18:50:11 +0000528 if (Lex.getCode() != tgtok::less) {
529 Result.RefRange.End = Lex.getLoc();
David Greene753ed8f2009-04-22 16:42:54 +0000530 return Result;
Jordan Rosef12e8a92013-01-10 18:50:11 +0000531 }
David Greene753ed8f2009-04-22 16:42:54 +0000532 Lex.Lex(); // Eat the '<'
Bob Wilson3d948162009-04-28 19:41:44 +0000533
David Greene753ed8f2009-04-22 16:42:54 +0000534 if (Lex.getCode() == tgtok::greater) {
535 TokError("subclass reference requires a non-empty list of template values");
Craig Topper011817a2014-04-09 04:50:04 +0000536 Result.MC = nullptr;
David Greene753ed8f2009-04-22 16:42:54 +0000537 return Result;
538 }
Bob Wilson3d948162009-04-28 19:41:44 +0000539
David Greene8618f952009-06-08 20:23:18 +0000540 Result.TemplateArgs = ParseValueList(&CurMC->Rec, &Result.MC->Rec);
David Greene753ed8f2009-04-22 16:42:54 +0000541 if (Result.TemplateArgs.empty()) {
Craig Topper011817a2014-04-09 04:50:04 +0000542 Result.MC = nullptr; // Error parsing value list.
David Greene753ed8f2009-04-22 16:42:54 +0000543 return Result;
544 }
Bob Wilson3d948162009-04-28 19:41:44 +0000545
David Greene753ed8f2009-04-22 16:42:54 +0000546 if (Lex.getCode() != tgtok::greater) {
547 TokError("expected '>' in template value list");
Craig Topper011817a2014-04-09 04:50:04 +0000548 Result.MC = nullptr;
David Greene753ed8f2009-04-22 16:42:54 +0000549 return Result;
550 }
551 Lex.Lex();
Jordan Rosef12e8a92013-01-10 18:50:11 +0000552 Result.RefRange.End = Lex.getLoc();
David Greene753ed8f2009-04-22 16:42:54 +0000553
554 return Result;
555}
556
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000557/// ParseRangePiece - Parse a bit/value range.
558/// RangePiece ::= INTVAL
559/// RangePiece ::= INTVAL '-' INTVAL
560/// RangePiece ::= INTVAL INTVAL
561bool TGParser::ParseRangePiece(std::vector<unsigned> &Ranges) {
Chris Lattner70ddafa2008-01-10 07:01:53 +0000562 if (Lex.getCode() != tgtok::IntVal) {
563 TokError("expected integer or bitrange");
564 return true;
565 }
Dan Gohmanca0546f2008-10-17 01:33:43 +0000566 int64_t Start = Lex.getCurIntVal();
567 int64_t End;
Bob Wilson7248f862009-11-22 04:24:42 +0000568
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000569 if (Start < 0)
570 return TokError("invalid range, cannot be negative");
Bob Wilson7248f862009-11-22 04:24:42 +0000571
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000572 switch (Lex.Lex()) { // eat first character.
Bob Wilson7248f862009-11-22 04:24:42 +0000573 default:
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000574 Ranges.push_back(Start);
575 return false;
576 case tgtok::minus:
577 if (Lex.Lex() != tgtok::IntVal) {
578 TokError("expected integer value as end of range");
579 return true;
580 }
581 End = Lex.getCurIntVal();
582 break;
583 case tgtok::IntVal:
584 End = -Lex.getCurIntVal();
585 break;
586 }
Bob Wilson7248f862009-11-22 04:24:42 +0000587 if (End < 0)
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000588 return TokError("invalid range, cannot be negative");
589 Lex.Lex();
Bob Wilson7248f862009-11-22 04:24:42 +0000590
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000591 // Add to the range.
592 if (Start < End) {
593 for (; Start <= End; ++Start)
594 Ranges.push_back(Start);
595 } else {
596 for (; Start >= End; --Start)
597 Ranges.push_back(Start);
598 }
599 return false;
600}
601
602/// ParseRangeList - Parse a list of scalars and ranges into scalar values.
603///
604/// RangeList ::= RangePiece (',' RangePiece)*
605///
606std::vector<unsigned> TGParser::ParseRangeList() {
607 std::vector<unsigned> Result;
Bob Wilson7248f862009-11-22 04:24:42 +0000608
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000609 // Parse the first piece.
610 if (ParseRangePiece(Result))
611 return std::vector<unsigned>();
612 while (Lex.getCode() == tgtok::comma) {
613 Lex.Lex(); // Eat the comma.
614
615 // Parse the next range piece.
616 if (ParseRangePiece(Result))
617 return std::vector<unsigned>();
618 }
619 return Result;
620}
621
622/// ParseOptionalRangeList - Parse either a range list in <>'s or nothing.
623/// OptionalRangeList ::= '<' RangeList '>'
624/// OptionalRangeList ::= /*empty*/
625bool TGParser::ParseOptionalRangeList(std::vector<unsigned> &Ranges) {
626 if (Lex.getCode() != tgtok::less)
627 return false;
Bob Wilson7248f862009-11-22 04:24:42 +0000628
Chris Lattner526c8cb2009-06-21 03:39:35 +0000629 SMLoc StartLoc = Lex.getLoc();
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000630 Lex.Lex(); // eat the '<'
Bob Wilson7248f862009-11-22 04:24:42 +0000631
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000632 // Parse the range list.
633 Ranges = ParseRangeList();
634 if (Ranges.empty()) return true;
Bob Wilson7248f862009-11-22 04:24:42 +0000635
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000636 if (Lex.getCode() != tgtok::greater) {
637 TokError("expected '>' at end of range list");
638 return Error(StartLoc, "to match this '<'");
639 }
640 Lex.Lex(); // eat the '>'.
641 return false;
642}
643
644/// ParseOptionalBitList - Parse either a bit list in {}'s or nothing.
645/// OptionalBitList ::= '{' RangeList '}'
646/// OptionalBitList ::= /*empty*/
647bool TGParser::ParseOptionalBitList(std::vector<unsigned> &Ranges) {
648 if (Lex.getCode() != tgtok::l_brace)
649 return false;
Bob Wilson7248f862009-11-22 04:24:42 +0000650
Chris Lattner526c8cb2009-06-21 03:39:35 +0000651 SMLoc StartLoc = Lex.getLoc();
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000652 Lex.Lex(); // eat the '{'
Bob Wilson7248f862009-11-22 04:24:42 +0000653
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000654 // Parse the range list.
655 Ranges = ParseRangeList();
656 if (Ranges.empty()) return true;
Bob Wilson7248f862009-11-22 04:24:42 +0000657
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000658 if (Lex.getCode() != tgtok::r_brace) {
659 TokError("expected '}' at end of bit list");
660 return Error(StartLoc, "to match this '{'");
661 }
662 Lex.Lex(); // eat the '}'.
663 return false;
664}
665
666
667/// ParseType - Parse and return a tblgen type. This returns null on error.
668///
669/// Type ::= STRING // string type
Jakob Stoklund Olesendd8fbf52012-01-13 03:38:34 +0000670/// Type ::= CODE // code type
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000671/// Type ::= BIT // bit type
672/// Type ::= BITS '<' INTVAL '>' // bits<x> type
673/// Type ::= INT // int type
674/// Type ::= LIST '<' Type '>' // list<x> type
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000675/// Type ::= DAG // dag type
676/// Type ::= ClassID // Record Type
677///
678RecTy *TGParser::ParseType() {
679 switch (Lex.getCode()) {
Craig Topper011817a2014-04-09 04:50:04 +0000680 default: TokError("Unknown token when expecting a type"); return nullptr;
Jakob Stoklund Olesenabcfdce2011-07-18 17:02:57 +0000681 case tgtok::String: Lex.Lex(); return StringRecTy::get();
Jakob Stoklund Olesendd8fbf52012-01-13 03:38:34 +0000682 case tgtok::Code: Lex.Lex(); return StringRecTy::get();
Jakob Stoklund Olesenabcfdce2011-07-18 17:02:57 +0000683 case tgtok::Bit: Lex.Lex(); return BitRecTy::get();
684 case tgtok::Int: Lex.Lex(); return IntRecTy::get();
Jakob Stoklund Olesenabcfdce2011-07-18 17:02:57 +0000685 case tgtok::Dag: Lex.Lex(); return DagRecTy::get();
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000686 case tgtok::Id:
Jakob Stoklund Olesenabcfdce2011-07-18 17:02:57 +0000687 if (Record *R = ParseClassID()) return RecordRecTy::get(R);
Craig Topper011817a2014-04-09 04:50:04 +0000688 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000689 case tgtok::Bits: {
690 if (Lex.Lex() != tgtok::less) { // Eat 'bits'
691 TokError("expected '<' after bits type");
Craig Topper011817a2014-04-09 04:50:04 +0000692 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000693 }
694 if (Lex.Lex() != tgtok::IntVal) { // Eat '<'
695 TokError("expected integer in bits<n> type");
Craig Topper011817a2014-04-09 04:50:04 +0000696 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000697 }
Dan Gohmanca0546f2008-10-17 01:33:43 +0000698 uint64_t Val = Lex.getCurIntVal();
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000699 if (Lex.Lex() != tgtok::greater) { // Eat count.
700 TokError("expected '>' at end of bits<n> type");
Craig Topper011817a2014-04-09 04:50:04 +0000701 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000702 }
703 Lex.Lex(); // Eat '>'
Jakob Stoklund Olesenabcfdce2011-07-18 17:02:57 +0000704 return BitsRecTy::get(Val);
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000705 }
706 case tgtok::List: {
707 if (Lex.Lex() != tgtok::less) { // Eat 'bits'
708 TokError("expected '<' after list type");
Craig Topper011817a2014-04-09 04:50:04 +0000709 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000710 }
711 Lex.Lex(); // Eat '<'
712 RecTy *SubType = ParseType();
Craig Topper011817a2014-04-09 04:50:04 +0000713 if (!SubType) return nullptr;
Bob Wilson7248f862009-11-22 04:24:42 +0000714
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000715 if (Lex.getCode() != tgtok::greater) {
716 TokError("expected '>' at end of list<ty> type");
Craig Topper011817a2014-04-09 04:50:04 +0000717 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000718 }
719 Lex.Lex(); // Eat '>'
Jakob Stoklund Olesenabcfdce2011-07-18 17:02:57 +0000720 return ListRecTy::get(SubType);
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000721 }
Bob Wilson7248f862009-11-22 04:24:42 +0000722 }
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000723}
724
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000725/// ParseIDValue - This is just like ParseIDValue above, but it assumes the ID
726/// has already been read.
David Greeneaf8ee2c2011-07-29 22:43:06 +0000727Init *TGParser::ParseIDValue(Record *CurRec,
David Greened4263a62011-10-19 13:04:20 +0000728 const std::string &Name, SMLoc NameLoc,
729 IDParseMode Mode) {
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000730 if (CurRec) {
731 if (const RecordVal *RV = CurRec->getValue(Name))
David Greenee32ebf22011-07-29 19:07:07 +0000732 return VarInit::get(Name, RV->getType());
Bob Wilson7248f862009-11-22 04:24:42 +0000733
David Greenedb10e692011-10-19 13:02:42 +0000734 Init *TemplateArgName = QualifyName(*CurRec, CurMultiClass, Name, ":");
735
David Greene47a665e2011-10-05 22:42:54 +0000736 if (CurMultiClass)
David Greenedb10e692011-10-19 13:02:42 +0000737 TemplateArgName = QualifyName(CurMultiClass->Rec, CurMultiClass, Name,
738 "::");
David Greene47a665e2011-10-05 22:42:54 +0000739
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000740 if (CurRec->isTemplateArg(TemplateArgName)) {
741 const RecordVal *RV = CurRec->getValue(TemplateArgName);
742 assert(RV && "Template arg doesn't exist??");
David Greenee32ebf22011-07-29 19:07:07 +0000743 return VarInit::get(TemplateArgName, RV->getType());
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000744 }
745 }
Bob Wilson7248f862009-11-22 04:24:42 +0000746
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000747 if (CurMultiClass) {
David Greenedb10e692011-10-19 13:02:42 +0000748 Init *MCName = QualifyName(CurMultiClass->Rec, CurMultiClass, Name,
749 "::");
750
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000751 if (CurMultiClass->Rec.isTemplateArg(MCName)) {
752 const RecordVal *RV = CurMultiClass->Rec.getValue(MCName);
753 assert(RV && "Template arg doesn't exist??");
David Greenee32ebf22011-07-29 19:07:07 +0000754 return VarInit::get(MCName, RV->getType());
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000755 }
756 }
Bob Wilson7248f862009-11-22 04:24:42 +0000757
David Greenefb927af2012-02-22 16:09:41 +0000758 // If this is in a foreach loop, make sure it's not a loop iterator
759 for (LoopVector::iterator i = Loops.begin(), iend = Loops.end();
760 i != iend;
761 ++i) {
Sean Silvafb509ed2012-10-10 20:24:43 +0000762 VarInit *IterVar = dyn_cast<VarInit>(i->IterVar);
David Greenefb927af2012-02-22 16:09:41 +0000763 if (IterVar && IterVar->getName() == Name)
764 return IterVar;
765 }
766
David Greene232bd602011-10-19 13:04:21 +0000767 if (Mode == ParseNameMode)
768 return StringInit::get(Name);
769
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000770 if (Record *D = Records.getDef(Name))
Jakob Stoklund Olesenabcfdce2011-07-18 17:02:57 +0000771 return DefInit::get(D);
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000772
David Greene232bd602011-10-19 13:04:21 +0000773 if (Mode == ParseValueMode) {
774 Error(NameLoc, "Variable not defined: '" + Name + "'");
Craig Topper011817a2014-04-09 04:50:04 +0000775 return nullptr;
David Greene232bd602011-10-19 13:04:21 +0000776 }
777
778 return StringInit::get(Name);
Chris Lattnerf4127dd2007-11-22 20:49:04 +0000779}
780
David Greene5d0c0512009-05-14 20:54:48 +0000781/// ParseOperation - Parse an operator. This returns null on error.
782///
783/// Operation ::= XOperator ['<' Type '>'] '(' Args ')'
784///
David Greeneaf8ee2c2011-07-29 22:43:06 +0000785Init *TGParser::ParseOperation(Record *CurRec) {
David Greene5d0c0512009-05-14 20:54:48 +0000786 switch (Lex.getCode()) {
787 default:
788 TokError("unknown operation");
Craig Topper011817a2014-04-09 04:50:04 +0000789 return nullptr;
David Greene2f7cf7f2011-01-07 17:05:37 +0000790 case tgtok::XHead:
791 case tgtok::XTail:
792 case tgtok::XEmpty:
David Greenee8f3b272009-05-14 21:22:49 +0000793 case tgtok::XCast: { // Value ::= !unop '(' Value ')'
794 UnOpInit::UnaryOp Code;
Craig Topper011817a2014-04-09 04:50:04 +0000795 RecTy *Type = nullptr;
David Greene5d0c0512009-05-14 20:54:48 +0000796
David Greenee8f3b272009-05-14 21:22:49 +0000797 switch (Lex.getCode()) {
Craig Toppera2886c22012-02-07 05:05:23 +0000798 default: llvm_unreachable("Unhandled code!");
David Greenee8f3b272009-05-14 21:22:49 +0000799 case tgtok::XCast:
800 Lex.Lex(); // eat the operation
801 Code = UnOpInit::CAST;
David Greene5d0c0512009-05-14 20:54:48 +0000802
David Greenee8f3b272009-05-14 21:22:49 +0000803 Type = ParseOperatorType();
David Greene5d0c0512009-05-14 20:54:48 +0000804
Craig Topper011817a2014-04-09 04:50:04 +0000805 if (!Type) {
David Greened571b3c2009-05-14 22:38:31 +0000806 TokError("did not get type for unary operator");
Craig Topper011817a2014-04-09 04:50:04 +0000807 return nullptr;
David Greenee8f3b272009-05-14 21:22:49 +0000808 }
David Greene5d0c0512009-05-14 20:54:48 +0000809
David Greenee8f3b272009-05-14 21:22:49 +0000810 break;
David Greene2f7cf7f2011-01-07 17:05:37 +0000811 case tgtok::XHead:
David Greened571b3c2009-05-14 22:38:31 +0000812 Lex.Lex(); // eat the operation
David Greene2f7cf7f2011-01-07 17:05:37 +0000813 Code = UnOpInit::HEAD;
David Greened571b3c2009-05-14 22:38:31 +0000814 break;
David Greene2f7cf7f2011-01-07 17:05:37 +0000815 case tgtok::XTail:
David Greened571b3c2009-05-14 22:38:31 +0000816 Lex.Lex(); // eat the operation
David Greene2f7cf7f2011-01-07 17:05:37 +0000817 Code = UnOpInit::TAIL;
David Greened571b3c2009-05-14 22:38:31 +0000818 break;
David Greene2f7cf7f2011-01-07 17:05:37 +0000819 case tgtok::XEmpty:
David Greened571b3c2009-05-14 22:38:31 +0000820 Lex.Lex(); // eat the operation
David Greene2f7cf7f2011-01-07 17:05:37 +0000821 Code = UnOpInit::EMPTY;
Jakob Stoklund Olesenabcfdce2011-07-18 17:02:57 +0000822 Type = IntRecTy::get();
David Greened571b3c2009-05-14 22:38:31 +0000823 break;
David Greenee8f3b272009-05-14 21:22:49 +0000824 }
825 if (Lex.getCode() != tgtok::l_paren) {
826 TokError("expected '(' after unary operator");
Craig Topper011817a2014-04-09 04:50:04 +0000827 return nullptr;
David Greenee8f3b272009-05-14 21:22:49 +0000828 }
829 Lex.Lex(); // eat the '('
David Greene5d0c0512009-05-14 20:54:48 +0000830
David Greeneaf8ee2c2011-07-29 22:43:06 +0000831 Init *LHS = ParseValue(CurRec);
Craig Topper011817a2014-04-09 04:50:04 +0000832 if (!LHS) return nullptr;
David Greene5d0c0512009-05-14 20:54:48 +0000833
David Greene2f7cf7f2011-01-07 17:05:37 +0000834 if (Code == UnOpInit::HEAD
835 || Code == UnOpInit::TAIL
836 || Code == UnOpInit::EMPTY) {
Sean Silvafb509ed2012-10-10 20:24:43 +0000837 ListInit *LHSl = dyn_cast<ListInit>(LHS);
838 StringInit *LHSs = dyn_cast<StringInit>(LHS);
839 TypedInit *LHSt = dyn_cast<TypedInit>(LHS);
Craig Topper011817a2014-04-09 04:50:04 +0000840 if (!LHSl && !LHSs && !LHSt) {
David Greene8618f952009-06-08 20:23:18 +0000841 TokError("expected list or string type argument in unary operator");
Craig Topper011817a2014-04-09 04:50:04 +0000842 return nullptr;
David Greened571b3c2009-05-14 22:38:31 +0000843 }
844 if (LHSt) {
Sean Silva98c61712012-10-05 03:31:58 +0000845 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType());
846 StringRecTy *SType = dyn_cast<StringRecTy>(LHSt->getType());
Craig Topper011817a2014-04-09 04:50:04 +0000847 if (!LType && !SType) {
David Greene8618f952009-06-08 20:23:18 +0000848 TokError("expected list or string type argumnet in unary operator");
Craig Topper011817a2014-04-09 04:50:04 +0000849 return nullptr;
David Greened571b3c2009-05-14 22:38:31 +0000850 }
851 }
852
David Greene2f7cf7f2011-01-07 17:05:37 +0000853 if (Code == UnOpInit::HEAD
854 || Code == UnOpInit::TAIL) {
Craig Topper011817a2014-04-09 04:50:04 +0000855 if (!LHSl && !LHSt) {
David Greene8618f952009-06-08 20:23:18 +0000856 TokError("expected list type argumnet in unary operator");
Craig Topper011817a2014-04-09 04:50:04 +0000857 return nullptr;
David Greene8618f952009-06-08 20:23:18 +0000858 }
Bob Wilson7248f862009-11-22 04:24:42 +0000859
David Greened571b3c2009-05-14 22:38:31 +0000860 if (LHSl && LHSl->getSize() == 0) {
861 TokError("empty list argument in unary operator");
Craig Topper011817a2014-04-09 04:50:04 +0000862 return nullptr;
David Greened571b3c2009-05-14 22:38:31 +0000863 }
864 if (LHSl) {
David Greeneaf8ee2c2011-07-29 22:43:06 +0000865 Init *Item = LHSl->getElement(0);
Sean Silvafb509ed2012-10-10 20:24:43 +0000866 TypedInit *Itemt = dyn_cast<TypedInit>(Item);
Craig Topper011817a2014-04-09 04:50:04 +0000867 if (!Itemt) {
David Greened571b3c2009-05-14 22:38:31 +0000868 TokError("untyped list element in unary operator");
Craig Topper011817a2014-04-09 04:50:04 +0000869 return nullptr;
David Greened571b3c2009-05-14 22:38:31 +0000870 }
David Greene2f7cf7f2011-01-07 17:05:37 +0000871 if (Code == UnOpInit::HEAD) {
David Greened571b3c2009-05-14 22:38:31 +0000872 Type = Itemt->getType();
Bob Wilson7248f862009-11-22 04:24:42 +0000873 } else {
Jakob Stoklund Olesenabcfdce2011-07-18 17:02:57 +0000874 Type = ListRecTy::get(Itemt->getType());
David Greened571b3c2009-05-14 22:38:31 +0000875 }
Bob Wilson7248f862009-11-22 04:24:42 +0000876 } else {
David Greened571b3c2009-05-14 22:38:31 +0000877 assert(LHSt && "expected list type argument in unary operator");
Sean Silva98c61712012-10-05 03:31:58 +0000878 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType());
Craig Topper011817a2014-04-09 04:50:04 +0000879 if (!LType) {
David Greened571b3c2009-05-14 22:38:31 +0000880 TokError("expected list type argumnet in unary operator");
Craig Topper011817a2014-04-09 04:50:04 +0000881 return nullptr;
David Greened571b3c2009-05-14 22:38:31 +0000882 }
David Greene2f7cf7f2011-01-07 17:05:37 +0000883 if (Code == UnOpInit::HEAD) {
David Greened571b3c2009-05-14 22:38:31 +0000884 Type = LType->getElementType();
Bob Wilson7248f862009-11-22 04:24:42 +0000885 } else {
David Greened571b3c2009-05-14 22:38:31 +0000886 Type = LType;
887 }
888 }
889 }
890 }
891
David Greenee8f3b272009-05-14 21:22:49 +0000892 if (Lex.getCode() != tgtok::r_paren) {
893 TokError("expected ')' in unary operator");
Craig Topper011817a2014-04-09 04:50:04 +0000894 return nullptr;
David Greenee8f3b272009-05-14 21:22:49 +0000895 }
896 Lex.Lex(); // eat the ')'
David Greenee32ebf22011-07-29 19:07:07 +0000897 return (UnOpInit::get(Code, LHS, Type))->Fold(CurRec, CurMultiClass);
David Greenee8f3b272009-05-14 21:22:49 +0000898 }
David Greene5d0c0512009-05-14 20:54:48 +0000899
900 case tgtok::XConcat:
Hal Finkelc7d4dc12013-01-25 14:49:08 +0000901 case tgtok::XADD:
Bob Wilson7248f862009-11-22 04:24:42 +0000902 case tgtok::XSRA:
David Greene5d0c0512009-05-14 20:54:48 +0000903 case tgtok::XSRL:
904 case tgtok::XSHL:
David Greene297bfe62010-01-05 19:11:42 +0000905 case tgtok::XEq:
Chris Lattner94026332010-10-06 00:19:21 +0000906 case tgtok::XStrConcat: { // Value ::= !binop '(' Value ',' Value ')'
Chris Lattner61ea00b2010-10-05 23:58:18 +0000907 tgtok::TokKind OpTok = Lex.getCode();
908 SMLoc OpLoc = Lex.getLoc();
909 Lex.Lex(); // eat the operation
910
David Greene5d0c0512009-05-14 20:54:48 +0000911 BinOpInit::BinaryOp Code;
Craig Topper011817a2014-04-09 04:50:04 +0000912 RecTy *Type = nullptr;
David Greene5d0c0512009-05-14 20:54:48 +0000913
Chris Lattner61ea00b2010-10-05 23:58:18 +0000914 switch (OpTok) {
Craig Toppera2886c22012-02-07 05:05:23 +0000915 default: llvm_unreachable("Unhandled code!");
Jakob Stoklund Olesenabcfdce2011-07-18 17:02:57 +0000916 case tgtok::XConcat: Code = BinOpInit::CONCAT;Type = DagRecTy::get(); break;
Hal Finkelc7d4dc12013-01-25 14:49:08 +0000917 case tgtok::XADD: Code = BinOpInit::ADD; Type = IntRecTy::get(); break;
Jakob Stoklund Olesenabcfdce2011-07-18 17:02:57 +0000918 case tgtok::XSRA: Code = BinOpInit::SRA; Type = IntRecTy::get(); break;
919 case tgtok::XSRL: Code = BinOpInit::SRL; Type = IntRecTy::get(); break;
920 case tgtok::XSHL: Code = BinOpInit::SHL; Type = IntRecTy::get(); break;
921 case tgtok::XEq: Code = BinOpInit::EQ; Type = BitRecTy::get(); break;
Bob Wilson7248f862009-11-22 04:24:42 +0000922 case tgtok::XStrConcat:
David Greene5d0c0512009-05-14 20:54:48 +0000923 Code = BinOpInit::STRCONCAT;
Jakob Stoklund Olesenabcfdce2011-07-18 17:02:57 +0000924 Type = StringRecTy::get();
David Greene5d0c0512009-05-14 20:54:48 +0000925 break;
David Greene5d0c0512009-05-14 20:54:48 +0000926 }
Mikhail Glushenkovde683892010-10-23 07:32:37 +0000927
David Greene5d0c0512009-05-14 20:54:48 +0000928 if (Lex.getCode() != tgtok::l_paren) {
929 TokError("expected '(' after binary operator");
Craig Topper011817a2014-04-09 04:50:04 +0000930 return nullptr;
David Greene5d0c0512009-05-14 20:54:48 +0000931 }
932 Lex.Lex(); // eat the '('
933
David Greeneaf8ee2c2011-07-29 22:43:06 +0000934 SmallVector<Init*, 2> InitList;
Mikhail Glushenkovde683892010-10-23 07:32:37 +0000935
Chris Lattner61ea00b2010-10-05 23:58:18 +0000936 InitList.push_back(ParseValue(CurRec));
Craig Topper011817a2014-04-09 04:50:04 +0000937 if (!InitList.back()) return nullptr;
David Greene5d0c0512009-05-14 20:54:48 +0000938
Chris Lattner61ea00b2010-10-05 23:58:18 +0000939 while (Lex.getCode() == tgtok::comma) {
940 Lex.Lex(); // eat the ','
941
942 InitList.push_back(ParseValue(CurRec));
Craig Topper011817a2014-04-09 04:50:04 +0000943 if (!InitList.back()) return nullptr;
David Greene5d0c0512009-05-14 20:54:48 +0000944 }
David Greene5d0c0512009-05-14 20:54:48 +0000945
946 if (Lex.getCode() != tgtok::r_paren) {
Chris Lattner61ea00b2010-10-05 23:58:18 +0000947 TokError("expected ')' in operator");
Craig Topper011817a2014-04-09 04:50:04 +0000948 return nullptr;
David Greene5d0c0512009-05-14 20:54:48 +0000949 }
950 Lex.Lex(); // eat the ')'
Chris Lattner61ea00b2010-10-05 23:58:18 +0000951
952 // We allow multiple operands to associative operators like !strconcat as
953 // shorthand for nesting them.
954 if (Code == BinOpInit::STRCONCAT) {
955 while (InitList.size() > 2) {
David Greeneaf8ee2c2011-07-29 22:43:06 +0000956 Init *RHS = InitList.pop_back_val();
David Greenee32ebf22011-07-29 19:07:07 +0000957 RHS = (BinOpInit::get(Code, InitList.back(), RHS, Type))
958 ->Fold(CurRec, CurMultiClass);
Chris Lattner61ea00b2010-10-05 23:58:18 +0000959 InitList.back() = RHS;
960 }
961 }
Mikhail Glushenkovde683892010-10-23 07:32:37 +0000962
Chris Lattner61ea00b2010-10-05 23:58:18 +0000963 if (InitList.size() == 2)
David Greenee32ebf22011-07-29 19:07:07 +0000964 return (BinOpInit::get(Code, InitList[0], InitList[1], Type))
Chris Lattner61ea00b2010-10-05 23:58:18 +0000965 ->Fold(CurRec, CurMultiClass);
Mikhail Glushenkovde683892010-10-23 07:32:37 +0000966
Chris Lattner61ea00b2010-10-05 23:58:18 +0000967 Error(OpLoc, "expected two operands to operator");
Craig Topper011817a2014-04-09 04:50:04 +0000968 return nullptr;
David Greene5d0c0512009-05-14 20:54:48 +0000969 }
970
David Greene3587eed2009-05-14 23:26:46 +0000971 case tgtok::XIf:
David Greenee917fff2009-05-14 22:23:47 +0000972 case tgtok::XForEach:
David Greene98ed3c72009-05-14 21:54:42 +0000973 case tgtok::XSubst: { // Value ::= !ternop '(' Value ',' Value ',' Value ')'
974 TernOpInit::TernaryOp Code;
Craig Topper011817a2014-04-09 04:50:04 +0000975 RecTy *Type = nullptr;
David Greene5d0c0512009-05-14 20:54:48 +0000976
David Greene98ed3c72009-05-14 21:54:42 +0000977 tgtok::TokKind LexCode = Lex.getCode();
978 Lex.Lex(); // eat the operation
979 switch (LexCode) {
Craig Toppera2886c22012-02-07 05:05:23 +0000980 default: llvm_unreachable("Unhandled code!");
David Greene3587eed2009-05-14 23:26:46 +0000981 case tgtok::XIf:
982 Code = TernOpInit::IF;
983 break;
David Greenee917fff2009-05-14 22:23:47 +0000984 case tgtok::XForEach:
985 Code = TernOpInit::FOREACH;
986 break;
David Greene98ed3c72009-05-14 21:54:42 +0000987 case tgtok::XSubst:
988 Code = TernOpInit::SUBST;
989 break;
990 }
991 if (Lex.getCode() != tgtok::l_paren) {
992 TokError("expected '(' after ternary operator");
Craig Topper011817a2014-04-09 04:50:04 +0000993 return nullptr;
David Greene98ed3c72009-05-14 21:54:42 +0000994 }
995 Lex.Lex(); // eat the '('
David Greene5d0c0512009-05-14 20:54:48 +0000996
David Greeneaf8ee2c2011-07-29 22:43:06 +0000997 Init *LHS = ParseValue(CurRec);
Craig Topper011817a2014-04-09 04:50:04 +0000998 if (!LHS) return nullptr;
David Greene5d0c0512009-05-14 20:54:48 +0000999
David Greene98ed3c72009-05-14 21:54:42 +00001000 if (Lex.getCode() != tgtok::comma) {
1001 TokError("expected ',' in ternary operator");
Craig Topper011817a2014-04-09 04:50:04 +00001002 return nullptr;
David Greene98ed3c72009-05-14 21:54:42 +00001003 }
1004 Lex.Lex(); // eat the ','
Bob Wilson7248f862009-11-22 04:24:42 +00001005
David Greeneaf8ee2c2011-07-29 22:43:06 +00001006 Init *MHS = ParseValue(CurRec);
Craig Topper011817a2014-04-09 04:50:04 +00001007 if (!MHS) return nullptr;
David Greene5d0c0512009-05-14 20:54:48 +00001008
David Greene98ed3c72009-05-14 21:54:42 +00001009 if (Lex.getCode() != tgtok::comma) {
1010 TokError("expected ',' in ternary operator");
Craig Topper011817a2014-04-09 04:50:04 +00001011 return nullptr;
David Greene98ed3c72009-05-14 21:54:42 +00001012 }
1013 Lex.Lex(); // eat the ','
Bob Wilson7248f862009-11-22 04:24:42 +00001014
David Greeneaf8ee2c2011-07-29 22:43:06 +00001015 Init *RHS = ParseValue(CurRec);
Craig Topper011817a2014-04-09 04:50:04 +00001016 if (!RHS) return nullptr;
David Greene5d0c0512009-05-14 20:54:48 +00001017
David Greene98ed3c72009-05-14 21:54:42 +00001018 if (Lex.getCode() != tgtok::r_paren) {
1019 TokError("expected ')' in binary operator");
Craig Topper011817a2014-04-09 04:50:04 +00001020 return nullptr;
David Greene98ed3c72009-05-14 21:54:42 +00001021 }
1022 Lex.Lex(); // eat the ')'
David Greene5d0c0512009-05-14 20:54:48 +00001023
David Greene98ed3c72009-05-14 21:54:42 +00001024 switch (LexCode) {
Craig Toppera2886c22012-02-07 05:05:23 +00001025 default: llvm_unreachable("Unhandled code!");
David Greene3587eed2009-05-14 23:26:46 +00001026 case tgtok::XIf: {
Craig Topper011817a2014-04-09 04:50:04 +00001027 RecTy *MHSTy = nullptr;
1028 RecTy *RHSTy = nullptr;
Bill Wendling73ce4a62010-12-13 01:46:19 +00001029
Sean Silvafb509ed2012-10-10 20:24:43 +00001030 if (TypedInit *MHSt = dyn_cast<TypedInit>(MHS))
Bill Wendling73ce4a62010-12-13 01:46:19 +00001031 MHSTy = MHSt->getType();
Sean Silvafb509ed2012-10-10 20:24:43 +00001032 if (BitsInit *MHSbits = dyn_cast<BitsInit>(MHS))
Michael Liao026f8332012-09-06 23:32:48 +00001033 MHSTy = BitsRecTy::get(MHSbits->getNumBits());
Sean Silva88eb8dd2012-10-10 20:24:47 +00001034 if (isa<BitInit>(MHS))
Michael Liao026f8332012-09-06 23:32:48 +00001035 MHSTy = BitRecTy::get();
1036
Sean Silvafb509ed2012-10-10 20:24:43 +00001037 if (TypedInit *RHSt = dyn_cast<TypedInit>(RHS))
Bill Wendling73ce4a62010-12-13 01:46:19 +00001038 RHSTy = RHSt->getType();
Sean Silvafb509ed2012-10-10 20:24:43 +00001039 if (BitsInit *RHSbits = dyn_cast<BitsInit>(RHS))
Michael Liao026f8332012-09-06 23:32:48 +00001040 RHSTy = BitsRecTy::get(RHSbits->getNumBits());
Sean Silva88eb8dd2012-10-10 20:24:47 +00001041 if (isa<BitInit>(RHS))
Michael Liao026f8332012-09-06 23:32:48 +00001042 RHSTy = BitRecTy::get();
1043
1044 // For UnsetInit, it's typed from the other hand.
Sean Silva88eb8dd2012-10-10 20:24:47 +00001045 if (isa<UnsetInit>(MHS))
Michael Liao026f8332012-09-06 23:32:48 +00001046 MHSTy = RHSTy;
Sean Silva88eb8dd2012-10-10 20:24:47 +00001047 if (isa<UnsetInit>(RHS))
Michael Liao026f8332012-09-06 23:32:48 +00001048 RHSTy = MHSTy;
Bill Wendling73ce4a62010-12-13 01:46:19 +00001049
1050 if (!MHSTy || !RHSTy) {
David Greene3587eed2009-05-14 23:26:46 +00001051 TokError("could not get type for !if");
Craig Topper011817a2014-04-09 04:50:04 +00001052 return nullptr;
David Greene3587eed2009-05-14 23:26:46 +00001053 }
Bill Wendling73ce4a62010-12-13 01:46:19 +00001054
1055 if (MHSTy->typeIsConvertibleTo(RHSTy)) {
1056 Type = RHSTy;
1057 } else if (RHSTy->typeIsConvertibleTo(MHSTy)) {
1058 Type = MHSTy;
Bob Wilson7248f862009-11-22 04:24:42 +00001059 } else {
David Greene3587eed2009-05-14 23:26:46 +00001060 TokError("inconsistent types for !if");
Craig Topper011817a2014-04-09 04:50:04 +00001061 return nullptr;
David Greene3587eed2009-05-14 23:26:46 +00001062 }
1063 break;
1064 }
David Greenee917fff2009-05-14 22:23:47 +00001065 case tgtok::XForEach: {
Sean Silvafb509ed2012-10-10 20:24:43 +00001066 TypedInit *MHSt = dyn_cast<TypedInit>(MHS);
Craig Topper011817a2014-04-09 04:50:04 +00001067 if (!MHSt) {
David Greenee917fff2009-05-14 22:23:47 +00001068 TokError("could not get type for !foreach");
Craig Topper011817a2014-04-09 04:50:04 +00001069 return nullptr;
David Greenee917fff2009-05-14 22:23:47 +00001070 }
1071 Type = MHSt->getType();
1072 break;
1073 }
David Greene98ed3c72009-05-14 21:54:42 +00001074 case tgtok::XSubst: {
Sean Silvafb509ed2012-10-10 20:24:43 +00001075 TypedInit *RHSt = dyn_cast<TypedInit>(RHS);
Craig Topper011817a2014-04-09 04:50:04 +00001076 if (!RHSt) {
David Greene98ed3c72009-05-14 21:54:42 +00001077 TokError("could not get type for !subst");
Craig Topper011817a2014-04-09 04:50:04 +00001078 return nullptr;
David Greene98ed3c72009-05-14 21:54:42 +00001079 }
1080 Type = RHSt->getType();
1081 break;
1082 }
1083 }
David Greenee32ebf22011-07-29 19:07:07 +00001084 return (TernOpInit::get(Code, LHS, MHS, RHS, Type))->Fold(CurRec,
Bob Wilson7248f862009-11-22 04:24:42 +00001085 CurMultiClass);
David Greene98ed3c72009-05-14 21:54:42 +00001086 }
David Greene5d0c0512009-05-14 20:54:48 +00001087 }
David Greene5d0c0512009-05-14 20:54:48 +00001088}
1089
1090/// ParseOperatorType - Parse a type for an operator. This returns
1091/// null on error.
1092///
1093/// OperatorType ::= '<' Type '>'
1094///
Dan Gohman1432ef82009-08-12 22:10:57 +00001095RecTy *TGParser::ParseOperatorType() {
Craig Topper011817a2014-04-09 04:50:04 +00001096 RecTy *Type = nullptr;
David Greene5d0c0512009-05-14 20:54:48 +00001097
1098 if (Lex.getCode() != tgtok::less) {
1099 TokError("expected type name for operator");
Craig Topper011817a2014-04-09 04:50:04 +00001100 return nullptr;
David Greene5d0c0512009-05-14 20:54:48 +00001101 }
1102 Lex.Lex(); // eat the <
1103
1104 Type = ParseType();
1105
Craig Topper011817a2014-04-09 04:50:04 +00001106 if (!Type) {
David Greene5d0c0512009-05-14 20:54:48 +00001107 TokError("expected type name for operator");
Craig Topper011817a2014-04-09 04:50:04 +00001108 return nullptr;
David Greene5d0c0512009-05-14 20:54:48 +00001109 }
1110
1111 if (Lex.getCode() != tgtok::greater) {
1112 TokError("expected type name for operator");
Craig Topper011817a2014-04-09 04:50:04 +00001113 return nullptr;
David Greene5d0c0512009-05-14 20:54:48 +00001114 }
1115 Lex.Lex(); // eat the >
1116
1117 return Type;
1118}
1119
1120
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001121/// ParseSimpleValue - Parse a tblgen value. This returns null on error.
1122///
1123/// SimpleValue ::= IDValue
1124/// SimpleValue ::= INTVAL
Chris Lattnerbe0d6722009-03-11 17:08:13 +00001125/// SimpleValue ::= STRVAL+
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001126/// SimpleValue ::= CODEFRAGMENT
1127/// SimpleValue ::= '?'
1128/// SimpleValue ::= '{' ValueList '}'
1129/// SimpleValue ::= ID '<' ValueListNE '>'
1130/// SimpleValue ::= '[' ValueList ']'
1131/// SimpleValue ::= '(' IDValue DagArgList ')'
1132/// SimpleValue ::= CONCATTOK '(' Value ',' Value ')'
Hal Finkelc7d4dc12013-01-25 14:49:08 +00001133/// SimpleValue ::= ADDTOK '(' Value ',' Value ')'
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001134/// SimpleValue ::= SHLTOK '(' Value ',' Value ')'
1135/// SimpleValue ::= SRATOK '(' Value ',' Value ')'
1136/// SimpleValue ::= SRLTOK '(' Value ',' Value ')'
1137/// SimpleValue ::= STRCONCATTOK '(' Value ',' Value ')'
1138///
David Greened4263a62011-10-19 13:04:20 +00001139Init *TGParser::ParseSimpleValue(Record *CurRec, RecTy *ItemType,
1140 IDParseMode Mode) {
Craig Topper011817a2014-04-09 04:50:04 +00001141 Init *R = nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001142 switch (Lex.getCode()) {
1143 default: TokError("Unknown token when parsing a value"); break;
David Greene8e85b482011-10-19 13:04:43 +00001144 case tgtok::paste:
1145 // This is a leading paste operation. This is deprecated but
1146 // still exists in some .td files. Ignore it.
1147 Lex.Lex(); // Skip '#'.
1148 return ParseSimpleValue(CurRec, ItemType, Mode);
David Greenee32ebf22011-07-29 19:07:07 +00001149 case tgtok::IntVal: R = IntInit::get(Lex.getCurIntVal()); Lex.Lex(); break;
Chris Lattnerbe0d6722009-03-11 17:08:13 +00001150 case tgtok::StrVal: {
1151 std::string Val = Lex.getCurStrVal();
1152 Lex.Lex();
Bob Wilson7248f862009-11-22 04:24:42 +00001153
Jim Grosbach975c1cb2009-03-26 16:17:51 +00001154 // Handle multiple consecutive concatenated strings.
Chris Lattnerbe0d6722009-03-11 17:08:13 +00001155 while (Lex.getCode() == tgtok::StrVal) {
1156 Val += Lex.getCurStrVal();
1157 Lex.Lex();
1158 }
Bob Wilson7248f862009-11-22 04:24:42 +00001159
David Greenee32ebf22011-07-29 19:07:07 +00001160 R = StringInit::get(Val);
Chris Lattnerbe0d6722009-03-11 17:08:13 +00001161 break;
1162 }
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001163 case tgtok::CodeFragment:
Jakob Stoklund Olesendd8fbf52012-01-13 03:38:34 +00001164 R = StringInit::get(Lex.getCurStrVal());
Chris Lattnere76cfcf2010-10-06 04:31:40 +00001165 Lex.Lex();
1166 break;
1167 case tgtok::question:
David Greenee32ebf22011-07-29 19:07:07 +00001168 R = UnsetInit::get();
Chris Lattnere76cfcf2010-10-06 04:31:40 +00001169 Lex.Lex();
1170 break;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001171 case tgtok::Id: {
Chris Lattner526c8cb2009-06-21 03:39:35 +00001172 SMLoc NameLoc = Lex.getLoc();
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001173 std::string Name = Lex.getCurStrVal();
1174 if (Lex.Lex() != tgtok::less) // consume the Id.
David Greened4263a62011-10-19 13:04:20 +00001175 return ParseIDValue(CurRec, Name, NameLoc, Mode); // Value ::= IDValue
Bob Wilson7248f862009-11-22 04:24:42 +00001176
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001177 // Value ::= ID '<' ValueListNE '>'
1178 if (Lex.Lex() == tgtok::greater) {
1179 TokError("expected non-empty value list");
Craig Topper011817a2014-04-09 04:50:04 +00001180 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001181 }
David Greene8618f952009-06-08 20:23:18 +00001182
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001183 // This is a CLASS<initvalslist> expression. This is supposed to synthesize
1184 // a new anonymous definition, deriving from CLASS<initvalslist> with no
1185 // body.
1186 Record *Class = Records.getClass(Name);
1187 if (!Class) {
1188 Error(NameLoc, "Expected a class name, got '" + Name + "'");
Craig Topper011817a2014-04-09 04:50:04 +00001189 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001190 }
David Greene8618f952009-06-08 20:23:18 +00001191
David Greeneaf8ee2c2011-07-29 22:43:06 +00001192 std::vector<Init*> ValueList = ParseValueList(CurRec, Class);
Craig Topper011817a2014-04-09 04:50:04 +00001193 if (ValueList.empty()) return nullptr;
Bob Wilson7248f862009-11-22 04:24:42 +00001194
David Greene8618f952009-06-08 20:23:18 +00001195 if (Lex.getCode() != tgtok::greater) {
1196 TokError("expected '>' at end of value list");
Craig Topper011817a2014-04-09 04:50:04 +00001197 return nullptr;
David Greene8618f952009-06-08 20:23:18 +00001198 }
1199 Lex.Lex(); // eat the '>'
Jordan Rosef12e8a92013-01-10 18:50:11 +00001200 SMLoc EndLoc = Lex.getLoc();
Bob Wilson7248f862009-11-22 04:24:42 +00001201
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001202 // Create the new record, set it as CurRec temporarily.
Alp Tokerce91fe52013-12-21 18:51:00 +00001203 Record *NewRec = new Record(GetNewAnonymousName(), NameLoc, Records,
Jordan Roseabdd99b2013-01-10 18:50:05 +00001204 /*IsAnonymous=*/true);
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001205 SubClassReference SCRef;
Jordan Rosef12e8a92013-01-10 18:50:11 +00001206 SCRef.RefRange = SMRange(NameLoc, EndLoc);
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001207 SCRef.Rec = Class;
1208 SCRef.TemplateArgs = ValueList;
1209 // Add info about the subclass to NewRec.
1210 if (AddSubClass(NewRec, SCRef))
Craig Topper011817a2014-04-09 04:50:04 +00001211 return nullptr;
Hal Finkela8c1f462014-01-02 20:47:09 +00001212 if (!CurMultiClass) {
1213 NewRec->resolveReferences();
1214 Records.addDef(NewRec);
1215 } else {
1216 // Otherwise, we're inside a multiclass, add it to the multiclass.
1217 CurMultiClass->DefPrototypes.push_back(NewRec);
1218
1219 // Copy the template arguments for the multiclass into the def.
1220 const std::vector<Init *> &TArgs =
1221 CurMultiClass->Rec.getTemplateArgs();
1222
1223 for (unsigned i = 0, e = TArgs.size(); i != e; ++i) {
1224 const RecordVal *RV = CurMultiClass->Rec.getValue(TArgs[i]);
1225 assert(RV && "Template arg doesn't exist?");
1226 NewRec->addValue(*RV);
1227 }
1228
1229 // We can't return the prototype def here, instead return:
1230 // !cast<ItemType>(!strconcat(NAME, AnonName)).
1231 const RecordVal *MCNameRV = CurMultiClass->Rec.getValue("NAME");
1232 assert(MCNameRV && "multiclass record must have a NAME");
1233
1234 return UnOpInit::get(UnOpInit::CAST,
1235 BinOpInit::get(BinOpInit::STRCONCAT,
1236 VarInit::get(MCNameRV->getName(),
1237 MCNameRV->getType()),
1238 NewRec->getNameInit(),
1239 StringRecTy::get()),
1240 Class->getDefInit()->getType());
1241 }
Bob Wilson7248f862009-11-22 04:24:42 +00001242
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001243 // The result of the expression is a reference to the new record.
Jakob Stoklund Olesenabcfdce2011-07-18 17:02:57 +00001244 return DefInit::get(NewRec);
Bob Wilson7248f862009-11-22 04:24:42 +00001245 }
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001246 case tgtok::l_brace: { // Value ::= '{' ValueList '}'
Chris Lattner526c8cb2009-06-21 03:39:35 +00001247 SMLoc BraceLoc = Lex.getLoc();
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001248 Lex.Lex(); // eat the '{'
David Greeneaf8ee2c2011-07-29 22:43:06 +00001249 std::vector<Init*> Vals;
Bob Wilson7248f862009-11-22 04:24:42 +00001250
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001251 if (Lex.getCode() != tgtok::r_brace) {
1252 Vals = ParseValueList(CurRec);
Craig Topper011817a2014-04-09 04:50:04 +00001253 if (Vals.empty()) return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001254 }
1255 if (Lex.getCode() != tgtok::r_brace) {
1256 TokError("expected '}' at end of bit list value");
Craig Topper011817a2014-04-09 04:50:04 +00001257 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001258 }
1259 Lex.Lex(); // eat the '}'
Bob Wilson7248f862009-11-22 04:24:42 +00001260
David Greeneaf8ee2c2011-07-29 22:43:06 +00001261 SmallVector<Init *, 16> NewBits(Vals.size());
David Greeneb3da8122011-07-29 19:07:00 +00001262
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001263 for (unsigned i = 0, e = Vals.size(); i != e; ++i) {
David Greeneaf8ee2c2011-07-29 22:43:06 +00001264 Init *Bit = Vals[i]->convertInitializerTo(BitRecTy::get());
Craig Topper011817a2014-04-09 04:50:04 +00001265 if (!Bit) {
Chris Lattner52416952007-11-22 21:06:59 +00001266 Error(BraceLoc, "Element #" + utostr(i) + " (" + Vals[i]->getAsString()+
1267 ") is not convertable to a bit");
Craig Topper011817a2014-04-09 04:50:04 +00001268 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001269 }
David Greeneb3da8122011-07-29 19:07:00 +00001270 NewBits[Vals.size()-i-1] = Bit;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001271 }
David Greenee32ebf22011-07-29 19:07:07 +00001272 return BitsInit::get(NewBits);
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001273 }
1274 case tgtok::l_square: { // Value ::= '[' ValueList ']'
1275 Lex.Lex(); // eat the '['
David Greeneaf8ee2c2011-07-29 22:43:06 +00001276 std::vector<Init*> Vals;
Bob Wilson7248f862009-11-22 04:24:42 +00001277
Craig Topper011817a2014-04-09 04:50:04 +00001278 RecTy *DeducedEltTy = nullptr;
1279 ListRecTy *GivenListTy = nullptr;
Bob Wilson7248f862009-11-22 04:24:42 +00001280
Craig Topper011817a2014-04-09 04:50:04 +00001281 if (ItemType) {
Sean Silva98c61712012-10-05 03:31:58 +00001282 ListRecTy *ListType = dyn_cast<ListRecTy>(ItemType);
Craig Topper011817a2014-04-09 04:50:04 +00001283 if (!ListType) {
Reid Klecknerd78273f2013-08-06 22:51:21 +00001284 std::string s;
1285 raw_string_ostream ss(s);
1286 ss << "Type mismatch for list, expected list type, got "
1287 << ItemType->getAsString();
1288 TokError(ss.str());
Craig Topper011817a2014-04-09 04:50:04 +00001289 return nullptr;
David Greene8618f952009-06-08 20:23:18 +00001290 }
1291 GivenListTy = ListType;
Bob Wilson7248f862009-11-22 04:24:42 +00001292 }
David Greene8618f952009-06-08 20:23:18 +00001293
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001294 if (Lex.getCode() != tgtok::r_square) {
Craig Topper011817a2014-04-09 04:50:04 +00001295 Vals = ParseValueList(CurRec, nullptr,
1296 GivenListTy ? GivenListTy->getElementType() : nullptr);
1297 if (Vals.empty()) return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001298 }
1299 if (Lex.getCode() != tgtok::r_square) {
1300 TokError("expected ']' at end of list value");
Craig Topper011817a2014-04-09 04:50:04 +00001301 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001302 }
1303 Lex.Lex(); // eat the ']'
David Greene8618f952009-06-08 20:23:18 +00001304
Craig Topper011817a2014-04-09 04:50:04 +00001305 RecTy *GivenEltTy = nullptr;
David Greene8618f952009-06-08 20:23:18 +00001306 if (Lex.getCode() == tgtok::less) {
1307 // Optional list element type
1308 Lex.Lex(); // eat the '<'
1309
1310 GivenEltTy = ParseType();
Craig Topper011817a2014-04-09 04:50:04 +00001311 if (!GivenEltTy) {
David Greene8618f952009-06-08 20:23:18 +00001312 // Couldn't parse element type
Craig Topper011817a2014-04-09 04:50:04 +00001313 return nullptr;
David Greene8618f952009-06-08 20:23:18 +00001314 }
1315
1316 if (Lex.getCode() != tgtok::greater) {
1317 TokError("expected '>' at end of list element type");
Craig Topper011817a2014-04-09 04:50:04 +00001318 return nullptr;
David Greene8618f952009-06-08 20:23:18 +00001319 }
1320 Lex.Lex(); // eat the '>'
1321 }
1322
1323 // Check elements
Craig Topper011817a2014-04-09 04:50:04 +00001324 RecTy *EltTy = nullptr;
David Greeneaf8ee2c2011-07-29 22:43:06 +00001325 for (std::vector<Init *>::iterator i = Vals.begin(), ie = Vals.end();
David Greene8618f952009-06-08 20:23:18 +00001326 i != ie;
1327 ++i) {
Sean Silvafb509ed2012-10-10 20:24:43 +00001328 TypedInit *TArg = dyn_cast<TypedInit>(*i);
Craig Topper011817a2014-04-09 04:50:04 +00001329 if (!TArg) {
David Greene8618f952009-06-08 20:23:18 +00001330 TokError("Untyped list element");
Craig Topper011817a2014-04-09 04:50:04 +00001331 return nullptr;
David Greene8618f952009-06-08 20:23:18 +00001332 }
Craig Topper011817a2014-04-09 04:50:04 +00001333 if (EltTy) {
David Greene8618f952009-06-08 20:23:18 +00001334 EltTy = resolveTypes(EltTy, TArg->getType());
Craig Topper011817a2014-04-09 04:50:04 +00001335 if (!EltTy) {
David Greene8618f952009-06-08 20:23:18 +00001336 TokError("Incompatible types in list elements");
Craig Topper011817a2014-04-09 04:50:04 +00001337 return nullptr;
David Greene8618f952009-06-08 20:23:18 +00001338 }
Bob Wilson7248f862009-11-22 04:24:42 +00001339 } else {
David Greene8618f952009-06-08 20:23:18 +00001340 EltTy = TArg->getType();
1341 }
1342 }
1343
Craig Topper011817a2014-04-09 04:50:04 +00001344 if (GivenEltTy) {
1345 if (EltTy) {
David Greene8618f952009-06-08 20:23:18 +00001346 // Verify consistency
1347 if (!EltTy->typeIsConvertibleTo(GivenEltTy)) {
1348 TokError("Incompatible types in list elements");
Craig Topper011817a2014-04-09 04:50:04 +00001349 return nullptr;
David Greene8618f952009-06-08 20:23:18 +00001350 }
1351 }
1352 EltTy = GivenEltTy;
1353 }
1354
Craig Topper011817a2014-04-09 04:50:04 +00001355 if (!EltTy) {
1356 if (!ItemType) {
David Greene8618f952009-06-08 20:23:18 +00001357 TokError("No type for list");
Craig Topper011817a2014-04-09 04:50:04 +00001358 return nullptr;
David Greene8618f952009-06-08 20:23:18 +00001359 }
1360 DeducedEltTy = GivenListTy->getElementType();
Bob Wilson7248f862009-11-22 04:24:42 +00001361 } else {
David Greene8618f952009-06-08 20:23:18 +00001362 // Make sure the deduced type is compatible with the given type
1363 if (GivenListTy) {
1364 if (!EltTy->typeIsConvertibleTo(GivenListTy->getElementType())) {
1365 TokError("Element type mismatch for list");
Craig Topper011817a2014-04-09 04:50:04 +00001366 return nullptr;
David Greene8618f952009-06-08 20:23:18 +00001367 }
1368 }
1369 DeducedEltTy = EltTy;
1370 }
Bob Wilson7248f862009-11-22 04:24:42 +00001371
David Greenee32ebf22011-07-29 19:07:07 +00001372 return ListInit::get(Vals, DeducedEltTy);
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001373 }
1374 case tgtok::l_paren: { // Value ::= '(' IDValue DagArgList ')'
1375 Lex.Lex(); // eat the '('
Chris Lattner94026332010-10-06 00:19:21 +00001376 if (Lex.getCode() != tgtok::Id && Lex.getCode() != tgtok::XCast) {
Chris Lattner57dd7742008-04-10 04:48:34 +00001377 TokError("expected identifier in dag init");
Craig Topper011817a2014-04-09 04:50:04 +00001378 return nullptr;
Chris Lattner57dd7742008-04-10 04:48:34 +00001379 }
Bob Wilson7248f862009-11-22 04:24:42 +00001380
David Greeneaf8ee2c2011-07-29 22:43:06 +00001381 Init *Operator = ParseValue(CurRec);
Craig Topper011817a2014-04-09 04:50:04 +00001382 if (!Operator) return nullptr;
David Greenea9c6c5d2009-04-22 20:18:10 +00001383
Nate Begemandbe3f772009-03-19 05:21:56 +00001384 // If the operator name is present, parse it.
1385 std::string OperatorName;
1386 if (Lex.getCode() == tgtok::colon) {
1387 if (Lex.Lex() != tgtok::VarName) { // eat the ':'
1388 TokError("expected variable name in dag operator");
Craig Topper011817a2014-04-09 04:50:04 +00001389 return nullptr;
Nate Begemandbe3f772009-03-19 05:21:56 +00001390 }
1391 OperatorName = Lex.getCurStrVal();
1392 Lex.Lex(); // eat the VarName.
1393 }
Bob Wilson7248f862009-11-22 04:24:42 +00001394
David Greeneaf8ee2c2011-07-29 22:43:06 +00001395 std::vector<std::pair<llvm::Init*, std::string> > DagArgs;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001396 if (Lex.getCode() != tgtok::r_paren) {
1397 DagArgs = ParseDagArgList(CurRec);
Craig Topper011817a2014-04-09 04:50:04 +00001398 if (DagArgs.empty()) return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001399 }
Bob Wilson7248f862009-11-22 04:24:42 +00001400
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001401 if (Lex.getCode() != tgtok::r_paren) {
1402 TokError("expected ')' in dag init");
Craig Topper011817a2014-04-09 04:50:04 +00001403 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001404 }
1405 Lex.Lex(); // eat the ')'
Bob Wilson7248f862009-11-22 04:24:42 +00001406
David Greenee32ebf22011-07-29 19:07:07 +00001407 return DagInit::get(Operator, OperatorName, DagArgs);
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001408 }
Bob Wilson7248f862009-11-22 04:24:42 +00001409
David Greene2f7cf7f2011-01-07 17:05:37 +00001410 case tgtok::XHead:
1411 case tgtok::XTail:
1412 case tgtok::XEmpty:
David Greenee8f3b272009-05-14 21:22:49 +00001413 case tgtok::XCast: // Value ::= !unop '(' Value ')'
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001414 case tgtok::XConcat:
Hal Finkelc7d4dc12013-01-25 14:49:08 +00001415 case tgtok::XADD:
Bob Wilson7248f862009-11-22 04:24:42 +00001416 case tgtok::XSRA:
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001417 case tgtok::XSRL:
1418 case tgtok::XSHL:
David Greene297bfe62010-01-05 19:11:42 +00001419 case tgtok::XEq:
Chris Lattner94026332010-10-06 00:19:21 +00001420 case tgtok::XStrConcat: // Value ::= !binop '(' Value ',' Value ')'
David Greene3587eed2009-05-14 23:26:46 +00001421 case tgtok::XIf:
David Greenee917fff2009-05-14 22:23:47 +00001422 case tgtok::XForEach:
David Greene98ed3c72009-05-14 21:54:42 +00001423 case tgtok::XSubst: { // Value ::= !ternop '(' Value ',' Value ',' Value ')'
David Greene5d0c0512009-05-14 20:54:48 +00001424 return ParseOperation(CurRec);
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001425 }
1426 }
Bob Wilson7248f862009-11-22 04:24:42 +00001427
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001428 return R;
1429}
1430
1431/// ParseValue - Parse a tblgen value. This returns null on error.
1432///
1433/// Value ::= SimpleValue ValueSuffix*
1434/// ValueSuffix ::= '{' BitList '}'
1435/// ValueSuffix ::= '[' BitList ']'
1436/// ValueSuffix ::= '.' ID
1437///
David Greened4263a62011-10-19 13:04:20 +00001438Init *TGParser::ParseValue(Record *CurRec, RecTy *ItemType, IDParseMode Mode) {
1439 Init *Result = ParseSimpleValue(CurRec, ItemType, Mode);
Craig Topper011817a2014-04-09 04:50:04 +00001440 if (!Result) return nullptr;
Bob Wilson7248f862009-11-22 04:24:42 +00001441
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001442 // Parse the suffixes now if present.
1443 while (1) {
1444 switch (Lex.getCode()) {
1445 default: return Result;
1446 case tgtok::l_brace: {
David Greenefb927af2012-02-22 16:09:41 +00001447 if (Mode == ParseNameMode || Mode == ParseForeachMode)
David Greeneb8a7c9d2011-10-19 13:04:26 +00001448 // This is the beginning of the object body.
1449 return Result;
1450
Chris Lattner526c8cb2009-06-21 03:39:35 +00001451 SMLoc CurlyLoc = Lex.getLoc();
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001452 Lex.Lex(); // eat the '{'
1453 std::vector<unsigned> Ranges = ParseRangeList();
Craig Topper011817a2014-04-09 04:50:04 +00001454 if (Ranges.empty()) return nullptr;
Bob Wilson7248f862009-11-22 04:24:42 +00001455
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001456 // Reverse the bitlist.
1457 std::reverse(Ranges.begin(), Ranges.end());
1458 Result = Result->convertInitializerBitRange(Ranges);
Craig Topper011817a2014-04-09 04:50:04 +00001459 if (!Result) {
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001460 Error(CurlyLoc, "Invalid bit range for value");
Craig Topper011817a2014-04-09 04:50:04 +00001461 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001462 }
Bob Wilson7248f862009-11-22 04:24:42 +00001463
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001464 // Eat the '}'.
1465 if (Lex.getCode() != tgtok::r_brace) {
1466 TokError("expected '}' at end of bit range list");
Craig Topper011817a2014-04-09 04:50:04 +00001467 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001468 }
1469 Lex.Lex();
1470 break;
1471 }
1472 case tgtok::l_square: {
Chris Lattner526c8cb2009-06-21 03:39:35 +00001473 SMLoc SquareLoc = Lex.getLoc();
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001474 Lex.Lex(); // eat the '['
1475 std::vector<unsigned> Ranges = ParseRangeList();
Craig Topper011817a2014-04-09 04:50:04 +00001476 if (Ranges.empty()) return nullptr;
Bob Wilson7248f862009-11-22 04:24:42 +00001477
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001478 Result = Result->convertInitListSlice(Ranges);
Craig Topper011817a2014-04-09 04:50:04 +00001479 if (!Result) {
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001480 Error(SquareLoc, "Invalid range for list slice");
Craig Topper011817a2014-04-09 04:50:04 +00001481 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001482 }
Bob Wilson7248f862009-11-22 04:24:42 +00001483
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001484 // Eat the ']'.
1485 if (Lex.getCode() != tgtok::r_square) {
1486 TokError("expected ']' at end of list slice");
Craig Topper011817a2014-04-09 04:50:04 +00001487 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001488 }
1489 Lex.Lex();
1490 break;
1491 }
1492 case tgtok::period:
1493 if (Lex.Lex() != tgtok::Id) { // eat the .
1494 TokError("expected field identifier after '.'");
Craig Topper011817a2014-04-09 04:50:04 +00001495 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001496 }
1497 if (!Result->getFieldType(Lex.getCurStrVal())) {
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001498 TokError("Cannot access field '" + Lex.getCurStrVal() + "' of value '" +
Chris Lattner52416952007-11-22 21:06:59 +00001499 Result->getAsString() + "'");
Craig Topper011817a2014-04-09 04:50:04 +00001500 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001501 }
David Greenee32ebf22011-07-29 19:07:07 +00001502 Result = FieldInit::get(Result, Lex.getCurStrVal());
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001503 Lex.Lex(); // eat field name
1504 break;
David Greene8e85b482011-10-19 13:04:43 +00001505
1506 case tgtok::paste:
1507 SMLoc PasteLoc = Lex.getLoc();
1508
1509 // Create a !strconcat() operation, first casting each operand to
1510 // a string if necessary.
1511
Sean Silvafb509ed2012-10-10 20:24:43 +00001512 TypedInit *LHS = dyn_cast<TypedInit>(Result);
David Greene8e85b482011-10-19 13:04:43 +00001513 if (!LHS) {
1514 Error(PasteLoc, "LHS of paste is not typed!");
Craig Topper011817a2014-04-09 04:50:04 +00001515 return nullptr;
David Greene8e85b482011-10-19 13:04:43 +00001516 }
1517
1518 if (LHS->getType() != StringRecTy::get()) {
1519 LHS = UnOpInit::get(UnOpInit::CAST, LHS, StringRecTy::get());
1520 }
1521
Craig Topper011817a2014-04-09 04:50:04 +00001522 TypedInit *RHS = nullptr;
David Greene8e85b482011-10-19 13:04:43 +00001523
1524 Lex.Lex(); // Eat the '#'.
1525 switch (Lex.getCode()) {
1526 case tgtok::colon:
1527 case tgtok::semi:
1528 case tgtok::l_brace:
1529 // These are all of the tokens that can begin an object body.
1530 // Some of these can also begin values but we disallow those cases
1531 // because they are unlikely to be useful.
1532
1533 // Trailing paste, concat with an empty string.
1534 RHS = StringInit::get("");
1535 break;
1536
1537 default:
1538 Init *RHSResult = ParseValue(CurRec, ItemType, ParseNameMode);
Sean Silvafb509ed2012-10-10 20:24:43 +00001539 RHS = dyn_cast<TypedInit>(RHSResult);
David Greene8e85b482011-10-19 13:04:43 +00001540 if (!RHS) {
1541 Error(PasteLoc, "RHS of paste is not typed!");
Craig Topper011817a2014-04-09 04:50:04 +00001542 return nullptr;
David Greene8e85b482011-10-19 13:04:43 +00001543 }
1544
1545 if (RHS->getType() != StringRecTy::get()) {
1546 RHS = UnOpInit::get(UnOpInit::CAST, RHS, StringRecTy::get());
1547 }
1548
1549 break;
1550 }
1551
1552 Result = BinOpInit::get(BinOpInit::STRCONCAT, LHS, RHS,
1553 StringRecTy::get())->Fold(CurRec, CurMultiClass);
1554 break;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001555 }
1556 }
1557}
1558
1559/// ParseDagArgList - Parse the argument list for a dag literal expression.
1560///
Jakob Stoklund Olesen91a58482013-03-24 19:36:51 +00001561/// DagArg ::= Value (':' VARNAME)?
1562/// DagArg ::= VARNAME
1563/// DagArgList ::= DagArg
1564/// DagArgList ::= DagArgList ',' DagArg
David Greeneaf8ee2c2011-07-29 22:43:06 +00001565std::vector<std::pair<llvm::Init*, std::string> >
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001566TGParser::ParseDagArgList(Record *CurRec) {
David Greeneaf8ee2c2011-07-29 22:43:06 +00001567 std::vector<std::pair<llvm::Init*, std::string> > Result;
Bob Wilson7248f862009-11-22 04:24:42 +00001568
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001569 while (1) {
Jakob Stoklund Olesen91a58482013-03-24 19:36:51 +00001570 // DagArg ::= VARNAME
1571 if (Lex.getCode() == tgtok::VarName) {
1572 // A missing value is treated like '?'.
1573 Result.push_back(std::make_pair(UnsetInit::get(), Lex.getCurStrVal()));
1574 Lex.Lex();
1575 } else {
1576 // DagArg ::= Value (':' VARNAME)?
1577 Init *Val = ParseValue(CurRec);
Craig Topper011817a2014-04-09 04:50:04 +00001578 if (!Val)
David Greeneaf8ee2c2011-07-29 22:43:06 +00001579 return std::vector<std::pair<llvm::Init*, std::string> >();
Jakob Stoklund Olesen91a58482013-03-24 19:36:51 +00001580
1581 // If the variable name is present, add it.
1582 std::string VarName;
1583 if (Lex.getCode() == tgtok::colon) {
1584 if (Lex.Lex() != tgtok::VarName) { // eat the ':'
1585 TokError("expected variable name in dag literal");
1586 return std::vector<std::pair<llvm::Init*, std::string> >();
1587 }
1588 VarName = Lex.getCurStrVal();
1589 Lex.Lex(); // eat the VarName.
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001590 }
Jakob Stoklund Olesen91a58482013-03-24 19:36:51 +00001591
1592 Result.push_back(std::make_pair(Val, VarName));
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001593 }
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001594 if (Lex.getCode() != tgtok::comma) break;
Bob Wilson7248f862009-11-22 04:24:42 +00001595 Lex.Lex(); // eat the ','
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001596 }
Bob Wilson7248f862009-11-22 04:24:42 +00001597
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001598 return Result;
1599}
1600
1601
1602/// ParseValueList - Parse a comma separated list of values, returning them as a
1603/// vector. Note that this always expects to be able to parse at least one
1604/// value. It returns an empty list if this is not possible.
1605///
1606/// ValueList ::= Value (',' Value)
1607///
David Greeneaf8ee2c2011-07-29 22:43:06 +00001608std::vector<Init*> TGParser::ParseValueList(Record *CurRec, Record *ArgsRec,
Eric Christopher71520a82011-07-11 23:06:52 +00001609 RecTy *EltTy) {
David Greeneaf8ee2c2011-07-29 22:43:06 +00001610 std::vector<Init*> Result;
David Greene8618f952009-06-08 20:23:18 +00001611 RecTy *ItemType = EltTy;
David Greenefd42c8a2009-06-29 19:59:52 +00001612 unsigned int ArgN = 0;
Craig Topper011817a2014-04-09 04:50:04 +00001613 if (ArgsRec && !EltTy) {
David Greenedb10e692011-10-19 13:02:42 +00001614 const std::vector<Init *> &TArgs = ArgsRec->getTemplateArgs();
Jim Grosbach91f5a3f2012-01-20 20:02:39 +00001615 if (!TArgs.size()) {
1616 TokError("template argument provided to non-template class");
1617 return std::vector<Init*>();
1618 }
David Greene8618f952009-06-08 20:23:18 +00001619 const RecordVal *RV = ArgsRec->getValue(TArgs[ArgN]);
David Greene39db48d2011-09-19 18:26:07 +00001620 if (!RV) {
1621 errs() << "Cannot find template arg " << ArgN << " (" << TArgs[ArgN]
1622 << ")\n";
1623 }
David Greene8618f952009-06-08 20:23:18 +00001624 assert(RV && "Template argument record not found??");
1625 ItemType = RV->getType();
1626 ++ArgN;
1627 }
1628 Result.push_back(ParseValue(CurRec, ItemType));
Craig Topper011817a2014-04-09 04:50:04 +00001629 if (!Result.back()) return std::vector<Init*>();
Bob Wilson7248f862009-11-22 04:24:42 +00001630
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001631 while (Lex.getCode() == tgtok::comma) {
1632 Lex.Lex(); // Eat the comma
Bob Wilson7248f862009-11-22 04:24:42 +00001633
Craig Topper011817a2014-04-09 04:50:04 +00001634 if (ArgsRec && !EltTy) {
David Greenedb10e692011-10-19 13:02:42 +00001635 const std::vector<Init *> &TArgs = ArgsRec->getTemplateArgs();
David Greenefd42c8a2009-06-29 19:59:52 +00001636 if (ArgN >= TArgs.size()) {
1637 TokError("too many template arguments");
David Greeneaf8ee2c2011-07-29 22:43:06 +00001638 return std::vector<Init*>();
Bob Wilson7248f862009-11-22 04:24:42 +00001639 }
David Greene8618f952009-06-08 20:23:18 +00001640 const RecordVal *RV = ArgsRec->getValue(TArgs[ArgN]);
1641 assert(RV && "Template argument record not found??");
1642 ItemType = RV->getType();
1643 ++ArgN;
1644 }
1645 Result.push_back(ParseValue(CurRec, ItemType));
Craig Topper011817a2014-04-09 04:50:04 +00001646 if (!Result.back()) return std::vector<Init*>();
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001647 }
Bob Wilson7248f862009-11-22 04:24:42 +00001648
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001649 return Result;
1650}
1651
1652
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001653/// ParseDeclaration - Read a declaration, returning the name of field ID, or an
1654/// empty string on error. This can happen in a number of different context's,
1655/// including within a def or in the template args for a def (which which case
1656/// CurRec will be non-null) and within the template args for a multiclass (in
1657/// which case CurRec will be null, but CurMultiClass will be set). This can
1658/// also happen within a def that is within a multiclass, which will set both
1659/// CurRec and CurMultiClass.
1660///
1661/// Declaration ::= FIELD? Type ID ('=' Value)?
1662///
David Greenedb10e692011-10-19 13:02:42 +00001663Init *TGParser::ParseDeclaration(Record *CurRec,
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001664 bool ParsingTemplateArgs) {
1665 // Read the field prefix if present.
1666 bool HasField = Lex.getCode() == tgtok::Field;
1667 if (HasField) Lex.Lex();
Bob Wilson7248f862009-11-22 04:24:42 +00001668
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001669 RecTy *Type = ParseType();
Craig Topper011817a2014-04-09 04:50:04 +00001670 if (!Type) return nullptr;
Bob Wilson7248f862009-11-22 04:24:42 +00001671
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001672 if (Lex.getCode() != tgtok::Id) {
1673 TokError("Expected identifier in declaration");
Craig Topper011817a2014-04-09 04:50:04 +00001674 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001675 }
Bob Wilson7248f862009-11-22 04:24:42 +00001676
Chris Lattner526c8cb2009-06-21 03:39:35 +00001677 SMLoc IdLoc = Lex.getLoc();
David Greenedb10e692011-10-19 13:02:42 +00001678 Init *DeclName = StringInit::get(Lex.getCurStrVal());
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001679 Lex.Lex();
Bob Wilson7248f862009-11-22 04:24:42 +00001680
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001681 if (ParsingTemplateArgs) {
1682 if (CurRec) {
David Greenedb10e692011-10-19 13:02:42 +00001683 DeclName = QualifyName(*CurRec, CurMultiClass, DeclName, ":");
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001684 } else {
1685 assert(CurMultiClass);
1686 }
1687 if (CurMultiClass)
David Greenedb10e692011-10-19 13:02:42 +00001688 DeclName = QualifyName(CurMultiClass->Rec, CurMultiClass, DeclName,
1689 "::");
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001690 }
Bob Wilson7248f862009-11-22 04:24:42 +00001691
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001692 // Add the value.
1693 if (AddValue(CurRec, IdLoc, RecordVal(DeclName, Type, HasField)))
Craig Topper011817a2014-04-09 04:50:04 +00001694 return nullptr;
Bob Wilson7248f862009-11-22 04:24:42 +00001695
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001696 // If a value is present, parse it.
1697 if (Lex.getCode() == tgtok::equal) {
1698 Lex.Lex();
Chris Lattner526c8cb2009-06-21 03:39:35 +00001699 SMLoc ValLoc = Lex.getLoc();
David Greeneaf8ee2c2011-07-29 22:43:06 +00001700 Init *Val = ParseValue(CurRec, Type);
Craig Topper011817a2014-04-09 04:50:04 +00001701 if (!Val ||
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001702 SetValue(CurRec, ValLoc, DeclName, std::vector<unsigned>(), Val))
Craig Topper011817a2014-04-09 04:50:04 +00001703 return nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001704 }
Bob Wilson7248f862009-11-22 04:24:42 +00001705
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001706 return DeclName;
1707}
1708
David Greenefb927af2012-02-22 16:09:41 +00001709/// ParseForeachDeclaration - Read a foreach declaration, returning
1710/// the name of the declared object or a NULL Init on error. Return
1711/// the name of the parsed initializer list through ForeachListName.
1712///
Jakob Stoklund Olesen36a5c8e2012-05-24 22:17:39 +00001713/// ForeachDeclaration ::= ID '=' '[' ValueList ']'
1714/// ForeachDeclaration ::= ID '=' '{' RangeList '}'
1715/// ForeachDeclaration ::= ID '=' RangePiece
David Greenefb927af2012-02-22 16:09:41 +00001716///
Jakob Stoklund Olesen8a120b12012-05-24 22:17:33 +00001717VarInit *TGParser::ParseForeachDeclaration(ListInit *&ForeachListValue) {
David Greenefb927af2012-02-22 16:09:41 +00001718 if (Lex.getCode() != tgtok::Id) {
1719 TokError("Expected identifier in foreach declaration");
Craig Topper011817a2014-04-09 04:50:04 +00001720 return nullptr;
David Greenefb927af2012-02-22 16:09:41 +00001721 }
1722
1723 Init *DeclName = StringInit::get(Lex.getCurStrVal());
1724 Lex.Lex();
1725
1726 // If a value is present, parse it.
1727 if (Lex.getCode() != tgtok::equal) {
1728 TokError("Expected '=' in foreach declaration");
Craig Topper011817a2014-04-09 04:50:04 +00001729 return nullptr;
David Greenefb927af2012-02-22 16:09:41 +00001730 }
1731 Lex.Lex(); // Eat the '='
1732
Craig Topper011817a2014-04-09 04:50:04 +00001733 RecTy *IterType = nullptr;
Jakob Stoklund Olesen36a5c8e2012-05-24 22:17:39 +00001734 std::vector<unsigned> Ranges;
David Greenefb927af2012-02-22 16:09:41 +00001735
Jakob Stoklund Olesen36a5c8e2012-05-24 22:17:39 +00001736 switch (Lex.getCode()) {
Craig Topper011817a2014-04-09 04:50:04 +00001737 default: TokError("Unknown token when expecting a range list"); return nullptr;
Jakob Stoklund Olesen36a5c8e2012-05-24 22:17:39 +00001738 case tgtok::l_square: { // '[' ValueList ']'
Craig Topper011817a2014-04-09 04:50:04 +00001739 Init *List = ParseSimpleValue(nullptr, nullptr, ParseForeachMode);
Sean Silvafb509ed2012-10-10 20:24:43 +00001740 ForeachListValue = dyn_cast<ListInit>(List);
Craig Topper011817a2014-04-09 04:50:04 +00001741 if (!ForeachListValue) {
Jakob Stoklund Olesen36a5c8e2012-05-24 22:17:39 +00001742 TokError("Expected a Value list");
Craig Topper011817a2014-04-09 04:50:04 +00001743 return nullptr;
Jakob Stoklund Olesen36a5c8e2012-05-24 22:17:39 +00001744 }
1745 RecTy *ValueType = ForeachListValue->getType();
Sean Silva98c61712012-10-05 03:31:58 +00001746 ListRecTy *ListType = dyn_cast<ListRecTy>(ValueType);
Craig Topper011817a2014-04-09 04:50:04 +00001747 if (!ListType) {
Jakob Stoklund Olesen36a5c8e2012-05-24 22:17:39 +00001748 TokError("Value list is not of list type");
Craig Topper011817a2014-04-09 04:50:04 +00001749 return nullptr;
Jakob Stoklund Olesen36a5c8e2012-05-24 22:17:39 +00001750 }
1751 IterType = ListType->getElementType();
1752 break;
David Greenefb927af2012-02-22 16:09:41 +00001753 }
1754
Jakob Stoklund Olesen36a5c8e2012-05-24 22:17:39 +00001755 case tgtok::IntVal: { // RangePiece.
1756 if (ParseRangePiece(Ranges))
Craig Topper011817a2014-04-09 04:50:04 +00001757 return nullptr;
Jakob Stoklund Olesen36a5c8e2012-05-24 22:17:39 +00001758 break;
David Greenefb927af2012-02-22 16:09:41 +00001759 }
1760
Jakob Stoklund Olesen36a5c8e2012-05-24 22:17:39 +00001761 case tgtok::l_brace: { // '{' RangeList '}'
1762 Lex.Lex(); // eat the '{'
1763 Ranges = ParseRangeList();
1764 if (Lex.getCode() != tgtok::r_brace) {
1765 TokError("expected '}' at end of bit range list");
Craig Topper011817a2014-04-09 04:50:04 +00001766 return nullptr;
Jakob Stoklund Olesen36a5c8e2012-05-24 22:17:39 +00001767 }
1768 Lex.Lex();
1769 break;
1770 }
1771 }
David Greenefb927af2012-02-22 16:09:41 +00001772
Jakob Stoklund Olesen36a5c8e2012-05-24 22:17:39 +00001773 if (!Ranges.empty()) {
1774 assert(!IterType && "Type already initialized?");
1775 IterType = IntRecTy::get();
1776 std::vector<Init*> Values;
1777 for (unsigned i = 0, e = Ranges.size(); i != e; ++i)
1778 Values.push_back(IntInit::get(Ranges[i]));
1779 ForeachListValue = ListInit::get(Values, IterType);
1780 }
1781
1782 if (!IterType)
Craig Topper011817a2014-04-09 04:50:04 +00001783 return nullptr;
Jakob Stoklund Olesen36a5c8e2012-05-24 22:17:39 +00001784
1785 return VarInit::get(DeclName, IterType);
David Greenefb927af2012-02-22 16:09:41 +00001786}
1787
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001788/// ParseTemplateArgList - Read a template argument list, which is a non-empty
1789/// sequence of template-declarations in <>'s. If CurRec is non-null, these are
1790/// template args for a def, which may or may not be in a multiclass. If null,
1791/// these are the template args for a multiclass.
1792///
1793/// TemplateArgList ::= '<' Declaration (',' Declaration)* '>'
Bob Wilson7248f862009-11-22 04:24:42 +00001794///
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001795bool TGParser::ParseTemplateArgList(Record *CurRec) {
1796 assert(Lex.getCode() == tgtok::less && "Not a template arg list!");
1797 Lex.Lex(); // eat the '<'
Bob Wilson7248f862009-11-22 04:24:42 +00001798
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001799 Record *TheRecToAddTo = CurRec ? CurRec : &CurMultiClass->Rec;
Bob Wilson7248f862009-11-22 04:24:42 +00001800
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001801 // Read the first declaration.
David Greenedb10e692011-10-19 13:02:42 +00001802 Init *TemplArg = ParseDeclaration(CurRec, true/*templateargs*/);
Craig Topper011817a2014-04-09 04:50:04 +00001803 if (!TemplArg)
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001804 return true;
Bob Wilson7248f862009-11-22 04:24:42 +00001805
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001806 TheRecToAddTo->addTemplateArg(TemplArg);
Bob Wilson7248f862009-11-22 04:24:42 +00001807
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001808 while (Lex.getCode() == tgtok::comma) {
1809 Lex.Lex(); // eat the ','
Bob Wilson7248f862009-11-22 04:24:42 +00001810
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001811 // Read the following declarations.
1812 TemplArg = ParseDeclaration(CurRec, true/*templateargs*/);
Craig Topper011817a2014-04-09 04:50:04 +00001813 if (!TemplArg)
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001814 return true;
1815 TheRecToAddTo->addTemplateArg(TemplArg);
1816 }
Bob Wilson7248f862009-11-22 04:24:42 +00001817
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001818 if (Lex.getCode() != tgtok::greater)
1819 return TokError("expected '>' at end of template argument list");
1820 Lex.Lex(); // eat the '>'.
1821 return false;
1822}
1823
1824
1825/// ParseBodyItem - Parse a single item at within the body of a def or class.
1826///
1827/// BodyItem ::= Declaration ';'
1828/// BodyItem ::= LET ID OptionalBitList '=' Value ';'
1829bool TGParser::ParseBodyItem(Record *CurRec) {
1830 if (Lex.getCode() != tgtok::Let) {
Craig Topper011817a2014-04-09 04:50:04 +00001831 if (!ParseDeclaration(CurRec, false))
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001832 return true;
Bob Wilson7248f862009-11-22 04:24:42 +00001833
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001834 if (Lex.getCode() != tgtok::semi)
1835 return TokError("expected ';' after declaration");
1836 Lex.Lex();
1837 return false;
1838 }
1839
1840 // LET ID OptionalRangeList '=' Value ';'
1841 if (Lex.Lex() != tgtok::Id)
1842 return TokError("expected field identifier after let");
Bob Wilson7248f862009-11-22 04:24:42 +00001843
Chris Lattner526c8cb2009-06-21 03:39:35 +00001844 SMLoc IdLoc = Lex.getLoc();
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001845 std::string FieldName = Lex.getCurStrVal();
1846 Lex.Lex(); // eat the field name.
Bob Wilson7248f862009-11-22 04:24:42 +00001847
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001848 std::vector<unsigned> BitList;
Bob Wilson7248f862009-11-22 04:24:42 +00001849 if (ParseOptionalBitList(BitList))
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001850 return true;
1851 std::reverse(BitList.begin(), BitList.end());
Bob Wilson7248f862009-11-22 04:24:42 +00001852
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001853 if (Lex.getCode() != tgtok::equal)
1854 return TokError("expected '=' in let expression");
1855 Lex.Lex(); // eat the '='.
Bob Wilson7248f862009-11-22 04:24:42 +00001856
David Greene8618f952009-06-08 20:23:18 +00001857 RecordVal *Field = CurRec->getValue(FieldName);
Craig Topper011817a2014-04-09 04:50:04 +00001858 if (!Field)
David Greene8618f952009-06-08 20:23:18 +00001859 return TokError("Value '" + FieldName + "' unknown!");
1860
1861 RecTy *Type = Field->getType();
Bob Wilson7248f862009-11-22 04:24:42 +00001862
David Greeneaf8ee2c2011-07-29 22:43:06 +00001863 Init *Val = ParseValue(CurRec, Type);
Craig Topper011817a2014-04-09 04:50:04 +00001864 if (!Val) return true;
Bob Wilson7248f862009-11-22 04:24:42 +00001865
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001866 if (Lex.getCode() != tgtok::semi)
1867 return TokError("expected ';' after let expression");
1868 Lex.Lex();
Bob Wilson7248f862009-11-22 04:24:42 +00001869
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001870 return SetValue(CurRec, IdLoc, FieldName, BitList, Val);
1871}
1872
1873/// ParseBody - Read the body of a class or def. Return true on error, false on
1874/// success.
1875///
1876/// Body ::= ';'
1877/// Body ::= '{' BodyList '}'
1878/// BodyList BodyItem*
1879///
1880bool TGParser::ParseBody(Record *CurRec) {
1881 // If this is a null definition, just eat the semi and return.
1882 if (Lex.getCode() == tgtok::semi) {
1883 Lex.Lex();
1884 return false;
1885 }
Bob Wilson7248f862009-11-22 04:24:42 +00001886
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001887 if (Lex.getCode() != tgtok::l_brace)
1888 return TokError("Expected ';' or '{' to start body");
1889 // Eat the '{'.
1890 Lex.Lex();
Bob Wilson7248f862009-11-22 04:24:42 +00001891
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001892 while (Lex.getCode() != tgtok::r_brace)
1893 if (ParseBodyItem(CurRec))
1894 return true;
1895
1896 // Eat the '}'.
1897 Lex.Lex();
1898 return false;
1899}
1900
Sean Silvacb1a75e2013-01-09 04:49:14 +00001901/// \brief Apply the current let bindings to \a CurRec.
1902/// \returns true on error, false otherwise.
1903bool TGParser::ApplyLetStack(Record *CurRec) {
1904 for (unsigned i = 0, e = LetStack.size(); i != e; ++i)
1905 for (unsigned j = 0, e = LetStack[i].size(); j != e; ++j)
1906 if (SetValue(CurRec, LetStack[i][j].Loc, LetStack[i][j].Name,
1907 LetStack[i][j].Bits, LetStack[i][j].Value))
1908 return true;
1909 return false;
1910}
1911
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001912/// ParseObjectBody - Parse the body of a def or class. This consists of an
1913/// optional ClassList followed by a Body. CurRec is the current def or class
1914/// that is being parsed.
1915///
1916/// ObjectBody ::= BaseClassList Body
1917/// BaseClassList ::= /*empty*/
1918/// BaseClassList ::= ':' BaseClassListNE
1919/// BaseClassListNE ::= SubClassRef (',' SubClassRef)*
1920///
1921bool TGParser::ParseObjectBody(Record *CurRec) {
1922 // If there is a baseclass list, read it.
1923 if (Lex.getCode() == tgtok::colon) {
1924 Lex.Lex();
Bob Wilson7248f862009-11-22 04:24:42 +00001925
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001926 // Read all of the subclasses.
1927 SubClassReference SubClass = ParseSubClassReference(CurRec, false);
1928 while (1) {
1929 // Check for error.
Craig Topper011817a2014-04-09 04:50:04 +00001930 if (!SubClass.Rec) return true;
Bob Wilson7248f862009-11-22 04:24:42 +00001931
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001932 // Add it.
1933 if (AddSubClass(CurRec, SubClass))
1934 return true;
Bob Wilson7248f862009-11-22 04:24:42 +00001935
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001936 if (Lex.getCode() != tgtok::comma) break;
1937 Lex.Lex(); // eat ','.
1938 SubClass = ParseSubClassReference(CurRec, false);
1939 }
1940 }
1941
Sean Silvacb1a75e2013-01-09 04:49:14 +00001942 if (ApplyLetStack(CurRec))
1943 return true;
Bob Wilson7248f862009-11-22 04:24:42 +00001944
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001945 return ParseBody(CurRec);
1946}
1947
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001948/// ParseDef - Parse and return a top level or multiclass def, return the record
1949/// corresponding to it. This returns null on error.
1950///
1951/// DefInst ::= DEF ObjectName ObjectBody
1952///
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00001953bool TGParser::ParseDef(MultiClass *CurMultiClass) {
Chris Lattner526c8cb2009-06-21 03:39:35 +00001954 SMLoc DefLoc = Lex.getLoc();
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001955 assert(Lex.getCode() == tgtok::Def && "Unknown tok");
Bob Wilson7248f862009-11-22 04:24:42 +00001956 Lex.Lex(); // Eat the 'def' token.
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001957
1958 // Parse ObjectName and make a record for it.
Jordan Roseabdd99b2013-01-10 18:50:05 +00001959 Record *CurRec;
1960 Init *Name = ParseObjectName(CurMultiClass);
1961 if (Name)
1962 CurRec = new Record(Name, DefLoc, Records);
1963 else
1964 CurRec = new Record(GetNewAnonymousName(), DefLoc, Records,
1965 /*IsAnonymous=*/true);
Bob Wilson7248f862009-11-22 04:24:42 +00001966
Jakob Stoklund Olesen74fd80e2012-05-24 22:17:36 +00001967 if (!CurMultiClass && Loops.empty()) {
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001968 // Top-level def definition.
Bob Wilson7248f862009-11-22 04:24:42 +00001969
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001970 // Ensure redefinition doesn't happen.
David Greeneebb006f2012-01-28 00:03:24 +00001971 if (Records.getDef(CurRec->getNameInitAsString())) {
David Greene3a20f5a2011-10-19 13:03:45 +00001972 Error(DefLoc, "def '" + CurRec->getNameInitAsString()
1973 + "' already defined");
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00001974 return true;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001975 }
1976 Records.addDef(CurRec);
Hal Finkela8c1f462014-01-02 20:47:09 +00001977
1978 if (ParseObjectBody(CurRec))
1979 return true;
Jakob Stoklund Olesen74fd80e2012-05-24 22:17:36 +00001980 } else if (CurMultiClass) {
Hal Finkela8c1f462014-01-02 20:47:09 +00001981 // Parse the body before adding this prototype to the DefPrototypes vector.
1982 // That way implicit definitions will be added to the DefPrototypes vector
1983 // before this object, instantiated prior to defs derived from this object,
1984 // and this available for indirect name resolution when defs derived from
1985 // this object are instantiated.
1986 if (ParseObjectBody(CurRec))
1987 return true;
1988
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001989 // Otherwise, a def inside a multiclass, add it to the multiclass.
1990 for (unsigned i = 0, e = CurMultiClass->DefPrototypes.size(); i != e; ++i)
David Greene07e055f2011-10-19 13:03:51 +00001991 if (CurMultiClass->DefPrototypes[i]->getNameInit()
1992 == CurRec->getNameInit()) {
1993 Error(DefLoc, "def '" + CurRec->getNameInitAsString() +
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001994 "' already defined in this multiclass!");
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00001995 return true;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00001996 }
1997 CurMultiClass->DefPrototypes.push_back(CurRec);
Hal Finkela8c1f462014-01-02 20:47:09 +00001998 } else if (ParseObjectBody(CurRec))
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00001999 return true;
Bob Wilson7248f862009-11-22 04:24:42 +00002000
Craig Topper011817a2014-04-09 04:50:04 +00002001 if (!CurMultiClass) // Def's in multiclasses aren't really defs.
David Greene50c09122011-08-10 18:27:46 +00002002 // See Record::setName(). This resolve step will see any new name
2003 // for the def that might have been created when resolving
2004 // inheritance, values and arguments above.
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002005 CurRec->resolveReferences();
Bob Wilson7248f862009-11-22 04:24:42 +00002006
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002007 // If ObjectBody has template arguments, it's an error.
2008 assert(CurRec->getTemplateArgs().empty() && "How'd this get template args?");
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00002009
2010 if (CurMultiClass) {
2011 // Copy the template arguments for the multiclass into the def.
David Greenedb10e692011-10-19 13:02:42 +00002012 const std::vector<Init *> &TArgs =
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00002013 CurMultiClass->Rec.getTemplateArgs();
2014
2015 for (unsigned i = 0, e = TArgs.size(); i != e; ++i) {
2016 const RecordVal *RV = CurMultiClass->Rec.getValue(TArgs[i]);
2017 assert(RV && "Template arg doesn't exist?");
2018 CurRec->addValue(*RV);
2019 }
2020 }
2021
Jakob Stoklund Olesen8a120b12012-05-24 22:17:33 +00002022 if (ProcessForeachDefs(CurRec, DefLoc)) {
David Greenefb927af2012-02-22 16:09:41 +00002023 Error(DefLoc,
2024 "Could not process loops for def" + CurRec->getNameInitAsString());
2025 return true;
2026 }
2027
2028 return false;
2029}
2030
2031/// ParseForeach - Parse a for statement. Return the record corresponding
2032/// to it. This returns true on error.
2033///
2034/// Foreach ::= FOREACH Declaration IN '{ ObjectList '}'
2035/// Foreach ::= FOREACH Declaration IN Object
2036///
2037bool TGParser::ParseForeach(MultiClass *CurMultiClass) {
2038 assert(Lex.getCode() == tgtok::Foreach && "Unknown tok");
2039 Lex.Lex(); // Eat the 'for' token.
2040
2041 // Make a temporary object to record items associated with the for
2042 // loop.
Craig Topper011817a2014-04-09 04:50:04 +00002043 ListInit *ListValue = nullptr;
Jakob Stoklund Olesen8a120b12012-05-24 22:17:33 +00002044 VarInit *IterName = ParseForeachDeclaration(ListValue);
Craig Topper011817a2014-04-09 04:50:04 +00002045 if (!IterName)
David Greenefb927af2012-02-22 16:09:41 +00002046 return TokError("expected declaration in for");
2047
2048 if (Lex.getCode() != tgtok::In)
2049 return TokError("Unknown tok");
2050 Lex.Lex(); // Eat the in
2051
2052 // Create a loop object and remember it.
2053 Loops.push_back(ForeachLoop(IterName, ListValue));
2054
2055 if (Lex.getCode() != tgtok::l_brace) {
2056 // FOREACH Declaration IN Object
2057 if (ParseObject(CurMultiClass))
2058 return true;
2059 }
2060 else {
2061 SMLoc BraceLoc = Lex.getLoc();
2062 // Otherwise, this is a group foreach.
2063 Lex.Lex(); // eat the '{'.
2064
2065 // Parse the object list.
2066 if (ParseObjectList(CurMultiClass))
2067 return true;
2068
2069 if (Lex.getCode() != tgtok::r_brace) {
2070 TokError("expected '}' at end of foreach command");
2071 return Error(BraceLoc, "to match this '{'");
2072 }
2073 Lex.Lex(); // Eat the }
2074 }
2075
2076 // We've processed everything in this loop.
2077 Loops.pop_back();
2078
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00002079 return false;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002080}
2081
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002082/// ParseClass - Parse a tblgen class definition.
2083///
2084/// ClassInst ::= CLASS ID TemplateArgList? ObjectBody
2085///
2086bool TGParser::ParseClass() {
2087 assert(Lex.getCode() == tgtok::Class && "Unexpected token!");
2088 Lex.Lex();
Bob Wilson7248f862009-11-22 04:24:42 +00002089
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002090 if (Lex.getCode() != tgtok::Id)
2091 return TokError("expected class name after 'class' keyword");
Bob Wilson7248f862009-11-22 04:24:42 +00002092
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002093 Record *CurRec = Records.getClass(Lex.getCurStrVal());
2094 if (CurRec) {
2095 // If the body was previously defined, this is an error.
David Greened6991612011-10-19 13:04:13 +00002096 if (CurRec->getValues().size() > 1 || // Account for NAME.
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002097 !CurRec->getSuperClasses().empty() ||
2098 !CurRec->getTemplateArgs().empty())
David Greene8eed9982011-10-19 13:03:58 +00002099 return TokError("Class '" + CurRec->getNameInitAsString()
2100 + "' already defined");
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002101 } else {
2102 // If this is the first reference to this class, create and add it.
Chris Lattner89dcb682010-12-15 04:48:22 +00002103 CurRec = new Record(Lex.getCurStrVal(), Lex.getLoc(), Records);
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002104 Records.addClass(CurRec);
2105 }
2106 Lex.Lex(); // eat the name.
Bob Wilson7248f862009-11-22 04:24:42 +00002107
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002108 // If there are template args, parse them.
2109 if (Lex.getCode() == tgtok::less)
2110 if (ParseTemplateArgList(CurRec))
2111 return true;
2112
2113 // Finally, parse the object body.
2114 return ParseObjectBody(CurRec);
2115}
2116
2117/// ParseLetList - Parse a non-empty list of assignment expressions into a list
2118/// of LetRecords.
2119///
2120/// LetList ::= LetItem (',' LetItem)*
2121/// LetItem ::= ID OptionalRangeList '=' Value
2122///
2123std::vector<LetRecord> TGParser::ParseLetList() {
2124 std::vector<LetRecord> Result;
Bob Wilson7248f862009-11-22 04:24:42 +00002125
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002126 while (1) {
2127 if (Lex.getCode() != tgtok::Id) {
2128 TokError("expected identifier in let definition");
2129 return std::vector<LetRecord>();
2130 }
2131 std::string Name = Lex.getCurStrVal();
Chris Lattner526c8cb2009-06-21 03:39:35 +00002132 SMLoc NameLoc = Lex.getLoc();
Bob Wilson7248f862009-11-22 04:24:42 +00002133 Lex.Lex(); // Eat the identifier.
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002134
2135 // Check for an optional RangeList.
2136 std::vector<unsigned> Bits;
Bob Wilson7248f862009-11-22 04:24:42 +00002137 if (ParseOptionalRangeList(Bits))
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002138 return std::vector<LetRecord>();
2139 std::reverse(Bits.begin(), Bits.end());
Bob Wilson7248f862009-11-22 04:24:42 +00002140
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002141 if (Lex.getCode() != tgtok::equal) {
2142 TokError("expected '=' in let expression");
2143 return std::vector<LetRecord>();
2144 }
2145 Lex.Lex(); // eat the '='.
Bob Wilson7248f862009-11-22 04:24:42 +00002146
Craig Topper011817a2014-04-09 04:50:04 +00002147 Init *Val = ParseValue(nullptr);
2148 if (!Val) return std::vector<LetRecord>();
Bob Wilson7248f862009-11-22 04:24:42 +00002149
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002150 // Now that we have everything, add the record.
2151 Result.push_back(LetRecord(Name, Bits, Val, NameLoc));
Bob Wilson7248f862009-11-22 04:24:42 +00002152
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002153 if (Lex.getCode() != tgtok::comma)
2154 return Result;
Bob Wilson7248f862009-11-22 04:24:42 +00002155 Lex.Lex(); // eat the comma.
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002156 }
2157}
2158
2159/// ParseTopLevelLet - Parse a 'let' at top level. This can be a couple of
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00002160/// different related productions. This works inside multiclasses too.
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002161///
2162/// Object ::= LET LetList IN '{' ObjectList '}'
2163/// Object ::= LET LetList IN Object
2164///
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00002165bool TGParser::ParseTopLevelLet(MultiClass *CurMultiClass) {
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002166 assert(Lex.getCode() == tgtok::Let && "Unexpected token");
2167 Lex.Lex();
Bob Wilson7248f862009-11-22 04:24:42 +00002168
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002169 // Add this entry to the let stack.
2170 std::vector<LetRecord> LetInfo = ParseLetList();
2171 if (LetInfo.empty()) return true;
2172 LetStack.push_back(LetInfo);
2173
2174 if (Lex.getCode() != tgtok::In)
2175 return TokError("expected 'in' at end of top-level 'let'");
2176 Lex.Lex();
Bob Wilson7248f862009-11-22 04:24:42 +00002177
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002178 // If this is a scalar let, just handle it now
2179 if (Lex.getCode() != tgtok::l_brace) {
2180 // LET LetList IN Object
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00002181 if (ParseObject(CurMultiClass))
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002182 return true;
2183 } else { // Object ::= LETCommand '{' ObjectList '}'
Chris Lattner526c8cb2009-06-21 03:39:35 +00002184 SMLoc BraceLoc = Lex.getLoc();
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002185 // Otherwise, this is a group let.
2186 Lex.Lex(); // eat the '{'.
Bob Wilson7248f862009-11-22 04:24:42 +00002187
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002188 // Parse the object list.
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00002189 if (ParseObjectList(CurMultiClass))
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002190 return true;
Bob Wilson7248f862009-11-22 04:24:42 +00002191
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002192 if (Lex.getCode() != tgtok::r_brace) {
2193 TokError("expected '}' at end of top level let command");
2194 return Error(BraceLoc, "to match this '{'");
2195 }
2196 Lex.Lex();
2197 }
Bob Wilson7248f862009-11-22 04:24:42 +00002198
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002199 // Outside this let scope, this let block is not active.
2200 LetStack.pop_back();
2201 return false;
2202}
2203
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002204/// ParseMultiClass - Parse a multiclass definition.
2205///
Bob Wilson3d948162009-04-28 19:41:44 +00002206/// MultiClassInst ::= MULTICLASS ID TemplateArgList?
Sean Silvac95fe282013-01-09 02:11:55 +00002207/// ':' BaseMultiClassList '{' MultiClassObject+ '}'
2208/// MultiClassObject ::= DefInst
2209/// MultiClassObject ::= MultiClassInst
2210/// MultiClassObject ::= DefMInst
2211/// MultiClassObject ::= LETCommand '{' ObjectList '}'
2212/// MultiClassObject ::= LETCommand Object
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002213///
2214bool TGParser::ParseMultiClass() {
2215 assert(Lex.getCode() == tgtok::MultiClass && "Unexpected token");
2216 Lex.Lex(); // Eat the multiclass token.
2217
2218 if (Lex.getCode() != tgtok::Id)
2219 return TokError("expected identifier after multiclass for name");
2220 std::string Name = Lex.getCurStrVal();
Bob Wilson7248f862009-11-22 04:24:42 +00002221
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002222 if (MultiClasses.count(Name))
2223 return TokError("multiclass '" + Name + "' already defined");
Bob Wilson7248f862009-11-22 04:24:42 +00002224
Chris Lattner77d369c2010-12-13 00:23:57 +00002225 CurMultiClass = MultiClasses[Name] = new MultiClass(Name,
2226 Lex.getLoc(), Records);
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002227 Lex.Lex(); // Eat the identifier.
Bob Wilson7248f862009-11-22 04:24:42 +00002228
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002229 // If there are template args, parse them.
2230 if (Lex.getCode() == tgtok::less)
Craig Topper011817a2014-04-09 04:50:04 +00002231 if (ParseTemplateArgList(nullptr))
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002232 return true;
2233
David Greene7049e792009-04-24 16:55:41 +00002234 bool inherits = false;
2235
David Greene753ed8f2009-04-22 16:42:54 +00002236 // If there are submulticlasses, parse them.
2237 if (Lex.getCode() == tgtok::colon) {
David Greene7049e792009-04-24 16:55:41 +00002238 inherits = true;
2239
David Greene753ed8f2009-04-22 16:42:54 +00002240 Lex.Lex();
Bob Wilson3d948162009-04-28 19:41:44 +00002241
David Greene753ed8f2009-04-22 16:42:54 +00002242 // Read all of the submulticlasses.
Bob Wilson3d948162009-04-28 19:41:44 +00002243 SubMultiClassReference SubMultiClass =
2244 ParseSubMultiClassReference(CurMultiClass);
David Greene753ed8f2009-04-22 16:42:54 +00002245 while (1) {
2246 // Check for error.
Craig Topper011817a2014-04-09 04:50:04 +00002247 if (!SubMultiClass.MC) return true;
Bob Wilson3d948162009-04-28 19:41:44 +00002248
David Greene753ed8f2009-04-22 16:42:54 +00002249 // Add it.
2250 if (AddSubMultiClass(CurMultiClass, SubMultiClass))
2251 return true;
Bob Wilson3d948162009-04-28 19:41:44 +00002252
David Greene753ed8f2009-04-22 16:42:54 +00002253 if (Lex.getCode() != tgtok::comma) break;
2254 Lex.Lex(); // eat ','.
2255 SubMultiClass = ParseSubMultiClassReference(CurMultiClass);
2256 }
2257 }
2258
David Greene7049e792009-04-24 16:55:41 +00002259 if (Lex.getCode() != tgtok::l_brace) {
2260 if (!inherits)
2261 return TokError("expected '{' in multiclass definition");
Bob Wilson7248f862009-11-22 04:24:42 +00002262 else if (Lex.getCode() != tgtok::semi)
2263 return TokError("expected ';' in multiclass definition");
David Greene7049e792009-04-24 16:55:41 +00002264 else
Bob Wilson7248f862009-11-22 04:24:42 +00002265 Lex.Lex(); // eat the ';'.
2266 } else {
David Greene7049e792009-04-24 16:55:41 +00002267 if (Lex.Lex() == tgtok::r_brace) // eat the '{'.
2268 return TokError("multiclass must contain at least one def");
Bob Wilson7248f862009-11-22 04:24:42 +00002269
Bruno Cardoso Lopesc4f61482010-06-05 02:11:52 +00002270 while (Lex.getCode() != tgtok::r_brace) {
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00002271 switch (Lex.getCode()) {
2272 default:
David Greene33f61992011-10-07 18:25:05 +00002273 return TokError("expected 'let', 'def' or 'defm' in multiclass body");
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00002274 case tgtok::Let:
2275 case tgtok::Def:
2276 case tgtok::Defm:
David Greenefb927af2012-02-22 16:09:41 +00002277 case tgtok::Foreach:
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00002278 if (ParseObject(CurMultiClass))
2279 return true;
2280 break;
2281 }
Bruno Cardoso Lopesc4f61482010-06-05 02:11:52 +00002282 }
David Greene7049e792009-04-24 16:55:41 +00002283 Lex.Lex(); // eat the '}'.
2284 }
Bob Wilson7248f862009-11-22 04:24:42 +00002285
Craig Topper011817a2014-04-09 04:50:04 +00002286 CurMultiClass = nullptr;
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002287 return false;
2288}
2289
David Greenedb445972011-10-05 22:42:07 +00002290Record *TGParser::
2291InstantiateMulticlassDef(MultiClass &MC,
2292 Record *DefProto,
Hal Finkelf2a0b2b2014-01-02 19:35:33 +00002293 Init *&DefmPrefix,
Jordan Rosef12e8a92013-01-10 18:50:11 +00002294 SMRange DefmPrefixRange) {
David Greene5d5d88c2011-10-19 13:04:31 +00002295 // We need to preserve DefProto so it can be reused for later
2296 // instantiations, so create a new Record to inherit from it.
2297
David Greenedb445972011-10-05 22:42:07 +00002298 // Add in the defm name. If the defm prefix is empty, give each
2299 // instantiated def a unique name. Otherwise, if "#NAME#" exists in the
2300 // name, substitute the prefix for #NAME#. Otherwise, use the defm name
2301 // as a prefix.
David Greenedb445972011-10-05 22:42:07 +00002302
Jordan Roseabdd99b2013-01-10 18:50:05 +00002303 bool IsAnonymous = false;
Craig Topper011817a2014-04-09 04:50:04 +00002304 if (!DefmPrefix) {
David Greene5d5d88c2011-10-19 13:04:31 +00002305 DefmPrefix = StringInit::get(GetNewAnonymousName());
Jordan Roseabdd99b2013-01-10 18:50:05 +00002306 IsAnonymous = true;
2307 }
David Greene5d5d88c2011-10-19 13:04:31 +00002308
2309 Init *DefName = DefProto->getNameInit();
2310
Sean Silvafb509ed2012-10-10 20:24:43 +00002311 StringInit *DefNameString = dyn_cast<StringInit>(DefName);
David Greene5d5d88c2011-10-19 13:04:31 +00002312
Craig Topper011817a2014-04-09 04:50:04 +00002313 if (DefNameString) {
David Greene8e85b482011-10-19 13:04:43 +00002314 // We have a fully expanded string so there are no operators to
2315 // resolve. We should concatenate the given prefix and name.
David Greene5d5d88c2011-10-19 13:04:31 +00002316 DefName =
2317 BinOpInit::get(BinOpInit::STRCONCAT,
2318 UnOpInit::get(UnOpInit::CAST, DefmPrefix,
2319 StringRecTy::get())->Fold(DefProto, &MC),
2320 DefName, StringRecTy::get())->Fold(DefProto, &MC);
2321 }
David Greene5d5d88c2011-10-19 13:04:31 +00002322
Jakob Stoklund Olesend7b66962012-08-22 23:33:58 +00002323 // Make a trail of SMLocs from the multiclass instantiations.
Jordan Rosef12e8a92013-01-10 18:50:11 +00002324 SmallVector<SMLoc, 4> Locs(1, DefmPrefixRange.Start);
Jakob Stoklund Olesend7b66962012-08-22 23:33:58 +00002325 Locs.append(DefProto->getLoc().begin(), DefProto->getLoc().end());
Jordan Roseabdd99b2013-01-10 18:50:05 +00002326 Record *CurRec = new Record(DefName, Locs, Records, IsAnonymous);
David Greenedb445972011-10-05 22:42:07 +00002327
2328 SubClassReference Ref;
Jordan Rosef12e8a92013-01-10 18:50:11 +00002329 Ref.RefRange = DefmPrefixRange;
David Greenedb445972011-10-05 22:42:07 +00002330 Ref.Rec = DefProto;
2331 AddSubClass(CurRec, Ref);
2332
Jim Grosbachbc5b61c2012-08-02 18:46:42 +00002333 // Set the value for NAME. We don't resolve references to it 'til later,
2334 // though, so that uses in nested multiclass names don't get
2335 // confused.
Jordan Rosef12e8a92013-01-10 18:50:11 +00002336 if (SetValue(CurRec, Ref.RefRange.Start, "NAME", std::vector<unsigned>(),
Jim Grosbachbc5b61c2012-08-02 18:46:42 +00002337 DefmPrefix)) {
Jordan Rosef12e8a92013-01-10 18:50:11 +00002338 Error(DefmPrefixRange.Start, "Could not resolve "
Jim Grosbachbc5b61c2012-08-02 18:46:42 +00002339 + CurRec->getNameInitAsString() + ":NAME to '"
2340 + DefmPrefix->getAsUnquotedString() + "'");
Craig Topper011817a2014-04-09 04:50:04 +00002341 return nullptr;
Jim Grosbachbc5b61c2012-08-02 18:46:42 +00002342 }
David Greene8bf0d722011-10-19 13:04:35 +00002343
Jim Grosbachbc5b61c2012-08-02 18:46:42 +00002344 // If the DefNameString didn't resolve, we probably have a reference to
2345 // NAME and need to replace it. We need to do at least this much greedily,
2346 // otherwise nested multiclasses will end up with incorrect NAME expansions.
Craig Topper011817a2014-04-09 04:50:04 +00002347 if (!DefNameString) {
David Greene8bf0d722011-10-19 13:04:35 +00002348 RecordVal *DefNameRV = CurRec->getValue("NAME");
2349 CurRec->resolveReferencesTo(DefNameRV);
2350 }
2351
2352 if (!CurMultiClass) {
Jim Grosbachbc5b61c2012-08-02 18:46:42 +00002353 // Now that we're at the top level, resolve all NAME references
2354 // in the resultant defs that weren't in the def names themselves.
2355 RecordVal *DefNameRV = CurRec->getValue("NAME");
2356 CurRec->resolveReferencesTo(DefNameRV);
2357
2358 // Now that NAME references are resolved and we're at the top level of
2359 // any multiclass expansions, add the record to the RecordKeeper. If we are
David Greene8bf0d722011-10-19 13:04:35 +00002360 // currently in a multiclass, it means this defm appears inside a
2361 // multiclass and its name won't be fully resolvable until we see
2362 // the top-level defm. Therefore, we don't add this to the
2363 // RecordKeeper at this point. If we did we could get duplicate
2364 // defs as more than one probably refers to NAME or some other
2365 // common internal placeholder.
2366
2367 // Ensure redefinition doesn't happen.
2368 if (Records.getDef(CurRec->getNameInitAsString())) {
Jordan Rosef12e8a92013-01-10 18:50:11 +00002369 Error(DefmPrefixRange.Start, "def '" + CurRec->getNameInitAsString() +
David Greene8bf0d722011-10-19 13:04:35 +00002370 "' already defined, instantiating defm with subdef '" +
2371 DefProto->getNameInitAsString() + "'");
Craig Topper011817a2014-04-09 04:50:04 +00002372 return nullptr;
David Greene8bf0d722011-10-19 13:04:35 +00002373 }
2374
2375 Records.addDef(CurRec);
2376 }
2377
David Greenedb445972011-10-05 22:42:07 +00002378 return CurRec;
2379}
2380
2381bool TGParser::ResolveMulticlassDefArgs(MultiClass &MC,
2382 Record *CurRec,
2383 SMLoc DefmPrefixLoc,
2384 SMLoc SubClassLoc,
David Greenedb10e692011-10-19 13:02:42 +00002385 const std::vector<Init *> &TArgs,
David Greenedb445972011-10-05 22:42:07 +00002386 std::vector<Init *> &TemplateVals,
2387 bool DeleteArgs) {
2388 // Loop over all of the template arguments, setting them to the specified
2389 // value or leaving them as the default if necessary.
2390 for (unsigned i = 0, e = TArgs.size(); i != e; ++i) {
2391 // Check if a value is specified for this temp-arg.
2392 if (i < TemplateVals.size()) {
2393 // Set it now.
2394 if (SetValue(CurRec, DefmPrefixLoc, TArgs[i], std::vector<unsigned>(),
2395 TemplateVals[i]))
2396 return true;
2397
2398 // Resolve it next.
2399 CurRec->resolveReferencesTo(CurRec->getValue(TArgs[i]));
2400
2401 if (DeleteArgs)
2402 // Now remove it.
2403 CurRec->removeValue(TArgs[i]);
2404
2405 } else if (!CurRec->getValue(TArgs[i])->getValue()->isComplete()) {
2406 return Error(SubClassLoc, "value not specified for template argument #"+
David Greenedb10e692011-10-19 13:02:42 +00002407 utostr(i) + " (" + TArgs[i]->getAsUnquotedString()
2408 + ") of multiclassclass '" + MC.Rec.getNameInitAsString()
2409 + "'");
David Greenedb445972011-10-05 22:42:07 +00002410 }
2411 }
2412 return false;
2413}
2414
2415bool TGParser::ResolveMulticlassDef(MultiClass &MC,
2416 Record *CurRec,
2417 Record *DefProto,
2418 SMLoc DefmPrefixLoc) {
2419 // If the mdef is inside a 'let' expression, add to each def.
Sean Silvacb1a75e2013-01-09 04:49:14 +00002420 if (ApplyLetStack(CurRec))
2421 return Error(DefmPrefixLoc, "when instantiating this defm");
David Greenedb445972011-10-05 22:42:07 +00002422
David Greenedb445972011-10-05 22:42:07 +00002423 // Don't create a top level definition for defm inside multiclasses,
2424 // instead, only update the prototypes and bind the template args
2425 // with the new created definition.
Sean Silvacc951b22013-01-09 05:28:12 +00002426 if (!CurMultiClass)
2427 return false;
2428 for (unsigned i = 0, e = CurMultiClass->DefPrototypes.size();
2429 i != e; ++i)
2430 if (CurMultiClass->DefPrototypes[i]->getNameInit()
2431 == CurRec->getNameInit())
2432 return Error(DefmPrefixLoc, "defm '" + CurRec->getNameInitAsString() +
2433 "' already defined in this multiclass!");
2434 CurMultiClass->DefPrototypes.push_back(CurRec);
David Greenedb445972011-10-05 22:42:07 +00002435
Sean Silvacc951b22013-01-09 05:28:12 +00002436 // Copy the template arguments for the multiclass into the new def.
2437 const std::vector<Init *> &TA =
2438 CurMultiClass->Rec.getTemplateArgs();
David Greenedb445972011-10-05 22:42:07 +00002439
Sean Silvacc951b22013-01-09 05:28:12 +00002440 for (unsigned i = 0, e = TA.size(); i != e; ++i) {
2441 const RecordVal *RV = CurMultiClass->Rec.getValue(TA[i]);
2442 assert(RV && "Template arg doesn't exist?");
2443 CurRec->addValue(*RV);
David Greenedb445972011-10-05 22:42:07 +00002444 }
2445
2446 return false;
2447}
2448
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002449/// ParseDefm - Parse the instantiation of a multiclass.
2450///
2451/// DefMInst ::= DEFM ID ':' DefmSubClassRef ';'
2452///
Bruno Cardoso Lopesc4f61482010-06-05 02:11:52 +00002453bool TGParser::ParseDefm(MultiClass *CurMultiClass) {
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002454 assert(Lex.getCode() == tgtok::Defm && "Unexpected token!");
Jordan Rosef12e8a92013-01-10 18:50:11 +00002455 SMLoc DefmLoc = Lex.getLoc();
Craig Topper011817a2014-04-09 04:50:04 +00002456 Init *DefmPrefix = nullptr;
David Greene2affd672011-10-19 13:04:29 +00002457
Craig Topperb21afc62013-01-07 05:09:33 +00002458 if (Lex.Lex() == tgtok::Id) { // eat the defm.
David Greene2affd672011-10-19 13:04:29 +00002459 DefmPrefix = ParseObjectName(CurMultiClass);
Chris Lattner7538ed82010-10-05 22:51:56 +00002460 }
Mikhail Glushenkovde683892010-10-23 07:32:37 +00002461
Jordan Rosef12e8a92013-01-10 18:50:11 +00002462 SMLoc DefmPrefixEndLoc = Lex.getLoc();
Chris Lattner7538ed82010-10-05 22:51:56 +00002463 if (Lex.getCode() != tgtok::colon)
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002464 return TokError("expected ':' after defm identifier");
Bob Wilson7248f862009-11-22 04:24:42 +00002465
Bruno Cardoso Lopes23f83212010-06-18 19:53:41 +00002466 // Keep track of the new generated record definitions.
2467 std::vector<Record*> NewRecDefs;
2468
2469 // This record also inherits from a regular class (non-multiclass)?
2470 bool InheritFromClass = false;
2471
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002472 // eat the colon.
2473 Lex.Lex();
2474
Chris Lattner526c8cb2009-06-21 03:39:35 +00002475 SMLoc SubClassLoc = Lex.getLoc();
Craig Topper011817a2014-04-09 04:50:04 +00002476 SubClassReference Ref = ParseSubClassReference(nullptr, true);
David Greenef00919a2009-04-22 22:17:51 +00002477
2478 while (1) {
Craig Topper011817a2014-04-09 04:50:04 +00002479 if (!Ref.Rec) return true;
David Greenef00919a2009-04-22 22:17:51 +00002480
2481 // To instantiate a multiclass, we need to first get the multiclass, then
2482 // instantiate each def contained in the multiclass with the SubClassRef
2483 // template parameters.
2484 MultiClass *MC = MultiClasses[Ref.Rec->getName()];
2485 assert(MC && "Didn't lookup multiclass correctly?");
David Greeneaf8ee2c2011-07-29 22:43:06 +00002486 std::vector<Init*> &TemplateVals = Ref.TemplateArgs;
David Greenef00919a2009-04-22 22:17:51 +00002487
2488 // Verify that the correct number of template arguments were specified.
David Greenedb10e692011-10-19 13:02:42 +00002489 const std::vector<Init *> &TArgs = MC->Rec.getTemplateArgs();
David Greenef00919a2009-04-22 22:17:51 +00002490 if (TArgs.size() < TemplateVals.size())
2491 return Error(SubClassLoc,
2492 "more template args specified than multiclass expects");
2493
2494 // Loop over all the def's in the multiclass, instantiating each one.
2495 for (unsigned i = 0, e = MC->DefPrototypes.size(); i != e; ++i) {
2496 Record *DefProto = MC->DefPrototypes[i];
2497
Jordan Rosef12e8a92013-01-10 18:50:11 +00002498 Record *CurRec = InstantiateMulticlassDef(*MC, DefProto, DefmPrefix,
2499 SMRange(DefmLoc,
2500 DefmPrefixEndLoc));
Jim Grosbachbccc4c12011-12-02 18:33:03 +00002501 if (!CurRec)
2502 return true;
David Greene44f9d7a2009-05-05 16:28:25 +00002503
Jordan Rosef12e8a92013-01-10 18:50:11 +00002504 if (ResolveMulticlassDefArgs(*MC, CurRec, DefmLoc, SubClassLoc,
David Greenedb445972011-10-05 22:42:07 +00002505 TArgs, TemplateVals, true/*Delete args*/))
2506 return Error(SubClassLoc, "could not instantiate def");
David Greenef00919a2009-04-22 22:17:51 +00002507
Jordan Rosef12e8a92013-01-10 18:50:11 +00002508 if (ResolveMulticlassDef(*MC, CurRec, DefProto, DefmLoc))
David Greenedb445972011-10-05 22:42:07 +00002509 return Error(SubClassLoc, "could not instantiate def");
Bruno Cardoso Lopes23f83212010-06-18 19:53:41 +00002510
2511 NewRecDefs.push_back(CurRec);
David Greenef00919a2009-04-22 22:17:51 +00002512 }
2513
David Greenedb445972011-10-05 22:42:07 +00002514
David Greenef00919a2009-04-22 22:17:51 +00002515 if (Lex.getCode() != tgtok::comma) break;
2516 Lex.Lex(); // eat ','.
2517
Craig Topper998a39a2013-08-20 04:22:09 +00002518 if (Lex.getCode() != tgtok::Id)
2519 return TokError("expected identifier");
2520
David Greenef00919a2009-04-22 22:17:51 +00002521 SubClassLoc = Lex.getLoc();
Bruno Cardoso Lopes23f83212010-06-18 19:53:41 +00002522
2523 // A defm can inherit from regular classes (non-multiclass) as
2524 // long as they come in the end of the inheritance list.
Craig Topper011817a2014-04-09 04:50:04 +00002525 InheritFromClass = (Records.getClass(Lex.getCurStrVal()) != nullptr);
Bruno Cardoso Lopes23f83212010-06-18 19:53:41 +00002526
2527 if (InheritFromClass)
2528 break;
2529
Craig Topper011817a2014-04-09 04:50:04 +00002530 Ref = ParseSubClassReference(nullptr, true);
David Greenef00919a2009-04-22 22:17:51 +00002531 }
2532
Bruno Cardoso Lopes23f83212010-06-18 19:53:41 +00002533 if (InheritFromClass) {
2534 // Process all the classes to inherit as if they were part of a
2535 // regular 'def' and inherit all record values.
Craig Topper011817a2014-04-09 04:50:04 +00002536 SubClassReference SubClass = ParseSubClassReference(nullptr, false);
Bruno Cardoso Lopes23f83212010-06-18 19:53:41 +00002537 while (1) {
2538 // Check for error.
Craig Topper011817a2014-04-09 04:50:04 +00002539 if (!SubClass.Rec) return true;
Bruno Cardoso Lopes23f83212010-06-18 19:53:41 +00002540
2541 // Get the expanded definition prototypes and teach them about
2542 // the record values the current class to inherit has
2543 for (unsigned i = 0, e = NewRecDefs.size(); i != e; ++i) {
2544 Record *CurRec = NewRecDefs[i];
2545
2546 // Add it.
2547 if (AddSubClass(CurRec, SubClass))
2548 return true;
2549
Sean Silvacb1a75e2013-01-09 04:49:14 +00002550 if (ApplyLetStack(CurRec))
2551 return true;
Bruno Cardoso Lopes23f83212010-06-18 19:53:41 +00002552 }
2553
2554 if (Lex.getCode() != tgtok::comma) break;
2555 Lex.Lex(); // eat ','.
Craig Topper011817a2014-04-09 04:50:04 +00002556 SubClass = ParseSubClassReference(nullptr, false);
Bruno Cardoso Lopes23f83212010-06-18 19:53:41 +00002557 }
2558 }
2559
Bruno Cardoso Lopesdc883cf2010-06-22 20:30:50 +00002560 if (!CurMultiClass)
2561 for (unsigned i = 0, e = NewRecDefs.size(); i != e; ++i)
David Greene50c09122011-08-10 18:27:46 +00002562 // See Record::setName(). This resolve step will see any new
2563 // name for the def that might have been created when resolving
2564 // inheritance, values and arguments above.
Bruno Cardoso Lopesdc883cf2010-06-22 20:30:50 +00002565 NewRecDefs[i]->resolveReferences();
2566
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002567 if (Lex.getCode() != tgtok::semi)
2568 return TokError("expected ';' at end of defm");
2569 Lex.Lex();
Bob Wilson7248f862009-11-22 04:24:42 +00002570
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002571 return false;
2572}
2573
2574/// ParseObject
2575/// Object ::= ClassInst
2576/// Object ::= DefInst
2577/// Object ::= MultiClassInst
2578/// Object ::= DefMInst
2579/// Object ::= LETCommand '{' ObjectList '}'
2580/// Object ::= LETCommand Object
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00002581bool TGParser::ParseObject(MultiClass *MC) {
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002582 switch (Lex.getCode()) {
Chris Lattnerd6890262010-10-31 19:27:15 +00002583 default:
2584 return TokError("Expected class, def, defm, multiclass or let definition");
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00002585 case tgtok::Let: return ParseTopLevelLet(MC);
2586 case tgtok::Def: return ParseDef(MC);
David Greenefb927af2012-02-22 16:09:41 +00002587 case tgtok::Foreach: return ParseForeach(MC);
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00002588 case tgtok::Defm: return ParseDefm(MC);
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002589 case tgtok::Class: return ParseClass();
2590 case tgtok::MultiClass: return ParseMultiClass();
2591 }
2592}
2593
2594/// ParseObjectList
2595/// ObjectList :== Object*
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00002596bool TGParser::ParseObjectList(MultiClass *MC) {
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002597 while (isObjectStart(Lex.getCode())) {
Bruno Cardoso Lopes5f2adcc2010-06-10 02:42:59 +00002598 if (ParseObject(MC))
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002599 return true;
2600 }
2601 return false;
2602}
2603
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002604bool TGParser::ParseFile() {
2605 Lex.Lex(); // Prime the lexer.
2606 if (ParseObjectList()) return true;
Bob Wilson7248f862009-11-22 04:24:42 +00002607
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002608 // If we have unread input at the end of the file, report it.
2609 if (Lex.getCode() == tgtok::Eof)
2610 return false;
Bob Wilson7248f862009-11-22 04:24:42 +00002611
Chris Lattnerf4127dd2007-11-22 20:49:04 +00002612 return TokError("Unexpected input at top level");
2613}
2614