-
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
during incr. comp. place .o
files in incr. comp. directory and give predictable name
#34036
Comments
Seems to me like using the hash generated as part of #34037 should suffice? Not only, then, it would be trivial to check for need to regenerate only the necessary files (doesn’t exist? rebuild), but also easy to keep clean (didn’t use that hash? remove.) |
@nagisa yeah, we could use the hashes, though the partitions already have stable names at present, so that works too. |
I'd opt for including a human-readable name into the obj file name for debugging reasons. |
OK, so, I made a branch that places |
I will open the PR once #33890 lands. |
cc @rust-lang/tools curious to get your take on this comment |
I believe that in the long term, in a situation without dynamic libraries, we would want to avoid generating intermediary |
What does it do when no incremental compilation directory is given? Just use the output directory? |
@michaelwoerister yes, as before. |
If you run in incremental mode, how would this work if we deleted the object files? Don't we have to leave them around to reuse them? I do think though that
Oh so we always leave it in the incremental directory, and only maybe move it out?
I've found a great way to handle this is: fs::hard_link(src, dst).or_else(|_| fs::copy(src, dst)) That way it attempts to do the super fast thing first which normally succeeds, but in weird cases it'll copy some files. |
@alexcrichton I can't really tell which design you are advocating for :) but yes that hard-link thing seems elegant. Maybe it's better then to keep everything in the output directory (as today) but also copy/link things into or out of the incr. dir in incremental mode. Obviously not a huge deal either way. |
Oh hm I may just actually be confused about what the possible designs here are. To me the title of this issue is an clear "we can literally never be incremental without doing that". The next piece:
So right now we spray a bunch of files in the output directory, and do you mean that we never delete these files if incremental is turned on? If that's the case then I'd instead recommend what I think your next strategy was with always emit object files into the incremental directory directly, and then only if Does that make sense? |
This is the option that makes the most sense to me. |
Hmm. That is indeed a "third way". It's the most complicated to implement, but perhaps the best. Basically we'll generate all files into the "temporary directory" (which is the incremental directory or, if not in incr. mode, the output directory). When done, what we do depends on our mode:
I'll see if I can make this clean in the code =) |
Note that I also don't mind simplifying it and saying that if we're in incremental mode and save-temps is on we just do nothing. I don't think For example we've changed object file names a bunch over time so there's never been a way to in a stable method leverage the flag beyond one-off debugging. |
I am now leaning towards my original plan -- keep everything as it is, but link/copy files out of the output directory and into the incremental directory. The reason is that the filenames we currently generate include the user's choice of "filestem" -- so, for example, if they are running like this:
we will generate files like I guess one option is just to further alter the But overall it seems easier to do the following:
As a bonus, save-temps works as it does today (and as I think we probably want), though I agree that's not a particularly big deal. I just want to drill a bit more into the downsides of this plan, I guess. The main thing I can see is that we have to link/copy even in the normal path -- though I wouldn't really expect that to be expensive except maybe in extreme situations. Are there other problems? |
This is a very good point! I agree that we should always have it such that the format of the incremental directory is entirely up to us and isn't stable at all. I think your plan sounds good to me, the only perf case that really matters is when you need to reload a file from that directory, but when we link executables today we're already throwing around rlibs on the filesystem and in 99% of cases a hard link will work so I wouldn't be too worried about the perf (mainly b/c of hard links). |
Enable reuse of `.o` files if nothing has changed This PR completes a first "spike" for incremental compilation by enabling us to reuse `.o` files when nothing has changed. When in incr. mode, we will save `.o` files into the temporary directory, then copy them back out again if they are still valid. The code is still a bit rough but it does seem to work. =) r? @michaelwoerister Fixes #34036 Fixes #34037 Fixes #34038
As part of the incr. comp. work, we need to place the intermediate
.o
files for each partition into the incr. comp. directory (and not erase them after we're done). They should be given names that reflect the name of the partition they represent. This will let us reuse them in later compilations when possible.cc @michaelwoerister
The text was updated successfully, but these errors were encountered: