[llvm] r326789 - TableGen: Remove the ResolveFirst mechanism
Nicolai Haehnle via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 6 05:49:07 PST 2018
Author: nha
Date: Tue Mar 6 05:49:06 2018
New Revision: 326789
URL: http://llvm.org/viewvc/llvm-project?rev=326789&view=rev
Log:
TableGen: Remove the ResolveFirst mechanism
Summary:
It is no longer used.
Change-Id: I1e47267d1975d43ad43acd6347f54e958e3b6c86
Reviewers: arsenm, craig.topper, tra, MartinO
Subscribers: wdng, llvm-commits
Differential Revision: https://reviews.llvm.org/D43757
Modified:
llvm/trunk/include/llvm/TableGen/Record.h
llvm/trunk/lib/TableGen/TGParser.cpp
Modified: llvm/trunk/include/llvm/TableGen/Record.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/TableGen/Record.h?rev=326789&r1=326788&r2=326789&view=diff
==============================================================================
--- llvm/trunk/include/llvm/TableGen/Record.h (original)
+++ llvm/trunk/include/llvm/TableGen/Record.h Tue Mar 6 05:49:06 2018
@@ -1288,18 +1288,6 @@ class Record {
bool IsAnonymous;
- // Class-instance values can be used by other defs. For example, Struct<i>
- // is used here as a template argument to another class:
- //
- // multiclass MultiClass<int i> {
- // def Def : Class<Struct<i>>;
- //
- // These need to get fully resolved before instantiating any other
- // definitions that use them (e.g. Def). However, inside a multiclass they
- // can't be immediately resolved so we mark them ResolveFirst to fully
- // resolve them later as soon as the multiclass is instantiated.
- bool ResolveFirst = false;
-
void init();
void checkName();
@@ -1323,7 +1311,7 @@ public:
Name(O.Name), Locs(O.Locs), TemplateArgs(O.TemplateArgs),
Values(O.Values), SuperClasses(O.SuperClasses),
TrackedRecords(O.TrackedRecords), ID(LastID++),
- IsAnonymous(O.IsAnonymous), ResolveFirst(O.ResolveFirst) { }
+ IsAnonymous(O.IsAnonymous) { }
static unsigned getNewUID() { return LastID++; }
@@ -1461,14 +1449,6 @@ public:
return IsAnonymous;
}
- bool isResolveFirst() const {
- return ResolveFirst;
- }
-
- void setResolveFirst(bool b) {
- ResolveFirst = b;
- }
-
void print(raw_ostream &OS) const;
void dump() const;
Modified: llvm/trunk/lib/TableGen/TGParser.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/TableGen/TGParser.cpp?rev=326789&r1=326788&r2=326789&view=diff
==============================================================================
--- llvm/trunk/lib/TableGen/TGParser.cpp (original)
+++ llvm/trunk/lib/TableGen/TGParser.cpp Tue Mar 6 05:49:06 2018
@@ -2722,12 +2722,6 @@ bool TGParser::ParseDefm(MultiClass *Cur
if (ResolveMulticlassDef(*MC, CurRec, DefProto.get(), DefmLoc))
return Error(SubClassLoc, "could not instantiate def");
- // Defs that can be used by other definitions should be fully resolved
- // before any use.
- if (DefProto->isResolveFirst() && !CurMultiClass) {
- CurRec->resolveReferences();
- CurRec->setResolveFirst(false);
- }
NewRecDefs.push_back(CurRec);
}
More information about the llvm-commits
mailing list