-
Notifications
You must be signed in to change notification settings - Fork 13.1k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Cleanup for "Support compiling rustc without LLVM (try 2)" #43842
Merged
Merged
Changes from 6 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
03584a2
Less cfg's
bjorn3 0c97bbf
Remove some more cfg's
bjorn3 6135b2d
Fix tidy errors
bjorn3 bf0eb6a
Change a #[cfg()] to a cfg!()
bjorn3 1c28cf5
Change run-make ignore message
bjorn3 61ab991
Update driver.rs
bjorn3 005bc2c
Fix error
bjorn3 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ | |
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
#![cfg_attr(not(feature="llvm"), allow(dead_code))] | ||
|
||
use rustc::hir::{self, map as hir_map}; | ||
use rustc::hir::lowering::lower_crate; | ||
use rustc::ich::Fingerprint; | ||
|
@@ -19,8 +21,6 @@ use rustc::session::config::{self, Input, OutputFilenames, OutputType}; | |
use rustc::session::search_paths::PathKind; | ||
use rustc::lint; | ||
use rustc::middle::{self, stability, reachable}; | ||
#[cfg(feature="llvm")] | ||
use rustc::middle::dependency_format; | ||
use rustc::middle::privacy::AccessLevels; | ||
use rustc::mir::transform::{MIR_CONST, MIR_VALIDATED, MIR_OPTIMIZED, Passes}; | ||
use rustc::ty::{self, TyCtxt, Resolutions, GlobalArenas}; | ||
|
@@ -33,9 +33,7 @@ use rustc_incremental::{self, IncrementalHashesMap}; | |
use rustc_resolve::{MakeGlobMap, Resolver}; | ||
use rustc_metadata::creader::CrateLoader; | ||
use rustc_metadata::cstore::{self, CStore}; | ||
#[cfg(feature="llvm")] | ||
use rustc_trans::back::{link, write}; | ||
#[cfg(feature="llvm")] | ||
use rustc_trans::back::write; | ||
use rustc_trans as trans; | ||
use rustc_typeck as typeck; | ||
use rustc_privacy; | ||
|
@@ -73,11 +71,6 @@ pub fn compile_input(sess: &Session, | |
output: &Option<PathBuf>, | ||
addl_plugins: Option<Vec<String>>, | ||
control: &CompileController) -> CompileResult { | ||
#[cfg(feature="llvm")] | ||
use rustc_trans::back::write::OngoingCrateTranslation; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
#[cfg(not(feature="llvm"))] | ||
type OngoingCrateTranslation = (); | ||
|
||
macro_rules! controller_entry_point { | ||
($point: ident, $tsess: expr, $make_state: expr, $phase_result: expr) => {{ | ||
let state = &mut $make_state; | ||
|
@@ -94,6 +87,23 @@ pub fn compile_input(sess: &Session, | |
}} | ||
} | ||
|
||
if cfg!(not(feature="llvm")) { | ||
use rustc::session::config::CrateType; | ||
if !sess.opts.debugging_opts.no_trans && sess.opts.output_types.should_trans() { | ||
sess.err("LLVM is not supported by this rustc. Please use -Z no-trans to compile") | ||
} | ||
|
||
if sess.opts.crate_types.iter().all(|&t|{ | ||
t != CrateType::CrateTypeRlib && t != CrateType::CrateTypeExecutable | ||
}) && !sess.opts.crate_types.is_empty() { | ||
sess.err( | ||
"LLVM is not supported by this rustc, so non rlib libraries are not supported" | ||
); | ||
} | ||
|
||
sess.abort_if_errors(); | ||
} | ||
|
||
// We need nested scopes here, because the intermediate results can keep | ||
// large chunks of memory alive and we want to free them as soon as | ||
// possible to keep the peak memory usage low | ||
|
@@ -217,7 +227,6 @@ pub fn compile_input(sess: &Session, | |
tcx.print_debug_stats(); | ||
} | ||
|
||
#[cfg(feature="llvm")] | ||
let trans = phase_4_translate_to_llvm(tcx, analysis, incremental_hashes_map, | ||
&outputs); | ||
|
||
|
@@ -233,24 +242,13 @@ pub fn compile_input(sess: &Session, | |
} | ||
} | ||
|
||
#[cfg(not(feature="llvm"))] | ||
{ | ||
let _ = incremental_hashes_map; | ||
sess.err(&format!("LLVM is not supported by this rustc")); | ||
sess.abort_if_errors(); | ||
unreachable!(); | ||
} | ||
|
||
#[cfg(feature="llvm")] | ||
Ok((outputs, trans)) | ||
})?? | ||
}; | ||
|
||
#[cfg(not(feature="llvm"))] | ||
{ | ||
let _ = outputs; | ||
let _ = trans; | ||
unreachable!(); | ||
if cfg!(not(feature="llvm")) { | ||
let (_, _) = (outputs, trans); | ||
sess.fatal("LLVM is not supported by this rustc"); | ||
} | ||
|
||
#[cfg(feature="llvm")] | ||
|
@@ -393,7 +391,6 @@ pub struct CompileState<'a, 'tcx: 'a> { | |
pub resolutions: Option<&'a Resolutions>, | ||
pub analysis: Option<&'a ty::CrateAnalysis>, | ||
pub tcx: Option<TyCtxt<'a, 'tcx, 'tcx>>, | ||
#[cfg(feature="llvm")] | ||
pub trans: Option<&'a trans::CrateTranslation>, | ||
} | ||
|
||
|
@@ -420,7 +417,6 @@ impl<'a, 'tcx> CompileState<'a, 'tcx> { | |
resolutions: None, | ||
analysis: None, | ||
tcx: None, | ||
#[cfg(feature="llvm")] | ||
trans: None, | ||
} | ||
} | ||
|
@@ -509,7 +505,6 @@ impl<'a, 'tcx> CompileState<'a, 'tcx> { | |
} | ||
} | ||
|
||
#[cfg(feature="llvm")] | ||
fn state_after_llvm(input: &'a Input, | ||
session: &'tcx Session, | ||
out_dir: &'a Option<PathBuf>, | ||
|
@@ -523,7 +518,6 @@ impl<'a, 'tcx> CompileState<'a, 'tcx> { | |
} | ||
} | ||
|
||
#[cfg(feature="llvm")] | ||
fn state_when_compilation_done(input: &'a Input, | ||
session: &'tcx Session, | ||
out_dir: &'a Option<PathBuf>, | ||
|
@@ -942,7 +936,6 @@ pub fn phase_3_run_analysis_passes<'tcx, F, R>(sess: &'tcx Session, | |
mir::provide(&mut local_providers); | ||
reachable::provide(&mut local_providers); | ||
rustc_privacy::provide(&mut local_providers); | ||
#[cfg(feature="llvm")] | ||
trans::provide(&mut local_providers); | ||
typeck::provide(&mut local_providers); | ||
ty::provide(&mut local_providers); | ||
|
@@ -955,7 +948,6 @@ pub fn phase_3_run_analysis_passes<'tcx, F, R>(sess: &'tcx Session, | |
|
||
let mut extern_providers = ty::maps::Providers::default(); | ||
cstore::provide(&mut extern_providers); | ||
#[cfg(feature="llvm")] | ||
trans::provide(&mut extern_providers); | ||
ty::provide_extern(&mut extern_providers); | ||
traits::provide_extern(&mut extern_providers); | ||
|
@@ -1102,7 +1094,6 @@ pub fn phase_3_run_analysis_passes<'tcx, F, R>(sess: &'tcx Session, | |
|
||
/// Run the translation phase to LLVM, after which the AST and analysis can | ||
/// be discarded. | ||
#[cfg(feature="llvm")] | ||
pub fn phase_4_translate_to_llvm<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, | ||
analysis: ty::CrateAnalysis, | ||
incremental_hashes_map: IncrementalHashesMap, | ||
|
@@ -1112,7 +1103,7 @@ pub fn phase_4_translate_to_llvm<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, | |
|
||
time(time_passes, | ||
"resolving dependency formats", | ||
|| dependency_format::calculate(tcx)); | ||
|| ::rustc::middle::dependency_format::calculate(tcx)); | ||
|
||
let translation = | ||
time(time_passes, | ||
|
@@ -1147,9 +1138,9 @@ pub fn phase_5_run_llvm_passes(sess: &Session, | |
pub fn phase_6_link_output(sess: &Session, | ||
trans: &trans::CrateTranslation, | ||
outputs: &OutputFilenames) { | ||
time(sess.time_passes(), | ||
"linking", | ||
|| link::link_binary(sess, trans, outputs, &trans.crate_name.as_str())); | ||
time(sess.time_passes(), "linking", || { | ||
::rustc_trans::back::link::link_binary(sess, trans, outputs, &trans.crate_name.as_str()) | ||
}); | ||
} | ||
|
||
fn escape_dep_filename(filename: &str) -> String { | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This "run-make" string appears at least 3 times; maybe it would be worth making it a named constant?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd be happy to see a PR which moved all the suites to an enum. I'm not sure that the diff would look good, but if it does seems like a good improvement. Please file an issue if you'd like to implement something like that.