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

Extract LLVM, rustc::back, misc from rustc #15511

Merged
merged 13 commits into from
Jul 15, 2014

Conversation

brson
Copy link
Contributor

@brson brson commented Jul 7, 2014

This was my weekend project, to start breaking up rustc. It first pulls out LLVM into rustc_llvm, then parts of rustc::back and rustc::util to rustc_back. The immediate intent is just to reduce the size of rustc, to reduce memory pressure when building rustc, but this is also a good starting point for further refactoring.

The rustc_back crate is definitely misnamed (rustc::back was never a very cohesive module anyway) - it's mostly just somewhere to stuff parts of rustc that don't have many deps. Right now it's main dep is syntax; it has no dep on rustc_llvm.

Some next steps might be to split rustc_back into rustc_util (with no syntax dep), and rustc_syntax_util (with a syntax dep); move the rest of rustc::util into rustc_syntax_util; move all of rustc::front to a new crate, rustc_front. At that point the refactoring necessary to keep extracting crates will get harder.

@brson
Copy link
Contributor Author

brson commented Jul 7, 2014

I didn't measure the peak resident memory building rustc, but here are the before and after bin sizes:

-rwxrwxr-x 1 brian brian 52277839 Jul  7 12:07 x86_64-unknown-linux-gnu/stage2/lib/librustc-4e7c5e5c.so
-rwxrwxr-x 1 brian brian 19807938 Jul  7 11:53 x86_64-unknown-linux-gnu/stage2/lib/librustc-4e7c5e5c.so
-rwxrwxr-x 1 brian brian   375565 Jul  7 11:53 x86_64-unknown-linux-gnu/stage2/lib/librustc_back-4e7c5e5c.so
-rwxrwxr-x 1 brian brian 32203140 Jul  7 11:53 x86_64-unknown-linux-gnu/stage2/lib/librustc_llvm-4e7c5e5c.so

You can see the majority of rustc is LLVM, which is now in its own crate. Should make it easier on the linker at least.

@alexcrichton
Copy link
Member

cc #560

llvm::llvm::LLVMInitializeMipsTarget();
llvm::llvm::LLVMInitializeMipsTargetMC();
llvm::llvm::LLVMInitializeMipsAsmPrinter();
llvm::llvm::LLVMInitializeMipsAsmParser();
Copy link
Member

Choose a reason for hiding this comment

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

Perhaps there is an organization where you write "llvm" at most twice?

@pcwalton
Copy link
Contributor

pcwalton commented Jul 7, 2014

I'd like @alexcrichton to look this over as well, but it looks good to me.

@brson
Copy link
Contributor Author

brson commented Jul 8, 2014

@alexcrichton I fixed the llvm::llvm problem by just removing that crufty inner llvm module.

pub dst: Path,
pub lib_search_paths: Vec<Path>,
pub os: abi::Os,
pub maybe_ar_prog: Option<String>
}
Copy link
Member

Choose a reason for hiding this comment

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

This is an interesting pattern, not sure I'm a huge fan but it certainly helps breaking deps!

@brson
Copy link
Contributor Author

brson commented Jul 8, 2014

@alexcrichton Do you want to not do this?

@alexcrichton
Copy link
Member

I very much like the idea of splitting up rustc both in terms of build times and lines between dependencies. I don't want to go too far down the road of FooConfig structures which are just vtables for what a future library will provide, but the current ones seem like they won't have as many callbacks once rustc_util exists.

As in, I'm not sure that this is the best organization, but there is a clear path forward that I'm happy with, so I'm fine merging this with future improvements on the way.

bors added a commit that referenced this pull request Jul 15, 2014
This was my weekend project, to start breaking up rustc. It first pulls out LLVM into `rustc_llvm`, then parts of `rustc::back` and `rustc::util` to `rustc_back`. The immediate intent is just to reduce the size of rustc, to reduce memory pressure when building rustc, but this is also a good starting point for further refactoring.

The `rustc_back` crate is definitely misnamed (`rustc::back` was never a very cohesive module anyway) - it's mostly just somewhere to stuff parts of rustc that don't have many deps. Right now it's main dep is `syntax`; it has no dep on `rustc_llvm`.

Some next steps might be to split `rustc_back` into `rustc_util` (with no `syntax` dep), and `rustc_syntax_util` (with a syntax dep); move the rest of `rustc::util` into `rustc_syntax_util`; move all of `rustc::front` to a new crate, `rustc_front`. At that point the refactoring necessary to keep extracting crates will get harder.
@bors bors closed this Jul 15, 2014
@bors bors merged commit a008fc8 into rust-lang:master Jul 15, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants