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