diff options
| author | mlugg <mlugg@mlugg.co.uk> | 2024-08-18 15:59:24 +0100 |
|---|---|---|
| committer | mlugg <mlugg@mlugg.co.uk> | 2024-08-18 18:10:59 +0100 |
| commit | b745fee1f8dddd92c7d112cd7440e6b540458051 (patch) | |
| tree | 160dd2df9b2b4b94bc978aaae5689a772e3ff6f7 /src/Zcu/PerThread.zig | |
| parent | 93a5bd262defe4c09a617a4ecc68340e20a2b20b (diff) | |
| download | zig-b745fee1f8dddd92c7d112cd7440e6b540458051.tar.gz zig-b745fee1f8dddd92c7d112cd7440e6b540458051.zip | |
frontend: handle incremental updates of replaced runtime functions
Diffstat (limited to 'src/Zcu/PerThread.zig')
| -rw-r--r-- | src/Zcu/PerThread.zig | 42 |
1 files changed, 18 insertions, 24 deletions
diff --git a/src/Zcu/PerThread.zig b/src/Zcu/PerThread.zig index 88bc318b3c..bc6d945782 100644 --- a/src/Zcu/PerThread.zig +++ b/src/Zcu/PerThread.zig @@ -734,31 +734,25 @@ fn ensureFuncBodyAnalyzedInner( const func = zcu.funcInfo(func_index); const anal_unit = AnalUnit.wrap(.{ .func = func_index }); - // Here's an interesting question: is this function actually valid? - // Maybe the signature changed, so we'll end up creating a whole different `func` - // in the InternPool, and this one is a waste of time to analyze. Worse, we'd be - // analyzing new ZIR with old data, and get bogus errors. They would be unused, - // but they would still hang around internally! So, let's detect this case. - // For function decls, we must ensure the declaration's `Cau` is up-to-date, and - // check if `func_index` was removed by that update. - // For function instances, we do that process on the generic owner. - - try pt.ensureCauAnalyzed(cau: { - const func_nav = if (func.generic_owner == .none) - func.owner_nav - else - zcu.funcInfo(func.generic_owner).owner_nav; - - break :cau ip.getNav(func_nav).analysis_owner.unwrap().?; - }); - - if (ip.isRemoved(func_index) or (func.generic_owner != .none and ip.isRemoved(func.generic_owner))) { - if (func_outdated) { - try zcu.markDependeeOutdated(.marked_po, .{ .interned = func_index }); // IES + // Make sure that this function is still owned by the same `Nav`. Otherwise, analyzing + // it would be a waste of time in the best case, and could cause codegen to give bogus + // results in the worst case. + + if (func.generic_owner == .none) { + try pt.ensureCauAnalyzed(ip.getNav(func.owner_nav).analysis_owner.unwrap().?); + if (ip.getNav(func.owner_nav).status.resolved.val != func_index) { + // This function is no longer referenced! There's no point in re-analyzing it. + // Just mark a transitive failure and move on. + return error.AnalysisFail; + } + } else { + const go_nav = zcu.funcInfo(func.generic_owner).owner_nav; + try pt.ensureCauAnalyzed(ip.getNav(go_nav).analysis_owner.unwrap().?); + if (ip.getNav(go_nav).status.resolved.val != func.generic_owner) { + // The generic owner is no longer referenced, so this function is also unreferenced. + // There's no point in re-analyzing it. Just mark a transitive failure and move on. + return error.AnalysisFail; } - ip.removeDependenciesForDepender(gpa, AnalUnit.wrap(.{ .func = func_index })); - ip.remove(pt.tid, func_index); - @panic("TODO: remove orphaned function from binary"); } // We'll want to remember what the IES used to be before the update for |
