This commit is contained in:
Jan Jurzitza 2025-03-01 02:12:59 +01:00 committed by GitHub
commit 9b8dd698af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 22 additions and 6 deletions

View File

@ -554,13 +554,29 @@ alias UpdatePairCollection = TTree!(UpdatePair, UpdatePairCollectionAllocator, f
void generateUpdatePairs(DSymbol* oldSymbol, DSymbol* newSymbol, ref UpdatePairCollection results)
{
results.insert(UpdatePair(oldSymbol, newSymbol));
foreach (part; oldSymbol.parts[])
foreach (part; oldSymbol.opSlice())
{
auto temp = DSymbol(oldSymbol.name);
auto r = newSymbol.parts.equalRange(SymbolOwnership(&temp));
if (r.empty)
continue;
generateUpdatePairs(part, r.front, results);
bool has = false;
DSymbol* r = null;
foreach (newPart; newSymbol.opSlice())
{
if(part == newPart)
{
has = true;
r = newPart;
break;
}
if (part.name == newPart.name && part.location == newPart.location)
{
has = true;
r = newPart;
break;
}
}
if (!has) continue;
generateUpdatePairs(part, r, results);
}
}