diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-01 05:58:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-01 05:58:58 +0000 |
commit | 24151a6888c752ff1d7fc80b500f5a836c9ac528 (patch) | |
tree | f4900d9f18d605e9d8f7c36eb66e9ed5c2aaf9f8 /support/tools/TableGen/Record.cpp | |
parent | de04dd746fce692a56a5fe6ce8532b2dc13756b6 (diff) |
Fix the way field bit references are resolved, also allow resolution of field references overall!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7470 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'support/tools/TableGen/Record.cpp')
-rw-r--r-- | support/tools/TableGen/Record.cpp | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/support/tools/TableGen/Record.cpp b/support/tools/TableGen/Record.cpp index acb61ec185..fc035aceb3 100644 --- a/support/tools/TableGen/Record.cpp +++ b/support/tools/TableGen/Record.cpp @@ -316,7 +316,7 @@ Init *VarInit::getFieldInit(Record &R, const std::string &FieldName) const { if (Init *I = RV->getValue()->getFieldInit(R, FieldName)) return I; else - return (Init*)this; + return 0; return 0; } @@ -373,14 +373,22 @@ Init *FieldInit::convertInitializerBitRange(const std::vector<unsigned> &Bits) { Init *FieldInit::resolveBitReference(Record &R, unsigned Bit) { Init *BitsVal = Rec->getFieldInit(R, FieldName); - assert(BitsVal && "No initializer found!"); - - if (BitsInit *BI = dynamic_cast<BitsInit*>(BitsVal)) { - assert(Bit < BI->getNumBits() && "Bit reference out of range!"); - Init *B = BI->getBit(Bit); - - if (dynamic_cast<BitInit*>(B)) // If the bit is set... - return B; // Replace the VarBitInit with it. + if (BitsVal) + if (BitsInit *BI = dynamic_cast<BitsInit*>(BitsVal)) { + assert(Bit < BI->getNumBits() && "Bit reference out of range!"); + Init *B = BI->getBit(Bit); + + if (dynamic_cast<BitInit*>(B)) // If the bit is set... + return B; // Replace the VarBitInit with it. + } + return this; +} + +Init *FieldInit::resolveReferences(Record &R) { + Init *BitsVal = Rec->getFieldInit(R, FieldName); + if (BitsVal) { + Init *BVR = BitsVal->resolveReferences(R); + return BVR->isComplete() ? BVR : this; } return this; } |