1 //===- Record.cpp - Record implementation ---------------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // Implement the tablegen record classes.
12 //===----------------------------------------------------------------------===//
15 #include "llvm/Support/DataTypes.h"
16 #include "llvm/Support/Format.h"
17 #include "llvm/ADT/StringExtras.h"
21 //===----------------------------------------------------------------------===//
22 // Type implementations
23 //===----------------------------------------------------------------------===//
25 void RecTy::dump() const { print(errs()); }
27 Init
*BitRecTy::convertValue(BitsInit
*BI
) {
28 if (BI
->getNumBits() != 1) return 0; // Only accept if just one bit!
32 bool BitRecTy::baseClassOf(const BitsRecTy
*RHS
) const {
33 return RHS
->getNumBits() == 1;
36 Init
*BitRecTy::convertValue(IntInit
*II
) {
37 int64_t Val
= II
->getValue();
38 if (Val
!= 0 && Val
!= 1) return 0; // Only accept 0 or 1 for a bit!
40 return new BitInit(Val
!= 0);
43 Init
*BitRecTy::convertValue(TypedInit
*VI
) {
44 if (dynamic_cast<BitRecTy
*>(VI
->getType()))
45 return VI
; // Accept variable if it is already of bit type!
49 std::string
BitsRecTy::getAsString() const {
50 return "bits<" + utostr(Size
) + ">";
53 Init
*BitsRecTy::convertValue(UnsetInit
*UI
) {
54 BitsInit
*Ret
= new BitsInit(Size
);
56 for (unsigned i
= 0; i
!= Size
; ++i
)
57 Ret
->setBit(i
, new UnsetInit());
61 Init
*BitsRecTy::convertValue(BitInit
*UI
) {
62 if (Size
!= 1) return 0; // Can only convert single bit...
63 BitsInit
*Ret
= new BitsInit(1);
68 // convertValue from Int initializer to bits type: Split the integer up into the
69 // appropriate bits...
71 Init
*BitsRecTy::convertValue(IntInit
*II
) {
72 int64_t Value
= II
->getValue();
73 // Make sure this bitfield is large enough to hold the integer value...
75 if (Value
& ~((1LL << Size
)-1))
78 if ((Value
>> Size
) != -1 || ((Value
& (1LL << (Size
-1))) == 0))
82 BitsInit
*Ret
= new BitsInit(Size
);
83 for (unsigned i
= 0; i
!= Size
; ++i
)
84 Ret
->setBit(i
, new BitInit(Value
& (1LL << i
)));
89 Init
*BitsRecTy::convertValue(BitsInit
*BI
) {
90 // If the number of bits is right, return it. Otherwise we need to expand or
92 if (BI
->getNumBits() == Size
) return BI
;
96 Init
*BitsRecTy::convertValue(TypedInit
*VI
) {
97 if (BitsRecTy
*BRT
= dynamic_cast<BitsRecTy
*>(VI
->getType()))
98 if (BRT
->Size
== Size
) {
99 BitsInit
*Ret
= new BitsInit(Size
);
100 for (unsigned i
= 0; i
!= Size
; ++i
)
101 Ret
->setBit(i
, new VarBitInit(VI
, i
));
104 if (Size
== 1 && dynamic_cast<BitRecTy
*>(VI
->getType())) {
105 BitsInit
*Ret
= new BitsInit(1);
113 Init
*IntRecTy::convertValue(BitInit
*BI
) {
114 return new IntInit(BI
->getValue());
117 Init
*IntRecTy::convertValue(BitsInit
*BI
) {
119 for (unsigned i
= 0, e
= BI
->getNumBits(); i
!= e
; ++i
)
120 if (BitInit
*Bit
= dynamic_cast<BitInit
*>(BI
->getBit(i
))) {
121 Result
|= Bit
->getValue() << i
;
125 return new IntInit(Result
);
128 Init
*IntRecTy::convertValue(TypedInit
*TI
) {
129 if (TI
->getType()->typeIsConvertibleTo(this))
130 return TI
; // Accept variable if already of the right type!
134 Init
*StringRecTy::convertValue(UnOpInit
*BO
) {
135 if (BO
->getOpcode() == UnOpInit::CAST
) {
136 Init
*L
= BO
->getOperand()->convertInitializerTo(this);
137 if (L
== 0) return 0;
138 if (L
!= BO
->getOperand())
139 return new UnOpInit(UnOpInit::CAST
, L
, new StringRecTy
);
143 return convertValue((TypedInit
*)BO
);
146 Init
*StringRecTy::convertValue(BinOpInit
*BO
) {
147 if (BO
->getOpcode() == BinOpInit::STRCONCAT
) {
148 Init
*L
= BO
->getLHS()->convertInitializerTo(this);
149 Init
*R
= BO
->getRHS()->convertInitializerTo(this);
150 if (L
== 0 || R
== 0) return 0;
151 if (L
!= BO
->getLHS() || R
!= BO
->getRHS())
152 return new BinOpInit(BinOpInit::STRCONCAT
, L
, R
, new StringRecTy
);
155 if (BO
->getOpcode() == BinOpInit::NAMECONCAT
) {
156 if (BO
->getType()->getAsString() == getAsString()) {
157 Init
*L
= BO
->getLHS()->convertInitializerTo(this);
158 Init
*R
= BO
->getRHS()->convertInitializerTo(this);
159 if (L
== 0 || R
== 0) return 0;
160 if (L
!= BO
->getLHS() || R
!= BO
->getRHS())
161 return new BinOpInit(BinOpInit::NAMECONCAT
, L
, R
, new StringRecTy
);
166 return convertValue((TypedInit
*)BO
);
170 Init
*StringRecTy::convertValue(TypedInit
*TI
) {
171 if (dynamic_cast<StringRecTy
*>(TI
->getType()))
172 return TI
; // Accept variable if already of the right type!
176 std::string
ListRecTy::getAsString() const {
177 return "list<" + Ty
->getAsString() + ">";
180 Init
*ListRecTy::convertValue(ListInit
*LI
) {
181 std::vector
<Init
*> Elements
;
183 // Verify that all of the elements of the list are subclasses of the
184 // appropriate class!
185 for (unsigned i
= 0, e
= LI
->getSize(); i
!= e
; ++i
)
186 if (Init
*CI
= LI
->getElement(i
)->convertInitializerTo(Ty
))
187 Elements
.push_back(CI
);
191 ListRecTy
*LType
= dynamic_cast<ListRecTy
*>(LI
->getType());
196 return new ListInit(Elements
, new ListRecTy(Ty
));
199 Init
*ListRecTy::convertValue(TypedInit
*TI
) {
200 // Ensure that TI is compatible with our class.
201 if (ListRecTy
*LRT
= dynamic_cast<ListRecTy
*>(TI
->getType()))
202 if (LRT
->getElementType()->typeIsConvertibleTo(getElementType()))
207 Init
*CodeRecTy::convertValue(TypedInit
*TI
) {
208 if (TI
->getType()->typeIsConvertibleTo(this))
213 Init
*DagRecTy::convertValue(TypedInit
*TI
) {
214 if (TI
->getType()->typeIsConvertibleTo(this))
219 Init
*DagRecTy::convertValue(UnOpInit
*BO
) {
220 if (BO
->getOpcode() == UnOpInit::CAST
) {
221 Init
*L
= BO
->getOperand()->convertInitializerTo(this);
222 if (L
== 0) return 0;
223 if (L
!= BO
->getOperand())
224 return new UnOpInit(UnOpInit::CAST
, L
, new DagRecTy
);
230 Init
*DagRecTy::convertValue(BinOpInit
*BO
) {
231 if (BO
->getOpcode() == BinOpInit::CONCAT
) {
232 Init
*L
= BO
->getLHS()->convertInitializerTo(this);
233 Init
*R
= BO
->getRHS()->convertInitializerTo(this);
234 if (L
== 0 || R
== 0) return 0;
235 if (L
!= BO
->getLHS() || R
!= BO
->getRHS())
236 return new BinOpInit(BinOpInit::CONCAT
, L
, R
, new DagRecTy
);
239 if (BO
->getOpcode() == BinOpInit::NAMECONCAT
) {
240 if (BO
->getType()->getAsString() == getAsString()) {
241 Init
*L
= BO
->getLHS()->convertInitializerTo(this);
242 Init
*R
= BO
->getRHS()->convertInitializerTo(this);
243 if (L
== 0 || R
== 0) return 0;
244 if (L
!= BO
->getLHS() || R
!= BO
->getRHS())
245 return new BinOpInit(BinOpInit::CONCAT
, L
, R
, new DagRecTy
);
252 std::string
RecordRecTy::getAsString() const {
253 return Rec
->getName();
256 Init
*RecordRecTy::convertValue(DefInit
*DI
) {
257 // Ensure that DI is a subclass of Rec.
258 if (!DI
->getDef()->isSubClassOf(Rec
))
263 Init
*RecordRecTy::convertValue(TypedInit
*TI
) {
264 // Ensure that TI is compatible with Rec.
265 if (RecordRecTy
*RRT
= dynamic_cast<RecordRecTy
*>(TI
->getType()))
266 if (RRT
->getRecord()->isSubClassOf(getRecord()) ||
267 RRT
->getRecord() == getRecord())
272 bool RecordRecTy::baseClassOf(const RecordRecTy
*RHS
) const {
273 return Rec
== RHS
->getRecord() || RHS
->getRecord()->isSubClassOf(Rec
);
277 /// resolveTypes - Find a common type that T1 and T2 convert to.
278 /// Return 0 if no such type exists.
280 RecTy
*llvm::resolveTypes(RecTy
*T1
, RecTy
*T2
) {
281 if (!T1
->typeIsConvertibleTo(T2
)) {
282 if (!T2
->typeIsConvertibleTo(T1
)) {
283 // If one is a Record type, check superclasses
284 RecordRecTy
*RecTy1
= dynamic_cast<RecordRecTy
*>(T1
);
286 // See if T2 inherits from a type T1 also inherits from
287 const std::vector
<Record
*> &T1SuperClasses
= RecTy1
->getRecord()->getSuperClasses();
288 for(std::vector
<Record
*>::const_iterator i
= T1SuperClasses
.begin(),
289 iend
= T1SuperClasses
.end();
292 RecordRecTy
*SuperRecTy1
= new RecordRecTy(*i
);
293 RecTy
*NewType1
= resolveTypes(SuperRecTy1
, T2
);
295 if (NewType1
!= SuperRecTy1
) {
302 RecordRecTy
*RecTy2
= dynamic_cast<RecordRecTy
*>(T2
);
304 // See if T1 inherits from a type T2 also inherits from
305 const std::vector
<Record
*> &T2SuperClasses
= RecTy2
->getRecord()->getSuperClasses();
306 for(std::vector
<Record
*>::const_iterator i
= T2SuperClasses
.begin(),
307 iend
= T2SuperClasses
.end();
310 RecordRecTy
*SuperRecTy2
= new RecordRecTy(*i
);
311 RecTy
*NewType2
= resolveTypes(T1
, SuperRecTy2
);
313 if (NewType2
!= SuperRecTy2
) {
328 //===----------------------------------------------------------------------===//
329 // Initializer implementations
330 //===----------------------------------------------------------------------===//
332 void Init::dump() const { return print(errs()); }
334 Init
*BitsInit::convertInitializerBitRange(const std::vector
<unsigned> &Bits
) {
335 BitsInit
*BI
= new BitsInit(Bits
.size());
336 for (unsigned i
= 0, e
= Bits
.size(); i
!= e
; ++i
) {
337 if (Bits
[i
] >= getNumBits()) {
341 BI
->setBit(i
, getBit(Bits
[i
]));
346 std::string
BitsInit::getAsString() const {
347 //if (!printInHex(OS)) return;
348 //if (!printAsVariable(OS)) return;
349 //if (!printAsUnset(OS)) return;
351 std::string Result
= "{ ";
352 for (unsigned i
= 0, e
= getNumBits(); i
!= e
; ++i
) {
353 if (i
) Result
+= ", ";
354 if (Init
*Bit
= getBit(e
-i
-1))
355 Result
+= Bit
->getAsString();
359 return Result
+ " }";
362 bool BitsInit::printInHex(raw_ostream
&OS
) const {
363 // First, attempt to convert the value into an integer value...
365 for (unsigned i
= 0, e
= getNumBits(); i
!= e
; ++i
)
366 if (BitInit
*Bit
= dynamic_cast<BitInit
*>(getBit(i
))) {
367 Result
|= Bit
->getValue() << i
;
372 OS
<< format("0x%x", Result
);
376 bool BitsInit::printAsVariable(raw_ostream
&OS
) const {
377 // Get the variable that we may be set equal to...
378 assert(getNumBits() != 0);
379 VarBitInit
*FirstBit
= dynamic_cast<VarBitInit
*>(getBit(0));
380 if (FirstBit
== 0) return true;
381 TypedInit
*Var
= FirstBit
->getVariable();
383 // Check to make sure the types are compatible.
384 BitsRecTy
*Ty
= dynamic_cast<BitsRecTy
*>(FirstBit
->getVariable()->getType());
385 if (Ty
== 0) return true;
386 if (Ty
->getNumBits() != getNumBits()) return true; // Incompatible types!
388 // Check to make sure all bits are referring to the right bits in the variable
389 for (unsigned i
= 0, e
= getNumBits(); i
!= e
; ++i
) {
390 VarBitInit
*Bit
= dynamic_cast<VarBitInit
*>(getBit(i
));
391 if (Bit
== 0 || Bit
->getVariable() != Var
|| Bit
->getBitNum() != i
)
399 bool BitsInit::printAsUnset(raw_ostream
&OS
) const {
400 for (unsigned i
= 0, e
= getNumBits(); i
!= e
; ++i
)
401 if (!dynamic_cast<UnsetInit
*>(getBit(i
)))
407 // resolveReferences - If there are any field references that refer to fields
408 // that have been filled in, we can propagate the values now.
410 Init
*BitsInit::resolveReferences(Record
&R
, const RecordVal
*RV
) {
411 bool Changed
= false;
412 BitsInit
*New
= new BitsInit(getNumBits());
414 for (unsigned i
= 0, e
= Bits
.size(); i
!= e
; ++i
) {
416 Init
*CurBit
= getBit(i
);
420 CurBit
= CurBit
->resolveReferences(R
, RV
);
421 Changed
|= B
!= CurBit
;
422 } while (B
!= CurBit
);
423 New
->setBit(i
, CurBit
);
432 std::string
IntInit::getAsString() const {
433 return itostr(Value
);
436 Init
*IntInit::convertInitializerBitRange(const std::vector
<unsigned> &Bits
) {
437 BitsInit
*BI
= new BitsInit(Bits
.size());
439 for (unsigned i
= 0, e
= Bits
.size(); i
!= e
; ++i
) {
444 BI
->setBit(i
, new BitInit(Value
& (INT64_C(1) << Bits
[i
])));
449 Init
*ListInit::convertInitListSlice(const std::vector
<unsigned> &Elements
) {
450 std::vector
<Init
*> Vals
;
451 for (unsigned i
= 0, e
= Elements
.size(); i
!= e
; ++i
) {
452 if (Elements
[i
] >= getSize())
454 Vals
.push_back(getElement(Elements
[i
]));
456 return new ListInit(Vals
, getType());
459 Record
*ListInit::getElementAsRecord(unsigned i
) const {
460 assert(i
< Values
.size() && "List element index out of range!");
461 DefInit
*DI
= dynamic_cast<DefInit
*>(Values
[i
]);
462 if (DI
== 0) throw "Expected record in list!";
466 Init
*ListInit::resolveReferences(Record
&R
, const RecordVal
*RV
) {
467 std::vector
<Init
*> Resolved
;
468 Resolved
.reserve(getSize());
469 bool Changed
= false;
471 for (unsigned i
= 0, e
= getSize(); i
!= e
; ++i
) {
473 Init
*CurElt
= getElement(i
);
477 CurElt
= CurElt
->resolveReferences(R
, RV
);
478 Changed
|= E
!= CurElt
;
479 } while (E
!= CurElt
);
480 Resolved
.push_back(E
);
484 return new ListInit(Resolved
, getType());
488 Init
*ListInit::resolveListElementReference(Record
&R
, const RecordVal
*IRV
,
490 if (Elt
>= getSize())
491 return 0; // Out of range reference.
492 Init
*E
= getElement(Elt
);
493 if (!dynamic_cast<UnsetInit
*>(E
)) // If the element is set
494 return E
; // Replace the VarListElementInit with it.
498 std::string
ListInit::getAsString() const {
499 std::string Result
= "[";
500 for (unsigned i
= 0, e
= Values
.size(); i
!= e
; ++i
) {
501 if (i
) Result
+= ", ";
502 Result
+= Values
[i
]->getAsString();
507 Init
*OpInit::resolveBitReference(Record
&R
, const RecordVal
*IRV
,
509 Init
*Folded
= Fold(&R
, 0);
511 if (Folded
!= this) {
512 TypedInit
*Typed
= dynamic_cast<TypedInit
*>(Folded
);
514 return Typed
->resolveBitReference(R
, IRV
, Bit
);
521 Init
*OpInit::resolveListElementReference(Record
&R
, const RecordVal
*IRV
,
523 Init
*Folded
= Fold(&R
, 0);
525 if (Folded
!= this) {
526 TypedInit
*Typed
= dynamic_cast<TypedInit
*>(Folded
);
528 return Typed
->resolveListElementReference(R
, IRV
, Elt
);
535 Init
*UnOpInit::Fold(Record
*CurRec
, MultiClass
*CurMultiClass
) {
536 switch (getOpcode()) {
537 default: assert(0 && "Unknown unop");
539 if (getType()->getAsString() == "string") {
540 StringInit
*LHSs
= dynamic_cast<StringInit
*>(LHS
);
545 DefInit
*LHSd
= dynamic_cast<DefInit
*>(LHS
);
547 return new StringInit(LHSd
->getDef()->getName());
551 StringInit
*LHSs
= dynamic_cast<StringInit
*>(LHS
);
553 std::string Name
= LHSs
->getValue();
555 // From TGParser::ParseIDValue
557 if (const RecordVal
*RV
= CurRec
->getValue(Name
)) {
558 if (RV
->getType() != getType()) {
559 throw "type mismatch in nameconcat";
561 return new VarInit(Name
, RV
->getType());
564 std::string TemplateArgName
= CurRec
->getName()+":"+Name
;
565 if (CurRec
->isTemplateArg(TemplateArgName
)) {
566 const RecordVal
*RV
= CurRec
->getValue(TemplateArgName
);
567 assert(RV
&& "Template arg doesn't exist??");
569 if (RV
->getType() != getType()) {
570 throw "type mismatch in nameconcat";
573 return new VarInit(TemplateArgName
, RV
->getType());
578 std::string MCName
= CurMultiClass
->Rec
.getName()+"::"+Name
;
579 if (CurMultiClass
->Rec
.isTemplateArg(MCName
)) {
580 const RecordVal
*RV
= CurMultiClass
->Rec
.getValue(MCName
);
581 assert(RV
&& "Template arg doesn't exist??");
583 if (RV
->getType() != getType()) {
584 throw "type mismatch in nameconcat";
587 return new VarInit(MCName
, RV
->getType());
591 if (Record
*D
= Records
.getDef(Name
))
592 return new DefInit(D
);
594 errs() << "Variable not defined: '" + Name
+ "'\n";
595 assert(0 && "Variable not found");
602 ListInit
*LHSl
= dynamic_cast<ListInit
*>(LHS
);
604 if (LHSl
->getSize() == 0) {
605 assert(0 && "Empty list in car");
608 return LHSl
->getElement(0);
613 ListInit
*LHSl
= dynamic_cast<ListInit
*>(LHS
);
615 if (LHSl
->getSize() == 0) {
616 assert(0 && "Empty list in cdr");
619 ListInit
*Result
= new ListInit(LHSl
->begin()+1, LHSl
->end(), LHSl
->getType());
625 ListInit
*LHSl
= dynamic_cast<ListInit
*>(LHS
);
627 if (LHSl
->getSize() == 0) {
628 return new IntInit(1);
631 return new IntInit(0);
634 StringInit
*LHSs
= dynamic_cast<StringInit
*>(LHS
);
636 if (LHSs
->getValue().empty()) {
637 return new IntInit(1);
640 return new IntInit(0);
650 Init
*UnOpInit::resolveReferences(Record
&R
, const RecordVal
*RV
) {
651 Init
*lhs
= LHS
->resolveReferences(R
, RV
);
654 return (new UnOpInit(getOpcode(), lhs
, getType()))->Fold(&R
, 0);
658 std::string
UnOpInit::getAsString() const {
661 case CAST
: Result
= "!cast<" + getType()->getAsString() + ">"; break;
662 case CAR
: Result
= "!car"; break;
663 case CDR
: Result
= "!cdr"; break;
664 case LNULL
: Result
= "!null"; break;
666 return Result
+ "(" + LHS
->getAsString() + ")";
669 RecTy
*UnOpInit::getFieldType(const std::string
&FieldName
) const {
670 switch (getOpcode()) {
671 default: assert(0 && "Unknown unop");
673 RecordRecTy
*RecordType
= dynamic_cast<RecordRecTy
*>(getType());
675 RecordVal
*Field
= RecordType
->getRecord()->getValue(FieldName
);
677 return Field
->getType();
686 Init
*BinOpInit::Fold(Record
*CurRec
, MultiClass
*CurMultiClass
) {
687 switch (getOpcode()) {
688 default: assert(0 && "Unknown binop");
690 DagInit
*LHSs
= dynamic_cast<DagInit
*>(LHS
);
691 DagInit
*RHSs
= dynamic_cast<DagInit
*>(RHS
);
693 DefInit
*LOp
= dynamic_cast<DefInit
*>(LHSs
->getOperator());
694 DefInit
*ROp
= dynamic_cast<DefInit
*>(RHSs
->getOperator());
695 if (LOp
->getDef() != ROp
->getDef()) {
697 LOp
->getDef()->getName() == "outs" ||
698 LOp
->getDef()->getName() != "ins" ||
699 LOp
->getDef()->getName() != "defs";
701 ROp
->getDef()->getName() == "outs" ||
702 ROp
->getDef()->getName() != "ins" ||
703 ROp
->getDef()->getName() != "defs";
704 if (!LIsOps
|| !RIsOps
)
705 throw "Concated Dag operators do not match!";
707 std::vector
<Init
*> Args
;
708 std::vector
<std::string
> ArgNames
;
709 for (unsigned i
= 0, e
= LHSs
->getNumArgs(); i
!= e
; ++i
) {
710 Args
.push_back(LHSs
->getArg(i
));
711 ArgNames
.push_back(LHSs
->getArgName(i
));
713 for (unsigned i
= 0, e
= RHSs
->getNumArgs(); i
!= e
; ++i
) {
714 Args
.push_back(RHSs
->getArg(i
));
715 ArgNames
.push_back(RHSs
->getArgName(i
));
717 return new DagInit(LHSs
->getOperator(), "", Args
, ArgNames
);
722 StringInit
*LHSs
= dynamic_cast<StringInit
*>(LHS
);
723 StringInit
*RHSs
= dynamic_cast<StringInit
*>(RHS
);
725 return new StringInit(LHSs
->getValue() + RHSs
->getValue());
729 StringInit
*LHSs
= dynamic_cast<StringInit
*>(LHS
);
730 StringInit
*RHSs
= dynamic_cast<StringInit
*>(RHS
);
732 std::string
Name(LHSs
->getValue() + RHSs
->getValue());
734 // From TGParser::ParseIDValue
736 if (const RecordVal
*RV
= CurRec
->getValue(Name
)) {
737 if (RV
->getType() != getType()) {
738 throw "type mismatch in nameconcat";
740 return new VarInit(Name
, RV
->getType());
743 std::string TemplateArgName
= CurRec
->getName()+":"+Name
;
744 if (CurRec
->isTemplateArg(TemplateArgName
)) {
745 const RecordVal
*RV
= CurRec
->getValue(TemplateArgName
);
746 assert(RV
&& "Template arg doesn't exist??");
748 if (RV
->getType() != getType()) {
749 throw "type mismatch in nameconcat";
752 return new VarInit(TemplateArgName
, RV
->getType());
757 std::string MCName
= CurMultiClass
->Rec
.getName()+"::"+Name
;
758 if (CurMultiClass
->Rec
.isTemplateArg(MCName
)) {
759 const RecordVal
*RV
= CurMultiClass
->Rec
.getValue(MCName
);
760 assert(RV
&& "Template arg doesn't exist??");
762 if (RV
->getType() != getType()) {
763 throw "type mismatch in nameconcat";
766 return new VarInit(MCName
, RV
->getType());
770 if (Record
*D
= Records
.getDef(Name
))
771 return new DefInit(D
);
773 errs() << "Variable not defined in !nameconcat: '" + Name
+ "'\n";
774 assert(0 && "Variable not found in !nameconcat");
782 IntInit
*LHSi
= dynamic_cast<IntInit
*>(LHS
);
783 IntInit
*RHSi
= dynamic_cast<IntInit
*>(RHS
);
785 int64_t LHSv
= LHSi
->getValue(), RHSv
= RHSi
->getValue();
787 switch (getOpcode()) {
788 default: assert(0 && "Bad opcode!");
789 case SHL
: Result
= LHSv
<< RHSv
; break;
790 case SRA
: Result
= LHSv
>> RHSv
; break;
791 case SRL
: Result
= (uint64_t)LHSv
>> (uint64_t)RHSv
; break;
793 return new IntInit(Result
);
801 Init
*BinOpInit::resolveReferences(Record
&R
, const RecordVal
*RV
) {
802 Init
*lhs
= LHS
->resolveReferences(R
, RV
);
803 Init
*rhs
= RHS
->resolveReferences(R
, RV
);
805 if (LHS
!= lhs
|| RHS
!= rhs
)
806 return (new BinOpInit(getOpcode(), lhs
, rhs
, getType()))->Fold(&R
, 0);
810 std::string
BinOpInit::getAsString() const {
813 case CONCAT
: Result
= "!con"; break;
814 case SHL
: Result
= "!shl"; break;
815 case SRA
: Result
= "!sra"; break;
816 case SRL
: Result
= "!srl"; break;
817 case STRCONCAT
: Result
= "!strconcat"; break;
819 Result
= "!nameconcat<" + getType()->getAsString() + ">"; break;
821 return Result
+ "(" + LHS
->getAsString() + ", " + RHS
->getAsString() + ")";
824 static Init
*ForeachHelper(Init
*LHS
, Init
*MHS
, Init
*RHS
, RecTy
*Type
,
825 Record
*CurRec
, MultiClass
*CurMultiClass
);
827 static Init
*EvaluateOperation(OpInit
*RHSo
, Init
*LHS
, Init
*Arg
,
828 RecTy
*Type
, Record
*CurRec
,
829 MultiClass
*CurMultiClass
) {
830 std::vector
<Init
*> NewOperands
;
832 TypedInit
*TArg
= dynamic_cast<TypedInit
*>(Arg
);
834 // If this is a dag, recurse
835 if (TArg
&& TArg
->getType()->getAsString() == "dag") {
836 Init
*Result
= ForeachHelper(LHS
, Arg
, RHSo
, Type
,
837 CurRec
, CurMultiClass
);
846 for (int i
= 0; i
< RHSo
->getNumOperands(); ++i
) {
847 OpInit
*RHSoo
= dynamic_cast<OpInit
*>(RHSo
->getOperand(i
));
850 Init
*Result
= EvaluateOperation(RHSoo
, LHS
, Arg
,
851 Type
, CurRec
, CurMultiClass
);
853 NewOperands
.push_back(Result
);
856 NewOperands
.push_back(Arg
);
859 else if (LHS
->getAsString() == RHSo
->getOperand(i
)->getAsString()) {
860 NewOperands
.push_back(Arg
);
863 NewOperands
.push_back(RHSo
->getOperand(i
));
867 // Now run the operator and use its result as the new leaf
868 OpInit
*NewOp
= RHSo
->clone(NewOperands
);
869 Init
*NewVal
= NewOp
->Fold(CurRec
, CurMultiClass
);
870 if (NewVal
!= NewOp
) {
877 static Init
*ForeachHelper(Init
*LHS
, Init
*MHS
, Init
*RHS
, RecTy
*Type
,
878 Record
*CurRec
, MultiClass
*CurMultiClass
) {
879 DagInit
*MHSd
= dynamic_cast<DagInit
*>(MHS
);
880 ListInit
*MHSl
= dynamic_cast<ListInit
*>(MHS
);
882 DagRecTy
*DagType
= dynamic_cast<DagRecTy
*>(Type
);
883 ListRecTy
*ListType
= dynamic_cast<ListRecTy
*>(Type
);
885 OpInit
*RHSo
= dynamic_cast<OpInit
*>(RHS
);
888 errs() << "!foreach requires an operator\n";
889 assert(0 && "No operator for !foreach");
892 TypedInit
*LHSt
= dynamic_cast<TypedInit
*>(LHS
);
895 errs() << "!foreach requires typed variable\n";
896 assert(0 && "No typed variable for !foreach");
899 if ((MHSd
&& DagType
) || (MHSl
&& ListType
)) {
901 Init
*Val
= MHSd
->getOperator();
902 Init
*Result
= EvaluateOperation(RHSo
, LHS
, Val
,
903 Type
, CurRec
, CurMultiClass
);
908 std::vector
<std::pair
<Init
*, std::string
> > args
;
909 for (unsigned int i
= 0; i
< MHSd
->getNumArgs(); ++i
) {
912 Arg
= MHSd
->getArg(i
);
913 ArgName
= MHSd
->getArgName(i
);
916 Init
*Result
= EvaluateOperation(RHSo
, LHS
, Arg
, Type
,
917 CurRec
, CurMultiClass
);
922 // TODO: Process arg names
923 args
.push_back(std::make_pair(Arg
, ArgName
));
926 return new DagInit(Val
, "", args
);
929 std::vector
<Init
*> NewOperands
;
930 std::vector
<Init
*> NewList(MHSl
->begin(), MHSl
->end());
932 for (ListInit::iterator li
= NewList
.begin(),
933 liend
= NewList
.end();
938 for(int i
= 0; i
< RHSo
->getNumOperands(); ++i
) {
939 // First, replace the foreach variable with the list item
940 if (LHS
->getAsString() == RHSo
->getOperand(i
)->getAsString()) {
941 NewOperands
.push_back(Item
);
944 NewOperands
.push_back(RHSo
->getOperand(i
));
948 // Now run the operator and use its result as the new list item
949 OpInit
*NewOp
= RHSo
->clone(NewOperands
);
950 Init
*NewItem
= NewOp
->Fold(CurRec
, CurMultiClass
);
951 if (NewItem
!= NewOp
) {
956 return new ListInit(NewList
, MHSl
->getType());
962 Init
*TernOpInit::Fold(Record
*CurRec
, MultiClass
*CurMultiClass
) {
963 switch (getOpcode()) {
964 default: assert(0 && "Unknown binop");
966 DefInit
*LHSd
= dynamic_cast<DefInit
*>(LHS
);
967 VarInit
*LHSv
= dynamic_cast<VarInit
*>(LHS
);
968 StringInit
*LHSs
= dynamic_cast<StringInit
*>(LHS
);
970 DefInit
*MHSd
= dynamic_cast<DefInit
*>(MHS
);
971 VarInit
*MHSv
= dynamic_cast<VarInit
*>(MHS
);
972 StringInit
*MHSs
= dynamic_cast<StringInit
*>(MHS
);
974 DefInit
*RHSd
= dynamic_cast<DefInit
*>(RHS
);
975 VarInit
*RHSv
= dynamic_cast<VarInit
*>(RHS
);
976 StringInit
*RHSs
= dynamic_cast<StringInit
*>(RHS
);
978 if ((LHSd
&& MHSd
&& RHSd
)
979 || (LHSv
&& MHSv
&& RHSv
)
980 || (LHSs
&& MHSs
&& RHSs
)) {
982 Record
*Val
= RHSd
->getDef();
983 if (LHSd
->getAsString() == RHSd
->getAsString()) {
984 Val
= MHSd
->getDef();
986 return new DefInit(Val
);
989 std::string Val
= RHSv
->getName();
990 if (LHSv
->getAsString() == RHSv
->getAsString()) {
991 Val
= MHSv
->getName();
993 return new VarInit(Val
, getType());
996 std::string Val
= RHSs
->getValue();
998 std::string::size_type found
;
1000 found
= Val
.find(LHSs
->getValue());
1001 if (found
!= std::string::npos
) {
1002 Val
.replace(found
, LHSs
->getValue().size(), MHSs
->getValue());
1004 } while (found
!= std::string::npos
);
1006 return new StringInit(Val
);
1013 Init
*Result
= ForeachHelper(LHS
, MHS
, RHS
, getType(),
1014 CurRec
, CurMultiClass
);
1022 IntInit
*LHSi
= dynamic_cast<IntInit
*>(LHS
);
1024 if (LHSi
->getValue()) {
1038 Init
*TernOpInit::resolveReferences(Record
&R
, const RecordVal
*RV
) {
1039 Init
*lhs
= LHS
->resolveReferences(R
, RV
);
1041 if (Opc
== IF
&& lhs
!= LHS
) {
1042 IntInit
*Value
= dynamic_cast<IntInit
*>(lhs
);
1045 if (Value
->getValue()) {
1046 Init
*mhs
= MHS
->resolveReferences(R
, RV
);
1047 return (new TernOpInit(getOpcode(), lhs
, mhs
, RHS
, getType()))->Fold(&R
, 0);
1050 Init
*rhs
= RHS
->resolveReferences(R
, RV
);
1051 return (new TernOpInit(getOpcode(), lhs
, MHS
, rhs
, getType()))->Fold(&R
, 0);
1056 Init
*mhs
= MHS
->resolveReferences(R
, RV
);
1057 Init
*rhs
= RHS
->resolveReferences(R
, RV
);
1059 if (LHS
!= lhs
|| MHS
!= mhs
|| RHS
!= rhs
)
1060 return (new TernOpInit(getOpcode(), lhs
, mhs
, rhs
, getType()))->Fold(&R
, 0);
1064 std::string
TernOpInit::getAsString() const {
1067 case SUBST
: Result
= "!subst"; break;
1068 case FOREACH
: Result
= "!foreach"; break;
1069 case IF
: Result
= "!if"; break;
1071 return Result
+ "(" + LHS
->getAsString() + ", " + MHS
->getAsString() + ", "
1072 + RHS
->getAsString() + ")";
1075 Init
*TypedInit::convertInitializerBitRange(const std::vector
<unsigned> &Bits
) {
1076 BitsRecTy
*T
= dynamic_cast<BitsRecTy
*>(getType());
1077 if (T
== 0) return 0; // Cannot subscript a non-bits variable...
1078 unsigned NumBits
= T
->getNumBits();
1080 BitsInit
*BI
= new BitsInit(Bits
.size());
1081 for (unsigned i
= 0, e
= Bits
.size(); i
!= e
; ++i
) {
1082 if (Bits
[i
] >= NumBits
) {
1086 BI
->setBit(i
, new VarBitInit(this, Bits
[i
]));
1091 Init
*TypedInit::convertInitListSlice(const std::vector
<unsigned> &Elements
) {
1092 ListRecTy
*T
= dynamic_cast<ListRecTy
*>(getType());
1093 if (T
== 0) return 0; // Cannot subscript a non-list variable...
1095 if (Elements
.size() == 1)
1096 return new VarListElementInit(this, Elements
[0]);
1098 std::vector
<Init
*> ListInits
;
1099 ListInits
.reserve(Elements
.size());
1100 for (unsigned i
= 0, e
= Elements
.size(); i
!= e
; ++i
)
1101 ListInits
.push_back(new VarListElementInit(this, Elements
[i
]));
1102 return new ListInit(ListInits
, T
);
1106 Init
*VarInit::resolveBitReference(Record
&R
, const RecordVal
*IRV
,
1108 if (R
.isTemplateArg(getName())) return 0;
1109 if (IRV
&& IRV
->getName() != getName()) return 0;
1111 RecordVal
*RV
= R
.getValue(getName());
1112 assert(RV
&& "Reference to a non-existant variable?");
1113 assert(dynamic_cast<BitsInit
*>(RV
->getValue()));
1114 BitsInit
*BI
= (BitsInit
*)RV
->getValue();
1116 assert(Bit
< BI
->getNumBits() && "Bit reference out of range!");
1117 Init
*B
= BI
->getBit(Bit
);
1119 if (!dynamic_cast<UnsetInit
*>(B
)) // If the bit is not set...
1120 return B
; // Replace the VarBitInit with it.
1124 Init
*VarInit::resolveListElementReference(Record
&R
, const RecordVal
*IRV
,
1126 if (R
.isTemplateArg(getName())) return 0;
1127 if (IRV
&& IRV
->getName() != getName()) return 0;
1129 RecordVal
*RV
= R
.getValue(getName());
1130 assert(RV
&& "Reference to a non-existant variable?");
1131 ListInit
*LI
= dynamic_cast<ListInit
*>(RV
->getValue());
1133 VarInit
*VI
= dynamic_cast<VarInit
*>(RV
->getValue());
1134 assert(VI
&& "Invalid list element!");
1135 return new VarListElementInit(VI
, Elt
);
1138 if (Elt
>= LI
->getSize())
1139 return 0; // Out of range reference.
1140 Init
*E
= LI
->getElement(Elt
);
1141 if (!dynamic_cast<UnsetInit
*>(E
)) // If the element is set
1142 return E
; // Replace the VarListElementInit with it.
1147 RecTy
*VarInit::getFieldType(const std::string
&FieldName
) const {
1148 if (RecordRecTy
*RTy
= dynamic_cast<RecordRecTy
*>(getType()))
1149 if (const RecordVal
*RV
= RTy
->getRecord()->getValue(FieldName
))
1150 return RV
->getType();
1154 Init
*VarInit::getFieldInit(Record
&R
, const std::string
&FieldName
) const {
1155 if (dynamic_cast<RecordRecTy
*>(getType()))
1156 if (const RecordVal
*RV
= R
.getValue(VarName
)) {
1157 Init
*TheInit
= RV
->getValue();
1158 assert(TheInit
!= this && "Infinite loop detected!");
1159 if (Init
*I
= TheInit
->getFieldInit(R
, FieldName
))
1167 /// resolveReferences - This method is used by classes that refer to other
1168 /// variables which may not be defined at the time they expression is formed.
1169 /// If a value is set for the variable later, this method will be called on
1170 /// users of the value to allow the value to propagate out.
1172 Init
*VarInit::resolveReferences(Record
&R
, const RecordVal
*RV
) {
1173 if (RecordVal
*Val
= R
.getValue(VarName
))
1174 if (RV
== Val
|| (RV
== 0 && !dynamic_cast<UnsetInit
*>(Val
->getValue())))
1175 return Val
->getValue();
1179 std::string
VarBitInit::getAsString() const {
1180 return TI
->getAsString() + "{" + utostr(Bit
) + "}";
1183 Init
*VarBitInit::resolveReferences(Record
&R
, const RecordVal
*RV
) {
1184 if (Init
*I
= getVariable()->resolveBitReference(R
, RV
, getBitNum()))
1189 std::string
VarListElementInit::getAsString() const {
1190 return TI
->getAsString() + "[" + utostr(Element
) + "]";
1193 Init
*VarListElementInit::resolveReferences(Record
&R
, const RecordVal
*RV
) {
1194 if (Init
*I
= getVariable()->resolveListElementReference(R
, RV
,
1200 Init
*VarListElementInit::resolveBitReference(Record
&R
, const RecordVal
*RV
,
1202 // FIXME: This should be implemented, to support references like:
1203 // bit B = AA[0]{1};
1207 Init
*VarListElementInit::
1208 resolveListElementReference(Record
&R
, const RecordVal
*RV
, unsigned Elt
) {
1209 // FIXME: This should be implemented, to support references like:
1210 // int B = AA[0][1];
1214 RecTy
*DefInit::getFieldType(const std::string
&FieldName
) const {
1215 if (const RecordVal
*RV
= Def
->getValue(FieldName
))
1216 return RV
->getType();
1220 Init
*DefInit::getFieldInit(Record
&R
, const std::string
&FieldName
) const {
1221 return Def
->getValue(FieldName
)->getValue();
1225 std::string
DefInit::getAsString() const {
1226 return Def
->getName();
1229 Init
*FieldInit::resolveBitReference(Record
&R
, const RecordVal
*RV
,
1231 if (Init
*BitsVal
= Rec
->getFieldInit(R
, FieldName
))
1232 if (BitsInit
*BI
= dynamic_cast<BitsInit
*>(BitsVal
)) {
1233 assert(Bit
< BI
->getNumBits() && "Bit reference out of range!");
1234 Init
*B
= BI
->getBit(Bit
);
1236 if (dynamic_cast<BitInit
*>(B
)) // If the bit is set...
1237 return B
; // Replace the VarBitInit with it.
1242 Init
*FieldInit::resolveListElementReference(Record
&R
, const RecordVal
*RV
,
1244 if (Init
*ListVal
= Rec
->getFieldInit(R
, FieldName
))
1245 if (ListInit
*LI
= dynamic_cast<ListInit
*>(ListVal
)) {
1246 if (Elt
>= LI
->getSize()) return 0;
1247 Init
*E
= LI
->getElement(Elt
);
1249 if (!dynamic_cast<UnsetInit
*>(E
)) // If the bit is set...
1250 return E
; // Replace the VarListElementInit with it.
1255 Init
*FieldInit::resolveReferences(Record
&R
, const RecordVal
*RV
) {
1256 Init
*NewRec
= RV
? Rec
->resolveReferences(R
, RV
) : Rec
;
1258 Init
*BitsVal
= NewRec
->getFieldInit(R
, FieldName
);
1260 Init
*BVR
= BitsVal
->resolveReferences(R
, RV
);
1261 return BVR
->isComplete() ? BVR
: this;
1264 if (NewRec
!= Rec
) {
1265 return new FieldInit(NewRec
, FieldName
);
1270 Init
*DagInit::resolveReferences(Record
&R
, const RecordVal
*RV
) {
1271 std::vector
<Init
*> NewArgs
;
1272 for (unsigned i
= 0, e
= Args
.size(); i
!= e
; ++i
)
1273 NewArgs
.push_back(Args
[i
]->resolveReferences(R
, RV
));
1275 Init
*Op
= Val
->resolveReferences(R
, RV
);
1277 if (Args
!= NewArgs
|| Op
!= Val
)
1278 return new DagInit(Op
, "", NewArgs
, ArgNames
);
1284 std::string
DagInit::getAsString() const {
1285 std::string Result
= "(" + Val
->getAsString();
1286 if (!ValName
.empty())
1287 Result
+= ":" + ValName
;
1289 Result
+= " " + Args
[0]->getAsString();
1290 if (!ArgNames
[0].empty()) Result
+= ":$" + ArgNames
[0];
1291 for (unsigned i
= 1, e
= Args
.size(); i
!= e
; ++i
) {
1292 Result
+= ", " + Args
[i
]->getAsString();
1293 if (!ArgNames
[i
].empty()) Result
+= ":$" + ArgNames
[i
];
1296 return Result
+ ")";
1300 //===----------------------------------------------------------------------===//
1301 // Other implementations
1302 //===----------------------------------------------------------------------===//
1304 RecordVal::RecordVal(const std::string
&N
, RecTy
*T
, unsigned P
)
1305 : Name(N
), Ty(T
), Prefix(P
) {
1306 Value
= Ty
->convertValue(new UnsetInit());
1307 assert(Value
&& "Cannot create unset value for current type!");
1310 void RecordVal::dump() const { errs() << *this; }
1312 void RecordVal::print(raw_ostream
&OS
, bool PrintSem
) const {
1313 if (getPrefix()) OS
<< "field ";
1314 OS
<< *getType() << " " << getName();
1317 OS
<< " = " << *getValue();
1319 if (PrintSem
) OS
<< ";\n";
1322 unsigned Record::LastID
= 0;
1324 void Record::setName(const std::string
&Name
) {
1325 if (Records
.getDef(getName()) == this) {
1326 Records
.removeDef(getName());
1328 Records
.addDef(this);
1330 Records
.removeClass(getName());
1332 Records
.addClass(this);
1336 /// resolveReferencesTo - If anything in this record refers to RV, replace the
1337 /// reference to RV with the RHS of RV. If RV is null, we resolve all possible
1339 void Record::resolveReferencesTo(const RecordVal
*RV
) {
1340 for (unsigned i
= 0, e
= Values
.size(); i
!= e
; ++i
) {
1341 if (Init
*V
= Values
[i
].getValue())
1342 Values
[i
].setValue(V
->resolveReferences(*this, RV
));
1347 void Record::dump() const { errs() << *this; }
1349 raw_ostream
&llvm::operator<<(raw_ostream
&OS
, const Record
&R
) {
1352 const std::vector
<std::string
> &TArgs
= R
.getTemplateArgs();
1353 if (!TArgs
.empty()) {
1355 for (unsigned i
= 0, e
= TArgs
.size(); i
!= e
; ++i
) {
1357 const RecordVal
*RV
= R
.getValue(TArgs
[i
]);
1358 assert(RV
&& "Template argument record not found??");
1359 RV
->print(OS
, false);
1365 const std::vector
<Record
*> &SC
= R
.getSuperClasses();
1368 for (unsigned i
= 0, e
= SC
.size(); i
!= e
; ++i
)
1369 OS
<< " " << SC
[i
]->getName();
1373 const std::vector
<RecordVal
> &Vals
= R
.getValues();
1374 for (unsigned i
= 0, e
= Vals
.size(); i
!= e
; ++i
)
1375 if (Vals
[i
].getPrefix() && !R
.isTemplateArg(Vals
[i
].getName()))
1377 for (unsigned i
= 0, e
= Vals
.size(); i
!= e
; ++i
)
1378 if (!Vals
[i
].getPrefix() && !R
.isTemplateArg(Vals
[i
].getName()))
1384 /// getValueInit - Return the initializer for a value with the specified name,
1385 /// or throw an exception if the field does not exist.
1387 Init
*Record::getValueInit(const std::string
&FieldName
) const {
1388 const RecordVal
*R
= getValue(FieldName
);
1389 if (R
== 0 || R
->getValue() == 0)
1390 throw "Record `" + getName() + "' does not have a field named `" +
1392 return R
->getValue();
1396 /// getValueAsString - This method looks up the specified field and returns its
1397 /// value as a string, throwing an exception if the field does not exist or if
1398 /// the value is not a string.
1400 std::string
Record::getValueAsString(const std::string
&FieldName
) const {
1401 const RecordVal
*R
= getValue(FieldName
);
1402 if (R
== 0 || R
->getValue() == 0)
1403 throw "Record `" + getName() + "' does not have a field named `" +
1406 if (const StringInit
*SI
= dynamic_cast<const StringInit
*>(R
->getValue()))
1407 return SI
->getValue();
1408 throw "Record `" + getName() + "', field `" + FieldName
+
1409 "' does not have a string initializer!";
1412 /// getValueAsBitsInit - This method looks up the specified field and returns
1413 /// its value as a BitsInit, throwing an exception if the field does not exist
1414 /// or if the value is not the right type.
1416 BitsInit
*Record::getValueAsBitsInit(const std::string
&FieldName
) const {
1417 const RecordVal
*R
= getValue(FieldName
);
1418 if (R
== 0 || R
->getValue() == 0)
1419 throw "Record `" + getName() + "' does not have a field named `" +
1422 if (BitsInit
*BI
= dynamic_cast<BitsInit
*>(R
->getValue()))
1424 throw "Record `" + getName() + "', field `" + FieldName
+
1425 "' does not have a BitsInit initializer!";
1428 /// getValueAsListInit - This method looks up the specified field and returns
1429 /// its value as a ListInit, throwing an exception if the field does not exist
1430 /// or if the value is not the right type.
1432 ListInit
*Record::getValueAsListInit(const std::string
&FieldName
) const {
1433 const RecordVal
*R
= getValue(FieldName
);
1434 if (R
== 0 || R
->getValue() == 0)
1435 throw "Record `" + getName() + "' does not have a field named `" +
1438 if (ListInit
*LI
= dynamic_cast<ListInit
*>(R
->getValue()))
1440 throw "Record `" + getName() + "', field `" + FieldName
+
1441 "' does not have a list initializer!";
1444 /// getValueAsListOfDefs - This method looks up the specified field and returns
1445 /// its value as a vector of records, throwing an exception if the field does
1446 /// not exist or if the value is not the right type.
1448 std::vector
<Record
*>
1449 Record::getValueAsListOfDefs(const std::string
&FieldName
) const {
1450 ListInit
*List
= getValueAsListInit(FieldName
);
1451 std::vector
<Record
*> Defs
;
1452 for (unsigned i
= 0; i
< List
->getSize(); i
++) {
1453 if (DefInit
*DI
= dynamic_cast<DefInit
*>(List
->getElement(i
))) {
1454 Defs
.push_back(DI
->getDef());
1456 throw "Record `" + getName() + "', field `" + FieldName
+
1457 "' list is not entirely DefInit!";
1463 /// getValueAsInt - This method looks up the specified field and returns its
1464 /// value as an int64_t, throwing an exception if the field does not exist or if
1465 /// the value is not the right type.
1467 int64_t Record::getValueAsInt(const std::string
&FieldName
) const {
1468 const RecordVal
*R
= getValue(FieldName
);
1469 if (R
== 0 || R
->getValue() == 0)
1470 throw "Record `" + getName() + "' does not have a field named `" +
1473 if (IntInit
*II
= dynamic_cast<IntInit
*>(R
->getValue()))
1474 return II
->getValue();
1475 throw "Record `" + getName() + "', field `" + FieldName
+
1476 "' does not have an int initializer!";
1479 /// getValueAsListOfInts - This method looks up the specified field and returns
1480 /// its value as a vector of integers, throwing an exception if the field does
1481 /// not exist or if the value is not the right type.
1483 std::vector
<int64_t>
1484 Record::getValueAsListOfInts(const std::string
&FieldName
) const {
1485 ListInit
*List
= getValueAsListInit(FieldName
);
1486 std::vector
<int64_t> Ints
;
1487 for (unsigned i
= 0; i
< List
->getSize(); i
++) {
1488 if (IntInit
*II
= dynamic_cast<IntInit
*>(List
->getElement(i
))) {
1489 Ints
.push_back(II
->getValue());
1491 throw "Record `" + getName() + "', field `" + FieldName
+
1492 "' does not have a list of ints initializer!";
1498 /// getValueAsDef - This method looks up the specified field and returns its
1499 /// value as a Record, throwing an exception if the field does not exist or if
1500 /// the value is not the right type.
1502 Record
*Record::getValueAsDef(const std::string
&FieldName
) const {
1503 const RecordVal
*R
= getValue(FieldName
);
1504 if (R
== 0 || R
->getValue() == 0)
1505 throw "Record `" + getName() + "' does not have a field named `" +
1508 if (DefInit
*DI
= dynamic_cast<DefInit
*>(R
->getValue()))
1509 return DI
->getDef();
1510 throw "Record `" + getName() + "', field `" + FieldName
+
1511 "' does not have a def initializer!";
1514 /// getValueAsBit - This method looks up the specified field and returns its
1515 /// value as a bit, throwing an exception if the field does not exist or if
1516 /// the value is not the right type.
1518 bool Record::getValueAsBit(const std::string
&FieldName
) const {
1519 const RecordVal
*R
= getValue(FieldName
);
1520 if (R
== 0 || R
->getValue() == 0)
1521 throw "Record `" + getName() + "' does not have a field named `" +
1524 if (BitInit
*BI
= dynamic_cast<BitInit
*>(R
->getValue()))
1525 return BI
->getValue();
1526 throw "Record `" + getName() + "', field `" + FieldName
+
1527 "' does not have a bit initializer!";
1530 /// getValueAsDag - This method looks up the specified field and returns its
1531 /// value as an Dag, throwing an exception if the field does not exist or if
1532 /// the value is not the right type.
1534 DagInit
*Record::getValueAsDag(const std::string
&FieldName
) const {
1535 const RecordVal
*R
= getValue(FieldName
);
1536 if (R
== 0 || R
->getValue() == 0)
1537 throw "Record `" + getName() + "' does not have a field named `" +
1540 if (DagInit
*DI
= dynamic_cast<DagInit
*>(R
->getValue()))
1542 throw "Record `" + getName() + "', field `" + FieldName
+
1543 "' does not have a dag initializer!";
1546 std::string
Record::getValueAsCode(const std::string
&FieldName
) const {
1547 const RecordVal
*R
= getValue(FieldName
);
1548 if (R
== 0 || R
->getValue() == 0)
1549 throw "Record `" + getName() + "' does not have a field named `" +
1552 if (const CodeInit
*CI
= dynamic_cast<const CodeInit
*>(R
->getValue()))
1553 return CI
->getValue();
1554 throw "Record `" + getName() + "', field `" + FieldName
+
1555 "' does not have a code initializer!";
1559 void MultiClass::dump() const {
1560 errs() << "Record:\n";
1563 errs() << "Defs:\n";
1564 for (RecordVector::const_iterator r
= DefPrototypes
.begin(),
1565 rend
= DefPrototypes
.end();
1573 void RecordKeeper::dump() const { errs() << *this; }
1575 raw_ostream
&llvm::operator<<(raw_ostream
&OS
, const RecordKeeper
&RK
) {
1576 OS
<< "------------- Classes -----------------\n";
1577 const std::map
<std::string
, Record
*> &Classes
= RK
.getClasses();
1578 for (std::map
<std::string
, Record
*>::const_iterator I
= Classes
.begin(),
1579 E
= Classes
.end(); I
!= E
; ++I
)
1580 OS
<< "class " << *I
->second
;
1582 OS
<< "------------- Defs -----------------\n";
1583 const std::map
<std::string
, Record
*> &Defs
= RK
.getDefs();
1584 for (std::map
<std::string
, Record
*>::const_iterator I
= Defs
.begin(),
1585 E
= Defs
.end(); I
!= E
; ++I
)
1586 OS
<< "def " << *I
->second
;
1591 /// getAllDerivedDefinitions - This method returns all concrete definitions
1592 /// that derive from the specified class name. If a class with the specified
1593 /// name does not exist, an error is printed and true is returned.
1594 std::vector
<Record
*>
1595 RecordKeeper::getAllDerivedDefinitions(const std::string
&ClassName
) const {
1596 Record
*Class
= Records
.getClass(ClassName
);
1598 throw "ERROR: Couldn't find the `" + ClassName
+ "' class!\n";
1600 std::vector
<Record
*> Defs
;
1601 for (std::map
<std::string
, Record
*>::const_iterator I
= getDefs().begin(),
1602 E
= getDefs().end(); I
!= E
; ++I
)
1603 if (I
->second
->isSubClassOf(Class
))
1604 Defs
.push_back(I
->second
);