Skip to content

Commit 22bc9e1

Browse files
committed
Auto merge of #64778 - csmoe:index, r=eddyb
Introduce librustc_index crate Closes #50592
2 parents e0436d9 + 64f61c7 commit 22bc9e1

File tree

148 files changed

+249
-203
lines changed

Some content is hidden

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

148 files changed

+249
-203
lines changed

Cargo.lock

+18
Original file line numberDiff line numberDiff line change
@@ -3081,6 +3081,7 @@ dependencies = [
30813081
"rustc_data_structures",
30823082
"rustc_errors",
30833083
"rustc_fs_util",
3084+
"rustc_index",
30843085
"rustc_macros",
30853086
"rustc_target",
30863087
"scoped-tls",
@@ -3361,6 +3362,7 @@ dependencies = [
33613362
"rustc_errors",
33623363
"rustc_fs_util",
33633364
"rustc_incremental",
3365+
"rustc_index",
33643366
"rustc_target",
33653367
"serialize",
33663368
"syntax",
@@ -3399,6 +3401,7 @@ dependencies = [
33993401
"rustc-hash",
34003402
"rustc-rayon",
34013403
"rustc-rayon-core",
3404+
"rustc_index",
34023405
"serialize",
34033406
"smallvec",
34043407
"stable_deref_trait",
@@ -3462,6 +3465,14 @@ dependencies = [
34623465
"syntax_pos",
34633466
]
34643467

3468+
[[package]]
3469+
name = "rustc_index"
3470+
version = "0.0.0"
3471+
dependencies = [
3472+
"serialize",
3473+
"smallvec",
3474+
]
3475+
34653476
[[package]]
34663477
name = "rustc_interface"
34673478
version = "0.0.0"
@@ -3506,6 +3517,7 @@ dependencies = [
35063517
"log",
35073518
"rustc",
35083519
"rustc_data_structures",
3520+
"rustc_index",
35093521
"rustc_target",
35103522
"syntax",
35113523
"syntax_pos",
@@ -3551,6 +3563,7 @@ dependencies = [
35513563
"rustc",
35523564
"rustc_data_structures",
35533565
"rustc_errors",
3566+
"rustc_index",
35543567
"rustc_target",
35553568
"serialize",
35563569
"smallvec",
@@ -3573,6 +3586,7 @@ dependencies = [
35733586
"rustc_apfloat",
35743587
"rustc_data_structures",
35753588
"rustc_errors",
3589+
"rustc_index",
35763590
"rustc_lexer",
35773591
"rustc_target",
35783592
"serialize",
@@ -3672,6 +3686,7 @@ dependencies = [
36723686
"bitflags",
36733687
"log",
36743688
"rustc_data_structures",
3689+
"rustc_index",
36753690
"serialize",
36763691
"syntax_pos",
36773692
]
@@ -3720,6 +3735,7 @@ dependencies = [
37203735
"rustc",
37213736
"rustc_data_structures",
37223737
"rustc_errors",
3738+
"rustc_index",
37233739
"rustc_target",
37243740
"smallvec",
37253741
"syntax",
@@ -4236,6 +4252,7 @@ dependencies = [
42364252
"log",
42374253
"rustc_data_structures",
42384254
"rustc_errors",
4255+
"rustc_index",
42394256
"rustc_lexer",
42404257
"rustc_target",
42414258
"scoped-tls",
@@ -4265,6 +4282,7 @@ dependencies = [
42654282
"arena",
42664283
"cfg-if",
42674284
"rustc_data_structures",
4285+
"rustc_index",
42684286
"rustc_macros",
42694287
"scoped-tls",
42704288
"serialize",

src/librustc/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ rustc_apfloat = { path = "../librustc_apfloat" }
2525
rustc_target = { path = "../librustc_target" }
2626
rustc_macros = { path = "../librustc_macros" }
2727
rustc_data_structures = { path = "../librustc_data_structures" }
28+
rustc_index = { path = "../librustc_index" }
2829
errors = { path = "../librustc_errors", package = "rustc_errors" }
2930
rustc_serialize = { path = "../libserialize", package = "serialize" }
3031
syntax = { path = "../libsyntax" }

src/librustc/arena.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ macro_rules! arena_types {
2626
[] steal_mir: rustc::ty::steal::Steal<rustc::mir::Body<$tcx>>,
2727
[] mir: rustc::mir::Body<$tcx>,
2828
[] steal_promoted: rustc::ty::steal::Steal<
29-
rustc_data_structures::indexed_vec::IndexVec<
29+
rustc_index::vec::IndexVec<
3030
rustc::mir::Promoted,
3131
rustc::mir::Body<$tcx>
3232
>
3333
>,
34-
[] promoted: rustc_data_structures::indexed_vec::IndexVec<
34+
[] promoted: rustc_index::vec::IndexVec<
3535
rustc::mir::Promoted,
3636
rustc::mir::Body<$tcx>
3737
>,
@@ -45,7 +45,7 @@ macro_rules! arena_types {
4545
[decode] specialization_graph: rustc::traits::specialization_graph::Graph,
4646
[] region_scope_tree: rustc::middle::region::ScopeTree,
4747
[] item_local_set: rustc::util::nodemap::ItemLocalSet,
48-
[decode] mir_const_qualif: rustc_data_structures::bit_set::BitSet<rustc::mir::Local>,
48+
[decode] mir_const_qualif: rustc_index::bit_set::BitSet<rustc::mir::Local>,
4949
[] trait_impls_of: rustc::ty::trait_def::TraitImpls,
5050
[] dropck_outlives:
5151
rustc::infer::canonical::Canonical<'tcx,

src/librustc/dep_graph/graph.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use errors::Diagnostic;
22
use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
33
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
4-
use rustc_data_structures::indexed_vec::{Idx, IndexVec};
4+
use rustc_index::vec::{Idx, IndexVec};
55
use smallvec::SmallVec;
66
use rustc_data_structures::sync::{Lrc, Lock, AtomicU32, Ordering};
77
use std::env;
@@ -26,7 +26,7 @@ pub struct DepGraph {
2626
data: Option<Lrc<DepGraphData>>,
2727
}
2828

29-
newtype_index! {
29+
rustc_index::newtype_index! {
3030
pub struct DepNodeIndex { .. }
3131
}
3232

src/librustc/dep_graph/serialized.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
33
use crate::dep_graph::DepNode;
44
use crate::ich::Fingerprint;
5-
use rustc_data_structures::indexed_vec::{IndexVec, Idx};
5+
use rustc_index::vec::{IndexVec, Idx};
66

7-
newtype_index! {
7+
rustc_index::newtype_index! {
88
pub struct SerializedDepNodeIndex { .. }
99
}
1010

src/librustc/hir/def_id.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
use crate::ty::{self, TyCtxt};
2-
use rustc_data_structures::indexed_vec::Idx;
2+
use rustc_index::vec::Idx;
33
use std::fmt;
44
use std::u32;
55

6-
newtype_index! {
6+
rustc_index::newtype_index! {
77
pub struct CrateId {
88
ENCODABLE = custom
99
}
@@ -87,7 +87,7 @@ impl fmt::Display for CrateNum {
8787
impl rustc_serialize::UseSpecializedEncodable for CrateNum {}
8888
impl rustc_serialize::UseSpecializedDecodable for CrateNum {}
8989

90-
newtype_index! {
90+
rustc_index::newtype_index! {
9191
/// A DefIndex is an index into the hir-map for a crate, identifying a
9292
/// particular definition. It should really be considered an interned
9393
/// shorthand for a particular DefPath.

src/librustc/hir/lowering.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ use crate::util::common::FN_OUTPUT_NAME;
5252
use crate::util::nodemap::{DefIdMap, NodeMap};
5353
use errors::Applicability;
5454
use rustc_data_structures::fx::FxHashSet;
55-
use rustc_data_structures::indexed_vec::IndexVec;
55+
use rustc_index::vec::IndexVec;
5656
use rustc_data_structures::thin_vec::ThinVec;
5757
use rustc_data_structures::sync::Lrc;
5858

src/librustc/hir/map/collector.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use crate::hir::map::HirEntryMap;
55
use crate::hir::def_id::{LOCAL_CRATE, CrateNum};
66
use crate::hir::intravisit::{Visitor, NestedVisitorMap};
77
use rustc_data_structures::svh::Svh;
8-
use rustc_data_structures::indexed_vec::IndexVec;
8+
use rustc_index::vec::IndexVec;
99
use crate::ich::Fingerprint;
1010
use crate::middle::cstore::CrateStore;
1111
use crate::session::CrateDisambiguator;

src/librustc/hir/map/definitions.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use crate::session::CrateDisambiguator;
1111
use crate::util::nodemap::NodeMap;
1212

1313
use rustc_data_structures::fx::FxHashMap;
14-
use rustc_data_structures::indexed_vec::{IndexVec};
14+
use rustc_index::vec::{IndexVec};
1515
use rustc_data_structures::stable_hasher::StableHasher;
1616
use std::borrow::Borrow;
1717
use std::fmt::Write;

src/librustc/hir/map/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use crate::util::common::time;
1717

1818
use rustc_target::spec::abi::Abi;
1919
use rustc_data_structures::svh::Svh;
20-
use rustc_data_structures::indexed_vec::IndexVec;
20+
use rustc_index::vec::IndexVec;
2121
use syntax::ast::{self, Name, NodeId};
2222
use syntax::source_map::Spanned;
2323
use syntax::ext::base::MacroKind;

src/librustc/hir/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ impl fmt::Display for HirId {
122122

123123
// Hack to ensure that we don't try to access the private parts of `ItemLocalId` in this module.
124124
mod item_local_id_inner {
125-
use rustc_data_structures::indexed_vec::Idx;
125+
use rustc_index::vec::Idx;
126126
use rustc_macros::HashStable;
127-
newtype_index! {
127+
rustc_index::newtype_index! {
128128
/// An `ItemLocalId` uniquely identifies something within a given "item-like";
129129
/// that is, within a `hir::Item`, `hir::TraitItem`, or `hir::ImplItem`. There is no
130130
/// guarantee that the numerical value of a given `ItemLocalId` corresponds to

src/librustc/infer/canonical/canonicalizer.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ use crate::ty::{self, BoundVar, InferConst, List, Ty, TyCtxt, TypeFlags};
1818
use crate::ty::flags::FlagComputation;
1919

2020
use rustc_data_structures::fx::FxHashMap;
21-
use rustc_data_structures::indexed_vec::Idx;
21+
use rustc_index::vec::Idx;
2222
use smallvec::SmallVec;
2323

2424
impl<'cx, 'tcx> InferCtxt<'cx, 'tcx> {

src/librustc/infer/canonical/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use crate::infer::{InferCtxt, RegionVariableOrigin, TypeVariableOrigin, TypeVari
2525
use crate::infer::{ConstVariableOrigin, ConstVariableOriginKind};
2626
use crate::infer::region_constraints::MemberConstraint;
2727
use crate::mir::interpret::ConstValue;
28-
use rustc_data_structures::indexed_vec::IndexVec;
28+
use rustc_index::vec::IndexVec;
2929
use rustc_macros::HashStable;
3030
use rustc_serialize::UseSpecializedDecodable;
3131
use smallvec::SmallVec;

src/librustc/infer/canonical/query_response.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ use crate::infer::region_constraints::{Constraint, RegionConstraintData};
1717
use crate::infer::InferCtxtBuilder;
1818
use crate::infer::{InferCtxt, InferOk, InferResult};
1919
use crate::mir::interpret::ConstValue;
20-
use rustc_data_structures::indexed_vec::Idx;
21-
use rustc_data_structures::indexed_vec::IndexVec;
20+
use rustc_index::vec::Idx;
21+
use rustc_index::vec::IndexVec;
2222
use std::fmt::Debug;
2323
use syntax_pos::DUMMY_SP;
2424
use crate::traits::query::{Fallible, NoSolution};

src/librustc/infer/lexical_region_resolve/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use rustc_data_structures::fx::FxHashSet;
1919
use rustc_data_structures::graph::implementation::{
2020
Direction, Graph, NodeIndex, INCOMING, OUTGOING,
2121
};
22-
use rustc_data_structures::indexed_vec::{Idx, IndexVec};
22+
use rustc_index::vec::{Idx, IndexVec};
2323
use smallvec::SmallVec;
2424
use std::fmt;
2525
use syntax_pos::Span;

src/librustc/infer/region_constraints/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use super::unify_key;
77
use super::{MiscVariable, RegionVariableOrigin, SubregionOrigin};
88

99
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
10-
use rustc_data_structures::indexed_vec::IndexVec;
10+
use rustc_index::vec::IndexVec;
1111
use rustc_data_structures::sync::Lrc;
1212
use rustc_data_structures::unify as ut;
1313
use crate::hir::def_id::DefId;

src/librustc/middle/intrinsicck.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use crate::ty::layout::{LayoutError, Pointer, SizeSkeleton, VariantIdx};
55
use crate::ty::query::Providers;
66

77
use rustc_target::spec::abi::Abi::RustIntrinsic;
8-
use rustc_data_structures::indexed_vec::Idx;
8+
use rustc_index::vec::Idx;
99
use syntax_pos::{Span, sym};
1010
use crate::hir::intravisit::{self, Visitor, NestedVisitorMap};
1111
use crate::hir;

src/librustc/middle/region.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ use crate::util::nodemap::{FxHashMap, FxHashSet};
1616
use crate::ty::{self, DefIdTree, TyCtxt};
1717
use crate::ty::query::Providers;
1818

19-
use rustc_data_structures::indexed_vec::Idx;
2019
use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
20+
use rustc_index::vec::Idx;
2121
use rustc_macros::HashStable;
2222
use syntax::source_map;
2323
use syntax_pos::{Span, DUMMY_SP};
@@ -131,7 +131,7 @@ pub enum ScopeData {
131131
Remainder(FirstStatementIndex)
132132
}
133133

134-
newtype_index! {
134+
rustc_index::newtype_index! {
135135
/// Represents a subscope of `block` for a binding that is introduced
136136
/// by `block.stmts[first_statement_index]`. Such subscopes represent
137137
/// a suffix of the block. Note that each subscope does not include

src/librustc/mir/cache.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use rustc_data_structures::indexed_vec::IndexVec;
1+
use rustc_index::vec::IndexVec;
22
use rustc_data_structures::sync::{RwLock, MappedReadGuard, ReadGuard};
33
use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
44
use rustc_serialize::{Encodable, Encoder, Decodable, Decoder};

src/librustc/mir/mod.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ use crate::ty::{
2020
};
2121

2222
use polonius_engine::Atom;
23-
use rustc_data_structures::bit_set::BitMatrix;
23+
use rustc_index::bit_set::BitMatrix;
2424
use rustc_data_structures::fx::FxHashSet;
2525
use rustc_data_structures::graph::dominators::{dominators, Dominators};
2626
use rustc_data_structures::graph::{self, GraphPredecessors, GraphSuccessors};
27-
use rustc_data_structures::indexed_vec::{Idx, IndexVec};
27+
use rustc_index::vec::{Idx, IndexVec};
2828
use rustc_data_structures::sync::Lrc;
2929
use rustc_data_structures::sync::MappedReadGuard;
3030
use rustc_macros::HashStable;
@@ -581,7 +581,7 @@ impl BorrowKind {
581581
///////////////////////////////////////////////////////////////////////////
582582
// Variables and temps
583583

584-
newtype_index! {
584+
rustc_index::newtype_index! {
585585
pub struct Local {
586586
derive [HashStable]
587587
DEBUG_FORMAT = "_{}",
@@ -994,7 +994,7 @@ pub struct UpvarDebuginfo {
994994
///////////////////////////////////////////////////////////////////////////
995995
// BasicBlock
996996

997-
newtype_index! {
997+
rustc_index::newtype_index! {
998998
pub struct BasicBlock {
999999
derive [HashStable]
10001000
DEBUG_FORMAT = "bb{}",
@@ -1832,7 +1832,7 @@ static_assert_size!(PlaceElem<'_>, 16);
18321832
/// need neither the `V` parameter for `Index` nor the `T` for `Field`.
18331833
pub type ProjectionKind = ProjectionElem<(), ()>;
18341834

1835-
newtype_index! {
1835+
rustc_index::newtype_index! {
18361836
pub struct Field {
18371837
derive [HashStable]
18381838
DEBUG_FORMAT = "field[{}]"
@@ -2047,7 +2047,7 @@ impl Debug for PlaceBase<'_> {
20472047
///////////////////////////////////////////////////////////////////////////
20482048
// Scopes
20492049

2050-
newtype_index! {
2050+
rustc_index::newtype_index! {
20512051
pub struct SourceScope {
20522052
derive [HashStable]
20532053
DEBUG_FORMAT = "scope[{}]",
@@ -2586,7 +2586,7 @@ impl<'tcx> TypeFoldable<'tcx> for UserTypeProjection {
25862586
}
25872587
}
25882588

2589-
newtype_index! {
2589+
rustc_index::newtype_index! {
25902590
pub struct Promoted {
25912591
derive [HashStable]
25922592
DEBUG_FORMAT = "promoted[{}]"
@@ -2743,7 +2743,7 @@ pub struct UnsafetyCheckResult {
27432743
pub unsafe_blocks: Lrc<[(hir::HirId, bool)]>,
27442744
}
27452745

2746-
newtype_index! {
2746+
rustc_index::newtype_index! {
27472747
pub struct GeneratorSavedLocal {
27482748
derive [HashStable]
27492749
DEBUG_FORMAT = "_{}",

src/librustc/mir/traversal.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use rustc_data_structures::bit_set::BitSet;
1+
use rustc_index::bit_set::BitSet;
22

33
use super::*;
44

src/librustc/query/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ rustc_queries! {
132132
cache_on_disk_if { key.is_local() }
133133
load_cached(tcx, id) {
134134
let promoted: Option<
135-
rustc_data_structures::indexed_vec::IndexVec<
135+
rustc_index::vec::IndexVec<
136136
crate::mir::Promoted,
137137
crate::mir::Body<'tcx>
138138
>> = tcx.queries.on_disk_cache.try_load_query_result(tcx, id);

src/librustc/traits/select.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ use crate::ty::subst::{Subst, SubstsRef};
4040
use crate::ty::{self, ToPolyTraitRef, ToPredicate, Ty, TyCtxt, TypeFoldable};
4141

4242
use crate::hir;
43-
use rustc_data_structures::bit_set::GrowableBitSet;
43+
use rustc_index::bit_set::GrowableBitSet;
4444
use rustc_data_structures::sync::Lock;
4545
use rustc_target::spec::abi::Abi;
4646
use syntax::attr;

0 commit comments

Comments
 (0)