Skip to content

Commit 2398241

Browse files
Rollup merge of rust-lang#41847 - alexcrichton:less-unstable-annotations, r=eddyb
rustc: Add a new `-Z force-unstable-if-unmarked` flag This commit adds a new `-Z` flag to the compiler for use when bootstrapping the compiler itself. We want to be able to use crates.io crates, but we also want the usage of such crates to be as ergonomic as possible! To that end compiler crates are a little tricky in that the crates.io crates are not annotated as unstable, nor do they expect to pull in unstable dependencies. To cover all these situations it's intended that the compiler will forever now bootstrap with `-Z force-unstable-if-unmarked`. This flags serves a dual purpose of forcing crates.io crates to themselves be unstable while also allowing them to use other "unstable" crates.io crates. This should mean that adding a dependency to compiler no longer requires upstream modification with unstable/staged_api attributes for inclusion!
2 parents 9f8ea35 + ab54f4b commit 2398241

File tree

43 files changed

+201
-140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+201
-140
lines changed

src/bootstrap/bin/rustc.rs

+13
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,8 @@ fn main() {
194194
// do that we pass a weird flag to the compiler to get it to do
195195
// so. Note that this is definitely a hack, and we should likely
196196
// flesh out rpath support more fully in the future.
197+
//
198+
// FIXME: remove condition after next stage0
197199
if stage != "0" {
198200
cmd.arg("-Z").arg("osx-rpath-install-name");
199201
}
@@ -218,6 +220,17 @@ fn main() {
218220
cmd.arg("-Z").arg("unstable-options");
219221
cmd.arg("-C").arg("target-feature=+crt-static");
220222
}
223+
224+
// Force all crates compiled by this compiler to (a) be unstable and (b)
225+
// allow the `rustc_private` feature to link to other unstable crates
226+
// also in the sysroot.
227+
//
228+
// FIXME: remove condition after next stage0
229+
if env::var_os("RUSTC_FORCE_UNSTABLE").is_some() {
230+
if stage != "0" {
231+
cmd.arg("-Z").arg("force-unstable-if-unmarked");
232+
}
233+
}
221234
}
222235

223236
if verbose > 1 {

src/bootstrap/lib.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,8 @@ impl Build {
479479
// compiled with debuginfo.
480480
if mode != Mode::Tool {
481481
cargo.env("RUSTC_DEBUGINFO", self.config.rust_debuginfo.to_string())
482-
.env("RUSTC_DEBUGINFO_LINES", self.config.rust_debuginfo_lines.to_string());
482+
.env("RUSTC_DEBUGINFO_LINES", self.config.rust_debuginfo_lines.to_string())
483+
.env("RUSTC_FORCE_UNSTABLE", "1");
483484
}
484485

485486
// Enable usage of unstable features
@@ -524,7 +525,9 @@ impl Build {
524525
// the comipiler, libs, and tests are stable and we don't want to make
525526
// their deps unstable (since this would break the first invariant
526527
// above).
527-
if mode != Mode::Tool {
528+
//
529+
// FIXME: remove this after next stage0
530+
if mode != Mode::Tool && stage == 0 {
528531
cargo.env("RUSTBUILD_UNSTABLE", "1");
529532
}
530533

src/libarena/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
//! objects of a single type.
2020
2121
#![crate_name = "arena"]
22-
#![unstable(feature = "rustc_private", issue = "27812")]
22+
#![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))]
2323
#![crate_type = "rlib"]
2424
#![crate_type = "dylib"]
2525
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
@@ -32,7 +32,7 @@
3232
#![feature(core_intrinsics)]
3333
#![feature(dropck_eyepatch)]
3434
#![feature(generic_param_attrs)]
35-
#![feature(staged_api)]
35+
#![cfg_attr(stage0, feature(staged_api))]
3636
#![cfg_attr(test, feature(test))]
3737

3838
#![allow(deprecated)]

src/libflate/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//! [mz]: https://code.google.com/p/miniz/
1616
1717
#![crate_name = "flate"]
18-
#![unstable(feature = "rustc_private", issue = "27812")]
18+
#![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))]
1919
#![crate_type = "rlib"]
2020
#![crate_type = "dylib"]
2121
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
@@ -25,7 +25,7 @@
2525
#![deny(warnings)]
2626

2727
#![feature(libc)]
28-
#![feature(staged_api)]
28+
#![cfg_attr(stage0, feature(staged_api))]
2929
#![feature(unique)]
3030
#![cfg_attr(test, feature(rand))]
3131

src/libfmt_macros/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//! generated instead.
1616
1717
#![crate_name = "fmt_macros"]
18-
#![unstable(feature = "rustc_private", issue = "27812")]
18+
#![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))]
1919
#![crate_type = "rlib"]
2020
#![crate_type = "dylib"]
2121
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
@@ -25,7 +25,7 @@
2525
test(attr(deny(warnings))))]
2626
#![deny(warnings)]
2727

28-
#![feature(staged_api)]
28+
#![cfg_attr(stage0, feature(staged_api))]
2929
#![feature(unicode)]
3030

3131
pub use self::Piece::*;

src/libgetopts/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@
7878
//! ```
7979
8080
#![crate_name = "getopts"]
81-
#![unstable(feature = "rustc_private",
81+
#![cfg_attr(stage0, unstable(feature = "rustc_private",
8282
reason = "use the crates.io `getopts` library instead",
83-
issue = "27812")]
83+
issue = "27812"))]
8484
#![crate_type = "rlib"]
8585
#![crate_type = "dylib"]
8686
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
@@ -91,7 +91,7 @@
9191

9292
#![deny(missing_docs)]
9393
#![deny(warnings)]
94-
#![feature(staged_api)]
94+
#![cfg_attr(stage0, feature(staged_api))]
9595

9696
use self::Name::*;
9797
use self::HasArg::*;

src/libgraphviz/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,8 @@
284284
//! * [DOT language](http://www.graphviz.org/doc/info/lang.html)
285285
286286
#![crate_name = "graphviz"]
287-
#![unstable(feature = "rustc_private", issue = "27812")]
288-
#![feature(staged_api)]
287+
#![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))]
288+
#![cfg_attr(stage0, feature(staged_api))]
289289
#![crate_type = "rlib"]
290290
#![crate_type = "dylib"]
291291
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",

src/libproc_macro_plugin/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
//! }
7373
//! ```
7474
#![crate_name = "proc_macro_plugin"]
75-
#![unstable(feature = "rustc_private", issue = "27812")]
75+
#![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))]
7676
#![feature(plugin_registrar)]
7777
#![crate_type = "dylib"]
7878
#![crate_type = "rlib"]
@@ -81,9 +81,9 @@
8181
html_root_url = "https://doc.rust-lang.org/nightly/")]
8282
#![deny(warnings)]
8383

84-
#![feature(staged_api)]
84+
#![cfg_attr(stage0, feature(staged_api))]
8585
#![feature(rustc_diagnostic_macros)]
86-
#![feature(rustc_private)]
86+
#![cfg_attr(stage0, feature(rustc_private))]
8787

8888
extern crate rustc_plugin;
8989
extern crate syntax;

src/librustc/lib.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
//! This API is completely unstable and subject to change.
1616
1717
#![crate_name = "rustc"]
18-
#![unstable(feature = "rustc_private", issue = "27812")]
1918
#![crate_type = "dylib"]
2019
#![crate_type = "rlib"]
2120
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
@@ -36,15 +35,17 @@
3635
#![feature(nonzero)]
3736
#![feature(quote)]
3837
#![feature(rustc_diagnostic_macros)]
39-
#![feature(rustc_private)]
4038
#![feature(slice_patterns)]
4139
#![feature(specialization)]
42-
#![feature(staged_api)]
4340
#![feature(unboxed_closures)]
4441
#![feature(discriminant_value)]
4542
#![feature(sort_unstable)]
4643
#![feature(trace_macros)]
4744

45+
#![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))]
46+
#![cfg_attr(stage0, feature(rustc_private))]
47+
#![cfg_attr(stage0, feature(staged_api))]
48+
4849
#![recursion_limit="128"]
4950

5051
extern crate arena;

src/librustc/middle/cstore.rs

-2
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,6 @@ pub trait CrateStore {
233233
fn export_macros(&self, cnum: CrateNum);
234234
fn lang_items(&self, cnum: CrateNum) -> Vec<(DefIndex, usize)>;
235235
fn missing_lang_items(&self, cnum: CrateNum) -> Vec<lang_items::LangItem>;
236-
fn is_staged_api(&self, cnum: CrateNum) -> bool;
237236
fn is_allocator(&self, cnum: CrateNum) -> bool;
238237
fn is_panic_runtime(&self, cnum: CrateNum) -> bool;
239238
fn is_compiler_builtins(&self, cnum: CrateNum) -> bool;
@@ -356,7 +355,6 @@ impl CrateStore for DummyCrateStore {
356355
{ bug!("lang_items") }
357356
fn missing_lang_items(&self, cnum: CrateNum) -> Vec<lang_items::LangItem>
358357
{ bug!("missing_lang_items") }
359-
fn is_staged_api(&self, cnum: CrateNum) -> bool { bug!("is_staged_api") }
360358
fn dep_kind(&self, cnum: CrateNum) -> DepKind { bug!("is_explicitly_linked") }
361359
fn export_macros(&self, cnum: CrateNum) { bug!("export_macros") }
362360
fn is_allocator(&self, cnum: CrateNum) -> bool { bug!("is_allocator") }

src/librustc/middle/stability.rs

+58-23
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
1414
pub use self::StabilityLevel::*;
1515

16-
use hir::map as hir_map;
1716
use lint;
1817
use hir::def::Def;
1918
use hir::def_id::{CrateNum, CRATE_DEF_INDEX, DefId, DefIndex, LOCAL_CRATE};
2019
use ty::{self, TyCtxt};
2120
use middle::privacy::AccessLevels;
21+
use session::Session;
2222
use syntax::symbol::Symbol;
2323
use syntax_pos::{Span, DUMMY_SP};
2424
use syntax::ast;
@@ -123,7 +123,7 @@ impl<'a, 'tcx: 'a> Annotator<'a, 'tcx> {
123123
item_sp: Span, kind: AnnotationKind, visit_children: F)
124124
where F: FnOnce(&mut Self)
125125
{
126-
if self.index.staged_api[&LOCAL_CRATE] && self.tcx.sess.features.borrow().staged_api {
126+
if self.index.staged_api[&LOCAL_CRATE] {
127127
debug!("annotate(id = {:?}, attrs = {:?})", id, attrs);
128128
if let Some(..) = attr::find_deprecation(self.tcx.sess.diagnostic(), attrs, item_sp) {
129129
self.tcx.sess.span_err(item_sp, "`#[deprecated]` cannot be used in staged api, \
@@ -390,20 +390,36 @@ impl<'a, 'tcx> Index<'tcx> {
390390
parent_depr: None,
391391
in_trait_impl: false,
392392
};
393+
394+
// If the `-Z force-unstable-if-unmarked` flag is passed then we provide
395+
// a parent stability annotation which indicates that this is private
396+
// with the `rustc_private` feature. This is intended for use when
397+
// compiling librustc crates themselves so we can leverage crates.io
398+
// while maintaining the invariant that all sysroot crates are unstable
399+
// by default and are unable to be used.
400+
if tcx.sess.opts.debugging_opts.force_unstable_if_unmarked {
401+
let reason = "this crate is being loaded from the sysroot, and \
402+
unstable location; did you mean to load this crate \
403+
from crates.io via `Cargo.toml` instead?";
404+
let stability = tcx.intern_stability(Stability {
405+
level: attr::StabilityLevel::Unstable {
406+
reason: Some(Symbol::intern(reason)),
407+
issue: 27812,
408+
},
409+
feature: Symbol::intern("rustc_private"),
410+
rustc_depr: None,
411+
});
412+
annotator.parent_stab = Some(stability);
413+
}
414+
393415
annotator.annotate(ast::CRATE_NODE_ID, &krate.attrs, krate.span, AnnotationKind::Required,
394416
|v| intravisit::walk_crate(v, krate));
395417
}
396418

397-
pub fn new(hir_map: &hir_map::Map) -> Index<'tcx> {
398-
let krate = hir_map.krate();
399-
400-
let mut is_staged_api = false;
401-
for attr in &krate.attrs {
402-
if attr.path == "stable" || attr.path == "unstable" {
403-
is_staged_api = true;
404-
break
405-
}
406-
}
419+
pub fn new(sess: &Session) -> Index<'tcx> {
420+
let is_staged_api =
421+
sess.opts.debugging_opts.force_unstable_if_unmarked ||
422+
sess.features.borrow().staged_api;
407423

408424
let mut staged_api = FxHashMap();
409425
staged_api.insert(LOCAL_CRATE, is_staged_api);
@@ -496,8 +512,10 @@ impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
496512
}
497513
}
498514

499-
let is_staged_api = *self.stability.borrow_mut().staged_api.entry(def_id.krate)
500-
.or_insert_with(|| self.sess.cstore.is_staged_api(def_id.krate));
515+
let is_staged_api = self.lookup_stability(DefId {
516+
index: CRATE_DEF_INDEX,
517+
..def_id
518+
}).is_some();
501519
if !is_staged_api {
502520
return;
503521
}
@@ -530,15 +548,32 @@ impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
530548

531549
match stability {
532550
Some(&Stability { level: attr::Unstable {ref reason, issue}, ref feature, .. }) => {
533-
if !self.stability.borrow().active_features.contains(feature) {
534-
let msg = match *reason {
535-
Some(ref r) => format!("use of unstable library feature '{}': {}",
536-
feature.as_str(), &r),
537-
None => format!("use of unstable library feature '{}'", &feature)
538-
};
539-
emit_feature_err(&self.sess.parse_sess, &feature.as_str(), span,
540-
GateIssue::Library(Some(issue)), &msg);
551+
if self.stability.borrow().active_features.contains(feature) {
552+
return
541553
}
554+
555+
// When we're compiling the compiler itself we may pull in
556+
// crates from crates.io, but those crates may depend on other
557+
// crates also pulled in from crates.io. We want to ideally be
558+
// able to compile everything without requiring upstream
559+
// modifications, so in the case that this looks like a
560+
// rustc_private crate (e.g. a compiler crate) and we also have
561+
// the `-Z force-unstable-if-unmarked` flag present (we're
562+
// compiling a compiler crate), then let this missing feature
563+
// annotation slide.
564+
if *feature == "rustc_private" && issue == 27812 {
565+
if self.sess.opts.debugging_opts.force_unstable_if_unmarked {
566+
return
567+
}
568+
}
569+
570+
let msg = match *reason {
571+
Some(ref r) => format!("use of unstable library feature '{}': {}",
572+
feature.as_str(), &r),
573+
None => format!("use of unstable library feature '{}'", &feature)
574+
};
575+
emit_feature_err(&self.sess.parse_sess, &feature.as_str(), span,
576+
GateIssue::Library(Some(issue)), &msg);
542577
}
543578
Some(_) => {
544579
// Stable APIs are always ok to call and deprecated APIs are
@@ -658,7 +693,7 @@ pub fn check_unused_or_stable_features<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>) {
658693

659694
let access_levels = &tcx.privacy_access_levels(LOCAL_CRATE);
660695

661-
if tcx.stability.borrow().staged_api[&LOCAL_CRATE] && tcx.sess.features.borrow().staged_api {
696+
if tcx.stability.borrow().staged_api[&LOCAL_CRATE] {
662697
let krate = tcx.hir.krate();
663698
let mut missing = MissingStabilityAnnotations {
664699
tcx: tcx,

src/librustc/session/config.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1027,6 +1027,8 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
10271027
"add a source pattern to the file path remapping config"),
10281028
remap_path_prefix_to: Vec<String> = (vec![], parse_string_push, [TRACKED],
10291029
"add a mapping target to the file path remapping config"),
1030+
force_unstable_if_unmarked: bool = (false, parse_bool, [TRACKED],
1031+
"force all crates to be `rustc_private` unstable"),
10301032
}
10311033

10321034
pub fn default_lib_output() -> CrateType {

src/librustc_back/lib.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
//! build speedups.
2323
2424
#![crate_name = "rustc_back"]
25-
#![unstable(feature = "rustc_private", issue = "27812")]
2625
#![crate_type = "dylib"]
2726
#![crate_type = "rlib"]
2827
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
@@ -34,10 +33,12 @@
3433
#![feature(const_fn)]
3534
#![feature(libc)]
3635
#![feature(rand)]
37-
#![feature(rustc_private)]
38-
#![feature(staged_api)]
3936
#![cfg_attr(test, feature(rand))]
4037

38+
#![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))]
39+
#![cfg_attr(stage0, feature(rustc_private))]
40+
#![cfg_attr(stage0, feature(staged_api))]
41+
4142
extern crate syntax;
4243
extern crate libc;
4344
extern crate serialize;

src/librustc_bitflags/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111

1212
#![crate_name = "rustc_bitflags"]
1313
#![feature(associated_consts)]
14-
#![feature(staged_api)]
1514
#![crate_type = "rlib"]
1615
#![no_std]
17-
#![unstable(feature = "rustc_private", issue = "27812")]
1816
#![deny(warnings)]
17+
#![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))]
18+
#![cfg_attr(stage0, feature(staged_api))]
1919

2020
//! A typesafe bitmask flag generator.
2121

0 commit comments

Comments
 (0)