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

Incremental compilation: Be smart about hashing spans #33888

Closed
michaelwoerister opened this issue May 26, 2016 · 4 comments
Closed

Incremental compilation: Be smart about hashing spans #33888

michaelwoerister opened this issue May 26, 2016 · 4 comments
Labels
A-incr-comp Area: Incremental compilation

Comments

@michaelwoerister
Copy link
Member

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:

    a.rs         b.rs           c.rs
|----------|--------------|--------------|
0         100            220            340 bytes

That means that adding a byte to a.rs will change all addresses in b.rs and c.rs. Consequently, were we to incorporate the verbatim BytePos values in the Spans 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

@michaelwoerister michaelwoerister added the A-incr-comp Area: Incremental compilation label May 26, 2016
@nikomatsakis
Copy link
Contributor

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.

@eddyb
Copy link
Member

eddyb commented Jun 4, 2016

OTOH, the Span may not change, but information extracted from it might.

@nikomatsakis I think we can track all users of information from a Span that can affect code generation.

@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.
I think comment changes would otherwise trigger full rebuilds, which we don't want to, I don't think.

@nikomatsakis
Copy link
Contributor

@eddyb besides debuginfo, what users can you think of?

@eddyb
Copy link
Member

eddyb commented Jun 6, 2016

@nikomatsakis I was referring to the syntax extension ones you mentioned, although at this moment that doesn't make much sense, so nevermind.

bors added a commit that referenced this issue Sep 6, 2016
…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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-incr-comp Area: Incremental compilation
Projects
None yet
Development

No branches or pull requests

3 participants