Allow Operator Arguments
[oota-llvm.git] / lib / TableGen / Record.cpp
1 //===- Record.cpp - Record implementation ---------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Implement the tablegen record classes.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/TableGen/Record.h"
15 #include "llvm/TableGen/Error.h"
16 #include "llvm/Support/DataTypes.h"
17 #include "llvm/Support/ErrorHandling.h"
18 #include "llvm/Support/Format.h"
19 #include "llvm/ADT/DenseMap.h"
20 #include "llvm/ADT/FoldingSet.h"
21 #include "llvm/ADT/SmallVector.h"
22 #include "llvm/ADT/STLExtras.h"
23 #include "llvm/ADT/StringExtras.h"
24 #include "llvm/ADT/StringMap.h"
25
26 using namespace llvm;
27
28 //===----------------------------------------------------------------------===//
29 //    std::string wrapper for DenseMap purposes
30 //===----------------------------------------------------------------------===//
31
32 /// TableGenStringKey - This is a wrapper for std::string suitable for
33 /// using as a key to a DenseMap.  Because there isn't a particularly
34 /// good way to indicate tombstone or empty keys for strings, we want
35 /// to wrap std::string to indicate that this is a "special" string
36 /// not expected to take on certain values (those of the tombstone and
37 /// empty keys).  This makes things a little safer as it clarifies
38 /// that DenseMap is really not appropriate for general strings.
39
40 class TableGenStringKey {
41 public:
42   TableGenStringKey(const std::string &str) : data(str) {}
43   TableGenStringKey(const char *str) : data(str) {}
44
45   const std::string &str() const { return data; }
46   
47 private:
48   std::string data;
49 };
50
51 /// Specialize DenseMapInfo for TableGenStringKey.
52 namespace llvm {
53
54 template<> struct DenseMapInfo<TableGenStringKey> {
55   static inline TableGenStringKey getEmptyKey() {
56     TableGenStringKey Empty("<<<EMPTY KEY>>>");
57     return Empty;
58   }
59   static inline TableGenStringKey getTombstoneKey() {
60     TableGenStringKey Tombstone("<<<TOMBSTONE KEY>>>");
61     return Tombstone;
62   }
63   static unsigned getHashValue(const TableGenStringKey& Val) {
64     return HashString(Val.str());
65   }
66   static bool isEqual(const TableGenStringKey& LHS,
67                       const TableGenStringKey& RHS) {
68     return LHS.str() == RHS.str();
69   }
70 };
71
72 }
73
74 //===----------------------------------------------------------------------===//
75 //    Type implementations
76 //===----------------------------------------------------------------------===//
77
78 BitRecTy BitRecTy::Shared;
79 IntRecTy IntRecTy::Shared;
80 StringRecTy StringRecTy::Shared;
81 CodeRecTy CodeRecTy::Shared;
82 DagRecTy DagRecTy::Shared;
83
84 void RecTy::dump() const { print(errs()); }
85
86 ListRecTy *RecTy::getListTy() {
87   if (!ListTy)
88     ListTy = new ListRecTy(this);
89   return ListTy;
90 }
91
92 Init *BitRecTy::convertValue(BitsInit *BI) {
93   if (BI->getNumBits() != 1) return 0; // Only accept if just one bit!
94   return BI->getBit(0);
95 }
96
97 bool BitRecTy::baseClassOf(const BitsRecTy *RHS) const {
98   return RHS->getNumBits() == 1;
99 }
100
101 Init *BitRecTy::convertValue(IntInit *II) {
102   int64_t Val = II->getValue();
103   if (Val != 0 && Val != 1) return 0;  // Only accept 0 or 1 for a bit!
104
105   return BitInit::get(Val != 0);
106 }
107
108 Init *BitRecTy::convertValue(TypedInit *VI) {
109   if (dynamic_cast<BitRecTy*>(VI->getType()))
110     return VI;  // Accept variable if it is already of bit type!
111   return 0;
112 }
113
114 BitsRecTy *BitsRecTy::get(unsigned Sz) {
115   static std::vector<BitsRecTy*> Shared;
116   if (Sz >= Shared.size())
117     Shared.resize(Sz + 1);
118   BitsRecTy *&Ty = Shared[Sz];
119   if (!Ty)
120     Ty = new BitsRecTy(Sz);
121   return Ty;
122 }
123
124 std::string BitsRecTy::getAsString() const {
125   return "bits<" + utostr(Size) + ">";
126 }
127
128 Init *BitsRecTy::convertValue(UnsetInit *UI) {
129   SmallVector<Init *, 16> NewBits(Size);
130
131   for (unsigned i = 0; i != Size; ++i)
132     NewBits[i] = UnsetInit::get();
133
134   return BitsInit::get(NewBits);
135 }
136
137 Init *BitsRecTy::convertValue(BitInit *UI) {
138   if (Size != 1) return 0;  // Can only convert single bit.
139           return BitsInit::get(UI);
140 }
141
142 /// canFitInBitfield - Return true if the number of bits is large enough to hold
143 /// the integer value.
144 static bool canFitInBitfield(int64_t Value, unsigned NumBits) {
145   // For example, with NumBits == 4, we permit Values from [-7 .. 15].
146   return (NumBits >= sizeof(Value) * 8) ||
147          (Value >> NumBits == 0) || (Value >> (NumBits-1) == -1);
148 }
149
150 /// convertValue from Int initializer to bits type: Split the integer up into the
151 /// appropriate bits.
152 ///
153 Init *BitsRecTy::convertValue(IntInit *II) {
154   int64_t Value = II->getValue();
155   // Make sure this bitfield is large enough to hold the integer value.
156   if (!canFitInBitfield(Value, Size))
157     return 0;
158
159   SmallVector<Init *, 16> NewBits(Size);
160
161   for (unsigned i = 0; i != Size; ++i)
162     NewBits[i] = BitInit::get(Value & (1LL << i));
163
164   return BitsInit::get(NewBits);
165 }
166
167 Init *BitsRecTy::convertValue(BitsInit *BI) {
168   // If the number of bits is right, return it.  Otherwise we need to expand or
169   // truncate.
170   if (BI->getNumBits() == Size) return BI;
171   return 0;
172 }
173
174 Init *BitsRecTy::convertValue(TypedInit *VI) {
175   if (BitsRecTy *BRT = dynamic_cast<BitsRecTy*>(VI->getType()))
176     if (BRT->Size == Size) {
177       SmallVector<Init *, 16> NewBits(Size);
178  
179       for (unsigned i = 0; i != Size; ++i)
180         NewBits[i] = VarBitInit::get(VI, i);
181       return BitsInit::get(NewBits);
182     }
183
184   if (Size == 1 && dynamic_cast<BitRecTy*>(VI->getType()))
185     return BitsInit::get(VI);
186
187   if (TernOpInit *Tern = dynamic_cast<TernOpInit*>(VI)) {
188     if (Tern->getOpcode() == TernOpInit::IF) {
189       Init *LHS = Tern->getLHS();
190       Init *MHS = Tern->getMHS();
191       Init *RHS = Tern->getRHS();
192
193       IntInit *MHSi = dynamic_cast<IntInit*>(MHS);
194       IntInit *RHSi = dynamic_cast<IntInit*>(RHS);
195
196       if (MHSi && RHSi) {
197         int64_t MHSVal = MHSi->getValue();
198         int64_t RHSVal = RHSi->getValue();
199
200         if (canFitInBitfield(MHSVal, Size) && canFitInBitfield(RHSVal, Size)) {
201           SmallVector<Init *, 16> NewBits(Size);
202
203           for (unsigned i = 0; i != Size; ++i)
204             NewBits[i] =
205               TernOpInit::get(TernOpInit::IF, LHS,
206                               IntInit::get((MHSVal & (1LL << i)) ? 1 : 0),
207                               IntInit::get((RHSVal & (1LL << i)) ? 1 : 0),
208                               VI->getType());
209
210           return BitsInit::get(NewBits);
211         }
212       } else {
213         BitsInit *MHSbs = dynamic_cast<BitsInit*>(MHS);
214         BitsInit *RHSbs = dynamic_cast<BitsInit*>(RHS);
215
216         if (MHSbs && RHSbs) {
217           SmallVector<Init *, 16> NewBits(Size);
218
219           for (unsigned i = 0; i != Size; ++i)
220             NewBits[i] = TernOpInit::get(TernOpInit::IF, LHS,
221                                          MHSbs->getBit(i),
222                                          RHSbs->getBit(i),
223                                          VI->getType());
224
225           return BitsInit::get(NewBits);
226         }
227       }
228     }
229   }
230
231   return 0;
232 }
233
234 Init *IntRecTy::convertValue(BitInit *BI) {
235   return IntInit::get(BI->getValue());
236 }
237
238 Init *IntRecTy::convertValue(BitsInit *BI) {
239   int64_t Result = 0;
240   for (unsigned i = 0, e = BI->getNumBits(); i != e; ++i)
241     if (BitInit *Bit = dynamic_cast<BitInit*>(BI->getBit(i))) {
242       Result |= Bit->getValue() << i;
243     } else {
244       return 0;
245     }
246   return IntInit::get(Result);
247 }
248
249 Init *IntRecTy::convertValue(TypedInit *TI) {
250   if (TI->getType()->typeIsConvertibleTo(this))
251     return TI;  // Accept variable if already of the right type!
252   return 0;
253 }
254
255 Init *StringRecTy::convertValue(UnOpInit *BO) {
256   if (BO->getOpcode() == UnOpInit::CAST) {
257     Init *L = BO->getOperand()->convertInitializerTo(this);
258     if (L == 0) return 0;
259     if (L != BO->getOperand())
260       return UnOpInit::get(UnOpInit::CAST, L, new StringRecTy);
261     return BO;
262   }
263
264   return convertValue((TypedInit*)BO);
265 }
266
267 Init *StringRecTy::convertValue(BinOpInit *BO) {
268   if (BO->getOpcode() == BinOpInit::STRCONCAT) {
269     Init *L = BO->getLHS()->convertInitializerTo(this);
270     Init *R = BO->getRHS()->convertInitializerTo(this);
271     if (L == 0 || R == 0) return 0;
272     if (L != BO->getLHS() || R != BO->getRHS())
273       return BinOpInit::get(BinOpInit::STRCONCAT, L, R, new StringRecTy);
274     return BO;
275   }
276
277   return convertValue((TypedInit*)BO);
278 }
279
280
281 Init *StringRecTy::convertValue(TypedInit *TI) {
282   if (dynamic_cast<StringRecTy*>(TI->getType()))
283     return TI;  // Accept variable if already of the right type!
284   return 0;
285 }
286
287 std::string ListRecTy::getAsString() const {
288   return "list<" + Ty->getAsString() + ">";
289 }
290
291 Init *ListRecTy::convertValue(ListInit *LI) {
292   std::vector<Init*> Elements;
293
294   // Verify that all of the elements of the list are subclasses of the
295   // appropriate class!
296   for (unsigned i = 0, e = LI->getSize(); i != e; ++i)
297     if (Init *CI = LI->getElement(i)->convertInitializerTo(Ty))
298       Elements.push_back(CI);
299     else
300       return 0;
301
302   ListRecTy *LType = dynamic_cast<ListRecTy*>(LI->getType());
303   if (LType == 0) {
304     return 0;
305   }
306
307   return ListInit::get(Elements, this);
308 }
309
310 Init *ListRecTy::convertValue(TypedInit *TI) {
311   // Ensure that TI is compatible with our class.
312   if (ListRecTy *LRT = dynamic_cast<ListRecTy*>(TI->getType()))
313     if (LRT->getElementType()->typeIsConvertibleTo(getElementType()))
314       return TI;
315   return 0;
316 }
317
318 Init *CodeRecTy::convertValue(TypedInit *TI) {
319   if (TI->getType()->typeIsConvertibleTo(this))
320     return TI;
321   return 0;
322 }
323
324 Init *DagRecTy::convertValue(TypedInit *TI) {
325   if (TI->getType()->typeIsConvertibleTo(this))
326     return TI;
327   return 0;
328 }
329
330 Init *DagRecTy::convertValue(UnOpInit *BO) {
331   if (BO->getOpcode() == UnOpInit::CAST) {
332     Init *L = BO->getOperand()->convertInitializerTo(this);
333     if (L == 0) return 0;
334     if (L != BO->getOperand())
335       return UnOpInit::get(UnOpInit::CAST, L, new DagRecTy);
336     return BO;
337   }
338   return 0;
339 }
340
341 Init *DagRecTy::convertValue(BinOpInit *BO) {
342   if (BO->getOpcode() == BinOpInit::CONCAT) {
343     Init *L = BO->getLHS()->convertInitializerTo(this);
344     Init *R = BO->getRHS()->convertInitializerTo(this);
345     if (L == 0 || R == 0) return 0;
346     if (L != BO->getLHS() || R != BO->getRHS())
347       return BinOpInit::get(BinOpInit::CONCAT, L, R, new DagRecTy);
348     return BO;
349   }
350   return 0;
351 }
352
353 RecordRecTy *RecordRecTy::get(Record *R) {
354   return &dynamic_cast<RecordRecTy&>(*R->getDefInit()->getType());
355 }
356
357 std::string RecordRecTy::getAsString() const {
358   return Rec->getName();
359 }
360
361 Init *RecordRecTy::convertValue(DefInit *DI) {
362   // Ensure that DI is a subclass of Rec.
363   if (!DI->getDef()->isSubClassOf(Rec))
364     return 0;
365   return DI;
366 }
367
368 Init *RecordRecTy::convertValue(TypedInit *TI) {
369   // Ensure that TI is compatible with Rec.
370   if (RecordRecTy *RRT = dynamic_cast<RecordRecTy*>(TI->getType()))
371     if (RRT->getRecord()->isSubClassOf(getRecord()) ||
372         RRT->getRecord() == getRecord())
373       return TI;
374   return 0;
375 }
376
377 bool RecordRecTy::baseClassOf(const RecordRecTy *RHS) const {
378   if (Rec == RHS->getRecord() || RHS->getRecord()->isSubClassOf(Rec))
379     return true;
380
381   const std::vector<Record*> &SC = Rec->getSuperClasses();
382   for (unsigned i = 0, e = SC.size(); i != e; ++i)
383     if (RHS->getRecord()->isSubClassOf(SC[i]))
384       return true;
385
386   return false;
387 }
388
389
390 /// resolveTypes - Find a common type that T1 and T2 convert to.
391 /// Return 0 if no such type exists.
392 ///
393 RecTy *llvm::resolveTypes(RecTy *T1, RecTy *T2) {
394   if (!T1->typeIsConvertibleTo(T2)) {
395     if (!T2->typeIsConvertibleTo(T1)) {
396       // If one is a Record type, check superclasses
397       RecordRecTy *RecTy1 = dynamic_cast<RecordRecTy*>(T1);
398       if (RecTy1) {
399         // See if T2 inherits from a type T1 also inherits from
400         const std::vector<Record *> &T1SuperClasses =
401           RecTy1->getRecord()->getSuperClasses();
402         for(std::vector<Record *>::const_iterator i = T1SuperClasses.begin(),
403               iend = T1SuperClasses.end();
404             i != iend;
405             ++i) {
406           RecordRecTy *SuperRecTy1 = RecordRecTy::get(*i);
407           RecTy *NewType1 = resolveTypes(SuperRecTy1, T2);
408           if (NewType1 != 0) {
409             if (NewType1 != SuperRecTy1) {
410               delete SuperRecTy1;
411             }
412             return NewType1;
413           }
414         }
415       }
416       RecordRecTy *RecTy2 = dynamic_cast<RecordRecTy*>(T2);
417       if (RecTy2) {
418         // See if T1 inherits from a type T2 also inherits from
419         const std::vector<Record *> &T2SuperClasses =
420           RecTy2->getRecord()->getSuperClasses();
421         for (std::vector<Record *>::const_iterator i = T2SuperClasses.begin(),
422               iend = T2SuperClasses.end();
423             i != iend;
424             ++i) {
425           RecordRecTy *SuperRecTy2 = RecordRecTy::get(*i);
426           RecTy *NewType2 = resolveTypes(T1, SuperRecTy2);
427           if (NewType2 != 0) {
428             if (NewType2 != SuperRecTy2) {
429               delete SuperRecTy2;
430             }
431             return NewType2;
432           }
433         }
434       }
435       return 0;
436     }
437     return T2;
438   }
439   return T1;
440 }
441
442
443 //===----------------------------------------------------------------------===//
444 //    Initializer implementations
445 //===----------------------------------------------------------------------===//
446
447 void Init::dump() const { return print(errs()); }
448
449 UnsetInit *UnsetInit::get() {
450   static UnsetInit TheInit;
451   return &TheInit;
452 }
453
454 BitInit *BitInit::get(bool V) {
455   static BitInit True(true);
456   static BitInit False(false);
457
458   return V ? &True : &False;
459 }
460
461 static void
462 ProfileBitsInit(FoldingSetNodeID &ID, ArrayRef<Init *> Range) {
463   ID.AddInteger(Range.size());
464
465   for (ArrayRef<Init *>::iterator i = Range.begin(),
466          iend = Range.end();
467        i != iend;
468        ++i)
469     ID.AddPointer(*i);
470 }
471
472 BitsInit *BitsInit::get(ArrayRef<Init *> Range) {
473   typedef FoldingSet<BitsInit> Pool;
474   static Pool ThePool;  
475
476   FoldingSetNodeID ID;
477   ProfileBitsInit(ID, Range);
478
479   void *IP = 0;
480   if (BitsInit *I = ThePool.FindNodeOrInsertPos(ID, IP))
481     return I;
482
483   BitsInit *I = new BitsInit(Range);
484   ThePool.InsertNode(I, IP);
485
486   return I;
487 }
488
489 void BitsInit::Profile(FoldingSetNodeID &ID) const {
490   ProfileBitsInit(ID, Bits);
491 }
492
493 Init *
494 BitsInit::convertInitializerBitRange(const std::vector<unsigned> &Bits) const {
495   SmallVector<Init *, 16> NewBits(Bits.size());
496
497   for (unsigned i = 0, e = Bits.size(); i != e; ++i) {
498     if (Bits[i] >= getNumBits())
499       return 0;
500     NewBits[i] = getBit(Bits[i]);
501   }
502   return BitsInit::get(NewBits);
503 }
504
505 std::string BitsInit::getAsString() const {
506   std::string Result = "{ ";
507   for (unsigned i = 0, e = getNumBits(); i != e; ++i) {
508     if (i) Result += ", ";
509     if (Init *Bit = getBit(e-i-1))
510       Result += Bit->getAsString();
511     else
512       Result += "*";
513   }
514   return Result + " }";
515 }
516
517 // resolveReferences - If there are any field references that refer to fields
518 // that have been filled in, we can propagate the values now.
519 //
520 Init *BitsInit::resolveReferences(Record &R, const RecordVal *RV) const {
521   bool Changed = false;
522   SmallVector<Init *, 16> NewBits(getNumBits());
523
524   for (unsigned i = 0, e = Bits.size(); i != e; ++i) {
525     Init *B;
526     Init *CurBit = getBit(i);
527
528     do {
529       B = CurBit;
530       CurBit = CurBit->resolveReferences(R, RV);
531       Changed |= B != CurBit;
532     } while (B != CurBit);
533     NewBits[i] = CurBit;
534   }
535
536   if (Changed)
537     return BitsInit::get(NewBits);
538
539   return const_cast<BitsInit *>(this);
540 }
541
542 IntInit *IntInit::get(int64_t V) {
543   typedef DenseMap<int64_t, IntInit *> Pool;
544   static Pool ThePool;
545
546   IntInit *&I = ThePool[V];
547   if (!I) I = new IntInit(V);
548   return I;
549 }
550
551 std::string IntInit::getAsString() const {
552   return itostr(Value);
553 }
554
555 Init *
556 IntInit::convertInitializerBitRange(const std::vector<unsigned> &Bits) const {
557   SmallVector<Init *, 16> NewBits(Bits.size());
558
559   for (unsigned i = 0, e = Bits.size(); i != e; ++i) {
560     if (Bits[i] >= 64)
561       return 0;
562
563     NewBits[i] = BitInit::get(Value & (INT64_C(1) << Bits[i]));
564   }
565   return BitsInit::get(NewBits);
566 }
567
568 StringInit *StringInit::get(const std::string &V) {
569   typedef StringMap<StringInit *> Pool;
570   static Pool ThePool;
571
572   StringInit *&I = ThePool[V];
573   if (!I) I = new StringInit(V);
574   return I;
575 }
576
577 CodeInit *CodeInit::get(const std::string &V) {
578   typedef StringMap<CodeInit *> Pool;
579   static Pool ThePool;
580
581   CodeInit *&I = ThePool[V];
582   if (!I) I = new CodeInit(V);
583   return I;
584 }
585
586 static void ProfileListInit(FoldingSetNodeID &ID,
587                             ArrayRef<Init *> Range,
588                             RecTy *EltTy) {
589   ID.AddInteger(Range.size());
590   ID.AddPointer(EltTy);
591
592   for (ArrayRef<Init *>::iterator i = Range.begin(),
593          iend = Range.end();
594        i != iend;
595        ++i)
596     ID.AddPointer(*i);
597 }
598
599 ListInit *ListInit::get(ArrayRef<Init *> Range, RecTy *EltTy) {
600   typedef FoldingSet<ListInit> Pool;
601   static Pool ThePool;
602
603   // Just use the FoldingSetNodeID to compute a hash.  Use a DenseMap
604   // for actual storage.
605   FoldingSetNodeID ID;
606   ProfileListInit(ID, Range, EltTy);
607
608   void *IP = 0;
609   if (ListInit *I = ThePool.FindNodeOrInsertPos(ID, IP))
610     return I;
611
612   ListInit *I = new ListInit(Range, EltTy);
613   ThePool.InsertNode(I, IP);
614   return I;
615 }
616
617 void ListInit::Profile(FoldingSetNodeID &ID) const {
618   ListRecTy *ListType = dynamic_cast<ListRecTy *>(getType());
619   assert(ListType && "Bad type for ListInit!");
620   RecTy *EltTy = ListType->getElementType();
621
622   ProfileListInit(ID, Values, EltTy);
623 }
624
625 Init *
626 ListInit::convertInitListSlice(const std::vector<unsigned> &Elements) const {
627   std::vector<Init*> Vals;
628   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
629     if (Elements[i] >= getSize())
630       return 0;
631     Vals.push_back(getElement(Elements[i]));
632   }
633   return ListInit::get(Vals, getType());
634 }
635
636 Record *ListInit::getElementAsRecord(unsigned i) const {
637   assert(i < Values.size() && "List element index out of range!");
638   DefInit *DI = dynamic_cast<DefInit*>(Values[i]);
639   if (DI == 0) throw "Expected record in list!";
640   return DI->getDef();
641 }
642
643 Init *ListInit::resolveReferences(Record &R, const RecordVal *RV) const {
644   std::vector<Init*> Resolved;
645   Resolved.reserve(getSize());
646   bool Changed = false;
647
648   for (unsigned i = 0, e = getSize(); i != e; ++i) {
649     Init *E;
650     Init *CurElt = getElement(i);
651
652     do {
653       E = CurElt;
654       CurElt = CurElt->resolveReferences(R, RV);
655       Changed |= E != CurElt;
656     } while (E != CurElt);
657     Resolved.push_back(E);
658   }
659
660   if (Changed)
661     return ListInit::get(Resolved, getType());
662   return const_cast<ListInit *>(this);
663 }
664
665 Init *ListInit::resolveListElementReference(Record &R, const RecordVal *IRV,
666                                             unsigned Elt) const {
667   if (Elt >= getSize())
668     return 0;  // Out of range reference.
669   Init *E = getElement(Elt);
670   // If the element is set to some value, or if we are resolving a reference
671   // to a specific variable and that variable is explicitly unset, then
672   // replace the VarListElementInit with it.
673   if (IRV || !dynamic_cast<UnsetInit*>(E))
674     return E;
675   return 0;
676 }
677
678 std::string ListInit::getAsString() const {
679   std::string Result = "[";
680   for (unsigned i = 0, e = Values.size(); i != e; ++i) {
681     if (i) Result += ", ";
682     Result += Values[i]->getAsString();
683   }
684   return Result + "]";
685 }
686
687 Init *OpInit::resolveBitReference(Record &R, const RecordVal *IRV,
688                                   unsigned Bit) const {
689   Init *Folded = Fold(&R, 0);
690
691   if (Folded != this) {
692     TypedInit *Typed = dynamic_cast<TypedInit *>(Folded);
693     if (Typed) {
694       return Typed->resolveBitReference(R, IRV, Bit);
695     }
696   }
697
698   return 0;
699 }
700
701 Init *OpInit::resolveListElementReference(Record &R, const RecordVal *IRV,
702                                           unsigned Elt) const {
703   Init *Resolved = resolveReferences(R, IRV);
704   OpInit *OResolved = dynamic_cast<OpInit *>(Resolved);
705   if (OResolved) {
706     Resolved = OResolved->Fold(&R, 0);
707   }
708
709   if (Resolved != this) {
710     TypedInit *Typed = dynamic_cast<TypedInit *>(Resolved); 
711     assert(Typed && "Expected typed init for list reference");
712     if (Typed) {
713       Init *New = Typed->resolveListElementReference(R, IRV, Elt);
714       if (New)
715         return New;
716       return VarListElementInit::get(Typed, Elt);
717     }
718   }
719
720   return 0;
721 }
722
723 UnOpInit *UnOpInit::get(UnaryOp opc, Init *lhs, RecTy *Type) {
724   typedef std::pair<std::pair<unsigned, Init *>, RecTy *> Key;
725
726   typedef DenseMap<Key, UnOpInit *> Pool;
727   static Pool ThePool;  
728
729   Key TheKey(std::make_pair(std::make_pair(opc, lhs), Type));
730
731   UnOpInit *&I = ThePool[TheKey];
732   if (!I) I = new UnOpInit(opc, lhs, Type);
733   return I;
734 }
735
736 Init *UnOpInit::Fold(Record *CurRec, MultiClass *CurMultiClass) const {
737   switch (getOpcode()) {
738   default: assert(0 && "Unknown unop");
739   case CAST: {
740     if (getType()->getAsString() == "string") {
741       StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
742       if (LHSs) {
743         return LHSs;
744       }
745
746       DefInit *LHSd = dynamic_cast<DefInit*>(LHS);
747       if (LHSd) {
748         return StringInit::get(LHSd->getDef()->getName());
749       }
750     } else {
751       StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
752       if (LHSs) {
753         std::string Name = LHSs->getValue();
754
755         // From TGParser::ParseIDValue
756         if (CurRec) {
757           if (const RecordVal *RV = CurRec->getValue(Name)) {
758             if (RV->getType() != getType())
759               throw "type mismatch in cast";
760             return VarInit::get(Name, RV->getType());
761           }
762
763           std::string TemplateArgName = CurRec->getName()+":"+Name;
764           if (CurRec->isTemplateArg(TemplateArgName)) {
765             const RecordVal *RV = CurRec->getValue(TemplateArgName);
766             assert(RV && "Template arg doesn't exist??");
767
768             if (RV->getType() != getType())
769               throw "type mismatch in cast";
770
771             return VarInit::get(TemplateArgName, RV->getType());
772           }
773         }
774
775         if (CurMultiClass) {
776           std::string MCName = CurMultiClass->Rec.getName()+"::"+Name;
777           if (CurMultiClass->Rec.isTemplateArg(MCName)) {
778             const RecordVal *RV = CurMultiClass->Rec.getValue(MCName);
779             assert(RV && "Template arg doesn't exist??");
780
781             if (RV->getType() != getType())
782               throw "type mismatch in cast";
783
784             return VarInit::get(MCName, RV->getType());
785           }
786         }
787
788         if (Record *D = (CurRec->getRecords()).getDef(Name))
789           return DefInit::get(D);
790
791         throw TGError(CurRec->getLoc(), "Undefined reference:'" + Name + "'\n");
792       }
793     }
794     break;
795   }
796   case HEAD: {
797     ListInit *LHSl = dynamic_cast<ListInit*>(LHS);
798     if (LHSl) {
799       if (LHSl->getSize() == 0) {
800         assert(0 && "Empty list in car");
801         return 0;
802       }
803       return LHSl->getElement(0);
804     }
805     break;
806   }
807   case TAIL: {
808     ListInit *LHSl = dynamic_cast<ListInit*>(LHS);
809     if (LHSl) {
810       if (LHSl->getSize() == 0) {
811         assert(0 && "Empty list in cdr");
812         return 0;
813       }
814       // Note the +1.  We can't just pass the result of getValues()
815       // directly.
816       ArrayRef<Init *>::iterator begin = LHSl->getValues().begin()+1;
817       ArrayRef<Init *>::iterator end   = LHSl->getValues().end();
818       ListInit *Result =
819         ListInit::get(ArrayRef<Init *>(begin, end - begin),
820                       LHSl->getType());
821       return Result;
822     }
823     break;
824   }
825   case EMPTY: {
826     ListInit *LHSl = dynamic_cast<ListInit*>(LHS);
827     if (LHSl) {
828       if (LHSl->getSize() == 0) {
829         return IntInit::get(1);
830       } else {
831         return IntInit::get(0);
832       }
833     }
834     StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
835     if (LHSs) {
836       if (LHSs->getValue().empty()) {
837         return IntInit::get(1);
838       } else {
839         return IntInit::get(0);
840       }
841     }
842
843     break;
844   }
845   }
846   return const_cast<UnOpInit *>(this);
847 }
848
849 Init *UnOpInit::resolveReferences(Record &R, const RecordVal *RV) const {
850   Init *lhs = LHS->resolveReferences(R, RV);
851
852   if (LHS != lhs)
853     return (UnOpInit::get(getOpcode(), lhs, getType()))->Fold(&R, 0);
854   return Fold(&R, 0);
855 }
856
857 std::string UnOpInit::getAsString() const {
858   std::string Result;
859   switch (Opc) {
860   case CAST: Result = "!cast<" + getType()->getAsString() + ">"; break;
861   case HEAD: Result = "!head"; break;
862   case TAIL: Result = "!tail"; break;
863   case EMPTY: Result = "!empty"; break;
864   }
865   return Result + "(" + LHS->getAsString() + ")";
866 }
867
868 BinOpInit *BinOpInit::get(BinaryOp opc, Init *lhs,
869                           Init *rhs, RecTy *Type) {
870   typedef std::pair<
871     std::pair<std::pair<unsigned, Init *>, Init *>,
872     RecTy *
873     > Key;
874
875   typedef DenseMap<Key, BinOpInit *> Pool;
876   static Pool ThePool;  
877
878   Key TheKey(std::make_pair(std::make_pair(std::make_pair(opc, lhs), rhs),
879                             Type));
880
881   BinOpInit *&I = ThePool[TheKey];
882   if (!I) I = new BinOpInit(opc, lhs, rhs, Type);
883   return I;
884 }
885
886 Init *BinOpInit::Fold(Record *CurRec, MultiClass *CurMultiClass) const {
887   switch (getOpcode()) {
888   default: assert(0 && "Unknown binop");
889   case CONCAT: {
890     DagInit *LHSs = dynamic_cast<DagInit*>(LHS);
891     DagInit *RHSs = dynamic_cast<DagInit*>(RHS);
892     if (LHSs && RHSs) {
893       DefInit *LOp = dynamic_cast<DefInit*>(LHSs->getOperator());
894       DefInit *ROp = dynamic_cast<DefInit*>(RHSs->getOperator());
895       if (LOp == 0 || ROp == 0 || LOp->getDef() != ROp->getDef())
896         throw "Concated Dag operators do not match!";
897       std::vector<Init*> Args;
898       std::vector<std::string> ArgNames;
899       for (unsigned i = 0, e = LHSs->getNumArgs(); i != e; ++i) {
900         Args.push_back(LHSs->getArg(i));
901         ArgNames.push_back(LHSs->getArgName(i));
902       }
903       for (unsigned i = 0, e = RHSs->getNumArgs(); i != e; ++i) {
904         Args.push_back(RHSs->getArg(i));
905         ArgNames.push_back(RHSs->getArgName(i));
906       }
907       return DagInit::get(LHSs->getOperator(), "", Args, ArgNames);
908     }
909     break;
910   }
911   case STRCONCAT: {
912     StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
913     StringInit *RHSs = dynamic_cast<StringInit*>(RHS);
914     if (LHSs && RHSs)
915       return StringInit::get(LHSs->getValue() + RHSs->getValue());
916     break;
917   }
918   case EQ: {
919     // try to fold eq comparison for 'bit' and 'int', otherwise fallback
920     // to string objects.
921     IntInit* L =
922       dynamic_cast<IntInit*>(LHS->convertInitializerTo(IntRecTy::get()));
923     IntInit* R =
924       dynamic_cast<IntInit*>(RHS->convertInitializerTo(IntRecTy::get()));
925
926     if (L && R)
927       return IntInit::get(L->getValue() == R->getValue());
928
929     StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
930     StringInit *RHSs = dynamic_cast<StringInit*>(RHS);
931
932     // Make sure we've resolved
933     if (LHSs && RHSs)
934       return IntInit::get(LHSs->getValue() == RHSs->getValue());
935
936     break;
937   }
938   case SHL:
939   case SRA:
940   case SRL: {
941     IntInit *LHSi = dynamic_cast<IntInit*>(LHS);
942     IntInit *RHSi = dynamic_cast<IntInit*>(RHS);
943     if (LHSi && RHSi) {
944       int64_t LHSv = LHSi->getValue(), RHSv = RHSi->getValue();
945       int64_t Result;
946       switch (getOpcode()) {
947       default: assert(0 && "Bad opcode!");
948       case SHL: Result = LHSv << RHSv; break;
949       case SRA: Result = LHSv >> RHSv; break;
950       case SRL: Result = (uint64_t)LHSv >> (uint64_t)RHSv; break;
951       }
952       return IntInit::get(Result);
953     }
954     break;
955   }
956   }
957   return const_cast<BinOpInit *>(this);
958 }
959
960 Init *BinOpInit::resolveReferences(Record &R, const RecordVal *RV) const {
961   Init *lhs = LHS->resolveReferences(R, RV);
962   Init *rhs = RHS->resolveReferences(R, RV);
963
964   if (LHS != lhs || RHS != rhs)
965     return (BinOpInit::get(getOpcode(), lhs, rhs, getType()))->Fold(&R, 0);
966   return Fold(&R, 0);
967 }
968
969 std::string BinOpInit::getAsString() const {
970   std::string Result;
971   switch (Opc) {
972   case CONCAT: Result = "!con"; break;
973   case SHL: Result = "!shl"; break;
974   case SRA: Result = "!sra"; break;
975   case SRL: Result = "!srl"; break;
976   case EQ: Result = "!eq"; break;
977   case STRCONCAT: Result = "!strconcat"; break;
978   }
979   return Result + "(" + LHS->getAsString() + ", " + RHS->getAsString() + ")";
980 }
981
982 TernOpInit *TernOpInit::get(TernaryOp opc, Init *lhs,
983                                   Init *mhs, Init *rhs,
984                                   RecTy *Type) {
985   typedef std::pair<
986     std::pair<
987       std::pair<std::pair<unsigned, RecTy *>, Init *>,
988       Init *
989       >,
990     Init *
991     > Key;
992
993   typedef DenseMap<Key, TernOpInit *> Pool;
994   static Pool ThePool;
995
996   Key TheKey(std::make_pair(std::make_pair(std::make_pair(std::make_pair(opc,
997                                                                          Type),
998                                                           lhs),
999                                            mhs),
1000                             rhs));
1001
1002   TernOpInit *&I = ThePool[TheKey];
1003   if (!I) I = new TernOpInit(opc, lhs, mhs, rhs, Type);
1004   return I;
1005 }
1006
1007 static Init *ForeachHelper(Init *LHS, Init *MHS, Init *RHS, RecTy *Type,
1008                            Record *CurRec, MultiClass *CurMultiClass);
1009
1010 static Init *EvaluateOperation(OpInit *RHSo, Init *LHS, Init *Arg,
1011                                RecTy *Type, Record *CurRec,
1012                                MultiClass *CurMultiClass) {
1013   std::vector<Init *> NewOperands;
1014
1015   TypedInit *TArg = dynamic_cast<TypedInit*>(Arg);
1016
1017   // If this is a dag, recurse
1018   if (TArg && TArg->getType()->getAsString() == "dag") {
1019     Init *Result = ForeachHelper(LHS, Arg, RHSo, Type,
1020                                  CurRec, CurMultiClass);
1021     if (Result != 0) {
1022       return Result;
1023     } else {
1024       return 0;
1025     }
1026   }
1027
1028   for (int i = 0; i < RHSo->getNumOperands(); ++i) {
1029     OpInit *RHSoo = dynamic_cast<OpInit*>(RHSo->getOperand(i));
1030
1031     if (RHSoo) {
1032       Init *Result = EvaluateOperation(RHSoo, LHS, Arg,
1033                                        Type, CurRec, CurMultiClass);
1034       if (Result != 0) {
1035         NewOperands.push_back(Result);
1036       } else {
1037         NewOperands.push_back(Arg);
1038       }
1039     } else if (LHS->getAsString() == RHSo->getOperand(i)->getAsString()) {
1040       NewOperands.push_back(Arg);
1041     } else {
1042       NewOperands.push_back(RHSo->getOperand(i));
1043     }
1044   }
1045
1046   // Now run the operator and use its result as the new leaf
1047   const OpInit *NewOp = RHSo->clone(NewOperands);
1048   Init *NewVal = NewOp->Fold(CurRec, CurMultiClass);
1049   if (NewVal != NewOp)
1050     return NewVal;
1051
1052   return 0;
1053 }
1054
1055 static Init *ForeachHelper(Init *LHS, Init *MHS, Init *RHS, RecTy *Type,
1056                            Record *CurRec, MultiClass *CurMultiClass) {
1057   DagInit *MHSd = dynamic_cast<DagInit*>(MHS);
1058   ListInit *MHSl = dynamic_cast<ListInit*>(MHS);
1059
1060   DagRecTy *DagType = dynamic_cast<DagRecTy*>(Type);
1061   ListRecTy *ListType = dynamic_cast<ListRecTy*>(Type);
1062
1063   OpInit *RHSo = dynamic_cast<OpInit*>(RHS);
1064
1065   if (!RHSo) {
1066     throw TGError(CurRec->getLoc(), "!foreach requires an operator\n");
1067   }
1068
1069   TypedInit *LHSt = dynamic_cast<TypedInit*>(LHS);
1070
1071   if (!LHSt) {
1072     throw TGError(CurRec->getLoc(), "!foreach requires typed variable\n");
1073   }
1074
1075   if ((MHSd && DagType) || (MHSl && ListType)) {
1076     if (MHSd) {
1077       Init *Val = MHSd->getOperator();
1078       Init *Result = EvaluateOperation(RHSo, LHS, Val,
1079                                        Type, CurRec, CurMultiClass);
1080       if (Result != 0) {
1081         Val = Result;
1082       }
1083
1084       std::vector<std::pair<Init *, std::string> > args;
1085       for (unsigned int i = 0; i < MHSd->getNumArgs(); ++i) {
1086         Init *Arg;
1087         std::string ArgName;
1088         Arg = MHSd->getArg(i);
1089         ArgName = MHSd->getArgName(i);
1090
1091         // Process args
1092         Init *Result = EvaluateOperation(RHSo, LHS, Arg, Type,
1093                                          CurRec, CurMultiClass);
1094         if (Result != 0) {
1095           Arg = Result;
1096         }
1097
1098         // TODO: Process arg names
1099         args.push_back(std::make_pair(Arg, ArgName));
1100       }
1101
1102       return DagInit::get(Val, "", args);
1103     }
1104     if (MHSl) {
1105       std::vector<Init *> NewOperands;
1106       std::vector<Init *> NewList(MHSl->begin(), MHSl->end());
1107
1108       for (std::vector<Init *>::iterator li = NewList.begin(),
1109              liend = NewList.end();
1110            li != liend;
1111            ++li) {
1112         Init *Item = *li;
1113         NewOperands.clear();
1114         for(int i = 0; i < RHSo->getNumOperands(); ++i) {
1115           // First, replace the foreach variable with the list item
1116           if (LHS->getAsString() == RHSo->getOperand(i)->getAsString()) {
1117             NewOperands.push_back(Item);
1118           } else {
1119             NewOperands.push_back(RHSo->getOperand(i));
1120           }
1121         }
1122
1123         // Now run the operator and use its result as the new list item
1124         const OpInit *NewOp = RHSo->clone(NewOperands);
1125         Init *NewItem = NewOp->Fold(CurRec, CurMultiClass);
1126         if (NewItem != NewOp)
1127           *li = NewItem;
1128       }
1129       return ListInit::get(NewList, MHSl->getType());
1130     }
1131   }
1132   return 0;
1133 }
1134
1135 Init *TernOpInit::Fold(Record *CurRec, MultiClass *CurMultiClass) const {
1136   switch (getOpcode()) {
1137   default: assert(0 && "Unknown binop");
1138   case SUBST: {
1139     DefInit *LHSd = dynamic_cast<DefInit*>(LHS);
1140     VarInit *LHSv = dynamic_cast<VarInit*>(LHS);
1141     StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
1142
1143     DefInit *MHSd = dynamic_cast<DefInit*>(MHS);
1144     VarInit *MHSv = dynamic_cast<VarInit*>(MHS);
1145     StringInit *MHSs = dynamic_cast<StringInit*>(MHS);
1146
1147     DefInit *RHSd = dynamic_cast<DefInit*>(RHS);
1148     VarInit *RHSv = dynamic_cast<VarInit*>(RHS);
1149     StringInit *RHSs = dynamic_cast<StringInit*>(RHS);
1150
1151     if ((LHSd && MHSd && RHSd)
1152         || (LHSv && MHSv && RHSv)
1153         || (LHSs && MHSs && RHSs)) {
1154       if (RHSd) {
1155         Record *Val = RHSd->getDef();
1156         if (LHSd->getAsString() == RHSd->getAsString()) {
1157           Val = MHSd->getDef();
1158         }
1159         return DefInit::get(Val);
1160       }
1161       if (RHSv) {
1162         std::string Val = RHSv->getName();
1163         if (LHSv->getAsString() == RHSv->getAsString()) {
1164           Val = MHSv->getName();
1165         }
1166         return VarInit::get(Val, getType());
1167       }
1168       if (RHSs) {
1169         std::string Val = RHSs->getValue();
1170
1171         std::string::size_type found;
1172         std::string::size_type idx = 0;
1173         do {
1174           found = Val.find(LHSs->getValue(), idx);
1175           if (found != std::string::npos) {
1176             Val.replace(found, LHSs->getValue().size(), MHSs->getValue());
1177           }
1178           idx = found +  MHSs->getValue().size();
1179         } while (found != std::string::npos);
1180
1181         return StringInit::get(Val);
1182       }
1183     }
1184     break;
1185   }
1186
1187   case FOREACH: {
1188     Init *Result = ForeachHelper(LHS, MHS, RHS, getType(),
1189                                  CurRec, CurMultiClass);
1190     if (Result != 0) {
1191       return Result;
1192     }
1193     break;
1194   }
1195
1196   case IF: {
1197     IntInit *LHSi = dynamic_cast<IntInit*>(LHS);
1198     if (Init *I = LHS->convertInitializerTo(IntRecTy::get()))
1199       LHSi = dynamic_cast<IntInit*>(I);
1200     if (LHSi) {
1201       if (LHSi->getValue()) {
1202         return MHS;
1203       } else {
1204         return RHS;
1205       }
1206     }
1207     break;
1208   }
1209   }
1210
1211   return const_cast<TernOpInit *>(this);
1212 }
1213
1214 Init *TernOpInit::resolveReferences(Record &R,
1215                                     const RecordVal *RV) const {
1216   Init *lhs = LHS->resolveReferences(R, RV);
1217
1218   if (Opc == IF && lhs != LHS) {
1219     IntInit *Value = dynamic_cast<IntInit*>(lhs);
1220     if (Init *I = lhs->convertInitializerTo(IntRecTy::get()))
1221       Value = dynamic_cast<IntInit*>(I);
1222     if (Value != 0) {
1223       // Short-circuit
1224       if (Value->getValue()) {
1225         Init *mhs = MHS->resolveReferences(R, RV);
1226         return (TernOpInit::get(getOpcode(), lhs, mhs,
1227                                 RHS, getType()))->Fold(&R, 0);
1228       } else {
1229         Init *rhs = RHS->resolveReferences(R, RV);
1230         return (TernOpInit::get(getOpcode(), lhs, MHS,
1231                                 rhs, getType()))->Fold(&R, 0);
1232       }
1233     }
1234   }
1235
1236   Init *mhs = MHS->resolveReferences(R, RV);
1237   Init *rhs = RHS->resolveReferences(R, RV);
1238
1239   if (LHS != lhs || MHS != mhs || RHS != rhs)
1240     return (TernOpInit::get(getOpcode(), lhs, mhs, rhs,
1241                             getType()))->Fold(&R, 0);
1242   return Fold(&R, 0);
1243 }
1244
1245 std::string TernOpInit::getAsString() const {
1246   std::string Result;
1247   switch (Opc) {
1248   case SUBST: Result = "!subst"; break;
1249   case FOREACH: Result = "!foreach"; break;
1250   case IF: Result = "!if"; break;
1251  }
1252   return Result + "(" + LHS->getAsString() + ", " + MHS->getAsString() + ", "
1253     + RHS->getAsString() + ")";
1254 }
1255
1256 RecTy *TypedInit::getFieldType(const std::string &FieldName) const {
1257   RecordRecTy *RecordType = dynamic_cast<RecordRecTy *>(getType());
1258   if (RecordType) {
1259     RecordVal *Field = RecordType->getRecord()->getValue(FieldName);
1260     if (Field) {
1261       return Field->getType();
1262     }
1263   }
1264   return 0;
1265 }
1266
1267 Init *
1268 TypedInit::convertInitializerBitRange(const std::vector<unsigned> &Bits) const {
1269   BitsRecTy *T = dynamic_cast<BitsRecTy*>(getType());
1270   if (T == 0) return 0;  // Cannot subscript a non-bits variable.
1271   unsigned NumBits = T->getNumBits();
1272
1273   SmallVector<Init *, 16> NewBits(Bits.size());
1274   for (unsigned i = 0, e = Bits.size(); i != e; ++i) {
1275     if (Bits[i] >= NumBits)
1276       return 0;
1277
1278     NewBits[i] = VarBitInit::get(const_cast<TypedInit *>(this), Bits[i]);
1279   }
1280   return BitsInit::get(NewBits);
1281 }
1282
1283 Init *
1284 TypedInit::convertInitListSlice(const std::vector<unsigned> &Elements) const {
1285   ListRecTy *T = dynamic_cast<ListRecTy*>(getType());
1286   if (T == 0) return 0;  // Cannot subscript a non-list variable.
1287
1288   if (Elements.size() == 1)
1289     return VarListElementInit::get(const_cast<TypedInit *>(this), Elements[0]);
1290
1291   std::vector<Init*> ListInits;
1292   ListInits.reserve(Elements.size());
1293   for (unsigned i = 0, e = Elements.size(); i != e; ++i)
1294     ListInits.push_back(VarListElementInit::get(const_cast<TypedInit *>(this),
1295                                                 Elements[i]));
1296   return ListInit::get(ListInits, T);
1297 }
1298
1299
1300 VarInit *VarInit::get(const std::string &VN, RecTy *T) {
1301   typedef std::pair<RecTy *, TableGenStringKey> Key;
1302   typedef DenseMap<Key, VarInit *> Pool;
1303   static Pool ThePool;
1304
1305   Key TheKey(std::make_pair(T, VN));
1306
1307   VarInit *&I = ThePool[TheKey];
1308   if (!I) I = new VarInit(VN, T);
1309   return I;
1310 }
1311
1312 Init *VarInit::resolveBitReference(Record &R, const RecordVal *IRV,
1313                                    unsigned Bit) const {
1314   if (R.isTemplateArg(getName())) return 0;
1315   if (IRV && IRV->getName() != getName()) return 0;
1316
1317   RecordVal *RV = R.getValue(getName());
1318   assert(RV && "Reference to a non-existent variable?");
1319   assert(dynamic_cast<BitsInit*>(RV->getValue()));
1320   BitsInit *BI = (BitsInit*)RV->getValue();
1321
1322   assert(Bit < BI->getNumBits() && "Bit reference out of range!");
1323   Init *B = BI->getBit(Bit);
1324
1325   // If the bit is set to some value, or if we are resolving a reference to a
1326   // specific variable and that variable is explicitly unset, then replace the
1327   // VarBitInit with it.
1328   if (IRV || !dynamic_cast<UnsetInit*>(B))
1329     return B;
1330   return 0;
1331 }
1332
1333 Init *VarInit::resolveListElementReference(Record &R,
1334                                            const RecordVal *IRV,
1335                                            unsigned Elt) const {
1336   if (R.isTemplateArg(getName())) return 0;
1337   if (IRV && IRV->getName() != getName()) return 0;
1338
1339   RecordVal *RV = R.getValue(getName());
1340   assert(RV && "Reference to a non-existent variable?");
1341   ListInit *LI = dynamic_cast<ListInit*>(RV->getValue());
1342   if (!LI) {
1343     TypedInit *VI = dynamic_cast<TypedInit*>(RV->getValue());
1344     assert(VI && "Invalid list element!");
1345     return VarListElementInit::get(VI, Elt);
1346   }
1347
1348   if (Elt >= LI->getSize())
1349     return 0;  // Out of range reference.
1350   Init *E = LI->getElement(Elt);
1351   // If the element is set to some value, or if we are resolving a reference
1352   // to a specific variable and that variable is explicitly unset, then
1353   // replace the VarListElementInit with it.
1354   if (IRV || !dynamic_cast<UnsetInit*>(E))
1355     return E;
1356   return 0;
1357 }
1358
1359
1360 RecTy *VarInit::getFieldType(const std::string &FieldName) const {
1361   if (RecordRecTy *RTy = dynamic_cast<RecordRecTy*>(getType()))
1362     if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName))
1363       return RV->getType();
1364   return 0;
1365 }
1366
1367 Init *VarInit::getFieldInit(Record &R, const RecordVal *RV,
1368                             const std::string &FieldName) const {
1369   if (dynamic_cast<RecordRecTy*>(getType()))
1370     if (const RecordVal *Val = R.getValue(VarName)) {
1371       if (RV != Val && (RV || dynamic_cast<UnsetInit*>(Val->getValue())))
1372         return 0;
1373       Init *TheInit = Val->getValue();
1374       assert(TheInit != this && "Infinite loop detected!");
1375       if (Init *I = TheInit->getFieldInit(R, RV, FieldName))
1376         return I;
1377       else
1378         return 0;
1379     }
1380   return 0;
1381 }
1382
1383 /// resolveReferences - This method is used by classes that refer to other
1384 /// variables which may not be defined at the time the expression is formed.
1385 /// If a value is set for the variable later, this method will be called on
1386 /// users of the value to allow the value to propagate out.
1387 ///
1388 Init *VarInit::resolveReferences(Record &R, const RecordVal *RV) const {
1389   if (RecordVal *Val = R.getValue(VarName))
1390     if (RV == Val || (RV == 0 && !dynamic_cast<UnsetInit*>(Val->getValue())))
1391       return Val->getValue();
1392   return const_cast<VarInit *>(this);
1393 }
1394
1395 VarBitInit *VarBitInit::get(TypedInit *T, unsigned B) {
1396   typedef std::pair<TypedInit *, unsigned> Key;
1397   typedef DenseMap<Key, VarBitInit *> Pool;
1398
1399   static Pool ThePool;
1400
1401   Key TheKey(std::make_pair(T, B));
1402
1403   VarBitInit *&I = ThePool[TheKey];
1404   if (!I) I = new VarBitInit(T, B);
1405   return I;
1406 }
1407
1408 std::string VarBitInit::getAsString() const {
1409    return TI->getAsString() + "{" + utostr(Bit) + "}";
1410 }
1411
1412 Init *VarBitInit::resolveReferences(Record &R, const RecordVal *RV) const {
1413   if (Init *I = getVariable()->resolveBitReference(R, RV, getBitNum()))
1414     return I;
1415   return const_cast<VarBitInit *>(this);
1416 }
1417
1418 VarListElementInit *VarListElementInit::get(TypedInit *T,
1419                                             unsigned E) {
1420   typedef std::pair<TypedInit *, unsigned> Key;
1421   typedef DenseMap<Key, VarListElementInit *> Pool;
1422
1423   static Pool ThePool;
1424
1425   Key TheKey(std::make_pair(T, E));
1426
1427   VarListElementInit *&I = ThePool[TheKey];
1428   if (!I) I = new VarListElementInit(T, E);
1429   return I;
1430 }
1431
1432 std::string VarListElementInit::getAsString() const {
1433   return TI->getAsString() + "[" + utostr(Element) + "]";
1434 }
1435
1436 Init *
1437 VarListElementInit::resolveReferences(Record &R, const RecordVal *RV) const {
1438   if (Init *I = getVariable()->resolveListElementReference(R, RV,
1439                                                            getElementNum()))
1440     return I;
1441   return const_cast<VarListElementInit *>(this);
1442 }
1443
1444 Init *VarListElementInit::resolveBitReference(Record &R, const RecordVal *RV,
1445                                               unsigned Bit) const {
1446   // FIXME: This should be implemented, to support references like:
1447   // bit B = AA[0]{1};
1448   return 0;
1449 }
1450
1451 Init *VarListElementInit:: resolveListElementReference(Record &R,
1452                                                        const RecordVal *RV,
1453                                                        unsigned Elt) const {
1454   Init *Result = TI->resolveListElementReference(R, RV, Element);
1455   
1456   if (Result) {
1457     TypedInit *TInit = dynamic_cast<TypedInit *>(Result);
1458     if (TInit) {
1459       return TInit->resolveListElementReference(R, RV, Elt);
1460     }
1461     return Result;
1462   }
1463  
1464   return 0;
1465 }
1466
1467 DefInit *DefInit::get(Record *R) {
1468   return R->getDefInit();
1469 }
1470
1471 RecTy *DefInit::getFieldType(const std::string &FieldName) const {
1472   if (const RecordVal *RV = Def->getValue(FieldName))
1473     return RV->getType();
1474   return 0;
1475 }
1476
1477 Init *DefInit::getFieldInit(Record &R, const RecordVal *RV,
1478                             const std::string &FieldName) const {
1479   return Def->getValue(FieldName)->getValue();
1480 }
1481
1482
1483 std::string DefInit::getAsString() const {
1484   return Def->getName();
1485 }
1486
1487 FieldInit *FieldInit::get(Init *R, const std::string &FN) {
1488   typedef std::pair<Init *, TableGenStringKey> Key;
1489   typedef DenseMap<Key, FieldInit *> Pool;
1490   static Pool ThePool;  
1491
1492   Key TheKey(std::make_pair(R, FN));
1493
1494   FieldInit *&I = ThePool[TheKey];
1495   if (!I) I = new FieldInit(R, FN);
1496   return I;
1497 }
1498
1499 Init *FieldInit::resolveBitReference(Record &R, const RecordVal *RV,
1500                                      unsigned Bit) const {
1501   if (Init *BitsVal = Rec->getFieldInit(R, RV, FieldName))
1502     if (BitsInit *BI = dynamic_cast<BitsInit*>(BitsVal)) {
1503       assert(Bit < BI->getNumBits() && "Bit reference out of range!");
1504       Init *B = BI->getBit(Bit);
1505
1506       if (dynamic_cast<BitInit*>(B))  // If the bit is set.
1507         return B;                     // Replace the VarBitInit with it.
1508     }
1509   return 0;
1510 }
1511
1512 Init *FieldInit::resolveListElementReference(Record &R, const RecordVal *RV,
1513                                              unsigned Elt) const {
1514   if (Init *ListVal = Rec->getFieldInit(R, RV, FieldName))
1515     if (ListInit *LI = dynamic_cast<ListInit*>(ListVal)) {
1516       if (Elt >= LI->getSize()) return 0;
1517       Init *E = LI->getElement(Elt);
1518
1519       // If the element is set to some value, or if we are resolving a
1520       // reference to a specific variable and that variable is explicitly
1521       // unset, then replace the VarListElementInit with it.
1522       if (RV || !dynamic_cast<UnsetInit*>(E))
1523         return E;
1524     }
1525   return 0;
1526 }
1527
1528 Init *FieldInit::resolveReferences(Record &R, const RecordVal *RV) const {
1529   Init *NewRec = RV ? Rec->resolveReferences(R, RV) : Rec;
1530
1531   Init *BitsVal = NewRec->getFieldInit(R, RV, FieldName);
1532   if (BitsVal) {
1533     Init *BVR = BitsVal->resolveReferences(R, RV);
1534     return BVR->isComplete() ? BVR : const_cast<FieldInit *>(this);
1535   }
1536
1537   if (NewRec != Rec) {
1538     return FieldInit::get(NewRec, FieldName);
1539   }
1540   return const_cast<FieldInit *>(this);
1541 }
1542
1543 void ProfileDagInit(FoldingSetNodeID &ID,
1544                     Init *V,
1545                     const std::string &VN,
1546                     ArrayRef<Init *> ArgRange,
1547                     ArrayRef<std::string> NameRange) {
1548   ID.AddPointer(V);
1549   ID.AddString(VN);
1550
1551   ArrayRef<Init *>::iterator Arg  = ArgRange.begin();
1552   ArrayRef<std::string>::iterator  Name = NameRange.begin();
1553   while (Arg != ArgRange.end()) {
1554     assert(Name != NameRange.end() && "Arg name underflow!");
1555     ID.AddPointer(*Arg++);
1556     ID.AddString(*Name++);
1557   }
1558   assert(Name == NameRange.end() && "Arg name overflow!");
1559 }
1560
1561 DagInit *
1562 DagInit::get(Init *V, const std::string &VN,
1563              ArrayRef<Init *> ArgRange,
1564              ArrayRef<std::string> NameRange) {
1565   typedef FoldingSet<DagInit> Pool;
1566   static Pool ThePool;  
1567
1568   FoldingSetNodeID ID;
1569   ProfileDagInit(ID, V, VN, ArgRange, NameRange);
1570
1571   void *IP = 0;
1572   if (DagInit *I = ThePool.FindNodeOrInsertPos(ID, IP))
1573     return I;
1574
1575   DagInit *I = new DagInit(V, VN, ArgRange, NameRange);
1576   ThePool.InsertNode(I, IP);
1577
1578   return I;
1579 }
1580
1581 DagInit *
1582 DagInit::get(Init *V, const std::string &VN,
1583              const std::vector<std::pair<Init*, std::string> > &args) {
1584   typedef std::pair<Init*, std::string> PairType;
1585
1586   std::vector<Init *> Args;
1587   std::vector<std::string> Names;
1588
1589   for (std::vector<PairType>::const_iterator i = args.begin(),
1590          iend = args.end();
1591        i != iend;
1592        ++i) {
1593     Args.push_back(i->first);
1594     Names.push_back(i->second);
1595   }
1596
1597   return DagInit::get(V, VN, Args, Names);
1598 }
1599
1600 void DagInit::Profile(FoldingSetNodeID &ID) const {
1601   ProfileDagInit(ID, Val, ValName, Args, ArgNames);
1602 }
1603
1604 Init *DagInit::resolveReferences(Record &R, const RecordVal *RV) const {
1605   std::vector<Init*> NewArgs;
1606   for (unsigned i = 0, e = Args.size(); i != e; ++i)
1607     NewArgs.push_back(Args[i]->resolveReferences(R, RV));
1608
1609   Init *Op = Val->resolveReferences(R, RV);
1610
1611   if (Args != NewArgs || Op != Val)
1612     return DagInit::get(Op, ValName, NewArgs, ArgNames);
1613
1614   return const_cast<DagInit *>(this);
1615 }
1616
1617
1618 std::string DagInit::getAsString() const {
1619   std::string Result = "(" + Val->getAsString();
1620   if (!ValName.empty())
1621     Result += ":" + ValName;
1622   if (Args.size()) {
1623     Result += " " + Args[0]->getAsString();
1624     if (!ArgNames[0].empty()) Result += ":$" + ArgNames[0];
1625     for (unsigned i = 1, e = Args.size(); i != e; ++i) {
1626       Result += ", " + Args[i]->getAsString();
1627       if (!ArgNames[i].empty()) Result += ":$" + ArgNames[i];
1628     }
1629   }
1630   return Result + ")";
1631 }
1632
1633
1634 //===----------------------------------------------------------------------===//
1635 //    Other implementations
1636 //===----------------------------------------------------------------------===//
1637
1638 RecordVal::RecordVal(Init *N, RecTy *T, unsigned P)
1639   : Name(N), Ty(T), Prefix(P) {
1640   Value = Ty->convertValue(UnsetInit::get());
1641   assert(Value && "Cannot create unset value for current type!");
1642 }
1643
1644 RecordVal::RecordVal(const std::string &N, RecTy *T, unsigned P)
1645   : Name(StringInit::get(N)), Ty(T), Prefix(P) {
1646   Value = Ty->convertValue(UnsetInit::get());
1647   assert(Value && "Cannot create unset value for current type!");
1648 }
1649
1650 const std::string &RecordVal::getName() const {
1651   StringInit *NameString = dynamic_cast<StringInit *>(Name);
1652   assert(NameString && "RecordVal name is not a string!");
1653   return NameString->getValue();
1654 }
1655
1656 void RecordVal::dump() const { errs() << *this; }
1657
1658 void RecordVal::print(raw_ostream &OS, bool PrintSem) const {
1659   if (getPrefix()) OS << "field ";
1660   OS << *getType() << " " << getName();
1661
1662   if (getValue())
1663     OS << " = " << *getValue();
1664
1665   if (PrintSem) OS << ";\n";
1666 }
1667
1668 unsigned Record::LastID = 0;
1669
1670 void Record::checkName() {
1671   // Ensure the record name has string type.
1672   const TypedInit *TypedName = dynamic_cast<const TypedInit *>(Name);
1673   assert(TypedName && "Record name is not typed!");
1674   RecTy *Type = TypedName->getType();
1675   if (dynamic_cast<StringRecTy *>(Type) == 0) {
1676     llvm_unreachable("Record name is not a string!");
1677   }
1678 }
1679
1680 DefInit *Record::getDefInit() {
1681   if (!TheInit)
1682     TheInit = new DefInit(this, new RecordRecTy(this));
1683   return TheInit;
1684 }
1685
1686 const std::string &Record::getName() const {
1687   const StringInit *NameString =
1688     dynamic_cast<const StringInit *>(Name);
1689   assert(NameString && "Record name is not a string!");
1690   return NameString->getValue();
1691 }
1692
1693 void Record::setName(Init *NewName) {
1694   if (TrackedRecords.getDef(Name->getAsUnquotedString()) == this) {
1695     TrackedRecords.removeDef(Name->getAsUnquotedString());
1696     Name = NewName;
1697     TrackedRecords.addDef(this);
1698   } else {
1699     TrackedRecords.removeClass(Name->getAsUnquotedString());
1700     Name = NewName;
1701     TrackedRecords.addClass(this);
1702   }
1703   checkName();
1704   // Since the Init for the name was changed, see if we can resolve
1705   // any of it using members of the Record.
1706   Init *ComputedName = Name->resolveReferences(*this, 0);
1707   if (ComputedName != Name) {
1708     setName(ComputedName);
1709   }
1710   // DO NOT resolve record values to the name at this point because
1711   // there might be default values for arguments of this def.  Those
1712   // arguments might not have been resolved yet so we don't want to
1713   // prematurely assume values for those arguments were not passed to
1714   // this def.
1715   //
1716   // Nonetheless, it may be that some of this Record's values
1717   // reference the record name.  Indeed, the reason for having the
1718   // record name be an Init is to provide this flexibility.  The extra
1719   // resolve steps after completely instantiating defs takes care of
1720   // this.  See TGParser::ParseDef and TGParser::ParseDefm.
1721 }
1722
1723 void Record::setName(const std::string &Name) {
1724   setName(StringInit::get(Name));
1725 }
1726
1727 /// resolveReferencesTo - If anything in this record refers to RV, replace the
1728 /// reference to RV with the RHS of RV.  If RV is null, we resolve all possible
1729 /// references.
1730 void Record::resolveReferencesTo(const RecordVal *RV) {
1731   for (unsigned i = 0, e = Values.size(); i != e; ++i) {
1732     if (Init *V = Values[i].getValue())
1733       Values[i].setValue(V->resolveReferences(*this, RV));
1734   }
1735 }
1736
1737 void Record::dump() const { errs() << *this; }
1738
1739 raw_ostream &llvm::operator<<(raw_ostream &OS, const Record &R) {
1740   OS << R.getName();
1741
1742   const std::vector<std::string> &TArgs = R.getTemplateArgs();
1743   if (!TArgs.empty()) {
1744     OS << "<";
1745     for (unsigned i = 0, e = TArgs.size(); i != e; ++i) {
1746       if (i) OS << ", ";
1747       const RecordVal *RV = R.getValue(TArgs[i]);
1748       assert(RV && "Template argument record not found??");
1749       RV->print(OS, false);
1750     }
1751     OS << ">";
1752   }
1753
1754   OS << " {";
1755   const std::vector<Record*> &SC = R.getSuperClasses();
1756   if (!SC.empty()) {
1757     OS << "\t//";
1758     for (unsigned i = 0, e = SC.size(); i != e; ++i)
1759       OS << " " << SC[i]->getName();
1760   }
1761   OS << "\n";
1762
1763   const std::vector<RecordVal> &Vals = R.getValues();
1764   for (unsigned i = 0, e = Vals.size(); i != e; ++i)
1765     if (Vals[i].getPrefix() && !R.isTemplateArg(Vals[i].getName()))
1766       OS << Vals[i];
1767   for (unsigned i = 0, e = Vals.size(); i != e; ++i)
1768     if (!Vals[i].getPrefix() && !R.isTemplateArg(Vals[i].getName()))
1769       OS << Vals[i];
1770
1771   return OS << "}\n";
1772 }
1773
1774 /// getValueInit - Return the initializer for a value with the specified name,
1775 /// or throw an exception if the field does not exist.
1776 ///
1777 Init *Record::getValueInit(StringRef FieldName) const {
1778   const RecordVal *R = getValue(FieldName);
1779   if (R == 0 || R->getValue() == 0)
1780     throw "Record `" + getName() + "' does not have a field named `" +
1781       FieldName.str() + "'!\n";
1782   return R->getValue();
1783 }
1784
1785
1786 /// getValueAsString - This method looks up the specified field and returns its
1787 /// value as a string, throwing an exception if the field does not exist or if
1788 /// the value is not a string.
1789 ///
1790 std::string Record::getValueAsString(StringRef FieldName) const {
1791   const RecordVal *R = getValue(FieldName);
1792   if (R == 0 || R->getValue() == 0)
1793     throw "Record `" + getName() + "' does not have a field named `" +
1794           FieldName.str() + "'!\n";
1795
1796   if (StringInit *SI = dynamic_cast<StringInit*>(R->getValue()))
1797     return SI->getValue();
1798   throw "Record `" + getName() + "', field `" + FieldName.str() +
1799         "' does not have a string initializer!";
1800 }
1801
1802 /// getValueAsBitsInit - This method looks up the specified field and returns
1803 /// its value as a BitsInit, throwing an exception if the field does not exist
1804 /// or if the value is not the right type.
1805 ///
1806 BitsInit *Record::getValueAsBitsInit(StringRef FieldName) const {
1807   const RecordVal *R = getValue(FieldName);
1808   if (R == 0 || R->getValue() == 0)
1809     throw "Record `" + getName() + "' does not have a field named `" +
1810           FieldName.str() + "'!\n";
1811
1812   if (BitsInit *BI = dynamic_cast<BitsInit*>(R->getValue()))
1813     return BI;
1814   throw "Record `" + getName() + "', field `" + FieldName.str() +
1815         "' does not have a BitsInit initializer!";
1816 }
1817
1818 /// getValueAsListInit - This method looks up the specified field and returns
1819 /// its value as a ListInit, throwing an exception if the field does not exist
1820 /// or if the value is not the right type.
1821 ///
1822 ListInit *Record::getValueAsListInit(StringRef FieldName) const {
1823   const RecordVal *R = getValue(FieldName);
1824   if (R == 0 || R->getValue() == 0)
1825     throw "Record `" + getName() + "' does not have a field named `" +
1826           FieldName.str() + "'!\n";
1827
1828   if (ListInit *LI = dynamic_cast<ListInit*>(R->getValue()))
1829     return LI;
1830   throw "Record `" + getName() + "', field `" + FieldName.str() +
1831         "' does not have a list initializer!";
1832 }
1833
1834 /// getValueAsListOfDefs - This method looks up the specified field and returns
1835 /// its value as a vector of records, throwing an exception if the field does
1836 /// not exist or if the value is not the right type.
1837 ///
1838 std::vector<Record*>
1839 Record::getValueAsListOfDefs(StringRef FieldName) const {
1840   ListInit *List = getValueAsListInit(FieldName);
1841   std::vector<Record*> Defs;
1842   for (unsigned i = 0; i < List->getSize(); i++) {
1843     if (DefInit *DI = dynamic_cast<DefInit*>(List->getElement(i))) {
1844       Defs.push_back(DI->getDef());
1845     } else {
1846       throw "Record `" + getName() + "', field `" + FieldName.str() +
1847             "' list is not entirely DefInit!";
1848     }
1849   }
1850   return Defs;
1851 }
1852
1853 /// getValueAsInt - This method looks up the specified field and returns its
1854 /// value as an int64_t, throwing an exception if the field does not exist or if
1855 /// the value is not the right type.
1856 ///
1857 int64_t Record::getValueAsInt(StringRef FieldName) const {
1858   const RecordVal *R = getValue(FieldName);
1859   if (R == 0 || R->getValue() == 0)
1860     throw "Record `" + getName() + "' does not have a field named `" +
1861           FieldName.str() + "'!\n";
1862
1863   if (IntInit *II = dynamic_cast<IntInit*>(R->getValue()))
1864     return II->getValue();
1865   throw "Record `" + getName() + "', field `" + FieldName.str() +
1866         "' does not have an int initializer!";
1867 }
1868
1869 /// getValueAsListOfInts - This method looks up the specified field and returns
1870 /// its value as a vector of integers, throwing an exception if the field does
1871 /// not exist or if the value is not the right type.
1872 ///
1873 std::vector<int64_t>
1874 Record::getValueAsListOfInts(StringRef FieldName) const {
1875   ListInit *List = getValueAsListInit(FieldName);
1876   std::vector<int64_t> Ints;
1877   for (unsigned i = 0; i < List->getSize(); i++) {
1878     if (IntInit *II = dynamic_cast<IntInit*>(List->getElement(i))) {
1879       Ints.push_back(II->getValue());
1880     } else {
1881       throw "Record `" + getName() + "', field `" + FieldName.str() +
1882             "' does not have a list of ints initializer!";
1883     }
1884   }
1885   return Ints;
1886 }
1887
1888 /// getValueAsListOfStrings - This method looks up the specified field and
1889 /// returns its value as a vector of strings, throwing an exception if the
1890 /// field does not exist or if the value is not the right type.
1891 ///
1892 std::vector<std::string>
1893 Record::getValueAsListOfStrings(StringRef FieldName) const {
1894   ListInit *List = getValueAsListInit(FieldName);
1895   std::vector<std::string> Strings;
1896   for (unsigned i = 0; i < List->getSize(); i++) {
1897     if (StringInit *II = dynamic_cast<StringInit*>(List->getElement(i))) {
1898       Strings.push_back(II->getValue());
1899     } else {
1900       throw "Record `" + getName() + "', field `" + FieldName.str() +
1901             "' does not have a list of strings initializer!";
1902     }
1903   }
1904   return Strings;
1905 }
1906
1907 /// getValueAsDef - This method looks up the specified field and returns its
1908 /// value as a Record, throwing an exception if the field does not exist or if
1909 /// the value is not the right type.
1910 ///
1911 Record *Record::getValueAsDef(StringRef FieldName) const {
1912   const RecordVal *R = getValue(FieldName);
1913   if (R == 0 || R->getValue() == 0)
1914     throw "Record `" + getName() + "' does not have a field named `" +
1915       FieldName.str() + "'!\n";
1916
1917   if (DefInit *DI = dynamic_cast<DefInit*>(R->getValue()))
1918     return DI->getDef();
1919   throw "Record `" + getName() + "', field `" + FieldName.str() +
1920         "' does not have a def initializer!";
1921 }
1922
1923 /// getValueAsBit - This method looks up the specified field and returns its
1924 /// value as a bit, throwing an exception if the field does not exist or if
1925 /// the value is not the right type.
1926 ///
1927 bool Record::getValueAsBit(StringRef FieldName) const {
1928   const RecordVal *R = getValue(FieldName);
1929   if (R == 0 || R->getValue() == 0)
1930     throw "Record `" + getName() + "' does not have a field named `" +
1931       FieldName.str() + "'!\n";
1932
1933   if (BitInit *BI = dynamic_cast<BitInit*>(R->getValue()))
1934     return BI->getValue();
1935   throw "Record `" + getName() + "', field `" + FieldName.str() +
1936         "' does not have a bit initializer!";
1937 }
1938
1939 /// getValueAsDag - This method looks up the specified field and returns its
1940 /// value as an Dag, throwing an exception if the field does not exist or if
1941 /// the value is not the right type.
1942 ///
1943 DagInit *Record::getValueAsDag(StringRef FieldName) const {
1944   const RecordVal *R = getValue(FieldName);
1945   if (R == 0 || R->getValue() == 0)
1946     throw "Record `" + getName() + "' does not have a field named `" +
1947       FieldName.str() + "'!\n";
1948
1949   if (DagInit *DI = dynamic_cast<DagInit*>(R->getValue()))
1950     return DI;
1951   throw "Record `" + getName() + "', field `" + FieldName.str() +
1952         "' does not have a dag initializer!";
1953 }
1954
1955 std::string Record::getValueAsCode(StringRef FieldName) const {
1956   const RecordVal *R = getValue(FieldName);
1957   if (R == 0 || R->getValue() == 0)
1958     throw "Record `" + getName() + "' does not have a field named `" +
1959       FieldName.str() + "'!\n";
1960
1961   if (CodeInit *CI = dynamic_cast<CodeInit*>(R->getValue()))
1962     return CI->getValue();
1963   throw "Record `" + getName() + "', field `" + FieldName.str() +
1964     "' does not have a code initializer!";
1965 }
1966
1967
1968 void MultiClass::dump() const {
1969   errs() << "Record:\n";
1970   Rec.dump();
1971
1972   errs() << "Defs:\n";
1973   for (RecordVector::const_iterator r = DefPrototypes.begin(),
1974          rend = DefPrototypes.end();
1975        r != rend;
1976        ++r) {
1977     (*r)->dump();
1978   }
1979 }
1980
1981
1982 void RecordKeeper::dump() const { errs() << *this; }
1983
1984 raw_ostream &llvm::operator<<(raw_ostream &OS, const RecordKeeper &RK) {
1985   OS << "------------- Classes -----------------\n";
1986   const std::map<std::string, Record*> &Classes = RK.getClasses();
1987   for (std::map<std::string, Record*>::const_iterator I = Classes.begin(),
1988          E = Classes.end(); I != E; ++I)
1989     OS << "class " << *I->second;
1990
1991   OS << "------------- Defs -----------------\n";
1992   const std::map<std::string, Record*> &Defs = RK.getDefs();
1993   for (std::map<std::string, Record*>::const_iterator I = Defs.begin(),
1994          E = Defs.end(); I != E; ++I)
1995     OS << "def " << *I->second;
1996   return OS;
1997 }
1998
1999
2000 /// getAllDerivedDefinitions - This method returns all concrete definitions
2001 /// that derive from the specified class name.  If a class with the specified
2002 /// name does not exist, an error is printed and true is returned.
2003 std::vector<Record*>
2004 RecordKeeper::getAllDerivedDefinitions(const std::string &ClassName) const {
2005   Record *Class = getClass(ClassName);
2006   if (!Class)
2007     throw "ERROR: Couldn't find the `" + ClassName + "' class!\n";
2008
2009   std::vector<Record*> Defs;
2010   for (std::map<std::string, Record*>::const_iterator I = getDefs().begin(),
2011          E = getDefs().end(); I != E; ++I)
2012     if (I->second->isSubClassOf(Class))
2013       Defs.push_back(I->second);
2014
2015   return Defs;
2016 }
2017