mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
When resolving upreferences, if multiple uprefs will be resolved to the same
type at the same time, resolve the upreferences to each other before resolving it to the outer type. This shaves off some time from the testcase in PR224, from 25.41s -> 21.72s. llvm-svn: 11241
This commit is contained in:
parent
00b2107e2a
commit
7eb118e4f7
@ -626,6 +626,13 @@ static PATypeHolder HandleUpRefs(const Type *ty) {
|
||||
UR_OUT("Type '" << Ty->getDescription() <<
|
||||
"' newly formed. Resolving upreferences.\n" <<
|
||||
UpRefs.size() << " upreferences active!\n");
|
||||
|
||||
// If we find any resolvable upreferences (i.e., those whose NestingLevel goes
|
||||
// to zero), we resolve them all together before we resolve them to Ty. At
|
||||
// the end of the loop, if there is anything to resolve to Ty, it will be in
|
||||
// this variable.
|
||||
OpaqueType *TypeToResolve = 0;
|
||||
|
||||
for (unsigned i = 0; i != UpRefs.size(); ++i) {
|
||||
UR_OUT(" UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
|
||||
<< UpRefs[i].second->getDescription() << ") = "
|
||||
@ -636,18 +643,29 @@ static PATypeHolder HandleUpRefs(const Type *ty) {
|
||||
UpRefs[i].LastContainedTy = Ty;
|
||||
UR_OUT(" Uplevel Ref Level = " << Level << "\n");
|
||||
if (Level == 0) { // Upreference should be resolved!
|
||||
if (!TypeToResolve) {
|
||||
TypeToResolve = UpRefs[i].UpRefTy;
|
||||
} else {
|
||||
UR_OUT(" * Resolving upreference for "
|
||||
<< UpRefs[i].second->getDescription() << "\n";
|
||||
std::string OldName = UpRefs[i].UpRefTy->getDescription());
|
||||
UpRefs[i].UpRefTy->refineAbstractTypeTo(Ty);
|
||||
UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
|
||||
UR_OUT(" * Type '" << OldName << "' refined upreference to: "
|
||||
<< (const void*)Ty << ", " << Ty->getDescription() << "\n");
|
||||
}
|
||||
UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list...
|
||||
--i; // Do not skip the next element...
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (TypeToResolve) {
|
||||
UR_OUT(" * Resolving upreference for "
|
||||
<< UpRefs[i].second->getDescription() << "\n";
|
||||
std::string OldName = UpRefs[i].UpRefTy->getDescription());
|
||||
TypeToResolve->refineAbstractTypeTo(Ty);
|
||||
}
|
||||
|
||||
return Ty;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user