Skip to content

Commit 289ad6e

Browse files
committed
Auto merge of #52591 - eddyb:functional-snakes, r=oli-obk
rustc: remove {FxHash,Node,DefId,HirId,ItemLocal}{Map,Set} "constructor" fns. These are cruft left over from a time when `Foo::default()` didn't "just work".
2 parents 780658a + 7683180 commit 289ad6e

File tree

39 files changed

+129
-144
lines changed

39 files changed

+129
-144
lines changed

src/Cargo.lock

+10-1
Original file line numberDiff line numberDiff line change
@@ -659,6 +659,14 @@ dependencies = [
659659
"log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
660660
]
661661

662+
[[package]]
663+
name = "ena"
664+
version = "0.10.1"
665+
source = "registry+https://github.com/rust-lang/crates.io-index"
666+
dependencies = [
667+
"log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
668+
]
669+
662670
[[package]]
663671
name = "env_logger"
664672
version = "0.5.12"
@@ -2196,7 +2204,7 @@ name = "rustc_data_structures"
21962204
version = "0.0.0"
21972205
dependencies = [
21982206
"cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
2199-
"ena 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)",
2207+
"ena 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
22002208
"graphviz 0.0.0",
22012209
"log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
22022210
"parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -3261,6 +3269,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
32613269
"checksum difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
32623270
"checksum either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0"
32633271
"checksum elasticlunr-rs 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4837d77a1e157489a3933b743fd774ae75074e0e390b2b7f071530048a0d87ee"
3272+
"checksum ena 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "25b4e5febb25f08c49f1b07dc33a182729a6b21edfb562b5aef95f78e0dbe5bb"
32643273
"checksum ena 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "88dc8393b3c7352f94092497f6b52019643e493b6b890eb417cdb7c46117e621"
32653274
"checksum env_logger 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)" = "f4d7e69c283751083d53d01eac767407343b8b69c4bd70058e08adc2637cb257"
32663275
"checksum env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "afb070faf94c85d17d50ca44f6ad076bce18ae92f0037d350947240a36e9d42e"

src/librustc/dep_graph/graph.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,11 @@ impl DepGraph {
101101
DepGraph {
102102
data: Some(Lrc::new(DepGraphData {
103103
previous_work_products: prev_work_products,
104-
dep_node_debug: Lock::new(Default::default()),
104+
dep_node_debug: Default::default(),
105105
current: Lock::new(CurrentDepGraph::new()),
106106
previous: prev_graph,
107107
colors: Lock::new(DepNodeColorMap::new(prev_graph_node_count)),
108-
loaded_from_cache: Lock::new(Default::default()),
108+
loaded_from_cache: Default::default(),
109109
})),
110110
fingerprints: Lrc::new(Lock::new(fingerprints)),
111111
}

src/librustc/hir/lowering.rs

+10-7
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,9 @@ pub fn lower_crate(
244244
loop_scopes: Vec::new(),
245245
is_in_loop_condition: false,
246246
anonymous_lifetime_mode: AnonymousLifetimeMode::PassThrough,
247-
type_def_lifetime_params: DefIdMap(),
247+
type_def_lifetime_params: Default::default(),
248248
current_hir_id_owner: vec![(CRATE_DEF_INDEX, 0)],
249-
item_local_id_counters: NodeMap(),
249+
item_local_id_counters: Default::default(),
250250
node_id_to_hir_id: IndexVec::new(),
251251
is_generator: false,
252252
is_in_trait_impl: false,
@@ -1168,7 +1168,7 @@ impl<'a> LoweringContext<'a> {
11681168
hir::TyKind::BareFn(P(hir::BareFnTy {
11691169
generic_params: this.lower_generic_params(
11701170
&f.generic_params,
1171-
&NodeMap(),
1171+
&NodeMap::default(),
11721172
ImplTraitContext::disallowed(),
11731173
),
11741174
unsafety: this.lower_unsafety(f.unsafety),
@@ -2467,7 +2467,7 @@ impl<'a> LoweringContext<'a> {
24672467
// FIXME: This could probably be done with less rightward drift. Also looks like two control
24682468
// paths where report_error is called are also the only paths that advance to after
24692469
// the match statement, so the error reporting could probably just be moved there.
2470-
let mut add_bounds: NodeMap<Vec<_>> = NodeMap();
2470+
let mut add_bounds: NodeMap<Vec<_>> = Default::default();
24712471
for pred in &generics.where_clause.predicates {
24722472
if let WherePredicate::BoundPredicate(ref bound_pred) = *pred {
24732473
'next_bound: for bound in &bound_pred.bounds {
@@ -2552,7 +2552,7 @@ impl<'a> LoweringContext<'a> {
25522552
hir::WherePredicate::BoundPredicate(hir::WhereBoundPredicate {
25532553
bound_generic_params: this.lower_generic_params(
25542554
bound_generic_params,
2555-
&NodeMap(),
2555+
&NodeMap::default(),
25562556
ImplTraitContext::disallowed(),
25572557
),
25582558
bounded_ty: this.lower_ty(bounded_ty, ImplTraitContext::disallowed()),
@@ -2636,8 +2636,11 @@ impl<'a> LoweringContext<'a> {
26362636
p: &PolyTraitRef,
26372637
mut itctx: ImplTraitContext<'_>,
26382638
) -> hir::PolyTraitRef {
2639-
let bound_generic_params =
2640-
self.lower_generic_params(&p.bound_generic_params, &NodeMap(), itctx.reborrow());
2639+
let bound_generic_params = self.lower_generic_params(
2640+
&p.bound_generic_params,
2641+
&NodeMap::default(),
2642+
itctx.reborrow(),
2643+
);
26412644
let trait_ref = self.with_parent_impl_lifetime_defs(
26422645
&bound_generic_params,
26432646
|this| this.lower_trait_ref(&p.trait_ref, itctx),

src/librustc/hir/map/definitions.rs

+4-15
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ use util::nodemap::NodeMap;
3636
/// Internally the DefPathTable holds a tree of DefKeys, where each DefKey
3737
/// stores the DefIndex of its parent.
3838
/// There is one DefPathTable for each crate.
39+
#[derive(Default)]
3940
pub struct DefPathTable {
4041
index_to_key: [Vec<DefKey>; 2],
4142
def_path_hashes: [Vec<DefPathHash>; 2],
@@ -153,7 +154,7 @@ impl Decodable for DefPathTable {
153154
/// The definition table containing node definitions.
154155
/// It holds the DefPathTable for local DefIds/DefPaths and it also stores a
155156
/// mapping from NodeIds to local DefIds.
156-
#[derive(Clone)]
157+
#[derive(Clone, Default)]
157158
pub struct Definitions {
158159
table: DefPathTable,
159160
node_to_def_index: NodeMap<DefIndex>,
@@ -412,20 +413,8 @@ impl Definitions {
412413
/// ascending order.
413414
///
414415
/// FIXME: there is probably a better place to put this comment.
415-
pub fn new() -> Definitions {
416-
Definitions {
417-
table: DefPathTable {
418-
index_to_key: [vec![], vec![]],
419-
def_path_hashes: [vec![], vec![]],
420-
},
421-
node_to_def_index: NodeMap(),
422-
def_index_to_node: [vec![], vec![]],
423-
node_to_hir_id: IndexVec::new(),
424-
parent_modules_of_macro_defs: Default::default(),
425-
expansions_that_defined: Default::default(),
426-
next_disambiguator: Default::default(),
427-
def_index_to_span: Default::default(),
428-
}
416+
pub fn new() -> Self {
417+
Self::default()
429418
}
430419

431420
pub fn def_path_table(&self) -> &DefPathTable {

src/librustc/ich/hcx.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -369,8 +369,7 @@ impl<'a> HashStable<StableHashingContext<'a>> for Span {
369369
// times, we cache a stable hash of it and hash that instead of
370370
// recursing every time.
371371
thread_local! {
372-
static CACHE: RefCell<FxHashMap<hygiene::Mark, u64>> =
373-
RefCell::new(Default::default());
372+
static CACHE: RefCell<FxHashMap<hygiene::Mark, u64>> = Default::default();
374373
}
375374

376375
let sub_hash: u64 = CACHE.with(|cache| {

src/librustc/infer/opaque_types/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ impl<'a, 'gcx, 'tcx> InferCtxt<'a, 'gcx, 'tcx> {
121121
parent_def_id,
122122
body_id,
123123
param_env,
124-
opaque_types: DefIdMap(),
124+
opaque_types: Default::default(),
125125
obligations: vec![],
126126
};
127127
let value = instantiator.instantiate_opaque_types_in_map(value);

src/librustc/infer/region_constraints/mod.rs

+3-11
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ use std::{cmp, fmt, mem, u32};
2929

3030
mod taint;
3131

32+
#[derive(Default)]
3233
pub struct RegionConstraintCollector<'tcx> {
3334
/// For each `RegionVid`, the corresponding `RegionVariableOrigin`.
3435
var_infos: IndexVec<RegionVid, RegionVariableInfo>,
@@ -341,17 +342,8 @@ impl TaintDirections {
341342
}
342343

343344
impl<'tcx> RegionConstraintCollector<'tcx> {
344-
pub fn new() -> RegionConstraintCollector<'tcx> {
345-
RegionConstraintCollector {
346-
var_infos: VarInfos::default(),
347-
data: RegionConstraintData::default(),
348-
lubs: Default::default(),
349-
glbs: Default::default(),
350-
bound_count: 0,
351-
undo_log: Vec::new(),
352-
unification_table: ut::UnificationTable::new(),
353-
any_unifications: false,
354-
}
345+
pub fn new() -> Self {
346+
Self::default()
355347
}
356348

357349
pub fn num_region_vars(&self) -> usize {

src/librustc/lint/context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1233,7 +1233,7 @@ pub fn check_ast_crate(
12331233
let (passes, buffered) = if pre_expansion {
12341234
(
12351235
sess.lint_store.borrow_mut().pre_expansion_passes.take(),
1236-
LintBuffer::new(),
1236+
LintBuffer::default(),
12371237
)
12381238
} else {
12391239
(

src/librustc/lint/mod.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -490,15 +490,12 @@ mod levels;
490490

491491
pub use self::levels::{LintLevelSets, LintLevelMap};
492492

493+
#[derive(Default)]
493494
pub struct LintBuffer {
494495
map: NodeMap<Vec<BufferedEarlyLint>>,
495496
}
496497

497498
impl LintBuffer {
498-
pub fn new() -> LintBuffer {
499-
LintBuffer { map: NodeMap() }
500-
}
501-
502499
pub fn add_lint(&mut self,
503500
lint: &'static Lint,
504501
id: ast::NodeId,

src/librustc/middle/borrowck.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,15 @@ use rustc_data_structures::stable_hasher::{HashStable, StableHasher,
1818
#[derive(Copy, Clone, Debug, RustcEncodable, RustcDecodable)]
1919
pub enum SignalledError { SawSomeError, NoErrorsSeen }
2020

21+
impl Default for SignalledError {
22+
fn default() -> SignalledError {
23+
SignalledError::NoErrorsSeen
24+
}
25+
}
26+
2127
impl_stable_hash_for!(enum self::SignalledError { SawSomeError, NoErrorsSeen });
2228

23-
#[derive(Debug, RustcEncodable, RustcDecodable)]
29+
#[derive(Debug, Default, RustcEncodable, RustcDecodable)]
2430
pub struct BorrowCheckResult {
2531
pub used_mut_nodes: FxHashSet<HirId>,
2632
pub signalled_any_error: SignalledError,

src/librustc/middle/liveness.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -272,9 +272,9 @@ impl<'a, 'tcx> IrMaps<'a, 'tcx> {
272272
tcx,
273273
num_live_nodes: 0,
274274
num_vars: 0,
275-
live_node_map: HirIdMap(),
276-
variable_map: HirIdMap(),
277-
capture_info_map: NodeMap(),
275+
live_node_map: HirIdMap::default(),
276+
variable_map: HirIdMap::default(),
277+
capture_info_map: Default::default(),
278278
var_kinds: Vec::new(),
279279
lnks: Vec::new(),
280280
}
@@ -397,7 +397,7 @@ fn visit_fn<'a, 'tcx: 'a>(ir: &mut IrMaps<'a, 'tcx>,
397397
fn add_from_pat<'a, 'tcx>(ir: &mut IrMaps<'a, 'tcx>, pat: &P<hir::Pat>) {
398398
// For struct patterns, take note of which fields used shorthand
399399
// (`x` rather than `x: x`).
400-
let mut shorthand_field_ids = HirIdSet();
400+
let mut shorthand_field_ids = HirIdSet::default();
401401
let mut pats = VecDeque::new();
402402
pats.push_back(pat);
403403
while let Some(pat) = pats.pop_front() {
@@ -691,8 +691,8 @@ impl<'a, 'tcx> Liveness<'a, 'tcx> {
691691
s: specials,
692692
successors: vec![invalid_node(); num_live_nodes],
693693
rwu_table: RWUTable::new(num_live_nodes * num_vars),
694-
break_ln: NodeMap(),
695-
cont_ln: NodeMap(),
694+
break_ln: Default::default(),
695+
cont_ln: Default::default(),
696696
}
697697
}
698698

src/librustc/middle/reachable.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ fn reachable_set<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, crate_num: CrateNum) ->
408408
let mut reachable_context = ReachableContext {
409409
tcx,
410410
tables: &ty::TypeckTables::empty(None),
411-
reachable_symbols: NodeSet(),
411+
reachable_symbols: Default::default(),
412412
worklist: Vec::new(),
413413
any_library,
414414
};

src/librustc/middle/resolve_lifetime.rs

+9-12
Original file line numberDiff line numberDiff line change
@@ -425,8 +425,8 @@ fn resolve_lifetimes<'tcx>(
425425
fn krate<'tcx>(tcx: TyCtxt<'_, 'tcx, 'tcx>) -> NamedRegionMap {
426426
let krate = tcx.hir.krate();
427427
let mut map = NamedRegionMap {
428-
defs: NodeMap(),
429-
late_bound: NodeSet(),
428+
defs: Default::default(),
429+
late_bound: Default::default(),
430430
object_lifetime_defaults: compute_object_lifetime_defaults(tcx),
431431
};
432432
{
@@ -437,8 +437,8 @@ fn krate<'tcx>(tcx: TyCtxt<'_, 'tcx, 'tcx>) -> NamedRegionMap {
437437
trait_ref_hack: false,
438438
is_in_fn_syntax: false,
439439
labels_in_fn: vec![],
440-
xcrate_object_lifetime_defaults: DefIdMap(),
441-
lifetime_uses: &mut DefIdMap(),
440+
xcrate_object_lifetime_defaults: Default::default(),
441+
lifetime_uses: &mut Default::default(),
442442
};
443443
for (_, item) in &krate.items {
444444
visitor.visit_item(item);
@@ -1278,7 +1278,7 @@ fn extract_labels(ctxt: &mut LifetimeContext<'_, '_>, body: &hir::Body) {
12781278
fn compute_object_lifetime_defaults(
12791279
tcx: TyCtxt<'_, '_, '_>,
12801280
) -> NodeMap<Vec<ObjectLifetimeDefault>> {
1281-
let mut map = NodeMap();
1281+
let mut map = NodeMap::default();
12821282
for item in tcx.hir.krate().items.values() {
12831283
match item.node {
12841284
hir::ItemKind::Struct(_, ref generics)
@@ -1432,7 +1432,7 @@ impl<'a, 'tcx> LifetimeContext<'a, 'tcx> {
14321432
} = self;
14331433
let labels_in_fn = replace(&mut self.labels_in_fn, vec![]);
14341434
let xcrate_object_lifetime_defaults =
1435-
replace(&mut self.xcrate_object_lifetime_defaults, DefIdMap());
1435+
replace(&mut self.xcrate_object_lifetime_defaults, DefIdMap::default());
14361436
let mut this = LifetimeContext {
14371437
tcx: *tcx,
14381438
map: map,
@@ -2741,9 +2741,7 @@ fn insert_late_bound_lifetimes(
27412741
constrained_by_input.visit_ty(arg_ty);
27422742
}
27432743

2744-
let mut appears_in_output = AllCollector {
2745-
regions: Default::default(),
2746-
};
2744+
let mut appears_in_output = AllCollector::default();
27472745
intravisit::walk_fn_ret_ty(&mut appears_in_output, &decl.output);
27482746

27492747
debug!(
@@ -2755,9 +2753,7 @@ fn insert_late_bound_lifetimes(
27552753
//
27562754
// Subtle point: because we disallow nested bindings, we can just
27572755
// ignore binders here and scrape up all names we see.
2758-
let mut appears_in_where_clause = AllCollector {
2759-
regions: Default::default(),
2760-
};
2756+
let mut appears_in_where_clause = AllCollector::default();
27612757
appears_in_where_clause.visit_generics(generics);
27622758

27632759
for param in &generics.params {
@@ -2854,6 +2850,7 @@ fn insert_late_bound_lifetimes(
28542850
}
28552851
}
28562852

2853+
#[derive(Default)]
28572854
struct AllCollector {
28582855
regions: FxHashSet<hir::LifetimeName>,
28592856
}

src/librustc/session/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1149,7 +1149,7 @@ pub fn build_session_(
11491149
local_crate_source_file,
11501150
working_dir,
11511151
lint_store: RwLock::new(lint::LintStore::new()),
1152-
buffered_lints: Lock::new(Some(lint::LintBuffer::new())),
1152+
buffered_lints: Lock::new(Some(Default::default())),
11531153
one_time_diagnostics: Default::default(),
11541154
plugin_llvm_passes: OneThread::new(RefCell::new(Vec::new())),
11551155
plugin_attributes: OneThread::new(RefCell::new(Vec::new())),

src/librustc/ty/context.rs

+14-14
Original file line numberDiff line numberDiff line change
@@ -446,22 +446,22 @@ impl<'tcx> TypeckTables<'tcx> {
446446
pub fn empty(local_id_root: Option<DefId>) -> TypeckTables<'tcx> {
447447
TypeckTables {
448448
local_id_root,
449-
type_dependent_defs: ItemLocalMap(),
450-
field_indices: ItemLocalMap(),
451-
user_provided_tys: ItemLocalMap(),
449+
type_dependent_defs: Default::default(),
450+
field_indices: Default::default(),
451+
user_provided_tys: Default::default(),
452452
user_provided_sigs: Default::default(),
453-
node_types: ItemLocalMap(),
454-
node_substs: ItemLocalMap(),
455-
user_substs: ItemLocalMap(),
456-
adjustments: ItemLocalMap(),
457-
pat_binding_modes: ItemLocalMap(),
458-
pat_adjustments: ItemLocalMap(),
453+
node_types: Default::default(),
454+
node_substs: Default::default(),
455+
user_substs: Default::default(),
456+
adjustments: Default::default(),
457+
pat_binding_modes: Default::default(),
458+
pat_adjustments: Default::default(),
459459
upvar_capture_map: Default::default(),
460-
closure_kind_origins: ItemLocalMap(),
461-
liberated_fn_sigs: ItemLocalMap(),
462-
fru_field_types: ItemLocalMap(),
463-
cast_kinds: ItemLocalMap(),
464-
used_trait_imports: Lrc::new(DefIdSet()),
460+
closure_kind_origins: Default::default(),
461+
liberated_fn_sigs: Default::default(),
462+
fru_field_types: Default::default(),
463+
cast_kinds: Default::default(),
464+
used_trait_imports: Lrc::new(Default::default()),
465465
tainted_by_errors: false,
466466
free_region_map: Default::default(),
467467
concrete_existential_types: Default::default(),

src/librustc/ty/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3183,7 +3183,7 @@ pub fn provide(providers: &mut ty::query::Providers<'_>) {
31833183
/// rather, you should request the vector for a specific type via
31843184
/// `tcx.inherent_impls(def_id)` so as to minimize your dependencies
31853185
/// (constructing this map requires touching the entire crate).
3186-
#[derive(Clone, Debug)]
3186+
#[derive(Clone, Debug, Default)]
31873187
pub struct CrateInherentImpls {
31883188
pub inherent_impls: DefIdMap<Lrc<Vec<DefId>>>,
31893189
}

0 commit comments

Comments
 (0)