Implement a !subst operation simmilar to $(subst) in GNU make to do
[oota-llvm.git] / utils / 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 "Record.h"
15 #include "llvm/Support/DataTypes.h"
16 #include "llvm/Support/Streams.h"
17 #include "llvm/ADT/StringExtras.h"
18 #include <ios>
19
20 using namespace llvm;
21
22 //===----------------------------------------------------------------------===//
23 //    Type implementations
24 //===----------------------------------------------------------------------===//
25
26 void RecTy::dump() const { print(*cerr.stream()); }
27
28 Init *BitRecTy::convertValue(BitsInit *BI) {
29   if (BI->getNumBits() != 1) return 0; // Only accept if just one bit!
30   return BI->getBit(0);
31 }
32
33 bool BitRecTy::baseClassOf(const BitsRecTy *RHS) const {
34   return RHS->getNumBits() == 1;
35 }
36
37 Init *BitRecTy::convertValue(IntInit *II) {
38   int64_t Val = II->getValue();
39   if (Val != 0 && Val != 1) return 0;  // Only accept 0 or 1 for a bit!
40
41   return new BitInit(Val != 0);
42 }
43
44 Init *BitRecTy::convertValue(TypedInit *VI) {
45   if (dynamic_cast<BitRecTy*>(VI->getType()))
46     return VI;  // Accept variable if it is already of bit type!
47   return 0;
48 }
49
50 std::string BitsRecTy::getAsString() const {
51   return "bits<" + utostr(Size) + ">";
52 }
53
54 Init *BitsRecTy::convertValue(UnsetInit *UI) {
55   BitsInit *Ret = new BitsInit(Size);
56
57   for (unsigned i = 0; i != Size; ++i)
58     Ret->setBit(i, new UnsetInit());
59   return Ret;
60 }
61
62 Init *BitsRecTy::convertValue(BitInit *UI) {
63   if (Size != 1) return 0;  // Can only convert single bit...
64   BitsInit *Ret = new BitsInit(1);
65   Ret->setBit(0, UI);
66   return Ret;
67 }
68
69 // convertValue from Int initializer to bits type: Split the integer up into the
70 // appropriate bits...
71 //
72 Init *BitsRecTy::convertValue(IntInit *II) {
73   int64_t Value = II->getValue();
74   // Make sure this bitfield is large enough to hold the integer value...
75   if (Value >= 0) {
76     if (Value & ~((1LL << Size)-1))
77       return 0;
78   } else {
79     if ((Value >> Size) != -1 || ((Value & (1LL << (Size-1))) == 0))
80       return 0;
81   }
82
83   BitsInit *Ret = new BitsInit(Size);
84   for (unsigned i = 0; i != Size; ++i)
85     Ret->setBit(i, new BitInit(Value & (1LL << i)));
86
87   return Ret;
88 }
89
90 Init *BitsRecTy::convertValue(BitsInit *BI) {
91   // If the number of bits is right, return it.  Otherwise we need to expand or
92   // truncate...
93   if (BI->getNumBits() == Size) return BI;
94   return 0;
95 }
96
97 Init *BitsRecTy::convertValue(TypedInit *VI) {
98   if (BitsRecTy *BRT = dynamic_cast<BitsRecTy*>(VI->getType()))
99     if (BRT->Size == Size) {
100       BitsInit *Ret = new BitsInit(Size);
101       for (unsigned i = 0; i != Size; ++i)
102         Ret->setBit(i, new VarBitInit(VI, i));
103       return Ret;
104     }
105   if (Size == 1 && dynamic_cast<BitRecTy*>(VI->getType())) {
106     BitsInit *Ret = new BitsInit(1);
107     Ret->setBit(0, VI);
108     return Ret;
109   }
110
111   return 0;
112 }
113
114 Init *IntRecTy::convertValue(BitInit *BI) {
115   return new IntInit(BI->getValue());
116 }
117
118 Init *IntRecTy::convertValue(BitsInit *BI) {
119   int64_t Result = 0;
120   for (unsigned i = 0, e = BI->getNumBits(); i != e; ++i)
121     if (BitInit *Bit = dynamic_cast<BitInit*>(BI->getBit(i))) {
122       Result |= Bit->getValue() << i;
123     } else {
124       return 0;
125     }
126   return new IntInit(Result);
127 }
128
129 Init *IntRecTy::convertValue(TypedInit *TI) {
130   if (TI->getType()->typeIsConvertibleTo(this))
131     return TI;  // Accept variable if already of the right type!
132   return 0;
133 }
134
135 Init *StringRecTy::convertValue(UnOpInit *BO) {
136   if (BO->getOpcode() == UnOpInit::CAST) {
137     Init *L = BO->getOperand()->convertInitializerTo(this);
138     if (L == 0) return 0;
139     if (L != BO->getOperand())
140       return new UnOpInit(UnOpInit::CAST, L, new StringRecTy);
141     return BO;
142   }
143
144   return convertValue((TypedInit*)BO);
145 }
146
147 Init *StringRecTy::convertValue(BinOpInit *BO) {
148   if (BO->getOpcode() == BinOpInit::STRCONCAT) {
149     Init *L = BO->getLHS()->convertInitializerTo(this);
150     Init *R = BO->getRHS()->convertInitializerTo(this);
151     if (L == 0 || R == 0) return 0;
152     if (L != BO->getLHS() || R != BO->getRHS())
153       return new BinOpInit(BinOpInit::STRCONCAT, L, R, new StringRecTy);
154     return BO;
155   }
156   if (BO->getOpcode() == BinOpInit::NAMECONCAT) {
157     if (BO->getType()->getAsString() == getAsString()) {
158       Init *L = BO->getLHS()->convertInitializerTo(this);
159       Init *R = BO->getRHS()->convertInitializerTo(this);
160       if (L == 0 || R == 0) return 0;
161       if (L != BO->getLHS() || R != BO->getRHS())
162         return new BinOpInit(BinOpInit::NAMECONCAT, L, R, new StringRecTy);
163       return BO;
164     }
165   }
166
167   return convertValue((TypedInit*)BO);
168 }
169
170
171 Init *StringRecTy::convertValue(TypedInit *TI) {
172   if (dynamic_cast<StringRecTy*>(TI->getType()))
173     return TI;  // Accept variable if already of the right type!
174   return 0;
175 }
176
177 std::string ListRecTy::getAsString() const {
178   return "list<" + Ty->getAsString() + ">";
179 }
180
181 Init *ListRecTy::convertValue(ListInit *LI) {
182   std::vector<Init*> Elements;
183
184   // Verify that all of the elements of the list are subclasses of the
185   // appropriate class!
186   for (unsigned i = 0, e = LI->getSize(); i != e; ++i)
187     if (Init *CI = LI->getElement(i)->convertInitializerTo(Ty))
188       Elements.push_back(CI);
189     else
190       return 0;
191
192   return new ListInit(Elements);
193 }
194
195 Init *ListRecTy::convertValue(TypedInit *TI) {
196   // Ensure that TI is compatible with our class.
197   if (ListRecTy *LRT = dynamic_cast<ListRecTy*>(TI->getType()))
198     if (LRT->getElementType()->typeIsConvertibleTo(getElementType()))
199       return TI;
200   return 0;
201 }
202
203 Init *CodeRecTy::convertValue(TypedInit *TI) {
204   if (TI->getType()->typeIsConvertibleTo(this))
205     return TI;
206   return 0;
207 }
208
209 Init *DagRecTy::convertValue(TypedInit *TI) {
210   if (TI->getType()->typeIsConvertibleTo(this))
211     return TI;
212   return 0;
213 }
214
215 Init *DagRecTy::convertValue(UnOpInit *BO) {
216   if (BO->getOpcode() == UnOpInit::CAST) {
217     Init *L = BO->getOperand()->convertInitializerTo(this);
218     if (L == 0) return 0;
219     if (L != BO->getOperand())
220       return new UnOpInit(UnOpInit::CAST, L, new DagRecTy);
221     return BO;
222   }
223   return 0;
224 }
225
226 Init *DagRecTy::convertValue(BinOpInit *BO) {
227   if (BO->getOpcode() == BinOpInit::CONCAT) {
228     Init *L = BO->getLHS()->convertInitializerTo(this);
229     Init *R = BO->getRHS()->convertInitializerTo(this);
230     if (L == 0 || R == 0) return 0;
231     if (L != BO->getLHS() || R != BO->getRHS())
232       return new BinOpInit(BinOpInit::CONCAT, L, R, new DagRecTy);
233     return BO;
234   }
235   if (BO->getOpcode() == BinOpInit::NAMECONCAT) {
236     if (BO->getType()->getAsString() == getAsString()) {
237       Init *L = BO->getLHS()->convertInitializerTo(this);
238       Init *R = BO->getRHS()->convertInitializerTo(this);
239       if (L == 0 || R == 0) return 0;
240       if (L != BO->getLHS() || R != BO->getRHS())
241         return new BinOpInit(BinOpInit::CONCAT, L, R, new DagRecTy);
242       return BO;
243     }
244   }
245   return 0;
246 }
247
248 std::string RecordRecTy::getAsString() const {
249   return Rec->getName();
250 }
251
252 Init *RecordRecTy::convertValue(DefInit *DI) {
253   // Ensure that DI is a subclass of Rec.
254   if (!DI->getDef()->isSubClassOf(Rec))
255     return 0;
256   return DI;
257 }
258
259 Init *RecordRecTy::convertValue(TypedInit *TI) {
260   // Ensure that TI is compatible with Rec.
261   if (RecordRecTy *RRT = dynamic_cast<RecordRecTy*>(TI->getType()))
262     if (RRT->getRecord()->isSubClassOf(getRecord()) ||
263         RRT->getRecord() == getRecord())
264       return TI;
265   return 0;
266 }
267
268 bool RecordRecTy::baseClassOf(const RecordRecTy *RHS) const {
269   return Rec == RHS->getRecord() || RHS->getRecord()->isSubClassOf(Rec);
270 }
271
272
273 //===----------------------------------------------------------------------===//
274 //    Initializer implementations
275 //===----------------------------------------------------------------------===//
276
277 void Init::dump() const { return print(*cerr.stream()); }
278
279 Init *BitsInit::convertInitializerBitRange(const std::vector<unsigned> &Bits) {
280   BitsInit *BI = new BitsInit(Bits.size());
281   for (unsigned i = 0, e = Bits.size(); i != e; ++i) {
282     if (Bits[i] >= getNumBits()) {
283       delete BI;
284       return 0;
285     }
286     BI->setBit(i, getBit(Bits[i]));
287   }
288   return BI;
289 }
290
291 std::string BitsInit::getAsString() const {
292   //if (!printInHex(OS)) return;
293   //if (!printAsVariable(OS)) return;
294   //if (!printAsUnset(OS)) return;
295
296   std::string Result = "{ ";
297   for (unsigned i = 0, e = getNumBits(); i != e; ++i) {
298     if (i) Result += ", ";
299     if (Init *Bit = getBit(e-i-1))
300       Result += Bit->getAsString();
301     else
302       Result += "*";
303   }
304   return Result + " }";
305 }
306
307 bool BitsInit::printInHex(std::ostream &OS) const {
308   // First, attempt to convert the value into an integer value...
309   int64_t Result = 0;
310   for (unsigned i = 0, e = getNumBits(); i != e; ++i)
311     if (BitInit *Bit = dynamic_cast<BitInit*>(getBit(i))) {
312       Result |= Bit->getValue() << i;
313     } else {
314       return true;
315     }
316
317   OS << "0x" << std::hex << Result << std::dec;
318   return false;
319 }
320
321 bool BitsInit::printAsVariable(std::ostream &OS) const {
322   // Get the variable that we may be set equal to...
323   assert(getNumBits() != 0);
324   VarBitInit *FirstBit = dynamic_cast<VarBitInit*>(getBit(0));
325   if (FirstBit == 0) return true;
326   TypedInit *Var = FirstBit->getVariable();
327
328   // Check to make sure the types are compatible.
329   BitsRecTy *Ty = dynamic_cast<BitsRecTy*>(FirstBit->getVariable()->getType());
330   if (Ty == 0) return true;
331   if (Ty->getNumBits() != getNumBits()) return true; // Incompatible types!
332
333   // Check to make sure all bits are referring to the right bits in the variable
334   for (unsigned i = 0, e = getNumBits(); i != e; ++i) {
335     VarBitInit *Bit = dynamic_cast<VarBitInit*>(getBit(i));
336     if (Bit == 0 || Bit->getVariable() != Var || Bit->getBitNum() != i)
337       return true;
338   }
339
340   Var->print(OS);
341   return false;
342 }
343
344 bool BitsInit::printAsUnset(std::ostream &OS) const {
345   for (unsigned i = 0, e = getNumBits(); i != e; ++i)
346     if (!dynamic_cast<UnsetInit*>(getBit(i)))
347       return true;
348   OS << "?";
349   return false;
350 }
351
352 // resolveReferences - If there are any field references that refer to fields
353 // that have been filled in, we can propagate the values now.
354 //
355 Init *BitsInit::resolveReferences(Record &R, const RecordVal *RV) {
356   bool Changed = false;
357   BitsInit *New = new BitsInit(getNumBits());
358
359   for (unsigned i = 0, e = Bits.size(); i != e; ++i) {
360     Init *B;
361     Init *CurBit = getBit(i);
362
363     do {
364       B = CurBit;
365       CurBit = CurBit->resolveReferences(R, RV);
366       Changed |= B != CurBit;
367     } while (B != CurBit);
368     New->setBit(i, CurBit);
369   }
370
371   if (Changed)
372     return New;
373   delete New;
374   return this;
375 }
376
377 std::string IntInit::getAsString() const {
378   return itostr(Value);
379 }
380
381 Init *IntInit::convertInitializerBitRange(const std::vector<unsigned> &Bits) {
382   BitsInit *BI = new BitsInit(Bits.size());
383
384   for (unsigned i = 0, e = Bits.size(); i != e; ++i) {
385     if (Bits[i] >= 64) {
386       delete BI;
387       return 0;
388     }
389     BI->setBit(i, new BitInit(Value & (INT64_C(1) << Bits[i])));
390   }
391   return BI;
392 }
393
394 Init *ListInit::convertInitListSlice(const std::vector<unsigned> &Elements) {
395   std::vector<Init*> Vals;
396   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
397     if (Elements[i] >= getSize())
398       return 0;
399     Vals.push_back(getElement(Elements[i]));
400   }
401   return new ListInit(Vals);
402 }
403
404 Record *ListInit::getElementAsRecord(unsigned i) const {
405   assert(i < Values.size() && "List element index out of range!");
406   DefInit *DI = dynamic_cast<DefInit*>(Values[i]);
407   if (DI == 0) throw "Expected record in list!";
408   return DI->getDef();
409 }
410
411 Init *ListInit::resolveReferences(Record &R, const RecordVal *RV) {
412   std::vector<Init*> Resolved;
413   Resolved.reserve(getSize());
414   bool Changed = false;
415
416   for (unsigned i = 0, e = getSize(); i != e; ++i) {
417     Init *E;
418     Init *CurElt = getElement(i);
419
420     do {
421       E = CurElt;
422       CurElt = CurElt->resolveReferences(R, RV);
423       Changed |= E != CurElt;
424     } while (E != CurElt);
425     Resolved.push_back(E);
426   }
427
428   if (Changed)
429     return new ListInit(Resolved);
430   return this;
431 }
432
433 std::string ListInit::getAsString() const {
434   std::string Result = "[";
435   for (unsigned i = 0, e = Values.size(); i != e; ++i) {
436     if (i) Result += ", ";
437     Result += Values[i]->getAsString();
438   }
439   return Result + "]";
440 }
441
442 Init *OpInit::resolveBitReference(Record &R, const RecordVal *IRV,
443                                    unsigned Bit) {
444   Init *Folded = Fold(&R, 0);
445
446   if (Folded != this) {
447     TypedInit *Typed = dynamic_cast<TypedInit *>(Folded);
448     if (Typed) {
449       return Typed->resolveBitReference(R, IRV, Bit);
450     }    
451   }
452   
453   return 0;
454 }
455
456 Init *OpInit::resolveListElementReference(Record &R, const RecordVal *IRV,
457                                            unsigned Elt) {
458   Init *Folded = Fold(&R, 0);
459
460   if (Folded != this) {
461     TypedInit *Typed = dynamic_cast<TypedInit *>(Folded);
462     if (Typed) {
463       return Typed->resolveListElementReference(R, IRV, Elt);
464     }    
465   }
466   
467   return 0;
468 }
469
470 Init *UnOpInit::Fold(Record *CurRec, MultiClass *CurMultiClass) {
471   switch (getOpcode()) {
472   default: assert(0 && "Unknown unop");
473   case CAST: {
474     StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
475     if (LHSs) {
476       std::string Name = LHSs->getValue();
477
478       // From TGParser::ParseIDValue
479       if (CurRec) {
480         if (const RecordVal *RV = CurRec->getValue(Name)) {
481           if (RV->getType() != getType()) {
482             throw "type mismatch in nameconcat";
483           }
484           return new VarInit(Name, RV->getType());
485         }
486         
487         std::string TemplateArgName = CurRec->getName()+":"+Name;
488         if (CurRec->isTemplateArg(TemplateArgName)) {
489           const RecordVal *RV = CurRec->getValue(TemplateArgName);
490           assert(RV && "Template arg doesn't exist??");
491
492           if (RV->getType() != getType()) {
493             throw "type mismatch in nameconcat";
494           }
495
496           return new VarInit(TemplateArgName, RV->getType());
497         }
498       }
499
500       if (CurMultiClass) {
501         std::string MCName = CurMultiClass->Rec.getName()+"::"+Name;
502         if (CurMultiClass->Rec.isTemplateArg(MCName)) {
503           const RecordVal *RV = CurMultiClass->Rec.getValue(MCName);
504           assert(RV && "Template arg doesn't exist??");
505
506           if (RV->getType() != getType()) {
507             throw "type mismatch in nameconcat";
508           }
509           
510           return new VarInit(MCName, RV->getType());
511         }
512       }
513
514       if (Record *D = Records.getDef(Name))
515         return new DefInit(D);
516
517       cerr << "Variable not defined: '" + Name + "'\n";
518       assert(0 && "Variable not found");
519       return 0;
520     }
521     break;
522   }
523   }
524   return this;
525 }
526
527 Init *UnOpInit::resolveReferences(Record &R, const RecordVal *RV) {
528   Init *lhs = LHS->resolveReferences(R, RV);
529   
530   if (LHS != lhs)
531     return (new UnOpInit(getOpcode(), lhs, getType()))->Fold(&R, 0);
532   return Fold(&R, 0);
533 }
534
535 std::string UnOpInit::getAsString() const {
536   std::string Result;
537   switch (Opc) {
538   case CAST: Result = "!cast<" + getType()->getAsString() + ">"; break;
539   }
540   return Result + "(" + LHS->getAsString() + ")";
541 }
542
543 Init *BinOpInit::Fold(Record *CurRec, MultiClass *CurMultiClass) {
544   switch (getOpcode()) {
545   default: assert(0 && "Unknown binop");
546   case CONCAT: {
547     DagInit *LHSs = dynamic_cast<DagInit*>(LHS);
548     DagInit *RHSs = dynamic_cast<DagInit*>(RHS);
549     if (LHSs && RHSs) {
550       DefInit *LOp = dynamic_cast<DefInit*>(LHSs->getOperator());
551       DefInit *ROp = dynamic_cast<DefInit*>(RHSs->getOperator());
552       if (LOp->getDef() != ROp->getDef()) {
553         bool LIsOps =
554           LOp->getDef()->getName() == "outs" ||
555           LOp->getDef()->getName() != "ins" ||
556           LOp->getDef()->getName() != "defs";
557         bool RIsOps =
558           ROp->getDef()->getName() == "outs" ||
559           ROp->getDef()->getName() != "ins" ||
560           ROp->getDef()->getName() != "defs";
561         if (!LIsOps || !RIsOps)
562           throw "Concated Dag operators do not match!";
563       }
564       std::vector<Init*> Args;
565       std::vector<std::string> ArgNames;
566       for (unsigned i = 0, e = LHSs->getNumArgs(); i != e; ++i) {
567         Args.push_back(LHSs->getArg(i));
568         ArgNames.push_back(LHSs->getArgName(i));
569       }
570       for (unsigned i = 0, e = RHSs->getNumArgs(); i != e; ++i) {
571         Args.push_back(RHSs->getArg(i));
572         ArgNames.push_back(RHSs->getArgName(i));
573       }
574       return new DagInit(LHSs->getOperator(), "", Args, ArgNames);
575     }
576     break;
577   }
578   case STRCONCAT: {
579     StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
580     StringInit *RHSs = dynamic_cast<StringInit*>(RHS);
581     if (LHSs && RHSs)
582       return new StringInit(LHSs->getValue() + RHSs->getValue());
583     break;
584   }
585   case NAMECONCAT: {
586     StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
587     StringInit *RHSs = dynamic_cast<StringInit*>(RHS);
588     if (LHSs && RHSs) {
589       std::string Name(LHSs->getValue() + RHSs->getValue());
590
591       // From TGParser::ParseIDValue
592       if (CurRec) {
593         if (const RecordVal *RV = CurRec->getValue(Name)) {
594           if (RV->getType() != getType()) {
595             throw "type mismatch in nameconcat";
596           }
597           return new VarInit(Name, RV->getType());
598         }
599         
600         std::string TemplateArgName = CurRec->getName()+":"+Name;
601         if (CurRec->isTemplateArg(TemplateArgName)) {
602           const RecordVal *RV = CurRec->getValue(TemplateArgName);
603           assert(RV && "Template arg doesn't exist??");
604
605           if (RV->getType() != getType()) {
606             throw "type mismatch in nameconcat";
607           }
608
609           return new VarInit(TemplateArgName, RV->getType());
610         }
611       }
612
613       if (CurMultiClass) {
614         std::string MCName = CurMultiClass->Rec.getName()+"::"+Name;
615         if (CurMultiClass->Rec.isTemplateArg(MCName)) {
616           const RecordVal *RV = CurMultiClass->Rec.getValue(MCName);
617           assert(RV && "Template arg doesn't exist??");
618
619           if (RV->getType() != getType()) {
620             throw "type mismatch in nameconcat";
621           }
622           
623           return new VarInit(MCName, RV->getType());
624         }
625       }
626
627       if (Record *D = Records.getDef(Name))
628         return new DefInit(D);
629
630       cerr << "Variable not defined: '" + Name + "'\n";
631       assert(0 && "Variable not found");
632       return 0;
633     }
634     break;
635   }
636   case SHL:
637   case SRA:
638   case SRL: {
639     IntInit *LHSi = dynamic_cast<IntInit*>(LHS);
640     IntInit *RHSi = dynamic_cast<IntInit*>(RHS);
641     if (LHSi && RHSi) {
642       int64_t LHSv = LHSi->getValue(), RHSv = RHSi->getValue();
643       int64_t Result;
644       switch (getOpcode()) {
645       default: assert(0 && "Bad opcode!");
646       case SHL: Result = LHSv << RHSv; break;
647       case SRA: Result = LHSv >> RHSv; break;
648       case SRL: Result = (uint64_t)LHSv >> (uint64_t)RHSv; break;
649       }
650       return new IntInit(Result);
651     }
652     break;
653   }
654   }
655   return this;
656 }
657
658 Init *BinOpInit::resolveReferences(Record &R, const RecordVal *RV) {
659   Init *lhs = LHS->resolveReferences(R, RV);
660   Init *rhs = RHS->resolveReferences(R, RV);
661   
662   if (LHS != lhs || RHS != rhs)
663     return (new BinOpInit(getOpcode(), lhs, rhs, getType()))->Fold(&R, 0);
664   return Fold(&R, 0);
665 }
666
667 std::string BinOpInit::getAsString() const {
668   std::string Result;
669   switch (Opc) {
670   case CONCAT: Result = "!con"; break;
671   case SHL: Result = "!shl"; break;
672   case SRA: Result = "!sra"; break;
673   case SRL: Result = "!srl"; break;
674   case STRCONCAT: Result = "!strconcat"; break;
675   case NAMECONCAT: 
676     Result = "!nameconcat<" + getType()->getAsString() + ">"; break;
677   }
678   return Result + "(" + LHS->getAsString() + ", " + RHS->getAsString() + ")";
679 }
680
681 Init *TernOpInit::Fold(Record *CurRec, MultiClass *CurMultiClass) {
682   switch (getOpcode()) {
683   default: assert(0 && "Unknown binop");
684   case SUBST: {
685     DefInit *LHSd = dynamic_cast<DefInit*>(LHS);
686     VarInit *LHSv = dynamic_cast<VarInit*>(LHS);
687     StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
688
689     DefInit *MHSd = dynamic_cast<DefInit*>(MHS);
690     VarInit *MHSv = dynamic_cast<VarInit*>(MHS);
691     StringInit *MHSs = dynamic_cast<StringInit*>(MHS);
692
693     DefInit *RHSd = dynamic_cast<DefInit*>(RHS);
694     VarInit *RHSv = dynamic_cast<VarInit*>(RHS);
695     StringInit *RHSs = dynamic_cast<StringInit*>(RHS);
696
697     if ((LHSd && MHSd && RHSd)
698         || (LHSv && MHSv && RHSv)
699         || (LHSs && MHSs && RHSs)) {
700       if (RHSd) {
701         Record *Val = RHSd->getDef();
702         if (LHSd->getAsString() == RHSd->getAsString()) {
703           Val = MHSd->getDef();
704         }
705         return new DefInit(Val);
706       }
707       if (RHSv) {
708         std::string Val = RHSv->getName();
709         if (LHSv->getAsString() == RHSv->getAsString()) {
710           Val = MHSv->getName();
711         }
712         return new VarInit(Val, getType());
713       }
714       if (RHSs) {
715         std::string Val = RHSs->getValue();
716
717         std::string::size_type found;
718         do {
719           found = Val.find(LHSs->getValue());
720           if (found != std::string::npos) {
721             Val.replace(found, LHSs->getValue().size(), MHSs->getValue());
722           }
723         } while (found != std::string::npos);
724
725         return new StringInit(Val);
726       }
727     }
728     break;
729   }  
730
731   case FOREACH: {
732     DagInit *MHSd = dynamic_cast<DagInit*>(MHS);
733     ListInit *MHSl = dynamic_cast<ListInit*>(MHS);
734
735     DagRecTy *DagType = dynamic_cast<DagRecTy*>(getType());
736     ListRecTy *ListType = dynamic_cast<ListRecTy*>(getType());
737
738     OpInit *RHSo = dynamic_cast<OpInit*>(RHS);
739
740     if (!RHSo) {
741       cerr << "!foreach requires an operator\n";
742       assert(0 && "No operator for !foreach");
743     }
744
745     TypedInit *LHSt = dynamic_cast<TypedInit*>(LHS);
746
747     if (!LHSt) {
748       cerr << "!foreach requires typed variable\n";
749       assert(0 && "No typed variable for !foreach");
750     }
751
752     if (MHSd && DagType || MHSl && ListType) {
753       std::vector<Init *> NewOperands;
754       if (MHSd) {
755         Init *Val = MHSd->getOperator();
756         TypedInit *TVal = dynamic_cast<TypedInit*>(Val);
757
758         if (TVal && TVal->getType()->typeIsConvertibleTo(LHSt->getType())) {
759           
760           // First, replace the foreach variable with the DAG leaf
761           for (int i = 0; i < RHSo->getNumOperands(); ++i) {
762             if (LHS->getAsString() == RHSo->getOperand(i)->getAsString()) {
763               NewOperands.push_back(Val);
764             }
765             else {
766               NewOperands.push_back(RHSo->getOperand(i));
767             }
768           }
769
770           // Now run the operator and use its result as the new leaf
771           OpInit *NewOp = RHSo->clone(NewOperands);
772           Val = NewOp->Fold(CurRec, CurMultiClass);
773           if (Val != NewOp) {
774             delete NewOp;
775           }
776         }
777
778         std::vector<std::pair<Init *, std::string> > args;
779         for (unsigned int i = 0; i < MHSd->getNumArgs(); ++i) {
780           Init *Arg;
781           std::string ArgName;
782           Arg = MHSd->getArg(i);
783           ArgName = MHSd->getArgName(i);
784
785           TypedInit *TArg = dynamic_cast<TypedInit*>(Arg);
786
787           if (TArg && TArg->getType()->typeIsConvertibleTo(LHSt->getType())) {
788             NewOperands.clear();
789
790             // First, replace the foreach variable with the DAG leaf
791             for (int i = 0; i < RHSo->getNumOperands(); ++i) {
792               if (LHS->getAsString() == RHSo->getOperand(i)->getAsString()) {
793                 NewOperands.push_back(Arg);
794               }
795               else {
796                 NewOperands.push_back(RHSo->getOperand(i));
797               }
798             }
799
800             // Now run the operator and use its result as the new leaf
801             OpInit *NewOp = RHSo->clone(NewOperands);
802             Arg = NewOp->Fold(CurRec, CurMultiClass);
803             if (Arg != NewOp) {
804               delete NewOp;
805             }
806           }
807          
808           if (LHSt->getType()->getAsString() == "string") {
809             NewOperands.clear();
810
811             // First, replace the foreach variable with the DAG leaf
812             for (int i = 0; i < RHSo->getNumOperands(); ++i) {
813               if (LHS->getAsString() == RHSo->getOperand(i)->getAsString()) {
814                 NewOperands.push_back(new StringInit(ArgName));
815               }
816               else {
817                 NewOperands.push_back(RHSo->getOperand(i));
818               }
819             }
820
821             // Now run the operator and use its result as the new leaf
822             OpInit *NewOp = RHSo->clone(NewOperands);
823             Init *ArgNameInit = NewOp->Fold(CurRec, CurMultiClass);
824             StringInit *SArgNameInit = dynamic_cast<StringInit*>(ArgNameInit);
825             if (SArgNameInit) {
826               ArgName = SArgNameInit->getValue();
827             }
828             if (ArgNameInit != NewOp) {
829               delete NewOp;
830             }
831             delete ArgNameInit;
832           }
833
834           args.push_back(std::make_pair(Arg, ArgName));
835         }
836
837         return new DagInit(Val, "", args);
838       }
839       if (MHSl) {
840         std::vector<Init *> NewList(MHSl->begin(), MHSl->end());
841
842         for (ListInit::iterator li = NewList.begin(),
843                liend = NewList.end();
844              li != liend;
845              ++li) {
846           Init *Item = *li;
847           TypedInit *TItem = dynamic_cast<TypedInit*>(Item);
848           if (TItem && TItem->getType()->typeIsConvertibleTo(LHSt->getType())) {
849             // First, replace the foreach variable with the list item
850             for (int i = 0; i < RHSo->getNumOperands(); ++i) {
851               if (LHS->getAsString() == RHSo->getOperand(i)->getAsString()) {
852                 NewOperands.push_back(Item);
853               }
854               else {
855                 NewOperands.push_back(RHSo->getOperand(i));
856               }
857             }
858
859             // Now run the operator and use its result as the new list item
860             OpInit *NewOp = RHSo->clone(NewOperands);
861             *li = NewOp->Fold(CurRec, CurMultiClass);
862             if (*li != NewOp) {
863               delete NewOp;
864             }
865           }
866         }
867           
868         return new ListInit(NewList);
869       }
870     }
871     break;
872   }
873   }
874
875   return this;
876 }
877
878 Init *TernOpInit::resolveReferences(Record &R, const RecordVal *RV) {
879   Init *lhs = LHS->resolveReferences(R, RV);
880   Init *mhs = MHS->resolveReferences(R, RV);
881   Init *rhs = RHS->resolveReferences(R, RV);
882   
883   if (LHS != lhs || MHS != mhs || RHS != rhs)
884     return (new TernOpInit(getOpcode(), lhs, mhs, rhs, getType()))->Fold(&R, 0);
885   return Fold(&R, 0);
886 }
887
888 std::string TernOpInit::getAsString() const {
889   std::string Result;
890   switch (Opc) {
891   case SUBST: Result = "!subst"; break;
892   case FOREACH: Result = "!foreach"; break; 
893  }
894   return Result + "(" + LHS->getAsString() + ", " + MHS->getAsString() + ", " 
895     + RHS->getAsString() + ")";
896 }
897
898 Init *TypedInit::convertInitializerBitRange(const std::vector<unsigned> &Bits) {
899   BitsRecTy *T = dynamic_cast<BitsRecTy*>(getType());
900   if (T == 0) return 0;  // Cannot subscript a non-bits variable...
901   unsigned NumBits = T->getNumBits();
902
903   BitsInit *BI = new BitsInit(Bits.size());
904   for (unsigned i = 0, e = Bits.size(); i != e; ++i) {
905     if (Bits[i] >= NumBits) {
906       delete BI;
907       return 0;
908     }
909     BI->setBit(i, new VarBitInit(this, Bits[i]));
910   }
911   return BI;
912 }
913
914 Init *TypedInit::convertInitListSlice(const std::vector<unsigned> &Elements) {
915   ListRecTy *T = dynamic_cast<ListRecTy*>(getType());
916   if (T == 0) return 0;  // Cannot subscript a non-list variable...
917
918   if (Elements.size() == 1)
919     return new VarListElementInit(this, Elements[0]);
920
921   std::vector<Init*> ListInits;
922   ListInits.reserve(Elements.size());
923   for (unsigned i = 0, e = Elements.size(); i != e; ++i)
924     ListInits.push_back(new VarListElementInit(this, Elements[i]));
925   return new ListInit(ListInits);
926 }
927
928
929 Init *VarInit::resolveBitReference(Record &R, const RecordVal *IRV,
930                                    unsigned Bit) {
931   if (R.isTemplateArg(getName())) return 0;
932   if (IRV && IRV->getName() != getName()) return 0;
933
934   RecordVal *RV = R.getValue(getName());
935   assert(RV && "Reference to a non-existant variable?");
936   assert(dynamic_cast<BitsInit*>(RV->getValue()));
937   BitsInit *BI = (BitsInit*)RV->getValue();
938
939   assert(Bit < BI->getNumBits() && "Bit reference out of range!");
940   Init *B = BI->getBit(Bit);
941
942   if (!dynamic_cast<UnsetInit*>(B))  // If the bit is not set...
943     return B;                        // Replace the VarBitInit with it.
944   return 0;
945 }
946
947 Init *VarInit::resolveListElementReference(Record &R, const RecordVal *IRV,
948                                            unsigned Elt) {
949   if (R.isTemplateArg(getName())) return 0;
950   if (IRV && IRV->getName() != getName()) return 0;
951
952   RecordVal *RV = R.getValue(getName());
953   assert(RV && "Reference to a non-existant variable?");
954   ListInit *LI = dynamic_cast<ListInit*>(RV->getValue());
955   if (!LI) {
956     VarInit *VI = dynamic_cast<VarInit*>(RV->getValue());
957     assert(VI && "Invalid list element!");
958     return new VarListElementInit(VI, Elt);
959   }
960   
961   if (Elt >= LI->getSize())
962     return 0;  // Out of range reference.
963   Init *E = LI->getElement(Elt);
964   if (!dynamic_cast<UnsetInit*>(E))  // If the element is set
965     return E;                        // Replace the VarListElementInit with it.
966   return 0;
967 }
968
969
970 RecTy *VarInit::getFieldType(const std::string &FieldName) const {
971   if (RecordRecTy *RTy = dynamic_cast<RecordRecTy*>(getType()))
972     if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName))
973       return RV->getType();
974   return 0;
975 }
976
977 Init *VarInit::getFieldInit(Record &R, const std::string &FieldName) const {
978   if (dynamic_cast<RecordRecTy*>(getType()))
979     if (const RecordVal *RV = R.getValue(VarName)) {
980       Init *TheInit = RV->getValue();
981       assert(TheInit != this && "Infinite loop detected!");
982       if (Init *I = TheInit->getFieldInit(R, FieldName))
983         return I;
984       else
985         return 0;
986     }
987   return 0;
988 }
989
990 /// resolveReferences - This method is used by classes that refer to other
991 /// variables which may not be defined at the time they expression is formed.
992 /// If a value is set for the variable later, this method will be called on
993 /// users of the value to allow the value to propagate out.
994 ///
995 Init *VarInit::resolveReferences(Record &R, const RecordVal *RV) {
996   if (RecordVal *Val = R.getValue(VarName))
997     if (RV == Val || (RV == 0 && !dynamic_cast<UnsetInit*>(Val->getValue())))
998       return Val->getValue();
999   return this;
1000 }
1001
1002 std::string VarBitInit::getAsString() const {
1003    return TI->getAsString() + "{" + utostr(Bit) + "}";
1004 }
1005
1006 Init *VarBitInit::resolveReferences(Record &R, const RecordVal *RV) {
1007   if (Init *I = getVariable()->resolveBitReference(R, RV, getBitNum()))
1008     return I;
1009   return this;
1010 }
1011
1012 std::string VarListElementInit::getAsString() const {
1013   return TI->getAsString() + "[" + utostr(Element) + "]";
1014 }
1015
1016 Init *VarListElementInit::resolveReferences(Record &R, const RecordVal *RV) {
1017   if (Init *I = getVariable()->resolveListElementReference(R, RV,
1018                                                            getElementNum()))
1019     return I;
1020   return this;
1021 }
1022
1023 Init *VarListElementInit::resolveBitReference(Record &R, const RecordVal *RV,
1024                                               unsigned Bit) {
1025   // FIXME: This should be implemented, to support references like:
1026   // bit B = AA[0]{1};
1027   return 0;
1028 }
1029
1030 Init *VarListElementInit::
1031 resolveListElementReference(Record &R, const RecordVal *RV, unsigned Elt) {
1032   // FIXME: This should be implemented, to support references like:
1033   // int B = AA[0][1];
1034   return 0;
1035 }
1036
1037 RecTy *DefInit::getFieldType(const std::string &FieldName) const {
1038   if (const RecordVal *RV = Def->getValue(FieldName))
1039     return RV->getType();
1040   return 0;
1041 }
1042
1043 Init *DefInit::getFieldInit(Record &R, const std::string &FieldName) const {
1044   return Def->getValue(FieldName)->getValue();
1045 }
1046
1047
1048 std::string DefInit::getAsString() const {
1049   return Def->getName();
1050 }
1051
1052 Init *FieldInit::resolveBitReference(Record &R, const RecordVal *RV,
1053                                      unsigned Bit) {
1054   if (Init *BitsVal = Rec->getFieldInit(R, FieldName))
1055     if (BitsInit *BI = dynamic_cast<BitsInit*>(BitsVal)) {
1056       assert(Bit < BI->getNumBits() && "Bit reference out of range!");
1057       Init *B = BI->getBit(Bit);
1058
1059       if (dynamic_cast<BitInit*>(B))  // If the bit is set...
1060         return B;                     // Replace the VarBitInit with it.
1061     }
1062   return 0;
1063 }
1064
1065 Init *FieldInit::resolveListElementReference(Record &R, const RecordVal *RV,
1066                                              unsigned Elt) {
1067   if (Init *ListVal = Rec->getFieldInit(R, FieldName))
1068     if (ListInit *LI = dynamic_cast<ListInit*>(ListVal)) {
1069       if (Elt >= LI->getSize()) return 0;
1070       Init *E = LI->getElement(Elt);
1071
1072       if (!dynamic_cast<UnsetInit*>(E))  // If the bit is set...
1073         return E;                  // Replace the VarListElementInit with it.
1074     }
1075   return 0;
1076 }
1077
1078 Init *FieldInit::resolveReferences(Record &R, const RecordVal *RV) {
1079   Init *NewRec = RV ? Rec->resolveReferences(R, RV) : Rec;
1080
1081   Init *BitsVal = NewRec->getFieldInit(R, FieldName);
1082   if (BitsVal) {
1083     Init *BVR = BitsVal->resolveReferences(R, RV);
1084     return BVR->isComplete() ? BVR : this;
1085   }
1086
1087   if (NewRec != Rec) {
1088     return new FieldInit(NewRec, FieldName);
1089   }
1090   return this;
1091 }
1092
1093 Init *DagInit::resolveReferences(Record &R, const RecordVal *RV) {
1094   std::vector<Init*> NewArgs;
1095   for (unsigned i = 0, e = Args.size(); i != e; ++i)
1096     NewArgs.push_back(Args[i]->resolveReferences(R, RV));
1097   
1098   Init *Op = Val->resolveReferences(R, RV);
1099   
1100   if (Args != NewArgs || Op != Val)
1101     return new DagInit(Op, "", NewArgs, ArgNames);
1102     
1103   return this;
1104 }
1105
1106
1107 std::string DagInit::getAsString() const {
1108   std::string Result = "(" + Val->getAsString();
1109   if (!ValName.empty())
1110     Result += ":" + ValName;
1111   if (Args.size()) {
1112     Result += " " + Args[0]->getAsString();
1113     if (!ArgNames[0].empty()) Result += ":$" + ArgNames[0];
1114     for (unsigned i = 1, e = Args.size(); i != e; ++i) {
1115       Result += ", " + Args[i]->getAsString();
1116       if (!ArgNames[i].empty()) Result += ":$" + ArgNames[i];
1117     }
1118   }
1119   return Result + ")";
1120 }
1121
1122
1123 //===----------------------------------------------------------------------===//
1124 //    Other implementations
1125 //===----------------------------------------------------------------------===//
1126
1127 RecordVal::RecordVal(const std::string &N, RecTy *T, unsigned P)
1128   : Name(N), Ty(T), Prefix(P) {
1129   Value = Ty->convertValue(new UnsetInit());
1130   assert(Value && "Cannot create unset value for current type!");
1131 }
1132
1133 void RecordVal::dump() const { cerr << *this; }
1134
1135 void RecordVal::print(std::ostream &OS, bool PrintSem) const {
1136   if (getPrefix()) OS << "field ";
1137   OS << *getType() << " " << getName();
1138
1139   if (getValue())
1140     OS << " = " << *getValue();
1141
1142   if (PrintSem) OS << ";\n";
1143 }
1144
1145 void Record::setName(const std::string &Name) {
1146   if (Records.getDef(getName()) == this) {
1147     Records.removeDef(getName());
1148     this->Name = Name;
1149     Records.addDef(this);
1150   } else {
1151     Records.removeClass(getName());
1152     this->Name = Name;
1153     Records.addClass(this);
1154   }
1155 }
1156
1157 /// resolveReferencesTo - If anything in this record refers to RV, replace the
1158 /// reference to RV with the RHS of RV.  If RV is null, we resolve all possible
1159 /// references.
1160 void Record::resolveReferencesTo(const RecordVal *RV) {
1161   for (unsigned i = 0, e = Values.size(); i != e; ++i) {
1162     if (Init *V = Values[i].getValue())
1163       Values[i].setValue(V->resolveReferences(*this, RV));
1164   }
1165 }
1166
1167
1168 void Record::dump() const { cerr << *this; }
1169
1170 std::ostream &llvm::operator<<(std::ostream &OS, const Record &R) {
1171   OS << R.getName();
1172
1173   const std::vector<std::string> &TArgs = R.getTemplateArgs();
1174   if (!TArgs.empty()) {
1175     OS << "<";
1176     for (unsigned i = 0, e = TArgs.size(); i != e; ++i) {
1177       if (i) OS << ", ";
1178       const RecordVal *RV = R.getValue(TArgs[i]);
1179       assert(RV && "Template argument record not found??");
1180       RV->print(OS, false);
1181     }
1182     OS << ">";
1183   }
1184
1185   OS << " {";
1186   const std::vector<Record*> &SC = R.getSuperClasses();
1187   if (!SC.empty()) {
1188     OS << "\t//";
1189     for (unsigned i = 0, e = SC.size(); i != e; ++i)
1190       OS << " " << SC[i]->getName();
1191   }
1192   OS << "\n";
1193
1194   const std::vector<RecordVal> &Vals = R.getValues();
1195   for (unsigned i = 0, e = Vals.size(); i != e; ++i)
1196     if (Vals[i].getPrefix() && !R.isTemplateArg(Vals[i].getName()))
1197       OS << Vals[i];
1198   for (unsigned i = 0, e = Vals.size(); i != e; ++i)
1199     if (!Vals[i].getPrefix() && !R.isTemplateArg(Vals[i].getName()))
1200       OS << Vals[i];
1201
1202   return OS << "}\n";
1203 }
1204
1205 /// getValueInit - Return the initializer for a value with the specified name,
1206 /// or throw an exception if the field does not exist.
1207 ///
1208 Init *Record::getValueInit(const std::string &FieldName) const {
1209   const RecordVal *R = getValue(FieldName);
1210   if (R == 0 || R->getValue() == 0)
1211     throw "Record `" + getName() + "' does not have a field named `" +
1212       FieldName + "'!\n";
1213   return R->getValue();
1214 }
1215
1216
1217 /// getValueAsString - This method looks up the specified field and returns its
1218 /// value as a string, throwing an exception if the field does not exist or if
1219 /// the value is not a string.
1220 ///
1221 std::string Record::getValueAsString(const std::string &FieldName) const {
1222   const RecordVal *R = getValue(FieldName);
1223   if (R == 0 || R->getValue() == 0)
1224     throw "Record `" + getName() + "' does not have a field named `" +
1225           FieldName + "'!\n";
1226
1227   if (const StringInit *SI = dynamic_cast<const StringInit*>(R->getValue()))
1228     return SI->getValue();
1229   throw "Record `" + getName() + "', field `" + FieldName +
1230         "' does not have a string initializer!";
1231 }
1232
1233 /// getValueAsBitsInit - This method looks up the specified field and returns
1234 /// its value as a BitsInit, throwing an exception if the field does not exist
1235 /// or if the value is not the right type.
1236 ///
1237 BitsInit *Record::getValueAsBitsInit(const std::string &FieldName) const {
1238   const RecordVal *R = getValue(FieldName);
1239   if (R == 0 || R->getValue() == 0)
1240     throw "Record `" + getName() + "' does not have a field named `" +
1241           FieldName + "'!\n";
1242
1243   if (BitsInit *BI = dynamic_cast<BitsInit*>(R->getValue()))
1244     return BI;
1245   throw "Record `" + getName() + "', field `" + FieldName +
1246         "' does not have a BitsInit initializer!";
1247 }
1248
1249 /// getValueAsListInit - This method looks up the specified field and returns
1250 /// its value as a ListInit, throwing an exception if the field does not exist
1251 /// or if the value is not the right type.
1252 ///
1253 ListInit *Record::getValueAsListInit(const std::string &FieldName) const {
1254   const RecordVal *R = getValue(FieldName);
1255   if (R == 0 || R->getValue() == 0)
1256     throw "Record `" + getName() + "' does not have a field named `" +
1257           FieldName + "'!\n";
1258
1259   if (ListInit *LI = dynamic_cast<ListInit*>(R->getValue()))
1260     return LI;
1261   throw "Record `" + getName() + "', field `" + FieldName +
1262         "' does not have a list initializer!";
1263 }
1264
1265 /// getValueAsListOfDefs - This method looks up the specified field and returns
1266 /// its value as a vector of records, throwing an exception if the field does
1267 /// not exist or if the value is not the right type.
1268 ///
1269 std::vector<Record*> 
1270 Record::getValueAsListOfDefs(const std::string &FieldName) const {
1271   ListInit *List = getValueAsListInit(FieldName);
1272   std::vector<Record*> Defs;
1273   for (unsigned i = 0; i < List->getSize(); i++) {
1274     if (DefInit *DI = dynamic_cast<DefInit*>(List->getElement(i))) {
1275       Defs.push_back(DI->getDef());
1276     } else {
1277       throw "Record `" + getName() + "', field `" + FieldName +
1278             "' list is not entirely DefInit!";
1279     }
1280   }
1281   return Defs;
1282 }
1283
1284 /// getValueAsInt - This method looks up the specified field and returns its
1285 /// value as an int64_t, throwing an exception if the field does not exist or if
1286 /// the value is not the right type.
1287 ///
1288 int64_t Record::getValueAsInt(const std::string &FieldName) const {
1289   const RecordVal *R = getValue(FieldName);
1290   if (R == 0 || R->getValue() == 0)
1291     throw "Record `" + getName() + "' does not have a field named `" +
1292           FieldName + "'!\n";
1293
1294   if (IntInit *II = dynamic_cast<IntInit*>(R->getValue()))
1295     return II->getValue();
1296   throw "Record `" + getName() + "', field `" + FieldName +
1297         "' does not have an int initializer!";
1298 }
1299
1300 /// getValueAsListOfInts - This method looks up the specified field and returns
1301 /// its value as a vector of integers, throwing an exception if the field does
1302 /// not exist or if the value is not the right type.
1303 ///
1304 std::vector<int64_t> 
1305 Record::getValueAsListOfInts(const std::string &FieldName) const {
1306   ListInit *List = getValueAsListInit(FieldName);
1307   std::vector<int64_t> Ints;
1308   for (unsigned i = 0; i < List->getSize(); i++) {
1309     if (IntInit *II = dynamic_cast<IntInit*>(List->getElement(i))) {
1310       Ints.push_back(II->getValue());
1311     } else {
1312       throw "Record `" + getName() + "', field `" + FieldName +
1313             "' does not have a list of ints initializer!";
1314     }
1315   }
1316   return Ints;
1317 }
1318
1319 /// getValueAsDef - This method looks up the specified field and returns its
1320 /// value as a Record, throwing an exception if the field does not exist or if
1321 /// the value is not the right type.
1322 ///
1323 Record *Record::getValueAsDef(const std::string &FieldName) const {
1324   const RecordVal *R = getValue(FieldName);
1325   if (R == 0 || R->getValue() == 0)
1326     throw "Record `" + getName() + "' does not have a field named `" +
1327       FieldName + "'!\n";
1328
1329   if (DefInit *DI = dynamic_cast<DefInit*>(R->getValue()))
1330     return DI->getDef();
1331   throw "Record `" + getName() + "', field `" + FieldName +
1332         "' does not have a def initializer!";
1333 }
1334
1335 /// getValueAsBit - This method looks up the specified field and returns its
1336 /// value as a bit, throwing an exception if the field does not exist or if
1337 /// the value is not the right type.
1338 ///
1339 bool Record::getValueAsBit(const std::string &FieldName) const {
1340   const RecordVal *R = getValue(FieldName);
1341   if (R == 0 || R->getValue() == 0)
1342     throw "Record `" + getName() + "' does not have a field named `" +
1343       FieldName + "'!\n";
1344
1345   if (BitInit *BI = dynamic_cast<BitInit*>(R->getValue()))
1346     return BI->getValue();
1347   throw "Record `" + getName() + "', field `" + FieldName +
1348         "' does not have a bit initializer!";
1349 }
1350
1351 /// getValueAsDag - This method looks up the specified field and returns its
1352 /// value as an Dag, throwing an exception if the field does not exist or if
1353 /// the value is not the right type.
1354 ///
1355 DagInit *Record::getValueAsDag(const std::string &FieldName) const {
1356   const RecordVal *R = getValue(FieldName);
1357   if (R == 0 || R->getValue() == 0)
1358     throw "Record `" + getName() + "' does not have a field named `" +
1359       FieldName + "'!\n";
1360
1361   if (DagInit *DI = dynamic_cast<DagInit*>(R->getValue()))
1362     return DI;
1363   throw "Record `" + getName() + "', field `" + FieldName +
1364         "' does not have a dag initializer!";
1365 }
1366
1367 std::string Record::getValueAsCode(const std::string &FieldName) const {
1368   const RecordVal *R = getValue(FieldName);
1369   if (R == 0 || R->getValue() == 0)
1370     throw "Record `" + getName() + "' does not have a field named `" +
1371       FieldName + "'!\n";
1372   
1373   if (const CodeInit *CI = dynamic_cast<const CodeInit*>(R->getValue()))
1374     return CI->getValue();
1375   throw "Record `" + getName() + "', field `" + FieldName +
1376     "' does not have a code initializer!";
1377 }
1378
1379
1380 void MultiClass::dump() const {
1381   cerr << "Record:\n";
1382   Rec.dump();
1383   
1384   cerr << "Defs:\n";
1385   for (RecordVector::const_iterator r = DefPrototypes.begin(),
1386          rend = DefPrototypes.end();
1387        r != rend;
1388        ++r) {
1389     (*r)->dump();
1390   }
1391 }
1392
1393
1394 void RecordKeeper::dump() const { cerr << *this; }
1395
1396 std::ostream &llvm::operator<<(std::ostream &OS, const RecordKeeper &RK) {
1397   OS << "------------- Classes -----------------\n";
1398   const std::map<std::string, Record*> &Classes = RK.getClasses();
1399   for (std::map<std::string, Record*>::const_iterator I = Classes.begin(),
1400          E = Classes.end(); I != E; ++I)
1401     OS << "class " << *I->second;
1402
1403   OS << "------------- Defs -----------------\n";
1404   const std::map<std::string, Record*> &Defs = RK.getDefs();
1405   for (std::map<std::string, Record*>::const_iterator I = Defs.begin(),
1406          E = Defs.end(); I != E; ++I)
1407     OS << "def " << *I->second;
1408   return OS;
1409 }
1410
1411
1412 /// getAllDerivedDefinitions - This method returns all concrete definitions
1413 /// that derive from the specified class name.  If a class with the specified
1414 /// name does not exist, an error is printed and true is returned.
1415 std::vector<Record*>
1416 RecordKeeper::getAllDerivedDefinitions(const std::string &ClassName) const {
1417   Record *Class = Records.getClass(ClassName);
1418   if (!Class)
1419     throw "ERROR: Couldn't find the `" + ClassName + "' class!\n";
1420
1421   std::vector<Record*> Defs;
1422   for (std::map<std::string, Record*>::const_iterator I = getDefs().begin(),
1423          E = getDefs().end(); I != E; ++I)
1424     if (I->second->isSubClassOf(Class))
1425       Defs.push_back(I->second);
1426
1427   return Defs;
1428 }
1429