Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 23cf624

Browse files
authoredFeb 19, 2018
Rollup merge of rust-lang#48208 - michaelwoerister:track-features, r=petrochenkov
Turn feature-gate table into a query so it is covered by dependency tracking. Turn access to feature gates into a query so we handle them correctly during incremental compilation. Features are still available via `Session` through `features_untracked()`. I wish we had a better way of hiding untracked information. It would be great if we could remove the `sess` field from `TyCtxt`. Fixes rust-lang#47003.
2 parents c9103c3 + d691c46 commit 23cf624

File tree

49 files changed

+226
-136
lines changed

Some content is hidden

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

49 files changed

+226
-136
lines changed
 

‎src/librustc/dep_graph/dep_node.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -436,6 +436,9 @@ impl DepKind {
436436
}
437437

438438
define_dep_nodes!( <'tcx>
439+
// We use this for most things when incr. comp. is turned off.
440+
[] Null,
441+
439442
// Represents the `Krate` as a whole (the `hir::Krate` value) (as
440443
// distinct from the krate module). This is basically a hash of
441444
// the entire krate, so if you read from `Krate` (e.g., by calling
@@ -605,8 +608,8 @@ define_dep_nodes!( <'tcx>
605608
[input] MissingExternCrateItem(CrateNum),
606609
[input] UsedCrateSource(CrateNum),
607610
[input] PostorderCnums,
608-
[input] HasCloneClosures(CrateNum),
609-
[input] HasCopyClosures(CrateNum),
611+
[] HasCloneClosures(CrateNum),
612+
[] HasCopyClosures(CrateNum),
610613

611614
// This query is not expected to have inputs -- as a result, it's
612615
// not a good candidate for "replay" because it's essentially a
@@ -630,8 +633,6 @@ define_dep_nodes!( <'tcx>
630633
[] CompileCodegenUnit(InternedString),
631634
[input] OutputFilenames,
632635
[anon] NormalizeTy,
633-
// We use this for most things when incr. comp. is turned off.
634-
[] Null,
635636

636637
[] SubstituteNormalizeAndTestPredicates { key: (DefId, &'tcx Substs<'tcx>) },
637638

@@ -642,6 +643,7 @@ define_dep_nodes!( <'tcx>
642643

643644
[] GetSymbolExportLevel(DefId),
644645

646+
[input] Features,
645647
);
646648

647649
trait DepNodeParams<'a, 'gcx: 'tcx + 'a, 'tcx: 'a> : fmt::Debug {

‎src/librustc/hir/lowering.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ impl<'a> LoweringContext<'a> {
550550
{
551551
assert!(!self.is_collecting_in_band_lifetimes);
552552
assert!(self.lifetimes_to_define.is_empty());
553-
self.is_collecting_in_band_lifetimes = self.sess.features.borrow().in_band_lifetimes;
553+
self.is_collecting_in_band_lifetimes = self.sess.features_untracked().in_band_lifetimes;
554554

555555
assert!(self.in_band_ty_params.is_empty());
556556

@@ -957,7 +957,7 @@ impl<'a> LoweringContext<'a> {
957957
let span = t.span;
958958
match itctx {
959959
ImplTraitContext::Existential => {
960-
let has_feature = self.sess.features.borrow().conservative_impl_trait;
960+
let has_feature = self.sess.features_untracked().conservative_impl_trait;
961961
if !t.span.allows_unstable() && !has_feature {
962962
emit_feature_err(&self.sess.parse_sess, "conservative_impl_trait",
963963
t.span, GateIssue::Language,
@@ -981,7 +981,7 @@ impl<'a> LoweringContext<'a> {
981981
}, lifetimes)
982982
},
983983
ImplTraitContext::Universal(def_id) => {
984-
let has_feature = self.sess.features.borrow().universal_impl_trait;
984+
let has_feature = self.sess.features_untracked().universal_impl_trait;
985985
if !t.span.allows_unstable() && !has_feature {
986986
emit_feature_err(&self.sess.parse_sess, "universal_impl_trait",
987987
t.span, GateIssue::Language,

0 commit comments

Comments
 (0)
Please sign in to comment.