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

Add in memory object files support to CompiledModule and ArchiveBuilder #69946

Open
bjorn3 opened this issue Mar 12, 2020 · 3 comments
Open

Add in memory object files support to CompiledModule and ArchiveBuilder #69946

bjorn3 opened this issue Mar 12, 2020 · 3 comments
Labels
A-codegen Area: Code generation A-cranelift Things relevant to the [future] cranelift backend C-enhancement Category: An issue proposing an enhancement or a PR with one. I-compiletime Issue: Problems and improvements with respect to compile times. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@bjorn3
Copy link
Member

bjorn3 commented Mar 12, 2020

https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_ssa/struct.CompiledModule.html

https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_ssa/back/archive/trait.ArchiveBuilder.html

rustc_codegen_cranelift can emit object files to memory without writing them to the disk. With the current setup they need to be written to the disk before an rlib can be created. This doubles the amount of data written to the disk compared to emitting the object files to memory and then creating an rlib file from that. Linking a dylib or executable will still need to write the object files to the disk, but at least rlibs don't have to anymore.

@jonas-schievink jonas-schievink added A-codegen Area: Code generation C-enhancement Category: An issue proposing an enhancement or a PR with one. I-compiletime Issue: Problems and improvements with respect to compile times. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Mar 12, 2020
@Centril Centril added the A-cranelift Things relevant to the [future] cranelift backend label Mar 12, 2020
@hanna-kruppe
Copy link
Contributor

Aside: LLVM also supports emitting object files into memory (just pass a raw_string_ostream instead of a raw_fd_ostream), so if this feature gets implemented for cranelift codegen and helps there, it might help LLVM codegen too.

@bjorn3
Copy link
Member Author

bjorn3 commented Mar 15, 2020

We may want to only do this when the total size of all codegen units is below a certain threshold to reduce max-rss for big crates like script and rustc. (Assuming that LLVM performs the archive building in a streaming way like cg_clif.)

@bjorn3
Copy link
Member Author

bjorn3 commented Dec 15, 2022

cc #104191 for the archive builder part

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-codegen Area: Code generation A-cranelift Things relevant to the [future] cranelift backend C-enhancement Category: An issue proposing an enhancement or a PR with one. I-compiletime Issue: Problems and improvements with respect to compile times. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

4 participants