Improve OwnedSlice and use it in HIR
This commit is contained in:
parent
29ea4eef9f
commit
e3da2a9003
@ -1153,11 +1153,11 @@ fn track_anon(&self, anon: u32) {
|
||||
}
|
||||
|
||||
fn rebuild_ty_params(&self,
|
||||
ty_params: P<[hir::TyParam]>,
|
||||
ty_params: hir::HirVec<hir::TyParam>,
|
||||
lifetime: hir::Lifetime,
|
||||
region_names: &HashSet<ast::Name>)
|
||||
-> P<[hir::TyParam]> {
|
||||
ty_params.map(|ty_param| {
|
||||
-> hir::HirVec<hir::TyParam> {
|
||||
ty_params.iter().map(|ty_param| {
|
||||
let bounds = self.rebuild_ty_param_bounds(ty_param.bounds.clone(),
|
||||
lifetime,
|
||||
region_names);
|
||||
@ -1168,7 +1168,7 @@ fn rebuild_ty_params(&self,
|
||||
default: ty_param.default.clone(),
|
||||
span: ty_param.span,
|
||||
}
|
||||
})
|
||||
}).collect()
|
||||
}
|
||||
|
||||
fn rebuild_ty_param_bounds(&self,
|
||||
@ -1176,7 +1176,7 @@ fn rebuild_ty_param_bounds(&self,
|
||||
lifetime: hir::Lifetime,
|
||||
region_names: &HashSet<ast::Name>)
|
||||
-> hir::TyParamBounds {
|
||||
ty_param_bounds.map(|tpb| {
|
||||
ty_param_bounds.iter().map(|tpb| {
|
||||
match tpb {
|
||||
&hir::RegionTyParamBound(lt) => {
|
||||
// FIXME -- it's unclear whether I'm supposed to
|
||||
@ -1212,7 +1212,7 @@ fn rebuild_ty_param_bounds(&self,
|
||||
}, modifier)
|
||||
}
|
||||
}
|
||||
})
|
||||
}).collect()
|
||||
}
|
||||
|
||||
fn rebuild_expl_self(&self,
|
||||
@ -1248,7 +1248,7 @@ fn rebuild_generics(&self,
|
||||
add: &Vec<hir::Lifetime>,
|
||||
keep: &HashSet<ast::Name>,
|
||||
remove: &HashSet<ast::Name>,
|
||||
ty_params: P<[hir::TyParam]>,
|
||||
ty_params: hir::HirVec<hir::TyParam>,
|
||||
where_clause: hir::WhereClause)
|
||||
-> hir::Generics {
|
||||
let mut lifetimes = Vec::new();
|
||||
@ -1498,10 +1498,10 @@ fn rebuild_path(&self,
|
||||
}
|
||||
}
|
||||
}
|
||||
let new_types = data.types.map(|t| {
|
||||
let new_types = data.types.iter().map(|t| {
|
||||
self.rebuild_arg_ty_or_output(&**t, lifetime, anon_nums, region_names)
|
||||
});
|
||||
let new_bindings = data.bindings.map(|b| {
|
||||
}).collect();
|
||||
let new_bindings = data.bindings.iter().map(|b| {
|
||||
hir::TypeBinding {
|
||||
id: b.id,
|
||||
name: b.name,
|
||||
@ -1511,7 +1511,7 @@ fn rebuild_path(&self,
|
||||
region_names),
|
||||
span: b.span
|
||||
}
|
||||
});
|
||||
}).collect();
|
||||
hir::AngleBracketedParameters(hir::AngleBracketedParameterData {
|
||||
lifetimes: new_lts.into(),
|
||||
types: new_types,
|
||||
|
@ -210,7 +210,7 @@ fn fold_ty_param(&mut self, tp: TyParam) -> TyParam {
|
||||
noop_fold_ty_param(tp, self)
|
||||
}
|
||||
|
||||
fn fold_ty_params(&mut self, tps: P<[TyParam]>) -> P<[TyParam]> {
|
||||
fn fold_ty_params(&mut self, tps: HirVec<TyParam>) -> HirVec<TyParam> {
|
||||
noop_fold_ty_params(tps, self)
|
||||
}
|
||||
|
||||
@ -575,9 +575,9 @@ pub fn noop_fold_ty_param<T: Folder>(tp: TyParam, fld: &mut T) -> TyParam {
|
||||
}
|
||||
}
|
||||
|
||||
pub fn noop_fold_ty_params<T: Folder>(tps: P<[TyParam]>,
|
||||
pub fn noop_fold_ty_params<T: Folder>(tps: HirVec<TyParam>,
|
||||
fld: &mut T)
|
||||
-> P<[TyParam]> {
|
||||
-> HirVec<TyParam> {
|
||||
tps.move_map(|tp| fld.fold_ty_param(tp))
|
||||
}
|
||||
|
||||
|
@ -56,7 +56,7 @@
|
||||
/// It can be `Vec`, `P<[T]>` or potentially `Box<[T]>`, or some other container with similar
|
||||
/// behavior. Unlike AST, HIR is mostly a static structure, so we can use an owned slice instead
|
||||
/// of `Vec` to avoid keeping extra capacity.
|
||||
pub type HirVec<T> = Vec<T>;
|
||||
pub type HirVec<T> = P<[T]>;
|
||||
|
||||
macro_rules! hir_vec {
|
||||
($elem:expr; $n:expr) => (
|
||||
@ -208,8 +208,8 @@ impl PathParameters {
|
||||
pub fn none() -> PathParameters {
|
||||
AngleBracketedParameters(AngleBracketedParameterData {
|
||||
lifetimes: HirVec::new(),
|
||||
types: P::empty(),
|
||||
bindings: P::empty(),
|
||||
types: HirVec::new(),
|
||||
bindings: HirVec::new(),
|
||||
})
|
||||
}
|
||||
|
||||
@ -282,10 +282,10 @@ pub struct AngleBracketedParameterData {
|
||||
/// The lifetime parameters for this path segment.
|
||||
pub lifetimes: HirVec<Lifetime>,
|
||||
/// The type parameters for this path segment, if present.
|
||||
pub types: P<[P<Ty>]>,
|
||||
pub types: HirVec<P<Ty>>,
|
||||
/// Bindings (equality constraints) on associated types, if present.
|
||||
/// E.g., `Foo<A=Bar>`.
|
||||
pub bindings: P<[TypeBinding]>,
|
||||
pub bindings: HirVec<TypeBinding>,
|
||||
}
|
||||
|
||||
impl AngleBracketedParameterData {
|
||||
@ -325,7 +325,7 @@ pub enum TraitBoundModifier {
|
||||
Maybe,
|
||||
}
|
||||
|
||||
pub type TyParamBounds = P<[TyParamBound]>;
|
||||
pub type TyParamBounds = HirVec<TyParamBound>;
|
||||
|
||||
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug)]
|
||||
pub struct TyParam {
|
||||
@ -341,7 +341,7 @@ pub struct TyParam {
|
||||
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug)]
|
||||
pub struct Generics {
|
||||
pub lifetimes: HirVec<LifetimeDef>,
|
||||
pub ty_params: P<[TyParam]>,
|
||||
pub ty_params: HirVec<TyParam>,
|
||||
pub where_clause: WhereClause,
|
||||
}
|
||||
|
||||
|
@ -434,7 +434,7 @@ pub fn lower_ty_param(lctx: &LoweringContext, tp: &TyParam) -> hir::TyParam {
|
||||
|
||||
pub fn lower_ty_params(lctx: &LoweringContext,
|
||||
tps: &P<[TyParam]>)
|
||||
-> P<[hir::TyParam]> {
|
||||
-> hir::HirVec<hir::TyParam> {
|
||||
tps.iter().map(|tp| lower_ty_param(lctx, tp)).collect()
|
||||
}
|
||||
|
||||
@ -1772,19 +1772,19 @@ fn path_ident(span: Span, id: hir::Ident) -> hir::Path {
|
||||
}
|
||||
|
||||
fn path(span: Span, strs: Vec<hir::Ident>) -> hir::Path {
|
||||
path_all(span, false, strs, hir::HirVec::new(), Vec::new(), Vec::new())
|
||||
path_all(span, false, strs, hir::HirVec::new(), hir::HirVec::new(), hir::HirVec::new())
|
||||
}
|
||||
|
||||
fn path_global(span: Span, strs: Vec<hir::Ident>) -> hir::Path {
|
||||
path_all(span, true, strs, hir::HirVec::new(), Vec::new(), Vec::new())
|
||||
path_all(span, true, strs, hir::HirVec::new(), hir::HirVec::new(), hir::HirVec::new())
|
||||
}
|
||||
|
||||
fn path_all(sp: Span,
|
||||
global: bool,
|
||||
mut idents: Vec<hir::Ident>,
|
||||
lifetimes: hir::HirVec<hir::Lifetime>,
|
||||
types: Vec<P<hir::Ty>>,
|
||||
bindings: Vec<hir::TypeBinding>)
|
||||
types: hir::HirVec<P<hir::Ty>>,
|
||||
bindings: hir::HirVec<hir::TypeBinding>)
|
||||
-> hir::Path {
|
||||
let last_identifier = idents.pop().unwrap();
|
||||
let mut segments: Vec<hir::PathSegment> = idents.into_iter()
|
||||
@ -1799,8 +1799,8 @@ fn path_all(sp: Span,
|
||||
identifier: last_identifier,
|
||||
parameters: hir::AngleBracketedParameters(hir::AngleBracketedParameterData {
|
||||
lifetimes: lifetimes,
|
||||
types: P::from_vec(types),
|
||||
bindings: P::from_vec(bindings),
|
||||
types: types,
|
||||
bindings: bindings,
|
||||
}),
|
||||
});
|
||||
hir::Path {
|
||||
|
@ -518,7 +518,7 @@ pub fn print_type(&mut self, ty: &hir::Ty) -> io::Result<()> {
|
||||
hir::TyBareFn(ref f) => {
|
||||
let generics = hir::Generics {
|
||||
lifetimes: f.lifetimes.clone(),
|
||||
ty_params: P::empty(),
|
||||
ty_params: hir::HirVec::new(),
|
||||
where_clause: hir::WhereClause {
|
||||
id: ast::DUMMY_NODE_ID,
|
||||
predicates: hir::HirVec::new(),
|
||||
@ -2257,7 +2257,7 @@ pub fn print_ty_fn(&mut self,
|
||||
}
|
||||
let generics = hir::Generics {
|
||||
lifetimes: hir::HirVec::new(),
|
||||
ty_params: P::empty(),
|
||||
ty_params: hir::HirVec::new(),
|
||||
where_clause: hir::WhereClause {
|
||||
id: ast::DUMMY_NODE_ID,
|
||||
predicates: hir::HirVec::new(),
|
||||
|
@ -335,7 +335,7 @@ pub fn is_path(e: P<Expr>) -> bool {
|
||||
pub fn empty_generics() -> Generics {
|
||||
Generics {
|
||||
lifetimes: HirVec::new(),
|
||||
ty_params: P::empty(),
|
||||
ty_params: HirVec::new(),
|
||||
where_clause: WhereClause {
|
||||
id: DUMMY_NODE_ID,
|
||||
predicates: HirVec::new(),
|
||||
@ -353,8 +353,8 @@ pub fn ident_to_path(s: Span, ident: Ident) -> Path {
|
||||
identifier: ident,
|
||||
parameters: hir::AngleBracketedParameters(hir::AngleBracketedParameterData {
|
||||
lifetimes: HirVec::new(),
|
||||
types: P::empty(),
|
||||
bindings: P::empty(),
|
||||
types: HirVec::new(),
|
||||
bindings: HirVec::new(),
|
||||
}),
|
||||
}],
|
||||
}
|
||||
|
@ -61,3 +61,13 @@ fn to_ref(self) -> Vec<U> {
|
||||
self.iter().map(|expr| expr.to_ref()).collect()
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a,'tcx:'a,T,U> ToRef for &'tcx P<[T]>
|
||||
where &'tcx T: ToRef<Output=U>
|
||||
{
|
||||
type Output = Vec<U>;
|
||||
|
||||
fn to_ref(self) -> Vec<U> {
|
||||
self.iter().map(|expr| expr.to_ref()).collect()
|
||||
}
|
||||
}
|
||||
|
@ -4906,7 +4906,7 @@ pub fn may_break(cx: &ty::ctxt, id: ast::NodeId, b: &hir::Block) -> bool {
|
||||
}
|
||||
|
||||
pub fn check_bounds_are_used<'a, 'tcx>(ccx: &CrateCtxt<'a, 'tcx>,
|
||||
tps: &P<[hir::TyParam]>,
|
||||
tps: &[hir::TyParam],
|
||||
ty: Ty<'tcx>) {
|
||||
debug!("check_bounds_are_used(n_tps={}, ty={:?})",
|
||||
tps.len(), ty);
|
||||
|
@ -130,6 +130,10 @@ fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
||||
}
|
||||
|
||||
impl<T> P<[T]> {
|
||||
pub fn new() -> P<[T]> {
|
||||
P::empty()
|
||||
}
|
||||
|
||||
pub fn empty() -> P<[T]> {
|
||||
P { ptr: Default::default() }
|
||||
}
|
||||
@ -177,12 +181,33 @@ fn clone(&self) -> P<[T]> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<T> From<Vec<T>> for P<[T]> {
|
||||
fn from(v: Vec<T>) -> Self {
|
||||
P::from_vec(v)
|
||||
}
|
||||
}
|
||||
|
||||
impl<T> Into<Vec<T>> for P<[T]> {
|
||||
fn into(self) -> Vec<T> {
|
||||
self.into_vec()
|
||||
}
|
||||
}
|
||||
|
||||
impl<T> FromIterator<T> for P<[T]> {
|
||||
fn from_iter<I: IntoIterator<Item=T>>(iter: I) -> P<[T]> {
|
||||
P::from_vec(iter.into_iter().collect())
|
||||
}
|
||||
}
|
||||
|
||||
impl<T> IntoIterator for P<[T]> {
|
||||
type Item = T;
|
||||
type IntoIter = vec::IntoIter<T>;
|
||||
|
||||
fn into_iter(self) -> Self::IntoIter {
|
||||
self.into_vec().into_iter()
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, T> IntoIterator for &'a P<[T]> {
|
||||
type Item = &'a T;
|
||||
type IntoIter = slice::Iter<'a, T>;
|
||||
|
Loading…
Reference in New Issue
Block a user