]> git.lizzy.rs Git - rust.git/blob - src/librustc/ty/util.rs
add inline attributes to stage 0 methods
[rust.git] / src / librustc / ty / util.rs
1 // Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! misc. type-system utilities too small to deserve their own file
12
13 use hir::def_id::{DefId, LOCAL_CRATE};
14 use hir::map::DefPathData;
15 use infer::InferCtxt;
16 use hir::map as hir_map;
17 use traits::{self, Reveal};
18 use ty::{self, Ty, TyCtxt, TypeAndMut, TypeFlags, TypeFoldable};
19 use ty::{ParameterEnvironment};
20 use ty::fold::TypeVisitor;
21 use ty::layout::{Layout, LayoutError};
22 use ty::TypeVariants::*;
23 use util::common::ErrorReported;
24 use util::nodemap::FxHashMap;
25 use middle::lang_items;
26
27 use rustc_const_math::{ConstInt, ConstIsize, ConstUsize};
28 use rustc_data_structures::stable_hasher::{StableHasher, StableHasherResult};
29
30 use std::cell::RefCell;
31 use std::cmp;
32 use std::hash::Hash;
33 use std::intrinsics;
34 use syntax::ast::{self, Name};
35 use syntax::attr::{self, SignedInt, UnsignedInt};
36 use syntax_pos::{Span, DUMMY_SP};
37
38 use hir;
39
40 type Disr = ConstInt;
41
42  pub trait IntTypeExt {
43     fn to_ty<'a, 'gcx, 'tcx>(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>) -> Ty<'tcx>;
44     fn disr_incr<'a, 'tcx>(&self, tcx: TyCtxt<'a, 'tcx, 'tcx>, val: Option<Disr>)
45                            -> Option<Disr>;
46     fn assert_ty_matches(&self, val: Disr);
47     fn initial_discriminant<'a, 'tcx>(&self, tcx: TyCtxt<'a, 'tcx, 'tcx>) -> Disr;
48  }
49
50
51 macro_rules! typed_literal {
52     ($tcx:expr, $ty:expr, $lit:expr) => {
53         match $ty {
54             SignedInt(ast::IntTy::I8)    => ConstInt::I8($lit),
55             SignedInt(ast::IntTy::I16)   => ConstInt::I16($lit),
56             SignedInt(ast::IntTy::I32)   => ConstInt::I32($lit),
57             SignedInt(ast::IntTy::I64)   => ConstInt::I64($lit),
58             SignedInt(ast::IntTy::I128)   => ConstInt::I128($lit),
59             SignedInt(ast::IntTy::Is) => match $tcx.sess.target.int_type {
60                 ast::IntTy::I16 => ConstInt::Isize(ConstIsize::Is16($lit)),
61                 ast::IntTy::I32 => ConstInt::Isize(ConstIsize::Is32($lit)),
62                 ast::IntTy::I64 => ConstInt::Isize(ConstIsize::Is64($lit)),
63                 _ => bug!(),
64             },
65             UnsignedInt(ast::UintTy::U8)  => ConstInt::U8($lit),
66             UnsignedInt(ast::UintTy::U16) => ConstInt::U16($lit),
67             UnsignedInt(ast::UintTy::U32) => ConstInt::U32($lit),
68             UnsignedInt(ast::UintTy::U64) => ConstInt::U64($lit),
69             UnsignedInt(ast::UintTy::U128) => ConstInt::U128($lit),
70             UnsignedInt(ast::UintTy::Us) => match $tcx.sess.target.uint_type {
71                 ast::UintTy::U16 => ConstInt::Usize(ConstUsize::Us16($lit)),
72                 ast::UintTy::U32 => ConstInt::Usize(ConstUsize::Us32($lit)),
73                 ast::UintTy::U64 => ConstInt::Usize(ConstUsize::Us64($lit)),
74                 _ => bug!(),
75             },
76         }
77     }
78 }
79
80 impl IntTypeExt for attr::IntType {
81     fn to_ty<'a, 'gcx, 'tcx>(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>) -> Ty<'tcx> {
82         match *self {
83             SignedInt(ast::IntTy::I8)      => tcx.types.i8,
84             SignedInt(ast::IntTy::I16)     => tcx.types.i16,
85             SignedInt(ast::IntTy::I32)     => tcx.types.i32,
86             SignedInt(ast::IntTy::I64)     => tcx.types.i64,
87             SignedInt(ast::IntTy::I128)     => tcx.types.i128,
88             SignedInt(ast::IntTy::Is)   => tcx.types.isize,
89             UnsignedInt(ast::UintTy::U8)    => tcx.types.u8,
90             UnsignedInt(ast::UintTy::U16)   => tcx.types.u16,
91             UnsignedInt(ast::UintTy::U32)   => tcx.types.u32,
92             UnsignedInt(ast::UintTy::U64)   => tcx.types.u64,
93             UnsignedInt(ast::UintTy::U128)   => tcx.types.u128,
94             UnsignedInt(ast::UintTy::Us) => tcx.types.usize,
95         }
96     }
97
98     fn initial_discriminant<'a, 'tcx>(&self, tcx: TyCtxt<'a, 'tcx, 'tcx>) -> Disr {
99         typed_literal!(tcx, *self, 0)
100     }
101
102     fn assert_ty_matches(&self, val: Disr) {
103         match (*self, val) {
104             (SignedInt(ast::IntTy::I8), ConstInt::I8(_)) => {},
105             (SignedInt(ast::IntTy::I16), ConstInt::I16(_)) => {},
106             (SignedInt(ast::IntTy::I32), ConstInt::I32(_)) => {},
107             (SignedInt(ast::IntTy::I64), ConstInt::I64(_)) => {},
108             (SignedInt(ast::IntTy::I128), ConstInt::I128(_)) => {},
109             (SignedInt(ast::IntTy::Is), ConstInt::Isize(_)) => {},
110             (UnsignedInt(ast::UintTy::U8), ConstInt::U8(_)) => {},
111             (UnsignedInt(ast::UintTy::U16), ConstInt::U16(_)) => {},
112             (UnsignedInt(ast::UintTy::U32), ConstInt::U32(_)) => {},
113             (UnsignedInt(ast::UintTy::U64), ConstInt::U64(_)) => {},
114             (UnsignedInt(ast::UintTy::U128), ConstInt::U128(_)) => {},
115             (UnsignedInt(ast::UintTy::Us), ConstInt::Usize(_)) => {},
116             _ => bug!("disr type mismatch: {:?} vs {:?}", self, val),
117         }
118     }
119
120     fn disr_incr<'a, 'tcx>(&self, tcx: TyCtxt<'a, 'tcx, 'tcx>, val: Option<Disr>)
121                            -> Option<Disr> {
122         if let Some(val) = val {
123             self.assert_ty_matches(val);
124             (val + typed_literal!(tcx, *self, 1)).ok()
125         } else {
126             Some(self.initial_discriminant(tcx))
127         }
128     }
129 }
130
131
132 #[derive(Copy, Clone)]
133 pub enum CopyImplementationError<'tcx> {
134     InfrigingField(&'tcx ty::FieldDef),
135     NotAnAdt,
136     HasDestructor
137 }
138
139 /// Describes whether a type is representable. For types that are not
140 /// representable, 'SelfRecursive' and 'ContainsRecursive' are used to
141 /// distinguish between types that are recursive with themselves and types that
142 /// contain a different recursive type. These cases can therefore be treated
143 /// differently when reporting errors.
144 ///
145 /// The ordering of the cases is significant. They are sorted so that cmp::max
146 /// will keep the "more erroneous" of two values.
147 #[derive(Copy, Clone, PartialOrd, Ord, Eq, PartialEq, Debug)]
148 pub enum Representability {
149     Representable,
150     ContainsRecursive,
151     SelfRecursive,
152 }
153
154 impl<'tcx> ParameterEnvironment<'tcx> {
155     pub fn can_type_implement_copy<'a>(&self, tcx: TyCtxt<'a, 'tcx, 'tcx>,
156                                        self_type: Ty<'tcx>, span: Span)
157                                        -> Result<(), CopyImplementationError> {
158         // FIXME: (@jroesch) float this code up
159         tcx.infer_ctxt(self.clone(), Reveal::UserFacing).enter(|infcx| {
160             let (adt, substs) = match self_type.sty {
161                 ty::TyAdt(adt, substs) => (adt, substs),
162                 _ => return Err(CopyImplementationError::NotAnAdt)
163             };
164
165             let field_implements_copy = |field: &ty::FieldDef| {
166                 let cause = traits::ObligationCause::dummy();
167                 match traits::fully_normalize(&infcx, cause, &field.ty(tcx, substs)) {
168                     Ok(ty) => !infcx.type_moves_by_default(ty, span),
169                     Err(..) => false
170                 }
171             };
172
173             for variant in &adt.variants {
174                 for field in &variant.fields {
175                     if !field_implements_copy(field) {
176                         return Err(CopyImplementationError::InfrigingField(field));
177                     }
178                 }
179             }
180
181             if adt.has_dtor(tcx) {
182                 return Err(CopyImplementationError::HasDestructor);
183             }
184
185             Ok(())
186         })
187     }
188 }
189
190 impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
191     pub fn has_error_field(self, ty: Ty<'tcx>) -> bool {
192         match ty.sty {
193             ty::TyAdt(def, substs) => {
194                 for field in def.all_fields() {
195                     let field_ty = field.ty(self, substs);
196                     if let TyError = field_ty.sty {
197                         return true;
198                     }
199                 }
200             }
201             _ => ()
202         }
203         false
204     }
205
206     /// Returns the type of element at index `i` in tuple or tuple-like type `t`.
207     /// For an enum `t`, `variant` is None only if `t` is a univariant enum.
208     pub fn positional_element_ty(self,
209                                  ty: Ty<'tcx>,
210                                  i: usize,
211                                  variant: Option<DefId>) -> Option<Ty<'tcx>> {
212         match (&ty.sty, variant) {
213             (&TyAdt(adt, substs), Some(vid)) => {
214                 adt.variant_with_id(vid).fields.get(i).map(|f| f.ty(self, substs))
215             }
216             (&TyAdt(adt, substs), None) => {
217                 // Don't use `struct_variant`, this may be a univariant enum.
218                 adt.variants[0].fields.get(i).map(|f| f.ty(self, substs))
219             }
220             (&TyTuple(ref v, _), None) => v.get(i).cloned(),
221             _ => None
222         }
223     }
224
225     /// Returns the type of element at field `n` in struct or struct-like type `t`.
226     /// For an enum `t`, `variant` must be some def id.
227     pub fn named_element_ty(self,
228                             ty: Ty<'tcx>,
229                             n: Name,
230                             variant: Option<DefId>) -> Option<Ty<'tcx>> {
231         match (&ty.sty, variant) {
232             (&TyAdt(adt, substs), Some(vid)) => {
233                 adt.variant_with_id(vid).find_field_named(n).map(|f| f.ty(self, substs))
234             }
235             (&TyAdt(adt, substs), None) => {
236                 adt.struct_variant().find_field_named(n).map(|f| f.ty(self, substs))
237             }
238             _ => return None
239         }
240     }
241
242     /// Returns the deeply last field of nested structures, or the same type,
243     /// if not a structure at all. Corresponds to the only possible unsized
244     /// field, and its type can be used to determine unsizing strategy.
245     pub fn struct_tail(self, mut ty: Ty<'tcx>) -> Ty<'tcx> {
246         while let TyAdt(def, substs) = ty.sty {
247             if !def.is_struct() {
248                 break
249             }
250             match def.struct_variant().fields.last() {
251                 Some(f) => ty = f.ty(self, substs),
252                 None => break
253             }
254         }
255         ty
256     }
257
258     /// Same as applying struct_tail on `source` and `target`, but only
259     /// keeps going as long as the two types are instances of the same
260     /// structure definitions.
261     /// For `(Foo<Foo<T>>, Foo<Trait>)`, the result will be `(Foo<T>, Trait)`,
262     /// whereas struct_tail produces `T`, and `Trait`, respectively.
263     pub fn struct_lockstep_tails(self,
264                                  source: Ty<'tcx>,
265                                  target: Ty<'tcx>)
266                                  -> (Ty<'tcx>, Ty<'tcx>) {
267         let (mut a, mut b) = (source, target);
268         while let (&TyAdt(a_def, a_substs), &TyAdt(b_def, b_substs)) = (&a.sty, &b.sty) {
269             if a_def != b_def || !a_def.is_struct() {
270                 break
271             }
272             match a_def.struct_variant().fields.last() {
273                 Some(f) => {
274                     a = f.ty(self, a_substs);
275                     b = f.ty(self, b_substs);
276                 }
277                 _ => break
278             }
279         }
280         (a, b)
281     }
282
283     /// Given a set of predicates that apply to an object type, returns
284     /// the region bounds that the (erased) `Self` type must
285     /// outlive. Precisely *because* the `Self` type is erased, the
286     /// parameter `erased_self_ty` must be supplied to indicate what type
287     /// has been used to represent `Self` in the predicates
288     /// themselves. This should really be a unique type; `FreshTy(0)` is a
289     /// popular choice.
290     ///
291     /// NB: in some cases, particularly around higher-ranked bounds,
292     /// this function returns a kind of conservative approximation.
293     /// That is, all regions returned by this function are definitely
294     /// required, but there may be other region bounds that are not
295     /// returned, as well as requirements like `for<'a> T: 'a`.
296     ///
297     /// Requires that trait definitions have been processed so that we can
298     /// elaborate predicates and walk supertraits.
299     pub fn required_region_bounds(self,
300                                   erased_self_ty: Ty<'tcx>,
301                                   predicates: Vec<ty::Predicate<'tcx>>)
302                                   -> Vec<&'tcx ty::Region>    {
303         debug!("required_region_bounds(erased_self_ty={:?}, predicates={:?})",
304                erased_self_ty,
305                predicates);
306
307         assert!(!erased_self_ty.has_escaping_regions());
308
309         traits::elaborate_predicates(self, predicates)
310             .filter_map(|predicate| {
311                 match predicate {
312                     ty::Predicate::Projection(..) |
313                     ty::Predicate::Trait(..) |
314                     ty::Predicate::Equate(..) |
315                     ty::Predicate::WellFormed(..) |
316                     ty::Predicate::ObjectSafe(..) |
317                     ty::Predicate::ClosureKind(..) |
318                     ty::Predicate::RegionOutlives(..) => {
319                         None
320                     }
321                     ty::Predicate::TypeOutlives(ty::Binder(ty::OutlivesPredicate(t, r))) => {
322                         // Search for a bound of the form `erased_self_ty
323                         // : 'a`, but be wary of something like `for<'a>
324                         // erased_self_ty : 'a` (we interpret a
325                         // higher-ranked bound like that as 'static,
326                         // though at present the code in `fulfill.rs`
327                         // considers such bounds to be unsatisfiable, so
328                         // it's kind of a moot point since you could never
329                         // construct such an object, but this seems
330                         // correct even if that code changes).
331                         if t == erased_self_ty && !r.has_escaping_regions() {
332                             Some(r)
333                         } else {
334                             None
335                         }
336                     }
337                 }
338             })
339             .collect()
340     }
341
342     /// Creates a hash of the type `Ty` which will be the same no matter what crate
343     /// context it's calculated within. This is used by the `type_id` intrinsic.
344     pub fn type_id_hash(self, ty: Ty<'tcx>) -> u64 {
345         let mut hasher = TypeIdHasher::new(self);
346         hasher.visit_ty(ty);
347         hasher.finish()
348     }
349
350     /// Calculate the destructor of a given type.
351     pub fn calculate_dtor(
352         self,
353         adt_did: DefId,
354         validate: &mut FnMut(Self, DefId) -> Result<(), ErrorReported>
355     ) -> Option<ty::Destructor> {
356         let drop_trait = if let Some(def_id) = self.lang_items.drop_trait() {
357             def_id
358         } else {
359             return None;
360         };
361
362         ty::queries::coherent_trait::get(self, DUMMY_SP, (LOCAL_CRATE, drop_trait));
363
364         let mut dtor_did = None;
365         let ty = self.item_type(adt_did);
366         self.lookup_trait_def(drop_trait).for_each_relevant_impl(self, ty, |impl_did| {
367             if let Some(item) = self.associated_items(impl_did).next() {
368                 if let Ok(()) = validate(self, impl_did) {
369                     dtor_did = Some(item.def_id);
370                 }
371             }
372         });
373
374         let dtor_did = match dtor_did {
375             Some(dtor) => dtor,
376             None => return None
377         };
378
379         // RFC 1238: if the destructor method is tagged with the
380         // attribute `unsafe_destructor_blind_to_params`, then the
381         // compiler is being instructed to *assume* that the
382         // destructor will not access borrowed data,
383         // even if such data is otherwise reachable.
384         //
385         // Such access can be in plain sight (e.g. dereferencing
386         // `*foo.0` of `Foo<'a>(&'a u32)`) or indirectly hidden
387         // (e.g. calling `foo.0.clone()` of `Foo<T:Clone>`).
388         let is_dtorck = !self.has_attr(dtor_did, "unsafe_destructor_blind_to_params");
389         Some(ty::Destructor { did: dtor_did, is_dtorck: is_dtorck })
390     }
391
392     pub fn closure_base_def_id(&self, def_id: DefId) -> DefId {
393         let mut def_id = def_id;
394         while self.def_key(def_id).disambiguated_data.data == DefPathData::ClosureExpr {
395             def_id = self.parent_def_id(def_id).unwrap_or_else(|| {
396                 bug!("closure {:?} has no parent", def_id);
397             });
398         }
399         def_id
400     }
401 }
402
403 pub struct TypeIdHasher<'a, 'gcx: 'a+'tcx, 'tcx: 'a, W> {
404     tcx: TyCtxt<'a, 'gcx, 'tcx>,
405     state: StableHasher<W>,
406 }
407
408 impl<'a, 'gcx, 'tcx, W> TypeIdHasher<'a, 'gcx, 'tcx, W>
409     where W: StableHasherResult
410 {
411     pub fn new(tcx: TyCtxt<'a, 'gcx, 'tcx>) -> Self {
412         TypeIdHasher { tcx: tcx, state: StableHasher::new() }
413     }
414
415     pub fn finish(self) -> W {
416         self.state.finish()
417     }
418
419     pub fn hash<T: Hash>(&mut self, x: T) {
420         x.hash(&mut self.state);
421     }
422
423     fn hash_discriminant_u8<T>(&mut self, x: &T) {
424         let v = unsafe {
425             intrinsics::discriminant_value(x)
426         };
427         let b = v as u8;
428         assert_eq!(v, b as u64);
429         self.hash(b)
430     }
431
432     fn def_id(&mut self, did: DefId) {
433         // Hash the DefPath corresponding to the DefId, which is independent
434         // of compiler internal state.
435         let path = self.tcx.def_path(did);
436         self.def_path(&path)
437     }
438
439     pub fn def_path(&mut self, def_path: &hir_map::DefPath) {
440         def_path.deterministic_hash_to(self.tcx, &mut self.state);
441     }
442 }
443
444 impl<'a, 'gcx, 'tcx, W> TypeVisitor<'tcx> for TypeIdHasher<'a, 'gcx, 'tcx, W>
445     where W: StableHasherResult
446 {
447     fn visit_ty(&mut self, ty: Ty<'tcx>) -> bool {
448         // Distinguish between the Ty variants uniformly.
449         self.hash_discriminant_u8(&ty.sty);
450
451         match ty.sty {
452             TyInt(i) => self.hash(i),
453             TyUint(u) => self.hash(u),
454             TyFloat(f) => self.hash(f),
455             TyArray(_, n) => self.hash(n),
456             TyRawPtr(m) |
457             TyRef(_, m) => self.hash(m.mutbl),
458             TyClosure(def_id, _) |
459             TyAnon(def_id, _) |
460             TyFnDef(def_id, ..) => self.def_id(def_id),
461             TyAdt(d, _) => self.def_id(d.did),
462             TyFnPtr(f) => {
463                 self.hash(f.unsafety());
464                 self.hash(f.abi());
465                 self.hash(f.variadic());
466                 self.hash(f.inputs().skip_binder().len());
467             }
468             TyDynamic(ref data, ..) => {
469                 if let Some(p) = data.principal() {
470                     self.def_id(p.def_id());
471                 }
472                 for d in data.auto_traits() {
473                     self.def_id(d);
474                 }
475             }
476             TyTuple(tys, defaulted) => {
477                 self.hash(tys.len());
478                 self.hash(defaulted);
479             }
480             TyParam(p) => {
481                 self.hash(p.idx);
482                 self.hash(p.name.as_str());
483             }
484             TyProjection(ref data) => {
485                 self.def_id(data.trait_ref.def_id);
486                 self.hash(data.item_name.as_str());
487             }
488             TyNever |
489             TyBool |
490             TyChar |
491             TyStr |
492             TySlice(_) => {}
493
494             TyError |
495             TyInfer(_) => bug!("TypeIdHasher: unexpected type {}", ty)
496         }
497
498         ty.super_visit_with(self)
499     }
500
501     fn visit_region(&mut self, r: &'tcx ty::Region) -> bool {
502         match *r {
503             ty::ReErased => {
504                 self.hash::<u32>(0);
505             }
506             ty::ReLateBound(db, ty::BrAnon(i)) => {
507                 assert!(db.depth > 0);
508                 self.hash::<u32>(db.depth);
509                 self.hash(i);
510             }
511             ty::ReStatic |
512             ty::ReEmpty |
513             ty::ReEarlyBound(..) |
514             ty::ReLateBound(..) |
515             ty::ReFree(..) |
516             ty::ReScope(..) |
517             ty::ReVar(..) |
518             ty::ReSkolemized(..) => {
519                 bug!("TypeIdHasher: unexpected region {:?}", r)
520             }
521         }
522         false
523     }
524
525     fn visit_binder<T: TypeFoldable<'tcx>>(&mut self, x: &ty::Binder<T>) -> bool {
526         // Anonymize late-bound regions so that, for example:
527         // `for<'a, b> fn(&'a &'b T)` and `for<'a, b> fn(&'b &'a T)`
528         // result in the same TypeId (the two types are equivalent).
529         self.tcx.anonymize_late_bound_regions(x).super_visit_with(self)
530     }
531 }
532
533 impl<'a, 'tcx> ty::TyS<'tcx> {
534     fn impls_bound(&'tcx self, tcx: TyCtxt<'a, 'tcx, 'tcx>,
535                    param_env: &ParameterEnvironment<'tcx>,
536                    def_id: DefId,
537                    cache: &RefCell<FxHashMap<Ty<'tcx>, bool>>,
538                    span: Span) -> bool
539     {
540         if self.has_param_types() || self.has_self_ty() {
541             if let Some(result) = cache.borrow().get(self) {
542                 return *result;
543             }
544         }
545         let result =
546             tcx.infer_ctxt(param_env.clone(), Reveal::UserFacing)
547             .enter(|infcx| {
548                 traits::type_known_to_meet_bound(&infcx, self, def_id, span)
549             });
550         if self.has_param_types() || self.has_self_ty() {
551             cache.borrow_mut().insert(self, result);
552         }
553         return result;
554     }
555
556     // FIXME (@jroesch): I made this public to use it, not sure if should be private
557     pub fn moves_by_default(&'tcx self, tcx: TyCtxt<'a, 'tcx, 'tcx>,
558                             param_env: &ParameterEnvironment<'tcx>,
559                             span: Span) -> bool {
560         if self.flags.get().intersects(TypeFlags::MOVENESS_CACHED) {
561             return self.flags.get().intersects(TypeFlags::MOVES_BY_DEFAULT);
562         }
563
564         assert!(!self.needs_infer());
565
566         // Fast-path for primitive types
567         let result = match self.sty {
568             TyBool | TyChar | TyInt(..) | TyUint(..) | TyFloat(..) | TyNever |
569             TyRawPtr(..) | TyFnDef(..) | TyFnPtr(_) | TyRef(_, TypeAndMut {
570                 mutbl: hir::MutImmutable, ..
571             }) => Some(false),
572
573             TyStr | TyRef(_, TypeAndMut {
574                 mutbl: hir::MutMutable, ..
575             }) => Some(true),
576
577             TyArray(..) | TySlice(..) | TyDynamic(..) | TyTuple(..) |
578             TyClosure(..) | TyAdt(..) | TyAnon(..) |
579             TyProjection(..) | TyParam(..) | TyInfer(..) | TyError => None
580         }.unwrap_or_else(|| {
581             !self.impls_bound(tcx, param_env,
582                               tcx.require_lang_item(lang_items::CopyTraitLangItem),
583                               &param_env.is_copy_cache, span) });
584
585         if !self.has_param_types() && !self.has_self_ty() {
586             self.flags.set(self.flags.get() | if result {
587                 TypeFlags::MOVENESS_CACHED | TypeFlags::MOVES_BY_DEFAULT
588             } else {
589                 TypeFlags::MOVENESS_CACHED
590             });
591         }
592
593         result
594     }
595
596     #[inline]
597     pub fn is_sized(&'tcx self, tcx: TyCtxt<'a, 'tcx, 'tcx>,
598                     param_env: &ParameterEnvironment<'tcx>,
599                     span: Span) -> bool
600     {
601         if self.flags.get().intersects(TypeFlags::SIZEDNESS_CACHED) {
602             return self.flags.get().intersects(TypeFlags::IS_SIZED);
603         }
604
605         self.is_sized_uncached(tcx, param_env, span)
606     }
607
608     fn is_sized_uncached(&'tcx self, tcx: TyCtxt<'a, 'tcx, 'tcx>,
609                          param_env: &ParameterEnvironment<'tcx>,
610                          span: Span) -> bool {
611         assert!(!self.needs_infer());
612
613         // Fast-path for primitive types
614         let result = match self.sty {
615             TyBool | TyChar | TyInt(..) | TyUint(..) | TyFloat(..) |
616             TyRawPtr(..) | TyRef(..) | TyFnDef(..) | TyFnPtr(_) |
617             TyArray(..) | TyTuple(..) | TyClosure(..) | TyNever => Some(true),
618
619             TyStr | TyDynamic(..) | TySlice(_) => Some(false),
620
621             TyAdt(..) | TyProjection(..) | TyParam(..) |
622             TyInfer(..) | TyAnon(..) | TyError => None
623         }.unwrap_or_else(|| {
624             self.impls_bound(tcx, param_env, tcx.require_lang_item(lang_items::SizedTraitLangItem),
625                               &param_env.is_sized_cache, span) });
626
627         if !self.has_param_types() && !self.has_self_ty() {
628             self.flags.set(self.flags.get() | if result {
629                 TypeFlags::SIZEDNESS_CACHED | TypeFlags::IS_SIZED
630             } else {
631                 TypeFlags::SIZEDNESS_CACHED
632             });
633         }
634
635         result
636     }
637
638     #[inline]
639     pub fn layout<'lcx>(&'tcx self, infcx: &InferCtxt<'a, 'tcx, 'lcx>)
640                         -> Result<&'tcx Layout, LayoutError<'tcx>> {
641         let tcx = infcx.tcx.global_tcx();
642         let can_cache = !self.has_param_types() && !self.has_self_ty();
643         if can_cache {
644             if let Some(&cached) = tcx.layout_cache.borrow().get(&self) {
645                 return Ok(cached);
646             }
647         }
648
649         let rec_limit = tcx.sess.recursion_limit.get();
650         let depth = tcx.layout_depth.get();
651         if depth > rec_limit {
652             tcx.sess.fatal(
653                 &format!("overflow representing the type `{}`", self));
654         }
655
656         tcx.layout_depth.set(depth+1);
657         let layout = Layout::compute_uncached(self, infcx);
658         tcx.layout_depth.set(depth);
659         let layout = layout?;
660         if can_cache {
661             tcx.layout_cache.borrow_mut().insert(self, layout);
662         }
663         Ok(layout)
664     }
665
666
667     /// Check whether a type is representable. This means it cannot contain unboxed
668     /// structural recursion. This check is needed for structs and enums.
669     pub fn is_representable(&'tcx self, tcx: TyCtxt<'a, 'tcx, 'tcx>, sp: Span)
670                             -> Representability {
671
672         // Iterate until something non-representable is found
673         fn find_nonrepresentable<'a, 'tcx, It>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
674                                                sp: Span,
675                                                seen: &mut Vec<Ty<'tcx>>,
676                                                iter: It)
677                                                -> Representability
678         where It: Iterator<Item=Ty<'tcx>> {
679             iter.fold(Representability::Representable,
680                       |r, ty| cmp::max(r, is_type_structurally_recursive(tcx, sp, seen, ty)))
681         }
682
683         fn are_inner_types_recursive<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, sp: Span,
684                                                seen: &mut Vec<Ty<'tcx>>, ty: Ty<'tcx>)
685                                                -> Representability {
686             match ty.sty {
687                 TyTuple(ref ts, _) => {
688                     find_nonrepresentable(tcx, sp, seen, ts.iter().cloned())
689                 }
690                 // Fixed-length vectors.
691                 // FIXME(#11924) Behavior undecided for zero-length vectors.
692                 TyArray(ty, _) => {
693                     is_type_structurally_recursive(tcx, sp, seen, ty)
694                 }
695                 TyAdt(def, substs) => {
696                     find_nonrepresentable(tcx,
697                                           sp,
698                                           seen,
699                                           def.all_fields().map(|f| f.ty(tcx, substs)))
700                 }
701                 TyClosure(..) => {
702                     // this check is run on type definitions, so we don't expect
703                     // to see closure types
704                     bug!("requires check invoked on inapplicable type: {:?}", ty)
705                 }
706                 _ => Representability::Representable,
707             }
708         }
709
710         fn same_struct_or_enum<'tcx>(ty: Ty<'tcx>, def: &'tcx ty::AdtDef) -> bool {
711             match ty.sty {
712                 TyAdt(ty_def, _) => {
713                      ty_def == def
714                 }
715                 _ => false
716             }
717         }
718
719         fn same_type<'tcx>(a: Ty<'tcx>, b: Ty<'tcx>) -> bool {
720             match (&a.sty, &b.sty) {
721                 (&TyAdt(did_a, substs_a), &TyAdt(did_b, substs_b)) => {
722                     if did_a != did_b {
723                         return false;
724                     }
725
726                     substs_a.types().zip(substs_b.types()).all(|(a, b)| same_type(a, b))
727                 }
728                 _ => {
729                     a == b
730                 }
731             }
732         }
733
734         // Does the type `ty` directly (without indirection through a pointer)
735         // contain any types on stack `seen`?
736         fn is_type_structurally_recursive<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
737                                                     sp: Span,
738                                                     seen: &mut Vec<Ty<'tcx>>,
739                                                     ty: Ty<'tcx>) -> Representability {
740             debug!("is_type_structurally_recursive: {:?}", ty);
741
742             match ty.sty {
743                 TyAdt(def, _) => {
744                     {
745                         // Iterate through stack of previously seen types.
746                         let mut iter = seen.iter();
747
748                         // The first item in `seen` is the type we are actually curious about.
749                         // We want to return SelfRecursive if this type contains itself.
750                         // It is important that we DON'T take generic parameters into account
751                         // for this check, so that Bar<T> in this example counts as SelfRecursive:
752                         //
753                         // struct Foo;
754                         // struct Bar<T> { x: Bar<Foo> }
755
756                         if let Some(&seen_type) = iter.next() {
757                             if same_struct_or_enum(seen_type, def) {
758                                 debug!("SelfRecursive: {:?} contains {:?}",
759                                        seen_type,
760                                        ty);
761                                 return Representability::SelfRecursive;
762                             }
763                         }
764
765                         // We also need to know whether the first item contains other types
766                         // that are structurally recursive. If we don't catch this case, we
767                         // will recurse infinitely for some inputs.
768                         //
769                         // It is important that we DO take generic parameters into account
770                         // here, so that code like this is considered SelfRecursive, not
771                         // ContainsRecursive:
772                         //
773                         // struct Foo { Option<Option<Foo>> }
774
775                         for &seen_type in iter {
776                             if same_type(ty, seen_type) {
777                                 debug!("ContainsRecursive: {:?} contains {:?}",
778                                        seen_type,
779                                        ty);
780                                 return Representability::ContainsRecursive;
781                             }
782                         }
783                     }
784
785                     // For structs and enums, track all previously seen types by pushing them
786                     // onto the 'seen' stack.
787                     seen.push(ty);
788                     let out = are_inner_types_recursive(tcx, sp, seen, ty);
789                     seen.pop();
790                     out
791                 }
792                 _ => {
793                     // No need to push in other cases.
794                     are_inner_types_recursive(tcx, sp, seen, ty)
795                 }
796             }
797         }
798
799         debug!("is_type_representable: {:?}", self);
800
801         // To avoid a stack overflow when checking an enum variant or struct that
802         // contains a different, structurally recursive type, maintain a stack
803         // of seen types and check recursion for each of them (issues #3008, #3779).
804         let mut seen: Vec<Ty> = Vec::new();
805         let r = is_type_structurally_recursive(tcx, sp, &mut seen, self);
806         debug!("is_type_representable: {:?} is {:?}", self, r);
807         r
808     }
809 }