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/Streams.h"
17 #include "llvm/ADT/StringExtras.h"
22 //===----------------------------------------------------------------------===//
23 // Type implementations
24 //===----------------------------------------------------------------------===//
26 void RecTy::dump() const { print(*cerr.stream()); }
28 Init *BitRecTy::convertValue(BitsInit *BI) {
29 if (BI->getNumBits() != 1) return 0; // Only accept if just one bit!
33 bool BitRecTy::baseClassOf(const BitsRecTy *RHS) const {
34 return RHS->getNumBits() == 1;
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!
41 return new BitInit(Val != 0);
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!
50 std::string BitsRecTy::getAsString() const {
51 return "bits<" + utostr(Size) + ">";
54 Init *BitsRecTy::convertValue(UnsetInit *UI) {
55 BitsInit *Ret = new BitsInit(Size);
57 for (unsigned i = 0; i != Size; ++i)
58 Ret->setBit(i, new UnsetInit());
62 Init *BitsRecTy::convertValue(BitInit *UI) {
63 if (Size != 1) return 0; // Can only convert single bit...
64 BitsInit *Ret = new BitsInit(1);
69 // convertValue from Int initializer to bits type: Split the integer up into the
70 // appropriate bits...
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...
76 if (Value & ~((1LL << Size)-1))
79 if ((Value >> Size) != -1 || ((Value & (1LL << (Size-1))) == 0))
83 BitsInit *Ret = new BitsInit(Size);
84 for (unsigned i = 0; i != Size; ++i)
85 Ret->setBit(i, new BitInit(Value & (1LL << i)));
90 Init *BitsRecTy::convertValue(BitsInit *BI) {
91 // If the number of bits is right, return it. Otherwise we need to expand or
93 if (BI->getNumBits() == Size) return BI;
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));
105 if (Size == 1 && dynamic_cast<BitRecTy*>(VI->getType())) {
106 BitsInit *Ret = new BitsInit(1);
114 Init *IntRecTy::convertValue(BitInit *BI) {
115 return new IntInit(BI->getValue());
118 Init *IntRecTy::convertValue(BitsInit *BI) {
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;
126 return new IntInit(Result);
129 Init *IntRecTy::convertValue(TypedInit *TI) {
130 if (TI->getType()->typeIsConvertibleTo(this))
131 return TI; // Accept variable if already of the right type!
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);
144 // return convertValue((TypedInit*)BO);
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);
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);
167 return convertValue((TypedInit*)BO);
171 Init *StringRecTy::convertValue(TypedInit *TI) {
172 if (dynamic_cast<StringRecTy*>(TI->getType()))
173 return TI; // Accept variable if already of the right type!
177 std::string ListRecTy::getAsString() const {
178 return "list<" + Ty->getAsString() + ">";
181 Init *ListRecTy::convertValue(ListInit *LI) {
182 std::vector<Init*> Elements;
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);
192 return new ListInit(Elements);
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()))
203 Init *CodeRecTy::convertValue(TypedInit *TI) {
204 if (TI->getType()->typeIsConvertibleTo(this))
209 Init *DagRecTy::convertValue(TypedInit *TI) {
210 if (TI->getType()->typeIsConvertibleTo(this))
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);
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);
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);
248 std::string RecordRecTy::getAsString() const {
249 return Rec->getName();
252 Init *RecordRecTy::convertValue(DefInit *DI) {
253 // Ensure that DI is a subclass of Rec.
254 if (!DI->getDef()->isSubClassOf(Rec))
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())
268 bool RecordRecTy::baseClassOf(const RecordRecTy *RHS) const {
269 return Rec == RHS->getRecord() || RHS->getRecord()->isSubClassOf(Rec);
273 //===----------------------------------------------------------------------===//
274 // Initializer implementations
275 //===----------------------------------------------------------------------===//
277 void Init::dump() const { return print(*cerr.stream()); }
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()) {
286 BI->setBit(i, getBit(Bits[i]));
291 std::string BitsInit::getAsString() const {
292 //if (!printInHex(OS)) return;
293 //if (!printAsVariable(OS)) return;
294 //if (!printAsUnset(OS)) return;
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();
304 return Result + " }";
307 bool BitsInit::printInHex(std::ostream &OS) const {
308 // First, attempt to convert the value into an integer value...
310 for (unsigned i = 0, e = getNumBits(); i != e; ++i)
311 if (BitInit *Bit = dynamic_cast<BitInit*>(getBit(i))) {
312 Result |= Bit->getValue() << i;
317 OS << "0x" << std::hex << Result << std::dec;
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();
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!
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)
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)))
352 // resolveReferences - If there are any field references that refer to fields
353 // that have been filled in, we can propagate the values now.
355 Init *BitsInit::resolveReferences(Record &R, const RecordVal *RV) {
356 bool Changed = false;
357 BitsInit *New = new BitsInit(getNumBits());
359 for (unsigned i = 0, e = Bits.size(); i != e; ++i) {
361 Init *CurBit = getBit(i);
365 CurBit = CurBit->resolveReferences(R, RV);
366 Changed |= B != CurBit;
367 } while (B != CurBit);
368 New->setBit(i, CurBit);
377 std::string IntInit::getAsString() const {
378 return itostr(Value);
381 Init *IntInit::convertInitializerBitRange(const std::vector<unsigned> &Bits) {
382 BitsInit *BI = new BitsInit(Bits.size());
384 for (unsigned i = 0, e = Bits.size(); i != e; ++i) {
389 BI->setBit(i, new BitInit(Value & (INT64_C(1) << Bits[i])));
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())
399 Vals.push_back(getElement(Elements[i]));
401 return new ListInit(Vals);
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!";
411 Init *ListInit::resolveReferences(Record &R, const RecordVal *RV) {
412 std::vector<Init*> Resolved;
413 Resolved.reserve(getSize());
414 bool Changed = false;
416 for (unsigned i = 0, e = getSize(); i != e; ++i) {
418 Init *CurElt = getElement(i);
422 CurElt = CurElt->resolveReferences(R, RV);
423 Changed |= E != CurElt;
424 } while (E != CurElt);
425 Resolved.push_back(E);
429 return new ListInit(Resolved);
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();
442 Init *OpInit::resolveBitReference(Record &R, const RecordVal *IRV,
444 Init *Folded = Fold(&R, 0);
446 if (Folded != this) {
447 TypedInit *Typed = dynamic_cast<TypedInit *>(Folded);
449 return Typed->resolveBitReference(R, IRV, Bit);
456 Init *OpInit::resolveListElementReference(Record &R, const RecordVal *IRV,
458 Init *Folded = Fold(&R, 0);
460 if (Folded != this) {
461 TypedInit *Typed = dynamic_cast<TypedInit *>(Folded);
463 return Typed->resolveListElementReference(R, IRV, Elt);
470 // Init *UnOpInit::Fold(Record *CurRec, MultiClass *CurMultiClass) {
471 // switch (getOpcode()) {
472 // default: assert(0 && "Unknown unop");
474 // StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
476 // std::string Name = LHSs->getValue();
478 // // From TGParser::ParseIDValue
480 // if (const RecordVal *RV = CurRec->getValue(Name)) {
481 // if (RV->getType() != getType()) {
482 // throw "type mismatch in nameconcat";
484 // return new VarInit(Name, RV->getType());
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??");
492 // if (RV->getType() != getType()) {
493 // throw "type mismatch in nameconcat";
496 // return new VarInit(TemplateArgName, RV->getType());
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??");
506 // if (RV->getType() != getType()) {
507 // throw "type mismatch in nameconcat";
510 // return new VarInit(MCName, RV->getType());
514 // if (Record *D = Records.getDef(Name))
515 // return new DefInit(D);
517 // cerr << "Variable not defined: '" + Name + "'\n";
518 // assert(0 && "Variable not found");
527 // Init *UnOpInit::resolveReferences(Record &R, const RecordVal *RV) {
528 // Init *lhs = LHS->resolveReferences(R, RV);
531 // return (new UnOpInit(getOpcode(), lhs, getType()))->Fold(&R, 0);
532 // return Fold(&R, 0);
535 // std::string UnOpInit::getAsString() const {
536 // std::string Result;
538 // case CAST: Result = "!cast<" + getType()->getAsString() + ">"; break;
540 // return Result + "(" + LHS->getAsString() + ")";
543 Init *BinOpInit::Fold(Record *CurRec, MultiClass *CurMultiClass) {
544 switch (getOpcode()) {
545 default: assert(0 && "Unknown binop");
547 DagInit *LHSs = dynamic_cast<DagInit*>(LHS);
548 DagInit *RHSs = dynamic_cast<DagInit*>(RHS);
550 DefInit *LOp = dynamic_cast<DefInit*>(LHSs->getOperator());
551 DefInit *ROp = dynamic_cast<DefInit*>(RHSs->getOperator());
552 if (LOp->getDef() != ROp->getDef()) {
554 LOp->getDef()->getName() == "outs" ||
555 LOp->getDef()->getName() != "ins" ||
556 LOp->getDef()->getName() != "defs";
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!";
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));
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));
574 return new DagInit(LHSs->getOperator(), "", Args, ArgNames);
579 StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
580 StringInit *RHSs = dynamic_cast<StringInit*>(RHS);
582 return new StringInit(LHSs->getValue() + RHSs->getValue());
586 StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
587 StringInit *RHSs = dynamic_cast<StringInit*>(RHS);
589 std::string Name(LHSs->getValue() + RHSs->getValue());
591 // From TGParser::ParseIDValue
593 if (const RecordVal *RV = CurRec->getValue(Name)) {
594 if (RV->getType() != getType()) {
595 throw "type mismatch in nameconcat";
597 return new VarInit(Name, RV->getType());
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??");
605 if (RV->getType() != getType()) {
606 throw "type mismatch in nameconcat";
609 return new VarInit(TemplateArgName, RV->getType());
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??");
619 if (RV->getType() != getType()) {
620 throw "type mismatch in nameconcat";
623 return new VarInit(MCName, RV->getType());
627 if (Record *D = Records.getDef(Name))
628 return new DefInit(D);
630 cerr << "Variable not defined: '" + Name + "'\n";
631 assert(0 && "Variable not found");
639 IntInit *LHSi = dynamic_cast<IntInit*>(LHS);
640 IntInit *RHSi = dynamic_cast<IntInit*>(RHS);
642 int64_t LHSv = LHSi->getValue(), RHSv = RHSi->getValue();
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;
650 return new IntInit(Result);
658 Init *BinOpInit::resolveReferences(Record &R, const RecordVal *RV) {
659 Init *lhs = LHS->resolveReferences(R, RV);
660 Init *rhs = RHS->resolveReferences(R, RV);
662 if (LHS != lhs || RHS != rhs)
663 return (new BinOpInit(getOpcode(), lhs, rhs, getType()))->Fold(&R, 0);
667 std::string BinOpInit::getAsString() const {
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;
676 Result = "!nameconcat<" + getType()->getAsString() + ">"; break;
678 return Result + "(" + LHS->getAsString() + ", " + RHS->getAsString() + ")";
681 // Init *TernOpInit::Fold(Record *CurRec, MultiClass *CurMultiClass) {
682 // switch (getOpcode()) {
683 // default: assert(0 && "Unknown binop");
685 // DefInit *LHSd = dynamic_cast<DefInit*>(LHS);
686 // VarInit *LHSv = dynamic_cast<VarInit*>(LHS);
687 // StringInit *LHSs = dynamic_cast<StringInit*>(LHS);
689 // DefInit *MHSd = dynamic_cast<DefInit*>(MHS);
690 // VarInit *MHSv = dynamic_cast<VarInit*>(MHS);
691 // StringInit *MHSs = dynamic_cast<StringInit*>(MHS);
693 // DagInit *RHSd = dynamic_cast<DagInit*>(RHS);
694 // ListInit *RHSl = dynamic_cast<ListInit*>(RHS);
696 // DagRecTy *DagType = dynamic_cast<DagRecTy*>(getType());
697 // ListRecTy *ListType = dynamic_cast<ListRecTy*>(getType());
699 // if ((DagType && RHSd || ListType && RHSl)
700 // && (LHSd && MHSd || LHSv && MHSv || LHSs && MHSs)) {
702 // Init *Val = RHSd->getOperator();
703 // if (Val->getAsString() == LHS->getAsString()) {
706 // std::vector<std::pair<Init *, std::string> > args;
707 // for (int i = 0; i < RHSd->getNumArgs(); ++i) {
709 // std::string ArgName;
710 // Arg = RHSd->getArg(i);
711 // ArgName = RHSd->getArgName(i);
712 // if (Arg->getAsString() == LHS->getAsString()) {
715 // if (ArgName == LHS->getAsString()) {
716 // ArgName = MHS->getAsString();
718 // args.push_back(std::make_pair(Arg, ArgName));
721 // return new DagInit(Val, args);
724 // std::vector<Init *> NewList(RHSl->begin(), RHSl->end());
726 // for (ListInit::iterator i = NewList.begin(),
727 // iend = NewList.end();
730 // if ((*i)->getAsString() == LHS->getAsString()) {
734 // return new ListInit(NewList);
741 // DagInit *MHSd = dynamic_cast<DagInit*>(MHS);
742 // ListInit *MHSl = dynamic_cast<ListInit*>(MHS);
744 // DagRecTy *DagType = dynamic_cast<DagRecTy*>(getType());
745 // ListRecTy *ListType = dynamic_cast<ListRecTy*>(getType());
747 // OpInit *RHSo = dynamic_cast<OpInit*>(RHS);
750 // cerr << "!foreach requires an operator\n";
751 // assert(0 && "No operator for !foreach");
754 // TypedInit *LHSt = dynamic_cast<TypedInit*>(LHS);
757 // cerr << "!foreach requires typed variable\n";
758 // assert(0 && "No typed variable for !foreach");
761 // if (MHSd && DagType || MHSl && ListType) {
762 // std::vector<Init *> NewOperands;
764 // Init *Val = MHSd->getOperator();
765 // TypedInit *TVal = dynamic_cast<TypedInit*>(Val);
767 // if (TVal && TVal->getType()->typeIsConvertibleTo(LHSt->getType())) {
769 // // First, replace the foreach variable with the DAG leaf
770 // for (int i = 0; i < RHSo->getNumOperands(); ++i) {
771 // if (LHS->getAsString() == RHSo->getOperand(i)->getAsString()) {
772 // NewOperands.push_back(Val);
775 // NewOperands.push_back(RHSo->getOperand(i));
779 // // Now run the operator and use its result as the new leaf
780 // OpInit *NewOp = RHSo->clone(NewOperands);
781 // Val = NewOp->Fold(CurRec, CurMultiClass);
782 // if (Val != NewOp) {
787 // std::vector<std::pair<Init *, std::string> > args;
788 // for (int i = 0; i < MHSd->getNumArgs(); ++i) {
790 // std::string ArgName;
791 // Arg = MHSd->getArg(i);
792 // ArgName = MHSd->getArgName(i);
794 // TypedInit *TArg = dynamic_cast<TypedInit*>(Arg);
796 // if (TArg && TArg->getType()->typeIsConvertibleTo(LHSt->getType())) {
797 // NewOperands.clear();
799 // // First, replace the foreach variable with the DAG leaf
800 // for (int i = 0; i < RHSo->getNumOperands(); ++i) {
801 // if (LHS->getAsString() == RHSo->getOperand(i)->getAsString()) {
802 // NewOperands.push_back(Arg);
805 // NewOperands.push_back(RHSo->getOperand(i));
809 // // Now run the operator and use its result as the new leaf
810 // OpInit *NewOp = RHSo->clone(NewOperands);
811 // Arg = NewOp->Fold(CurRec, CurMultiClass);
812 // if (Arg != NewOp) {
817 // if (LHSt->getType()->getAsString() == "string") {
818 // NewOperands.clear();
820 // // First, replace the foreach variable with the DAG leaf
821 // for (int i = 0; i < RHSo->getNumOperands(); ++i) {
822 // if (LHS->getAsString() == RHSo->getOperand(i)->getAsString()) {
823 // NewOperands.push_back(new StringInit(ArgName));
826 // NewOperands.push_back(RHSo->getOperand(i));
830 // // Now run the operator and use its result as the new leaf
831 // OpInit *NewOp = RHSo->clone(NewOperands);
832 // Init *ArgNameInit = NewOp->Fold(CurRec, CurMultiClass);
833 // StringInit *SArgNameInit = dynamic_cast<StringInit*>(ArgNameInit);
834 // if (SArgNameInit) {
835 // ArgName = SArgNameInit->getValue();
837 // if (ArgNameInit != NewOp) {
840 // delete ArgNameInit;
843 // args.push_back(std::make_pair(Arg, ArgName));
846 // return new DagInit(Val, args);
849 // std::vector<Init *> NewList(MHSl->begin(), MHSl->end());
851 // for (ListInit::iterator li = NewList.begin(),
852 // liend = NewList.end();
856 // TypedInit *TItem = dynamic_cast<TypedInit*>(Item);
857 // if (TItem && TItem->getType()->typeIsConvertibleTo(LHSt->getType())) {
858 // // First, replace the foreach variable with the list item
859 // for (int i = 0; i < RHSo->getNumOperands(); ++i) {
860 // if (LHS->getAsString() == RHSo->getOperand(i)->getAsString()) {
861 // NewOperands.push_back(Item);
864 // NewOperands.push_back(RHSo->getOperand(i));
868 // // Now run the operator and use its result as the new list item
869 // OpInit *NewOp = RHSo->clone(NewOperands);
870 // *li = NewOp->Fold(CurRec, CurMultiClass);
871 // if (*li != NewOp) {
877 // return new ListInit(NewList);
887 // Init *TernOpInit::resolveReferences(Record &R, const RecordVal *RV) {
888 // Init *lhs = LHS->resolveReferences(R, RV);
889 // Init *mhs = MHS->resolveReferences(R, RV);
890 // Init *rhs = RHS->resolveReferences(R, RV);
892 // if (LHS != lhs || MHS != mhs || RHS != rhs)
893 // return (new TernOpInit(getOpcode(), lhs, mhs, rhs, getType()))->Fold(&R, 0);
894 // return Fold(&R, 0);
897 // std::string TernOpInit::getAsString() const {
898 // std::string Result;
900 // case SUBST: Result = "!subst"; break;
901 // case FOREACH: Result = "!foreach"; break;
903 // return Result + "(" + LHS->getAsString() + ", " + MHS->getAsString() + ", "
904 // + RHS->getAsString() + ")";
907 Init *TypedInit::convertInitializerBitRange(const std::vector<unsigned> &Bits) {
908 BitsRecTy *T = dynamic_cast<BitsRecTy*>(getType());
909 if (T == 0) return 0; // Cannot subscript a non-bits variable...
910 unsigned NumBits = T->getNumBits();
912 BitsInit *BI = new BitsInit(Bits.size());
913 for (unsigned i = 0, e = Bits.size(); i != e; ++i) {
914 if (Bits[i] >= NumBits) {
918 BI->setBit(i, new VarBitInit(this, Bits[i]));
923 Init *TypedInit::convertInitListSlice(const std::vector<unsigned> &Elements) {
924 ListRecTy *T = dynamic_cast<ListRecTy*>(getType());
925 if (T == 0) return 0; // Cannot subscript a non-list variable...
927 if (Elements.size() == 1)
928 return new VarListElementInit(this, Elements[0]);
930 std::vector<Init*> ListInits;
931 ListInits.reserve(Elements.size());
932 for (unsigned i = 0, e = Elements.size(); i != e; ++i)
933 ListInits.push_back(new VarListElementInit(this, Elements[i]));
934 return new ListInit(ListInits);
938 Init *VarInit::resolveBitReference(Record &R, const RecordVal *IRV,
940 if (R.isTemplateArg(getName())) return 0;
941 if (IRV && IRV->getName() != getName()) return 0;
943 RecordVal *RV = R.getValue(getName());
944 assert(RV && "Reference to a non-existant variable?");
945 assert(dynamic_cast<BitsInit*>(RV->getValue()));
946 BitsInit *BI = (BitsInit*)RV->getValue();
948 assert(Bit < BI->getNumBits() && "Bit reference out of range!");
949 Init *B = BI->getBit(Bit);
951 if (!dynamic_cast<UnsetInit*>(B)) // If the bit is not set...
952 return B; // Replace the VarBitInit with it.
956 Init *VarInit::resolveListElementReference(Record &R, const RecordVal *IRV,
958 if (R.isTemplateArg(getName())) return 0;
959 if (IRV && IRV->getName() != getName()) return 0;
961 RecordVal *RV = R.getValue(getName());
962 assert(RV && "Reference to a non-existant variable?");
963 ListInit *LI = dynamic_cast<ListInit*>(RV->getValue());
965 VarInit *VI = dynamic_cast<VarInit*>(RV->getValue());
966 assert(VI && "Invalid list element!");
967 return new VarListElementInit(VI, Elt);
970 if (Elt >= LI->getSize())
971 return 0; // Out of range reference.
972 Init *E = LI->getElement(Elt);
973 if (!dynamic_cast<UnsetInit*>(E)) // If the element is set
974 return E; // Replace the VarListElementInit with it.
979 RecTy *VarInit::getFieldType(const std::string &FieldName) const {
980 if (RecordRecTy *RTy = dynamic_cast<RecordRecTy*>(getType()))
981 if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName))
982 return RV->getType();
986 Init *VarInit::getFieldInit(Record &R, const std::string &FieldName) const {
987 if (dynamic_cast<RecordRecTy*>(getType()))
988 if (const RecordVal *RV = R.getValue(VarName)) {
989 Init *TheInit = RV->getValue();
990 assert(TheInit != this && "Infinite loop detected!");
991 if (Init *I = TheInit->getFieldInit(R, FieldName))
999 /// resolveReferences - This method is used by classes that refer to other
1000 /// variables which may not be defined at the time they expression is formed.
1001 /// If a value is set for the variable later, this method will be called on
1002 /// users of the value to allow the value to propagate out.
1004 Init *VarInit::resolveReferences(Record &R, const RecordVal *RV) {
1005 if (RecordVal *Val = R.getValue(VarName))
1006 if (RV == Val || (RV == 0 && !dynamic_cast<UnsetInit*>(Val->getValue())))
1007 return Val->getValue();
1011 std::string VarBitInit::getAsString() const {
1012 return TI->getAsString() + "{" + utostr(Bit) + "}";
1015 Init *VarBitInit::resolveReferences(Record &R, const RecordVal *RV) {
1016 if (Init *I = getVariable()->resolveBitReference(R, RV, getBitNum()))
1021 std::string VarListElementInit::getAsString() const {
1022 return TI->getAsString() + "[" + utostr(Element) + "]";
1025 Init *VarListElementInit::resolveReferences(Record &R, const RecordVal *RV) {
1026 if (Init *I = getVariable()->resolveListElementReference(R, RV,
1032 Init *VarListElementInit::resolveBitReference(Record &R, const RecordVal *RV,
1034 // FIXME: This should be implemented, to support references like:
1035 // bit B = AA[0]{1};
1039 Init *VarListElementInit::
1040 resolveListElementReference(Record &R, const RecordVal *RV, unsigned Elt) {
1041 // FIXME: This should be implemented, to support references like:
1042 // int B = AA[0][1];
1046 RecTy *DefInit::getFieldType(const std::string &FieldName) const {
1047 if (const RecordVal *RV = Def->getValue(FieldName))
1048 return RV->getType();
1052 Init *DefInit::getFieldInit(Record &R, const std::string &FieldName) const {
1053 return Def->getValue(FieldName)->getValue();
1057 std::string DefInit::getAsString() const {
1058 return Def->getName();
1061 Init *FieldInit::resolveBitReference(Record &R, const RecordVal *RV,
1063 if (Init *BitsVal = Rec->getFieldInit(R, FieldName))
1064 if (BitsInit *BI = dynamic_cast<BitsInit*>(BitsVal)) {
1065 assert(Bit < BI->getNumBits() && "Bit reference out of range!");
1066 Init *B = BI->getBit(Bit);
1068 if (dynamic_cast<BitInit*>(B)) // If the bit is set...
1069 return B; // Replace the VarBitInit with it.
1074 Init *FieldInit::resolveListElementReference(Record &R, const RecordVal *RV,
1076 if (Init *ListVal = Rec->getFieldInit(R, FieldName))
1077 if (ListInit *LI = dynamic_cast<ListInit*>(ListVal)) {
1078 if (Elt >= LI->getSize()) return 0;
1079 Init *E = LI->getElement(Elt);
1081 if (!dynamic_cast<UnsetInit*>(E)) // If the bit is set...
1082 return E; // Replace the VarListElementInit with it.
1087 Init *FieldInit::resolveReferences(Record &R, const RecordVal *RV) {
1088 Init *NewRec = RV ? Rec->resolveReferences(R, RV) : Rec;
1090 Init *BitsVal = NewRec->getFieldInit(R, FieldName);
1092 Init *BVR = BitsVal->resolveReferences(R, RV);
1093 return BVR->isComplete() ? BVR : this;
1096 if (NewRec != Rec) {
1097 return new FieldInit(NewRec, FieldName);
1102 Init *DagInit::resolveReferences(Record &R, const RecordVal *RV) {
1103 std::vector<Init*> NewArgs;
1104 for (unsigned i = 0, e = Args.size(); i != e; ++i)
1105 NewArgs.push_back(Args[i]->resolveReferences(R, RV));
1107 Init *Op = Val->resolveReferences(R, RV);
1109 if (Args != NewArgs || Op != Val)
1110 return new DagInit(Op, "", NewArgs, ArgNames);
1116 std::string DagInit::getAsString() const {
1117 std::string Result = "(" + Val->getAsString();
1118 if (!ValName.empty())
1119 Result += ":" + ValName;
1121 Result += " " + Args[0]->getAsString();
1122 if (!ArgNames[0].empty()) Result += ":$" + ArgNames[0];
1123 for (unsigned i = 1, e = Args.size(); i != e; ++i) {
1124 Result += ", " + Args[i]->getAsString();
1125 if (!ArgNames[i].empty()) Result += ":$" + ArgNames[i];
1128 return Result + ")";
1132 //===----------------------------------------------------------------------===//
1133 // Other implementations
1134 //===----------------------------------------------------------------------===//
1136 RecordVal::RecordVal(const std::string &N, RecTy *T, unsigned P)
1137 : Name(N), Ty(T), Prefix(P) {
1138 Value = Ty->convertValue(new UnsetInit());
1139 assert(Value && "Cannot create unset value for current type!");
1142 void RecordVal::dump() const { cerr << *this; }
1144 void RecordVal::print(std::ostream &OS, bool PrintSem) const {
1145 if (getPrefix()) OS << "field ";
1146 OS << *getType() << " " << getName();
1149 OS << " = " << *getValue();
1151 if (PrintSem) OS << ";\n";
1154 void Record::setName(const std::string &Name) {
1155 if (Records.getDef(getName()) == this) {
1156 Records.removeDef(getName());
1158 Records.addDef(this);
1160 Records.removeClass(getName());
1162 Records.addClass(this);
1166 /// resolveReferencesTo - If anything in this record refers to RV, replace the
1167 /// reference to RV with the RHS of RV. If RV is null, we resolve all possible
1169 void Record::resolveReferencesTo(const RecordVal *RV) {
1170 for (unsigned i = 0, e = Values.size(); i != e; ++i) {
1171 if (Init *V = Values[i].getValue())
1172 Values[i].setValue(V->resolveReferences(*this, RV));
1177 void Record::dump() const { cerr << *this; }
1179 std::ostream &llvm::operator<<(std::ostream &OS, const Record &R) {
1182 const std::vector<std::string> &TArgs = R.getTemplateArgs();
1183 if (!TArgs.empty()) {
1185 for (unsigned i = 0, e = TArgs.size(); i != e; ++i) {
1187 const RecordVal *RV = R.getValue(TArgs[i]);
1188 assert(RV && "Template argument record not found??");
1189 RV->print(OS, false);
1195 const std::vector<Record*> &SC = R.getSuperClasses();
1198 for (unsigned i = 0, e = SC.size(); i != e; ++i)
1199 OS << " " << SC[i]->getName();
1203 const std::vector<RecordVal> &Vals = R.getValues();
1204 for (unsigned i = 0, e = Vals.size(); i != e; ++i)
1205 if (Vals[i].getPrefix() && !R.isTemplateArg(Vals[i].getName()))
1207 for (unsigned i = 0, e = Vals.size(); i != e; ++i)
1208 if (!Vals[i].getPrefix() && !R.isTemplateArg(Vals[i].getName()))
1214 /// getValueInit - Return the initializer for a value with the specified name,
1215 /// or throw an exception if the field does not exist.
1217 Init *Record::getValueInit(const std::string &FieldName) const {
1218 const RecordVal *R = getValue(FieldName);
1219 if (R == 0 || R->getValue() == 0)
1220 throw "Record `" + getName() + "' does not have a field named `" +
1222 return R->getValue();
1226 /// getValueAsString - This method looks up the specified field and returns its
1227 /// value as a string, throwing an exception if the field does not exist or if
1228 /// the value is not a string.
1230 std::string Record::getValueAsString(const std::string &FieldName) const {
1231 const RecordVal *R = getValue(FieldName);
1232 if (R == 0 || R->getValue() == 0)
1233 throw "Record `" + getName() + "' does not have a field named `" +
1236 if (const StringInit *SI = dynamic_cast<const StringInit*>(R->getValue()))
1237 return SI->getValue();
1238 throw "Record `" + getName() + "', field `" + FieldName +
1239 "' does not have a string initializer!";
1242 /// getValueAsBitsInit - This method looks up the specified field and returns
1243 /// its value as a BitsInit, throwing an exception if the field does not exist
1244 /// or if the value is not the right type.
1246 BitsInit *Record::getValueAsBitsInit(const std::string &FieldName) const {
1247 const RecordVal *R = getValue(FieldName);
1248 if (R == 0 || R->getValue() == 0)
1249 throw "Record `" + getName() + "' does not have a field named `" +
1252 if (BitsInit *BI = dynamic_cast<BitsInit*>(R->getValue()))
1254 throw "Record `" + getName() + "', field `" + FieldName +
1255 "' does not have a BitsInit initializer!";
1258 /// getValueAsListInit - This method looks up the specified field and returns
1259 /// its value as a ListInit, throwing an exception if the field does not exist
1260 /// or if the value is not the right type.
1262 ListInit *Record::getValueAsListInit(const std::string &FieldName) const {
1263 const RecordVal *R = getValue(FieldName);
1264 if (R == 0 || R->getValue() == 0)
1265 throw "Record `" + getName() + "' does not have a field named `" +
1268 if (ListInit *LI = dynamic_cast<ListInit*>(R->getValue()))
1270 throw "Record `" + getName() + "', field `" + FieldName +
1271 "' does not have a list initializer!";
1274 /// getValueAsListOfDefs - This method looks up the specified field and returns
1275 /// its value as a vector of records, throwing an exception if the field does
1276 /// not exist or if the value is not the right type.
1278 std::vector<Record*>
1279 Record::getValueAsListOfDefs(const std::string &FieldName) const {
1280 ListInit *List = getValueAsListInit(FieldName);
1281 std::vector<Record*> Defs;
1282 for (unsigned i = 0; i < List->getSize(); i++) {
1283 if (DefInit *DI = dynamic_cast<DefInit*>(List->getElement(i))) {
1284 Defs.push_back(DI->getDef());
1286 throw "Record `" + getName() + "', field `" + FieldName +
1287 "' list is not entirely DefInit!";
1293 /// getValueAsInt - This method looks up the specified field and returns its
1294 /// value as an int64_t, throwing an exception if the field does not exist or if
1295 /// the value is not the right type.
1297 int64_t Record::getValueAsInt(const std::string &FieldName) const {
1298 const RecordVal *R = getValue(FieldName);
1299 if (R == 0 || R->getValue() == 0)
1300 throw "Record `" + getName() + "' does not have a field named `" +
1303 if (IntInit *II = dynamic_cast<IntInit*>(R->getValue()))
1304 return II->getValue();
1305 throw "Record `" + getName() + "', field `" + FieldName +
1306 "' does not have an int initializer!";
1309 /// getValueAsListOfInts - This method looks up the specified field and returns
1310 /// its value as a vector of integers, throwing an exception if the field does
1311 /// not exist or if the value is not the right type.
1313 std::vector<int64_t>
1314 Record::getValueAsListOfInts(const std::string &FieldName) const {
1315 ListInit *List = getValueAsListInit(FieldName);
1316 std::vector<int64_t> Ints;
1317 for (unsigned i = 0; i < List->getSize(); i++) {
1318 if (IntInit *II = dynamic_cast<IntInit*>(List->getElement(i))) {
1319 Ints.push_back(II->getValue());
1321 throw "Record `" + getName() + "', field `" + FieldName +
1322 "' does not have a list of ints initializer!";
1328 /// getValueAsDef - This method looks up the specified field and returns its
1329 /// value as a Record, throwing an exception if the field does not exist or if
1330 /// the value is not the right type.
1332 Record *Record::getValueAsDef(const std::string &FieldName) const {
1333 const RecordVal *R = getValue(FieldName);
1334 if (R == 0 || R->getValue() == 0)
1335 throw "Record `" + getName() + "' does not have a field named `" +
1338 if (DefInit *DI = dynamic_cast<DefInit*>(R->getValue()))
1339 return DI->getDef();
1340 throw "Record `" + getName() + "', field `" + FieldName +
1341 "' does not have a def initializer!";
1344 /// getValueAsBit - This method looks up the specified field and returns its
1345 /// value as a bit, throwing an exception if the field does not exist or if
1346 /// the value is not the right type.
1348 bool Record::getValueAsBit(const std::string &FieldName) const {
1349 const RecordVal *R = getValue(FieldName);
1350 if (R == 0 || R->getValue() == 0)
1351 throw "Record `" + getName() + "' does not have a field named `" +
1354 if (BitInit *BI = dynamic_cast<BitInit*>(R->getValue()))
1355 return BI->getValue();
1356 throw "Record `" + getName() + "', field `" + FieldName +
1357 "' does not have a bit initializer!";
1360 /// getValueAsDag - This method looks up the specified field and returns its
1361 /// value as an Dag, throwing an exception if the field does not exist or if
1362 /// the value is not the right type.
1364 DagInit *Record::getValueAsDag(const std::string &FieldName) const {
1365 const RecordVal *R = getValue(FieldName);
1366 if (R == 0 || R->getValue() == 0)
1367 throw "Record `" + getName() + "' does not have a field named `" +
1370 if (DagInit *DI = dynamic_cast<DagInit*>(R->getValue()))
1372 throw "Record `" + getName() + "', field `" + FieldName +
1373 "' does not have a dag initializer!";
1376 std::string Record::getValueAsCode(const std::string &FieldName) const {
1377 const RecordVal *R = getValue(FieldName);
1378 if (R == 0 || R->getValue() == 0)
1379 throw "Record `" + getName() + "' does not have a field named `" +
1382 if (const CodeInit *CI = dynamic_cast<const CodeInit*>(R->getValue()))
1383 return CI->getValue();
1384 throw "Record `" + getName() + "', field `" + FieldName +
1385 "' does not have a code initializer!";
1389 void MultiClass::dump() const {
1390 cerr << "Record:\n";
1394 for (RecordVector::const_iterator r = DefPrototypes.begin(),
1395 rend = DefPrototypes.end();
1403 void RecordKeeper::dump() const { cerr << *this; }
1405 std::ostream &llvm::operator<<(std::ostream &OS, const RecordKeeper &RK) {
1406 OS << "------------- Classes -----------------\n";
1407 const std::map<std::string, Record*> &Classes = RK.getClasses();
1408 for (std::map<std::string, Record*>::const_iterator I = Classes.begin(),
1409 E = Classes.end(); I != E; ++I)
1410 OS << "class " << *I->second;
1412 OS << "------------- Defs -----------------\n";
1413 const std::map<std::string, Record*> &Defs = RK.getDefs();
1414 for (std::map<std::string, Record*>::const_iterator I = Defs.begin(),
1415 E = Defs.end(); I != E; ++I)
1416 OS << "def " << *I->second;
1421 /// getAllDerivedDefinitions - This method returns all concrete definitions
1422 /// that derive from the specified class name. If a class with the specified
1423 /// name does not exist, an error is printed and true is returned.
1424 std::vector<Record*>
1425 RecordKeeper::getAllDerivedDefinitions(const std::string &ClassName) const {
1426 Record *Class = Records.getClass(ClassName);
1428 throw "ERROR: Couldn't find the `" + ClassName + "' class!\n";
1430 std::vector<Record*> Defs;
1431 for (std::map<std::string, Record*>::const_iterator I = getDefs().begin(),
1432 E = getDefs().end(); I != E; ++I)
1433 if (I->second->isSubClassOf(Class))
1434 Defs.push_back(I->second);