a9229175b7a3b21309f0a4eef75c233ba7c15e78
[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 |= 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         (LHSv && MHSv && RHSv) ||
1101         (LHSs && MHSs && RHSs)) {
1102       if (RHSd) {
1103         Record *Val = RHSd->getDef();
1104         if (LHSd->getAsString() == RHSd->getAsString())
1105           Val = MHSd->getDef();
1106         return DefInit::get(Val);
1107       }
1108       if (RHSv) {
1109         std::string Val = RHSv->getName();
1110         if (LHSv->getAsString() == RHSv->getAsString())
1111           Val = MHSv->getName();
1112         return VarInit::get(Val, getType());
1113       }
1114       if (RHSs) {
1115         std::string Val = RHSs->getValue();
1116
1117         std::string::size_type found;
1118         std::string::size_type idx = 0;
1119         do {
1120           found = Val.find(LHSs->getValue(), idx);
1121           if (found != std::string::npos)
1122             Val.replace(found, LHSs->getValue().size(), MHSs->getValue());
1123           idx = found +  MHSs->getValue().size();
1124         } while (found != std::string::npos);
1125
1126         return StringInit::get(Val);
1127       }
1128     }
1129     break;
1130   }
1131
1132   case FOREACH: {
1133     if (Init *Result = ForeachHelper(LHS, MHS, RHS, getType(),
1134                                      CurRec, CurMultiClass))
1135       return Result;
1136     break;
1137   }
1138
1139   case IF: {
1140     IntInit *LHSi = dyn_cast<IntInit>(LHS);
1141     if (Init *I = LHS->convertInitializerTo(IntRecTy::get()))
1142       LHSi = dyn_cast<IntInit>(I);
1143     if (LHSi) {
1144       if (LHSi->getValue())
1145         return MHS;
1146       return RHS;
1147     }
1148     break;
1149   }
1150   }
1151
1152   return const_cast<TernOpInit *>(this);
1153 }
1154
1155 Init *TernOpInit::resolveReferences(Record &R,
1156                                     const RecordVal *RV) const {
1157   Init *lhs = LHS->resolveReferences(R, RV);
1158
1159   if (Opc == IF && lhs != LHS) {
1160     IntInit *Value = dyn_cast<IntInit>(lhs);
1161     if (Init *I = lhs->convertInitializerTo(IntRecTy::get()))
1162       Value = dyn_cast<IntInit>(I);
1163     if (Value) {
1164       // Short-circuit
1165       if (Value->getValue()) {
1166         Init *mhs = MHS->resolveReferences(R, RV);
1167         return (TernOpInit::get(getOpcode(), lhs, mhs,
1168                                 RHS, getType()))->Fold(&R, nullptr);
1169       }
1170       Init *rhs = RHS->resolveReferences(R, RV);
1171       return (TernOpInit::get(getOpcode(), lhs, MHS,
1172                               rhs, getType()))->Fold(&R, nullptr);
1173     }
1174   }
1175
1176   Init *mhs = MHS->resolveReferences(R, RV);
1177   Init *rhs = RHS->resolveReferences(R, RV);
1178
1179   if (LHS != lhs || MHS != mhs || RHS != rhs)
1180     return (TernOpInit::get(getOpcode(), lhs, mhs, rhs,
1181                             getType()))->Fold(&R, nullptr);
1182   return Fold(&R, nullptr);
1183 }
1184
1185 std::string TernOpInit::getAsString() const {
1186   std::string Result;
1187   switch (Opc) {
1188   case SUBST: Result = "!subst"; break;
1189   case FOREACH: Result = "!foreach"; break;
1190   case IF: Result = "!if"; break;
1191   }
1192   return Result + "(" + LHS->getAsString() + ", " + MHS->getAsString() + ", " +
1193          RHS->getAsString() + ")";
1194 }
1195
1196 RecTy *TypedInit::getFieldType(const std::string &FieldName) const {
1197   if (RecordRecTy *RecordType = dyn_cast<RecordRecTy>(getType()))
1198     if (RecordVal *Field = RecordType->getRecord()->getValue(FieldName))
1199       return Field->getType();
1200   return nullptr;
1201 }
1202
1203 Init *
1204 TypedInit::convertInitializerBitRange(const std::vector<unsigned> &Bits) const {
1205   BitsRecTy *T = dyn_cast<BitsRecTy>(getType());
1206   if (!T) return nullptr;  // Cannot subscript a non-bits variable.
1207   unsigned NumBits = T->getNumBits();
1208
1209   SmallVector<Init *, 16> NewBits(Bits.size());
1210   for (unsigned i = 0, e = Bits.size(); i != e; ++i) {
1211     if (Bits[i] >= NumBits)
1212       return nullptr;
1213
1214     NewBits[i] = VarBitInit::get(const_cast<TypedInit *>(this), Bits[i]);
1215   }
1216   return BitsInit::get(NewBits);
1217 }
1218
1219 Init *
1220 TypedInit::convertInitListSlice(const std::vector<unsigned> &Elements) const {
1221   ListRecTy *T = dyn_cast<ListRecTy>(getType());
1222   if (!T) return nullptr;  // Cannot subscript a non-list variable.
1223
1224   if (Elements.size() == 1)
1225     return VarListElementInit::get(const_cast<TypedInit *>(this), Elements[0]);
1226
1227   std::vector<Init*> ListInits;
1228   ListInits.reserve(Elements.size());
1229   for (unsigned i = 0, e = Elements.size(); i != e; ++i)
1230     ListInits.push_back(VarListElementInit::get(const_cast<TypedInit *>(this),
1231                                                 Elements[i]));
1232   return ListInit::get(ListInits, T);
1233 }
1234
1235
1236 VarInit *VarInit::get(const std::string &VN, RecTy *T) {
1237   Init *Value = StringInit::get(VN);
1238   return VarInit::get(Value, T);
1239 }
1240
1241 VarInit *VarInit::get(Init *VN, RecTy *T) {
1242   typedef std::pair<RecTy *, Init *> Key;
1243   static DenseMap<Key, std::unique_ptr<VarInit>> ThePool;
1244
1245   Key TheKey(std::make_pair(T, VN));
1246
1247   std::unique_ptr<VarInit> &I = ThePool[TheKey];
1248   if (!I) I.reset(new VarInit(VN, T));
1249   return I.get();
1250 }
1251
1252 const std::string &VarInit::getName() const {
1253   StringInit *NameString = cast<StringInit>(getNameInit());
1254   return NameString->getValue();
1255 }
1256
1257 Init *VarInit::getBit(unsigned Bit) const {
1258   if (getType() == BitRecTy::get())
1259     return const_cast<VarInit*>(this);
1260   return VarBitInit::get(const_cast<VarInit*>(this), Bit);
1261 }
1262
1263 Init *VarInit::resolveListElementReference(Record &R,
1264                                            const RecordVal *IRV,
1265                                            unsigned Elt) const {
1266   if (R.isTemplateArg(getNameInit())) return nullptr;
1267   if (IRV && IRV->getNameInit() != getNameInit()) return nullptr;
1268
1269   RecordVal *RV = R.getValue(getNameInit());
1270   assert(RV && "Reference to a non-existent variable?");
1271   ListInit *LI = dyn_cast<ListInit>(RV->getValue());
1272   if (!LI)
1273     return VarListElementInit::get(cast<TypedInit>(RV->getValue()), Elt);
1274
1275   if (Elt >= LI->getSize())
1276     return nullptr;  // Out of range reference.
1277   Init *E = LI->getElement(Elt);
1278   // If the element is set to some value, or if we are resolving a reference
1279   // to a specific variable and that variable is explicitly unset, then
1280   // replace the VarListElementInit with it.
1281   if (IRV || !isa<UnsetInit>(E))
1282     return E;
1283   return nullptr;
1284 }
1285
1286
1287 RecTy *VarInit::getFieldType(const std::string &FieldName) const {
1288   if (RecordRecTy *RTy = dyn_cast<RecordRecTy>(getType()))
1289     if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName))
1290       return RV->getType();
1291   return nullptr;
1292 }
1293
1294 Init *VarInit::getFieldInit(Record &R, const RecordVal *RV,
1295                             const std::string &FieldName) const {
1296   if (isa<RecordRecTy>(getType()))
1297     if (const RecordVal *Val = R.getValue(VarName)) {
1298       if (RV != Val && (RV || isa<UnsetInit>(Val->getValue())))
1299         return nullptr;
1300       Init *TheInit = Val->getValue();
1301       assert(TheInit != this && "Infinite loop detected!");
1302       if (Init *I = TheInit->getFieldInit(R, RV, FieldName))
1303         return I;
1304       return nullptr;
1305     }
1306   return nullptr;
1307 }
1308
1309 /// resolveReferences - This method is used by classes that refer to other
1310 /// variables which may not be defined at the time the expression is formed.
1311 /// If a value is set for the variable later, this method will be called on
1312 /// users of the value to allow the value to propagate out.
1313 ///
1314 Init *VarInit::resolveReferences(Record &R, const RecordVal *RV) const {
1315   if (RecordVal *Val = R.getValue(VarName))
1316     if (RV == Val || (!RV && !isa<UnsetInit>(Val->getValue())))
1317       return Val->getValue();
1318   return const_cast<VarInit *>(this);
1319 }
1320
1321 VarBitInit *VarBitInit::get(TypedInit *T, unsigned B) {
1322   typedef std::pair<TypedInit *, unsigned> Key;
1323   static DenseMap<Key, std::unique_ptr<VarBitInit>> ThePool;
1324
1325   Key TheKey(std::make_pair(T, B));
1326
1327   std::unique_ptr<VarBitInit> &I = ThePool[TheKey];
1328   if (!I) I.reset(new VarBitInit(T, B));
1329   return I.get();
1330 }
1331
1332 std::string VarBitInit::getAsString() const {
1333   return TI->getAsString() + "{" + utostr(Bit) + "}";
1334 }
1335
1336 Init *VarBitInit::resolveReferences(Record &R, const RecordVal *RV) const {
1337   Init *I = TI->resolveReferences(R, RV);
1338   if (TI != I)
1339     return I->getBit(getBitNum());
1340
1341   return const_cast<VarBitInit*>(this);
1342 }
1343
1344 VarListElementInit *VarListElementInit::get(TypedInit *T,
1345                                             unsigned E) {
1346   typedef std::pair<TypedInit *, unsigned> Key;
1347   static DenseMap<Key, std::unique_ptr<VarListElementInit>> ThePool;
1348
1349   Key TheKey(std::make_pair(T, E));
1350
1351   std::unique_ptr<VarListElementInit> &I = ThePool[TheKey];
1352   if (!I) I.reset(new VarListElementInit(T, E));
1353   return I.get();
1354 }
1355
1356 std::string VarListElementInit::getAsString() const {
1357   return TI->getAsString() + "[" + utostr(Element) + "]";
1358 }
1359
1360 Init *
1361 VarListElementInit::resolveReferences(Record &R, const RecordVal *RV) const {
1362   if (Init *I = getVariable()->resolveListElementReference(R, RV,
1363                                                            getElementNum()))
1364     return I;
1365   return const_cast<VarListElementInit *>(this);
1366 }
1367
1368 Init *VarListElementInit::getBit(unsigned Bit) const {
1369   if (getType() == BitRecTy::get())
1370     return const_cast<VarListElementInit*>(this);
1371   return VarBitInit::get(const_cast<VarListElementInit*>(this), Bit);
1372 }
1373
1374 Init *VarListElementInit:: resolveListElementReference(Record &R,
1375                                                        const RecordVal *RV,
1376                                                        unsigned Elt) const {
1377   if (Init *Result = TI->resolveListElementReference(R, RV, Element)) {
1378     if (TypedInit *TInit = dyn_cast<TypedInit>(Result)) {
1379       Init *Result2 = TInit->resolveListElementReference(R, RV, Elt);
1380       if (Result2) return Result2;
1381       return VarListElementInit::get(TInit, Elt);
1382     }
1383     return Result;
1384   }
1385
1386   return nullptr;
1387 }
1388
1389 DefInit *DefInit::get(Record *R) {
1390   return R->getDefInit();
1391 }
1392
1393 RecTy *DefInit::getFieldType(const std::string &FieldName) const {
1394   if (const RecordVal *RV = Def->getValue(FieldName))
1395     return RV->getType();
1396   return nullptr;
1397 }
1398
1399 Init *DefInit::getFieldInit(Record &R, const RecordVal *RV,
1400                             const std::string &FieldName) const {
1401   return Def->getValue(FieldName)->getValue();
1402 }
1403
1404
1405 std::string DefInit::getAsString() const {
1406   return Def->getName();
1407 }
1408
1409 FieldInit *FieldInit::get(Init *R, const std::string &FN) {
1410   typedef std::pair<Init *, TableGenStringKey> Key;
1411   static DenseMap<Key, std::unique_ptr<FieldInit>> ThePool;
1412
1413   Key TheKey(std::make_pair(R, FN));
1414
1415   std::unique_ptr<FieldInit> &I = ThePool[TheKey];
1416   if (!I) I.reset(new FieldInit(R, FN));
1417   return I.get();
1418 }
1419
1420 Init *FieldInit::getBit(unsigned Bit) const {
1421   if (getType() == BitRecTy::get())
1422     return const_cast<FieldInit*>(this);
1423   return VarBitInit::get(const_cast<FieldInit*>(this), Bit);
1424 }
1425
1426 Init *FieldInit::resolveListElementReference(Record &R, const RecordVal *RV,
1427                                              unsigned Elt) const {
1428   if (Init *ListVal = Rec->getFieldInit(R, RV, FieldName))
1429     if (ListInit *LI = dyn_cast<ListInit>(ListVal)) {
1430       if (Elt >= LI->getSize()) return nullptr;
1431       Init *E = LI->getElement(Elt);
1432
1433       // If the element is set to some value, or if we are resolving a
1434       // reference to a specific variable and that variable is explicitly
1435       // unset, then replace the VarListElementInit with it.
1436       if (RV || !isa<UnsetInit>(E))
1437         return E;
1438     }
1439   return nullptr;
1440 }
1441
1442 Init *FieldInit::resolveReferences(Record &R, const RecordVal *RV) const {
1443   Init *NewRec = RV ? Rec->resolveReferences(R, RV) : Rec;
1444
1445   if (Init *BitsVal = NewRec->getFieldInit(R, RV, FieldName)) {
1446     Init *BVR = BitsVal->resolveReferences(R, RV);
1447     return BVR->isComplete() ? BVR : const_cast<FieldInit *>(this);
1448   }
1449
1450   if (NewRec != Rec)
1451     return FieldInit::get(NewRec, FieldName);
1452   return const_cast<FieldInit *>(this);
1453 }
1454
1455 static void ProfileDagInit(FoldingSetNodeID &ID, Init *V, const std::string &VN,
1456                            ArrayRef<Init *> ArgRange,
1457                            ArrayRef<std::string> NameRange) {
1458   ID.AddPointer(V);
1459   ID.AddString(VN);
1460
1461   ArrayRef<Init *>::iterator Arg  = ArgRange.begin();
1462   ArrayRef<std::string>::iterator  Name = NameRange.begin();
1463   while (Arg != ArgRange.end()) {
1464     assert(Name != NameRange.end() && "Arg name underflow!");
1465     ID.AddPointer(*Arg++);
1466     ID.AddString(*Name++);
1467   }
1468   assert(Name == NameRange.end() && "Arg name overflow!");
1469 }
1470
1471 DagInit *
1472 DagInit::get(Init *V, const std::string &VN,
1473              ArrayRef<Init *> ArgRange,
1474              ArrayRef<std::string> NameRange) {
1475   static FoldingSet<DagInit> ThePool;
1476   static std::vector<std::unique_ptr<DagInit>> TheActualPool;
1477
1478   FoldingSetNodeID ID;
1479   ProfileDagInit(ID, V, VN, ArgRange, NameRange);
1480
1481   void *IP = nullptr;
1482   if (DagInit *I = ThePool.FindNodeOrInsertPos(ID, IP))
1483     return I;
1484
1485   DagInit *I = new DagInit(V, VN, ArgRange, NameRange);
1486   ThePool.InsertNode(I, IP);
1487   TheActualPool.push_back(std::unique_ptr<DagInit>(I));
1488   return I;
1489 }
1490
1491 DagInit *
1492 DagInit::get(Init *V, const std::string &VN,
1493              const std::vector<std::pair<Init*, std::string> > &args) {
1494   std::vector<Init *> Args;
1495   std::vector<std::string> Names;
1496
1497   for (const auto &Arg : args) {
1498     Args.push_back(Arg.first);
1499     Names.push_back(Arg.second);
1500   }
1501
1502   return DagInit::get(V, VN, Args, Names);
1503 }
1504
1505 void DagInit::Profile(FoldingSetNodeID &ID) const {
1506   ProfileDagInit(ID, Val, ValName, Args, ArgNames);
1507 }
1508
1509 Init *DagInit::resolveReferences(Record &R, const RecordVal *RV) const {
1510   std::vector<Init*> NewArgs;
1511   for (unsigned i = 0, e = Args.size(); i != e; ++i)
1512     NewArgs.push_back(Args[i]->resolveReferences(R, RV));
1513
1514   Init *Op = Val->resolveReferences(R, RV);
1515
1516   if (Args != NewArgs || Op != Val)
1517     return DagInit::get(Op, ValName, NewArgs, ArgNames);
1518
1519   return const_cast<DagInit *>(this);
1520 }
1521
1522
1523 std::string DagInit::getAsString() const {
1524   std::string Result = "(" + Val->getAsString();
1525   if (!ValName.empty())
1526     Result += ":" + ValName;
1527   if (!Args.empty()) {
1528     Result += " " + Args[0]->getAsString();
1529     if (!ArgNames[0].empty()) Result += ":$" + ArgNames[0];
1530     for (unsigned i = 1, e = Args.size(); i != e; ++i) {
1531       Result += ", " + Args[i]->getAsString();
1532       if (!ArgNames[i].empty()) Result += ":$" + ArgNames[i];
1533     }
1534   }
1535   return Result + ")";
1536 }
1537
1538
1539 //===----------------------------------------------------------------------===//
1540 //    Other implementations
1541 //===----------------------------------------------------------------------===//
1542
1543 RecordVal::RecordVal(Init *N, RecTy *T, unsigned P)
1544   : Name(N), Ty(T), Prefix(P) {
1545   Value = Ty->convertValue(UnsetInit::get());
1546   assert(Value && "Cannot create unset value for current type!");
1547 }
1548
1549 RecordVal::RecordVal(const std::string &N, RecTy *T, unsigned P)
1550   : Name(StringInit::get(N)), Ty(T), Prefix(P) {
1551   Value = Ty->convertValue(UnsetInit::get());
1552   assert(Value && "Cannot create unset value for current type!");
1553 }
1554
1555 const std::string &RecordVal::getName() const {
1556   return cast<StringInit>(Name)->getValue();
1557 }
1558
1559 void RecordVal::dump() const { errs() << *this; }
1560
1561 void RecordVal::print(raw_ostream &OS, bool PrintSem) const {
1562   if (getPrefix()) OS << "field ";
1563   OS << *getType() << " " << getNameInitAsString();
1564
1565   if (getValue())
1566     OS << " = " << *getValue();
1567
1568   if (PrintSem) OS << ";\n";
1569 }
1570
1571 unsigned Record::LastID = 0;
1572
1573 void Record::init() {
1574   checkName();
1575
1576   // Every record potentially has a def at the top.  This value is
1577   // replaced with the top-level def name at instantiation time.
1578   RecordVal DN("NAME", StringRecTy::get(), 0);
1579   addValue(DN);
1580 }
1581
1582 void Record::checkName() {
1583   // Ensure the record name has string type.
1584   const TypedInit *TypedName = cast<const TypedInit>(Name);
1585   RecTy *Type = TypedName->getType();
1586   if (!isa<StringRecTy>(Type))
1587     PrintFatalError(getLoc(), "Record name is not a string!");
1588 }
1589
1590 DefInit *Record::getDefInit() {
1591   static DenseMap<Record *, std::unique_ptr<DefInit>> ThePool;
1592   if (TheInit)
1593     return TheInit;
1594
1595   std::unique_ptr<DefInit> &I = ThePool[this];
1596   if (!I) I.reset(new DefInit(this, new RecordRecTy(this)));
1597   return I.get();
1598 }
1599
1600 const std::string &Record::getName() const {
1601   return cast<StringInit>(Name)->getValue();
1602 }
1603
1604 void Record::setName(Init *NewName) {
1605   Name = NewName;
1606   checkName();
1607   // DO NOT resolve record values to the name at this point because
1608   // there might be default values for arguments of this def.  Those
1609   // arguments might not have been resolved yet so we don't want to
1610   // prematurely assume values for those arguments were not passed to
1611   // this def.
1612   //
1613   // Nonetheless, it may be that some of this Record's values
1614   // reference the record name.  Indeed, the reason for having the
1615   // record name be an Init is to provide this flexibility.  The extra
1616   // resolve steps after completely instantiating defs takes care of
1617   // this.  See TGParser::ParseDef and TGParser::ParseDefm.
1618 }
1619
1620 void Record::setName(const std::string &Name) {
1621   setName(StringInit::get(Name));
1622 }
1623
1624 /// resolveReferencesTo - If anything in this record refers to RV, replace the
1625 /// reference to RV with the RHS of RV.  If RV is null, we resolve all possible
1626 /// references.
1627 void Record::resolveReferencesTo(const RecordVal *RV) {
1628   for (unsigned i = 0, e = Values.size(); i != e; ++i) {
1629     if (RV == &Values[i]) // Skip resolve the same field as the given one
1630       continue;
1631     if (Init *V = Values[i].getValue())
1632       if (Values[i].setValue(V->resolveReferences(*this, RV)))
1633         PrintFatalError(getLoc(), "Invalid value is found when setting '" +
1634                         Values[i].getNameInitAsString() +
1635                         "' after resolving references" +
1636                         (RV ? " against '" + RV->getNameInitAsString() +
1637                               "' of (" + RV->getValue()->getAsUnquotedString() +
1638                               ")"
1639                             : "") + "\n");
1640   }
1641   Init *OldName = getNameInit();
1642   Init *NewName = Name->resolveReferences(*this, RV);
1643   if (NewName != OldName) {
1644     // Re-register with RecordKeeper.
1645     setName(NewName);
1646   }
1647 }
1648
1649 void Record::dump() const { errs() << *this; }
1650
1651 raw_ostream &llvm::operator<<(raw_ostream &OS, const Record &R) {
1652   OS << R.getNameInitAsString();
1653
1654   const std::vector<Init *> &TArgs = R.getTemplateArgs();
1655   if (!TArgs.empty()) {
1656     OS << "<";
1657     for (unsigned i = 0, e = TArgs.size(); i != e; ++i) {
1658       if (i) OS << ", ";
1659       const RecordVal *RV = R.getValue(TArgs[i]);
1660       assert(RV && "Template argument record not found??");
1661       RV->print(OS, false);
1662     }
1663     OS << ">";
1664   }
1665
1666   OS << " {";
1667   const std::vector<Record*> &SC = R.getSuperClasses();
1668   if (!SC.empty()) {
1669     OS << "\t//";
1670     for (unsigned i = 0, e = SC.size(); i != e; ++i)
1671       OS << " " << SC[i]->getNameInitAsString();
1672   }
1673   OS << "\n";
1674
1675   const std::vector<RecordVal> &Vals = R.getValues();
1676   for (unsigned i = 0, e = Vals.size(); i != e; ++i)
1677     if (Vals[i].getPrefix() && !R.isTemplateArg(Vals[i].getName()))
1678       OS << Vals[i];
1679   for (unsigned i = 0, e = Vals.size(); i != e; ++i)
1680     if (!Vals[i].getPrefix() && !R.isTemplateArg(Vals[i].getName()))
1681       OS << Vals[i];
1682
1683   return OS << "}\n";
1684 }
1685
1686 /// getValueInit - Return the initializer for a value with the specified name,
1687 /// or abort if the field does not exist.
1688 ///
1689 Init *Record::getValueInit(StringRef FieldName) const {
1690   const RecordVal *R = getValue(FieldName);
1691   if (!R || !R->getValue())
1692     PrintFatalError(getLoc(), "Record `" + getName() +
1693       "' does not have a field named `" + FieldName + "'!\n");
1694   return R->getValue();
1695 }
1696
1697
1698 /// getValueAsString - This method looks up the specified field and returns its
1699 /// value as a string, aborts if the field does not exist or if
1700 /// the value is not a string.
1701 ///
1702 std::string Record::getValueAsString(StringRef FieldName) const {
1703   const RecordVal *R = getValue(FieldName);
1704   if (!R || !R->getValue())
1705     PrintFatalError(getLoc(), "Record `" + getName() +
1706       "' does not have a field named `" + FieldName + "'!\n");
1707
1708   if (StringInit *SI = dyn_cast<StringInit>(R->getValue()))
1709     return SI->getValue();
1710   PrintFatalError(getLoc(), "Record `" + getName() + "', field `" +
1711     FieldName + "' does not have a string initializer!");
1712 }
1713
1714 /// getValueAsBitsInit - This method looks up the specified field and returns
1715 /// its value as a BitsInit, aborts if the field does not exist or if
1716 /// the value is not the right type.
1717 ///
1718 BitsInit *Record::getValueAsBitsInit(StringRef FieldName) const {
1719   const RecordVal *R = getValue(FieldName);
1720   if (!R || !R->getValue())
1721     PrintFatalError(getLoc(), "Record `" + getName() +
1722       "' does not have a field named `" + FieldName + "'!\n");
1723
1724   if (BitsInit *BI = dyn_cast<BitsInit>(R->getValue()))
1725     return BI;
1726   PrintFatalError(getLoc(), "Record `" + getName() + "', field `" +
1727     FieldName + "' does not have a BitsInit initializer!");
1728 }
1729
1730 /// getValueAsListInit - This method looks up the specified field and returns
1731 /// its value as a ListInit, aborting if the field does not exist or if
1732 /// the value is not the right type.
1733 ///
1734 ListInit *Record::getValueAsListInit(StringRef FieldName) const {
1735   const RecordVal *R = getValue(FieldName);
1736   if (!R || !R->getValue())
1737     PrintFatalError(getLoc(), "Record `" + getName() +
1738       "' does not have a field named `" + FieldName + "'!\n");
1739
1740   if (ListInit *LI = dyn_cast<ListInit>(R->getValue()))
1741     return LI;
1742   PrintFatalError(getLoc(), "Record `" + getName() + "', field `" +
1743     FieldName + "' does not have a list initializer!");
1744 }
1745
1746 /// getValueAsListOfDefs - This method looks up the specified field and returns
1747 /// its value as a vector of records, aborting if the field does not exist
1748 /// or if the value is not the right type.
1749 ///
1750 std::vector<Record*>
1751 Record::getValueAsListOfDefs(StringRef FieldName) const {
1752   ListInit *List = getValueAsListInit(FieldName);
1753   std::vector<Record*> Defs;
1754   for (unsigned i = 0; i < List->getSize(); i++) {
1755     if (DefInit *DI = dyn_cast<DefInit>(List->getElement(i)))
1756       Defs.push_back(DI->getDef());
1757     else
1758       PrintFatalError(getLoc(), "Record `" + getName() + "', field `" +
1759         FieldName + "' list is not entirely DefInit!");
1760   }
1761   return Defs;
1762 }
1763
1764 /// getValueAsInt - This method looks up the specified field and returns its
1765 /// value as an int64_t, aborting if the field does not exist or if the value
1766 /// is not the right type.
1767 ///
1768 int64_t Record::getValueAsInt(StringRef FieldName) const {
1769   const RecordVal *R = getValue(FieldName);
1770   if (!R || !R->getValue())
1771     PrintFatalError(getLoc(), "Record `" + getName() +
1772       "' does not have a field named `" + FieldName + "'!\n");
1773
1774   if (IntInit *II = dyn_cast<IntInit>(R->getValue()))
1775     return II->getValue();
1776   PrintFatalError(getLoc(), "Record `" + getName() + "', field `" +
1777     FieldName + "' does not have an int initializer!");
1778 }
1779
1780 /// getValueAsListOfInts - This method looks up the specified field and returns
1781 /// its value as a vector of integers, aborting if the field does not exist or
1782 /// if the value is not the right type.
1783 ///
1784 std::vector<int64_t>
1785 Record::getValueAsListOfInts(StringRef FieldName) const {
1786   ListInit *List = getValueAsListInit(FieldName);
1787   std::vector<int64_t> Ints;
1788   for (unsigned i = 0; i < List->getSize(); i++) {
1789     if (IntInit *II = dyn_cast<IntInit>(List->getElement(i)))
1790       Ints.push_back(II->getValue());
1791     else
1792       PrintFatalError(getLoc(), "Record `" + getName() + "', field `" +
1793         FieldName + "' does not have a list of ints initializer!");
1794   }
1795   return Ints;
1796 }
1797
1798 /// getValueAsListOfStrings - This method looks up the specified field and
1799 /// returns its value as a vector of strings, aborting if the field does not
1800 /// exist or if the value is not the right type.
1801 ///
1802 std::vector<std::string>
1803 Record::getValueAsListOfStrings(StringRef FieldName) const {
1804   ListInit *List = getValueAsListInit(FieldName);
1805   std::vector<std::string> Strings;
1806   for (unsigned i = 0; i < List->getSize(); i++) {
1807     if (StringInit *II = dyn_cast<StringInit>(List->getElement(i)))
1808       Strings.push_back(II->getValue());
1809     else
1810       PrintFatalError(getLoc(), "Record `" + getName() + "', field `" +
1811         FieldName + "' does not have a list of strings initializer!");
1812   }
1813   return Strings;
1814 }
1815
1816 /// getValueAsDef - This method looks up the specified field and returns its
1817 /// value as a Record, aborting if the field does not exist or if the value
1818 /// is not the right type.
1819 ///
1820 Record *Record::getValueAsDef(StringRef FieldName) const {
1821   const RecordVal *R = getValue(FieldName);
1822   if (!R || !R->getValue())
1823     PrintFatalError(getLoc(), "Record `" + getName() +
1824       "' does not have a field named `" + FieldName + "'!\n");
1825
1826   if (DefInit *DI = dyn_cast<DefInit>(R->getValue()))
1827     return DI->getDef();
1828   PrintFatalError(getLoc(), "Record `" + getName() + "', field `" +
1829     FieldName + "' does not have a def initializer!");
1830 }
1831
1832 /// getValueAsBit - This method looks up the specified field and returns its
1833 /// value as a bit, aborting if the field does not exist or if the value is
1834 /// not the right type.
1835 ///
1836 bool Record::getValueAsBit(StringRef FieldName) const {
1837   const RecordVal *R = getValue(FieldName);
1838   if (!R || !R->getValue())
1839     PrintFatalError(getLoc(), "Record `" + getName() +
1840       "' does not have a field named `" + FieldName + "'!\n");
1841
1842   if (BitInit *BI = dyn_cast<BitInit>(R->getValue()))
1843     return BI->getValue();
1844   PrintFatalError(getLoc(), "Record `" + getName() + "', field `" +
1845     FieldName + "' does not have a bit initializer!");
1846 }
1847
1848 bool Record::getValueAsBitOrUnset(StringRef FieldName, bool &Unset) const {
1849   const RecordVal *R = getValue(FieldName);
1850   if (!R || !R->getValue())
1851     PrintFatalError(getLoc(), "Record `" + getName() +
1852       "' does not have a field named `" + FieldName.str() + "'!\n");
1853
1854   if (isa<UnsetInit>(R->getValue())) {
1855     Unset = true;
1856     return false;
1857   }
1858   Unset = false;
1859   if (BitInit *BI = dyn_cast<BitInit>(R->getValue()))
1860     return BI->getValue();
1861   PrintFatalError(getLoc(), "Record `" + getName() + "', field `" +
1862     FieldName + "' does not have a bit initializer!");
1863 }
1864
1865 /// getValueAsDag - This method looks up the specified field and returns its
1866 /// value as an Dag, aborting if the field does not exist or if the value is
1867 /// not the right type.
1868 ///
1869 DagInit *Record::getValueAsDag(StringRef FieldName) const {
1870   const RecordVal *R = getValue(FieldName);
1871   if (!R || !R->getValue())
1872     PrintFatalError(getLoc(), "Record `" + getName() +
1873       "' does not have a field named `" + FieldName + "'!\n");
1874
1875   if (DagInit *DI = dyn_cast<DagInit>(R->getValue()))
1876     return DI;
1877   PrintFatalError(getLoc(), "Record `" + getName() + "', field `" +
1878     FieldName + "' does not have a dag initializer!");
1879 }
1880
1881
1882 void MultiClass::dump() const {
1883   errs() << "Record:\n";
1884   Rec.dump();
1885
1886   errs() << "Defs:\n";
1887   for (const auto &Proto : DefPrototypes)
1888     Proto->dump();
1889 }
1890
1891
1892 void RecordKeeper::dump() const { errs() << *this; }
1893
1894 raw_ostream &llvm::operator<<(raw_ostream &OS, const RecordKeeper &RK) {
1895   OS << "------------- Classes -----------------\n";
1896   for (const auto &C : RK.getClasses())
1897     OS << "class " << *C.second;
1898
1899   OS << "------------- Defs -----------------\n";
1900   for (const auto &D : RK.getDefs())
1901     OS << "def " << *D.second;
1902   return OS;
1903 }
1904
1905
1906 /// getAllDerivedDefinitions - This method returns all concrete definitions
1907 /// that derive from the specified class name.  If a class with the specified
1908 /// name does not exist, an error is printed and true is returned.
1909 std::vector<Record*>
1910 RecordKeeper::getAllDerivedDefinitions(const std::string &ClassName) const {
1911   Record *Class = getClass(ClassName);
1912   if (!Class)
1913     PrintFatalError("ERROR: Couldn't find the `" + ClassName + "' class!\n");
1914
1915   std::vector<Record*> Defs;
1916   for (const auto &D : getDefs())
1917     if (D.second->isSubClassOf(Class))
1918       Defs.push_back(D.second.get());
1919
1920   return Defs;
1921 }
1922
1923 /// QualifyName - Return an Init with a qualifier prefix referring
1924 /// to CurRec's name.
1925 Init *llvm::QualifyName(Record &CurRec, MultiClass *CurMultiClass,
1926                         Init *Name, const std::string &Scoper) {
1927   RecTy *Type = cast<TypedInit>(Name)->getType();
1928
1929   BinOpInit *NewName =
1930     BinOpInit::get(BinOpInit::STRCONCAT, 
1931                       BinOpInit::get(BinOpInit::STRCONCAT,
1932                                         CurRec.getNameInit(),
1933                                         StringInit::get(Scoper),
1934                                         Type)->Fold(&CurRec, CurMultiClass),
1935                       Name,
1936                       Type);
1937
1938   if (CurMultiClass && Scoper != "::") {
1939     NewName =
1940       BinOpInit::get(BinOpInit::STRCONCAT, 
1941                         BinOpInit::get(BinOpInit::STRCONCAT,
1942                                           CurMultiClass->Rec.getNameInit(),
1943                                           StringInit::get("::"),
1944                                           Type)->Fold(&CurRec, CurMultiClass),
1945                         NewName->Fold(&CurRec, CurMultiClass),
1946                         Type);
1947   }
1948
1949   return NewName->Fold(&CurRec, CurMultiClass);
1950 }
1951
1952 /// QualifyName - Return an Init with a qualifier prefix referring
1953 /// to CurRec's name.
1954 Init *llvm::QualifyName(Record &CurRec, MultiClass *CurMultiClass,
1955                         const std::string &Name,
1956                         const std::string &Scoper) {
1957   return QualifyName(CurRec, CurMultiClass, StringInit::get(Name), Scoper);
1958 }