Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fetch the value of has_ffi_unwind_calls before stealing mir_built. #108777

Closed
wants to merge 1 commit into from

Conversation

cjgillot
Copy link
Contributor

@cjgillot cjgillot commented Mar 5, 2023

Just calling ensure is not enough, as it does not verify that the value can be loaded from the on-disk cache. Later code could then try to get the value, fail to find it in the cache, and call the has_ffi_unwind_calls function, and boom.

Fixes #104423
Fixes #105157
Fixes #107797
Fixes #108411
Fixes #108633

@rustbot
Copy link
Collaborator

rustbot commented Mar 5, 2023

r? @WaffleLapkin

(rustbot has picked a reviewer for you, use r? to override)

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Mar 5, 2023
@rustbot
Copy link
Collaborator

rustbot commented Mar 5, 2023

Some changes occurred to MIR optimizations

cc @rust-lang/wg-mir-opt

// so make sure it is run.
if def.const_param_did.is_none() {
// Actually fetch the value, to avoid having to compute the query later.
let _ = tcx.has_ffi_unwind_calls(def.did);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are ensure() calls few lines above this, are they unaffected by the same issue for some reason?

Also, what is the use-case for ensure, if it doesn't ensure that we have the query value?... I'm very confused by all of this...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ensure creates a dependency edge. However, it does not compute the value. For instance, if has_ffi_unwind_calls were to emit diagnostics, ensure would check that the dependencies are unchanged, replay the diagnostics (loaded from disk), but wouldn't try to load the cached value.

And yes, all uses of ensure() before a steal() are probably wrong. However, I find unelegant to invoke a query just to ignore its result.

There are 2 ways to definitely fix this:

  1. change most of the ensures;
  2. check that we can decode the value from disk on ensure.

I'm leaning on 2, but haven't finished implementing it.

@cjgillot
Copy link
Contributor Author

cjgillot commented Mar 6, 2023

Filed #108820 to implement the other solution.

@cjgillot cjgillot closed this Mar 7, 2023
@cjgillot cjgillot deleted the ffi-unwind branch March 7, 2023 13:48
@WaffleLapkin WaffleLapkin removed the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Dec 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
3 participants