-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Incremental compilation: Be smart about hashing spans #33888
Comments
Indeed. I think that spans can be significant in other ways, such as macros that expand to the current filename/linenumber--ah but I guess those are desugaring in the HIR anyhow. |
OTOH, the @nikomatsakis I think we can track all users of information from a @michaelwoerister For LLVM debuginfo, we could actually transform the debug info metadata nodes to correspond to new locations, although the C API might not have the facilities to do so. |
@eddyb besides debuginfo, what users can you think of? |
@nikomatsakis I was referring to the syntax extension ones you mentioned, although at this moment that doesn't make much sense, so nevermind. |
…atsakis incr. comp.: Take spans into account for ICH This PR makes the ICH (incr. comp. hash) take spans into account when debuginfo is enabled. A side-effect of this is that the SVH (which is based on the ICHs of all items in the crate) becomes sensitive to the tiniest change in a code base if debuginfo is enabled. Since we are not trying to model ABI compatibility via the SVH anymore (this is done via the crate disambiguator now), this should be not be a problem. Fixes #33888. Fixes #32753.
The way the code-map is currently set up, all source files of a crate and its dependencies are layout into one big "address space", e.g:
That means that adding a byte to
a.rs
will change all addresses inb.rs
andc.rs
. Consequently, were we to incorporate the verbatimBytePos
values in theSpans
contained in the AST, small changes would cause recompilations of seemingly unrelated files.Thus, we need to find a more stable way of hashing spans, like expanding them to
file-name:line:col
(or not hash them at all, if we don't compile with debuginfo).cc @nikomatsakis
The text was updated successfully, but these errors were encountered: