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