Can't trust NodeDepth when checking for possibility of load folding creating
[oota-llvm.git] / utils / TableGen / FileParser.y.cvs
1 //===-- FileParser.y - Parser for TableGen files ----------------*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file implements the bison parser for Table Generator files...
11 //
12 //===----------------------------------------------------------------------===//
13
14 %{
15 #include "Record.h"
16 #include "llvm/ADT/StringExtras.h"
17 #include <algorithm>
18 #include <cstdio>
19 #define YYERROR_VERBOSE 1
20
21 int yyerror(const char *ErrorMsg);
22 int yylex();
23
24 namespace llvm {
25
26 extern int Filelineno;
27 static Record *CurRec = 0;
28 static bool ParsingTemplateArgs = false;
29
30 typedef std::pair<Record*, std::vector<Init*>*> SubClassRefTy;
31
32 struct LetRecord {
33   std::string Name;
34   std::vector<unsigned> Bits;
35   Init *Value;
36   bool HasBits;
37   LetRecord(const std::string &N, std::vector<unsigned> *B, Init *V)
38     : Name(N), Value(V), HasBits(B != 0) {
39     if (HasBits) Bits = *B;
40   }
41 };
42
43 static std::vector<std::vector<LetRecord> > LetStack;
44
45
46 extern std::ostream &err();
47
48 static void addValue(const RecordVal &RV) {
49   if (RecordVal *ERV = CurRec->getValue(RV.getName())) {
50     // The value already exists in the class, treat this as a set...
51     if (ERV->setValue(RV.getValue())) {
52       err() << "New definition of '" << RV.getName() << "' of type '"
53             << *RV.getType() << "' is incompatible with previous "
54             << "definition of type '" << *ERV->getType() << "'!\n";
55       exit(1);
56     }
57   } else {
58     CurRec->addValue(RV);
59   }
60 }
61
62 static void addSuperClass(Record *SC) {
63   if (CurRec->isSubClassOf(SC)) {
64     err() << "Already subclass of '" << SC->getName() << "'!\n";
65     exit(1);
66   }
67   CurRec->addSuperClass(SC);
68 }
69
70 static void setValue(const std::string &ValName, 
71                      std::vector<unsigned> *BitList, Init *V) {
72   if (!V) return;
73
74   RecordVal *RV = CurRec->getValue(ValName);
75   if (RV == 0) {
76     err() << "Value '" << ValName << "' unknown!\n";
77     exit(1);
78   }
79
80   // Do not allow assignments like 'X = X'.  This will just cause infinite loops
81   // in the resolution machinery.
82   if (!BitList)
83     if (VarInit *VI = dynamic_cast<VarInit*>(V))
84       if (VI->getName() == ValName)
85         return;
86   
87   // If we are assigning to a subset of the bits in the value... then we must be
88   // assigning to a field of BitsRecTy, which must have a BitsInit
89   // initializer...
90   //
91   if (BitList) {
92     BitsInit *CurVal = dynamic_cast<BitsInit*>(RV->getValue());
93     if (CurVal == 0) {
94       err() << "Value '" << ValName << "' is not a bits type!\n";
95       exit(1);
96     }
97
98     // Convert the incoming value to a bits type of the appropriate size...
99     Init *BI = V->convertInitializerTo(new BitsRecTy(BitList->size()));
100     if (BI == 0) {
101       V->convertInitializerTo(new BitsRecTy(BitList->size()));
102       err() << "Initializer '" << *V << "' not compatible with bit range!\n";
103       exit(1);
104     }
105
106     // We should have a BitsInit type now...
107     assert(dynamic_cast<BitsInit*>(BI) != 0 || &(std::cerr << *BI) == 0);
108     BitsInit *BInit = (BitsInit*)BI;
109
110     BitsInit *NewVal = new BitsInit(CurVal->getNumBits());
111
112     // Loop over bits, assigning values as appropriate...
113     for (unsigned i = 0, e = BitList->size(); i != e; ++i) {
114       unsigned Bit = (*BitList)[i];
115       if (NewVal->getBit(Bit)) {
116         err() << "Cannot set bit #" << Bit << " of value '" << ValName
117               << "' more than once!\n";
118         exit(1);
119       }
120       NewVal->setBit(Bit, BInit->getBit(i));
121     }
122
123     for (unsigned i = 0, e = CurVal->getNumBits(); i != e; ++i)
124       if (NewVal->getBit(i) == 0)
125         NewVal->setBit(i, CurVal->getBit(i));
126
127     V = NewVal;
128   }
129
130   if (RV->setValue(V)) {
131     err() << "Value '" << ValName << "' of type '" << *RV->getType()
132           << "' is incompatible with initializer '" << *V << "'!\n";
133     exit(1);
134   }
135 }
136
137 // addSubClass - Add SC as a subclass to CurRec, resolving TemplateArgs as SC's
138 // template arguments.
139 static void addSubClass(Record *SC, const std::vector<Init*> &TemplateArgs) {
140   // Add all of the values in the subclass into the current class...
141   const std::vector<RecordVal> &Vals = SC->getValues();
142   for (unsigned i = 0, e = Vals.size(); i != e; ++i)
143     addValue(Vals[i]);
144
145   const std::vector<std::string> &TArgs = SC->getTemplateArgs();
146
147   // Ensure that an appropriate number of template arguments are specified...
148   if (TArgs.size() < TemplateArgs.size()) {
149     err() << "ERROR: More template args specified than expected!\n";
150     exit(1);
151   } else {    // This class expects template arguments...
152     // Loop over all of the template arguments, setting them to the specified
153     // value or leaving them as the default if necessary.
154     for (unsigned i = 0, e = TArgs.size(); i != e; ++i) {
155       if (i < TemplateArgs.size()) {  // A value is specified for this temp-arg?
156         // Set it now.
157         setValue(TArgs[i], 0, TemplateArgs[i]);
158
159         // Resolve it next.
160         CurRec->resolveReferencesTo(CurRec->getValue(TArgs[i]));
161                                     
162         
163         // Now remove it.
164         CurRec->removeValue(TArgs[i]);
165
166       } else if (!CurRec->getValue(TArgs[i])->getValue()->isComplete()) {
167         err() << "ERROR: Value not specified for template argument #"
168               << i << " (" << TArgs[i] << ") of subclass '" << SC->getName()
169               << "'!\n";
170         exit(1);
171       }
172     }
173   }
174
175   // Since everything went well, we can now set the "superclass" list for the
176   // current record.
177   const std::vector<Record*> &SCs  = SC->getSuperClasses();
178   for (unsigned i = 0, e = SCs.size(); i != e; ++i)
179     addSuperClass(SCs[i]);
180   addSuperClass(SC);
181 }
182
183 } // End llvm namespace
184
185 using namespace llvm;
186
187 %}
188
189 %union {
190   std::string*                StrVal;
191   int                         IntVal;
192   llvm::RecTy*                Ty;
193   llvm::Init*                 Initializer;
194   std::vector<llvm::Init*>*   FieldList;
195   std::vector<unsigned>*      BitList;
196   llvm::Record*               Rec;
197   SubClassRefTy*              SubClassRef;
198   std::vector<SubClassRefTy>* SubClassList;
199   std::vector<std::pair<llvm::Init*, std::string> >* DagValueList;
200 };
201
202 %token INT BIT STRING BITS LIST CODE DAG CLASS DEF FIELD LET IN
203 %token SHLTOK SRATOK SRLTOK STRCONCATTOK
204 %token <IntVal>      INTVAL
205 %token <StrVal>      ID VARNAME STRVAL CODEFRAGMENT
206
207 %type <Ty>           Type
208 %type <Rec>          ClassInst DefInst Object ObjectBody ClassID
209
210 %type <SubClassRef>  SubClassRef
211 %type <SubClassList> ClassList ClassListNE
212 %type <IntVal>       OptPrefix
213 %type <Initializer>  Value OptValue IDValue
214 %type <DagValueList> DagArgList DagArgListNE
215 %type <FieldList>    ValueList ValueListNE
216 %type <BitList>      BitList OptBitList RBitList
217 %type <StrVal>       Declaration OptID OptVarName ObjectName
218
219 %start File
220
221 %%
222
223 ClassID : ID {
224     $$ = Records.getClass(*$1);
225     if ($$ == 0) {
226       err() << "Couldn't find class '" << *$1 << "'!\n";
227       exit(1);
228     }
229     delete $1;
230   };
231
232
233 // TableGen types...
234 Type : STRING {                       // string type
235     $$ = new StringRecTy();
236   } | BIT {                           // bit type
237     $$ = new BitRecTy();
238   } | BITS '<' INTVAL '>' {           // bits<x> type
239     $$ = new BitsRecTy($3);
240   } | INT {                           // int type
241     $$ = new IntRecTy();
242   } | LIST '<' Type '>'    {          // list<x> type
243     $$ = new ListRecTy($3);
244   } | CODE {                          // code type
245     $$ = new CodeRecTy();
246   } | DAG {                           // dag type
247     $$ = new DagRecTy();
248   } | ClassID {                       // Record Type
249     $$ = new RecordRecTy($1);
250   };
251
252 OptPrefix : /*empty*/ { $$ = 0; } | FIELD { $$ = 1; };
253
254 OptValue : /*empty*/ { $$ = 0; } | '=' Value { $$ = $2; };
255
256 IDValue : ID {
257   if (const RecordVal *RV = (CurRec ? CurRec->getValue(*$1) : 0)) {
258     $$ = new VarInit(*$1, RV->getType());
259   } else if (CurRec && CurRec->isTemplateArg(CurRec->getName()+":"+*$1)) {
260     const RecordVal *RV = CurRec->getValue(CurRec->getName()+":"+*$1);
261     assert(RV && "Template arg doesn't exist??");
262     $$ = new VarInit(CurRec->getName()+":"+*$1, RV->getType());
263   } else if (Record *D = Records.getDef(*$1)) {
264     $$ = new DefInit(D);
265   } else {
266     err() << "Variable not defined: '" << *$1 << "'!\n";
267     exit(1);
268   }
269   
270   delete $1;
271 };
272
273 Value : IDValue {
274     $$ = $1;
275   } | INTVAL {
276     $$ = new IntInit($1);
277   } | STRVAL {
278     $$ = new StringInit(*$1);
279     delete $1;
280   } | CODEFRAGMENT {
281     $$ = new CodeInit(*$1);
282     delete $1;
283   } | '?' {
284     $$ = new UnsetInit();
285   } | '{' ValueList '}' {
286     BitsInit *Init = new BitsInit($2->size());
287     for (unsigned i = 0, e = $2->size(); i != e; ++i) {
288       struct Init *Bit = (*$2)[i]->convertInitializerTo(new BitRecTy());
289       if (Bit == 0) {
290         err() << "Element #" << i << " (" << *(*$2)[i]
291               << ") is not convertable to a bit!\n";
292         exit(1);
293       }
294       Init->setBit($2->size()-i-1, Bit);
295     }
296     $$ = Init;
297     delete $2;
298   } | ID '<' ValueListNE '>' {
299     // This is a CLASS<initvalslist> expression.  This is supposed to synthesize
300     // a new anonymous definition, deriving from CLASS<initvalslist> with no
301     // body.
302     Record *Class = Records.getClass(*$1);
303     if (!Class) {
304       err() << "Expected a class, got '" << *$1 << "'!\n";
305       exit(1);
306     }
307     delete $1;
308     
309     static unsigned AnonCounter = 0;
310     Record *OldRec = CurRec;  // Save CurRec.
311     
312     // Create the new record, set it as CurRec temporarily.
313     CurRec = new Record("anonymous.val."+utostr(AnonCounter++));
314     addSubClass(Class, *$3);    // Add info about the subclass to CurRec.
315     delete $3;  // Free up the template args.
316     
317     CurRec->resolveReferences();
318     
319     Records.addDef(CurRec);
320     
321     // The result of the expression is a reference to the new record.
322     $$ = new DefInit(CurRec);
323     
324     // Restore the old CurRec
325     CurRec = OldRec;
326   } | Value '{' BitList '}' {
327     $$ = $1->convertInitializerBitRange(*$3);
328     if ($$ == 0) {
329       err() << "Invalid bit range for value '" << *$1 << "'!\n";
330       exit(1);
331     }
332     delete $3;
333   } | '[' ValueList ']' {
334     $$ = new ListInit(*$2);
335     delete $2;
336   } | Value '.' ID {
337     if (!$1->getFieldType(*$3)) {
338       err() << "Cannot access field '" << *$3 << "' of value '" << *$1 << "!\n";
339       exit(1);
340     }
341     $$ = new FieldInit($1, *$3);
342     delete $3;
343   } | '(' IDValue DagArgList ')' {
344     $$ = new DagInit($2, *$3);
345     delete $3;
346   } | Value '[' BitList ']' {
347     std::reverse($3->begin(), $3->end());
348     $$ = $1->convertInitListSlice(*$3);
349     if ($$ == 0) {
350       err() << "Invalid list slice for value '" << *$1 << "'!\n";
351       exit(1);
352     }
353     delete $3;
354   } | SHLTOK '(' Value ',' Value ')' {
355     $$ = (new BinOpInit(BinOpInit::SHL, $3, $5))->Fold();
356   } | SRATOK '(' Value ',' Value ')' {
357     $$ = (new BinOpInit(BinOpInit::SRA, $3, $5))->Fold();
358   } | SRLTOK '(' Value ',' Value ')' {
359     $$ = (new BinOpInit(BinOpInit::SRL, $3, $5))->Fold();
360   } | STRCONCATTOK '(' Value ',' Value ')' {
361     $$ = (new BinOpInit(BinOpInit::STRCONCAT, $3, $5))->Fold();
362   };
363
364 OptVarName : /* empty */ {
365     $$ = new std::string();
366   }
367   | ':' VARNAME {
368     $$ = $2;
369   };
370
371 DagArgListNE : Value OptVarName {
372     $$ = new std::vector<std::pair<Init*, std::string> >();
373     $$->push_back(std::make_pair($1, *$2));
374     delete $2;
375   }
376   | DagArgListNE ',' Value OptVarName {
377     $1->push_back(std::make_pair($3, *$4));
378     delete $4;
379     $$ = $1;
380   };
381
382 DagArgList : /*empty*/ {
383     $$ = new std::vector<std::pair<Init*, std::string> >();
384   }
385   | DagArgListNE { $$ = $1; };
386
387
388 RBitList : INTVAL {
389     $$ = new std::vector<unsigned>();
390     $$->push_back($1);
391   } | INTVAL '-' INTVAL {
392     if ($1 < 0 || $3 < 0) {
393       err() << "Invalid range: " << $1 << "-" << $3 << "!\n";
394       exit(1);
395     }
396     $$ = new std::vector<unsigned>();
397     if ($1 < $3) {
398       for (int i = $1; i <= $3; ++i)
399         $$->push_back(i);
400     } else {
401       for (int i = $1; i >= $3; --i)
402         $$->push_back(i);
403     }
404   } | INTVAL INTVAL {
405     $2 = -$2;
406     if ($1 < 0 || $2 < 0) {
407       err() << "Invalid range: " << $1 << "-" << $2 << "!\n";
408       exit(1);
409     }
410     $$ = new std::vector<unsigned>();
411     if ($1 < $2) {
412       for (int i = $1; i <= $2; ++i)
413         $$->push_back(i);
414     } else {
415       for (int i = $1; i >= $2; --i)
416         $$->push_back(i);
417     }
418   } | RBitList ',' INTVAL {
419     ($$=$1)->push_back($3);
420   } | RBitList ',' INTVAL '-' INTVAL {
421     if ($3 < 0 || $5 < 0) {
422       err() << "Invalid range: " << $3 << "-" << $5 << "!\n";
423       exit(1);
424     }
425     $$ = $1;
426     if ($3 < $5) {
427       for (int i = $3; i <= $5; ++i)
428         $$->push_back(i);
429     } else {
430       for (int i = $3; i >= $5; --i)
431         $$->push_back(i);
432     }
433   } | RBitList ',' INTVAL INTVAL {
434     $4 = -$4;
435     if ($3 < 0 || $4 < 0) {
436       err() << "Invalid range: " << $3 << "-" << $4 << "!\n";
437       exit(1);
438     }
439     $$ = $1;
440     if ($3 < $4) {
441       for (int i = $3; i <= $4; ++i)
442         $$->push_back(i);
443     } else {
444       for (int i = $3; i >= $4; --i)
445         $$->push_back(i);
446     }
447   };
448
449 BitList : RBitList { $$ = $1; std::reverse($1->begin(), $1->end()); };
450
451 OptBitList : /*empty*/ { $$ = 0; } | '{' BitList '}' { $$ = $2; };
452
453
454
455 ValueList : /*empty*/ {
456     $$ = new std::vector<Init*>();
457   } | ValueListNE {
458     $$ = $1;
459   };
460
461 ValueListNE : Value {
462     $$ = new std::vector<Init*>();
463     $$->push_back($1);
464   } | ValueListNE ',' Value {
465     ($$ = $1)->push_back($3);
466   };
467
468 Declaration : OptPrefix Type ID OptValue {
469   std::string DecName = *$3;
470   if (ParsingTemplateArgs)
471     DecName = CurRec->getName() + ":" + DecName;
472
473   addValue(RecordVal(DecName, $2, $1));
474   setValue(DecName, 0, $4);
475   $$ = new std::string(DecName);
476 };
477
478 BodyItem : Declaration ';' {
479   delete $1;
480 } | LET ID OptBitList '=' Value ';' {
481   setValue(*$2, $3, $5);
482   delete $2;
483   delete $3;
484 };
485
486 BodyList : /*empty*/ | BodyList BodyItem;
487 Body : ';' | '{' BodyList '}';
488
489 SubClassRef : ClassID {
490     $$ = new SubClassRefTy($1, new std::vector<Init*>());
491   } | ClassID '<' ValueListNE '>' {
492     $$ = new SubClassRefTy($1, $3);
493   };
494
495 ClassListNE : SubClassRef {
496     $$ = new std::vector<SubClassRefTy>();
497     $$->push_back(*$1);
498     delete $1;
499   }
500   | ClassListNE ',' SubClassRef {
501     ($$=$1)->push_back(*$3);
502     delete $3;
503   };
504
505 ClassList : /*empty */ {
506     $$ = new std::vector<SubClassRefTy>();
507   }
508   | ':' ClassListNE {
509     $$ = $2;
510   };
511
512 DeclListNE : Declaration {
513   CurRec->addTemplateArg(*$1);
514   delete $1;
515 } | DeclListNE ',' Declaration {
516   CurRec->addTemplateArg(*$3);
517   delete $3;
518 };
519
520 TemplateArgList : '<' DeclListNE '>' {};
521 OptTemplateArgList : /*empty*/ | TemplateArgList;
522
523 OptID : ID { $$ = $1; } | /*empty*/ { $$ = new std::string(); };
524
525 ObjectName : OptID {
526   static unsigned AnonCounter = 0;
527   if ($1->empty())
528     *$1 = "anonymous."+utostr(AnonCounter++);
529   $$ = $1;
530 };
531
532 ClassName : ObjectName {
533   // If a class of this name already exists, it must be a forward ref.
534   if ((CurRec = Records.getClass(*$1))) {
535     // If the body was previously defined, this is an error.
536     if (!CurRec->getValues().empty() ||
537         !CurRec->getSuperClasses().empty() ||
538         !CurRec->getTemplateArgs().empty()) {
539       err() << "Class '" << CurRec->getName() << "' already defined!\n";
540       exit(1);
541     }
542   } else {
543     // If this is the first reference to this class, create and add it.
544     CurRec = new Record(*$1);
545     Records.addClass(CurRec);
546   }
547   delete $1;
548 };
549
550 DefName : ObjectName {
551   CurRec = new Record(*$1);
552   delete $1;
553   
554   // Ensure redefinition doesn't happen.
555   if (Records.getDef(CurRec->getName())) {
556     err() << "Def '" << CurRec->getName() << "' already defined!\n";
557     exit(1);
558   }
559   Records.addDef(CurRec);
560 };
561
562 ObjectBody : ClassList {
563            for (unsigned i = 0, e = $1->size(); i != e; ++i) {
564              addSubClass((*$1)[i].first, *(*$1)[i].second);
565              // Delete the template arg values for the class
566              delete (*$1)[i].second;
567            }
568            delete $1;   // Delete the class list...
569   
570            // Process any variables on the set stack...
571            for (unsigned i = 0, e = LetStack.size(); i != e; ++i)
572              for (unsigned j = 0, e = LetStack[i].size(); j != e; ++j)
573                setValue(LetStack[i][j].Name,
574                         LetStack[i][j].HasBits ? &LetStack[i][j].Bits : 0,
575                         LetStack[i][j].Value);
576          } Body {
577            $$ = CurRec;
578            CurRec = 0;
579          };
580
581 ClassInst : CLASS ClassName {
582                 ParsingTemplateArgs = true;
583             } OptTemplateArgList {
584                 ParsingTemplateArgs = false;
585             } ObjectBody {
586         $$ = $6;
587      };
588
589 DefInst : DEF DefName ObjectBody {
590   $3->resolveReferences();
591
592   // If ObjectBody has template arguments, it's an error.
593   assert($3->getTemplateArgs().empty() && "How'd this get template args?");
594   $$ = $3;
595 };
596
597
598 Object : ClassInst | DefInst;
599
600 LETItem : ID OptBitList '=' Value {
601   LetStack.back().push_back(LetRecord(*$1, $2, $4));
602   delete $1; delete $2;
603 };
604
605 LETList : LETItem | LETList ',' LETItem;
606
607 // LETCommand - A 'LET' statement start...
608 LETCommand : LET { LetStack.push_back(std::vector<LetRecord>()); } LETList IN;
609
610 // Support Set commands wrapping objects... both with and without braces.
611 Object : LETCommand '{' ObjectList '}' {
612     LetStack.pop_back();
613   }
614   | LETCommand Object {
615     LetStack.pop_back();
616   };
617
618 ObjectList : Object {} | ObjectList Object {};
619
620 File : ObjectList {};
621
622 %%
623
624 int yyerror(const char *ErrorMsg) {
625   err() << "Error parsing: " << ErrorMsg << "\n";
626   exit(1);
627 }