]> git.lizzy.rs Git - rust.git/blob - src/librustc_passes/layout_test.rs
Rollup merge of #59432 - phansch:compiletest_docs, r=alexcrichton
[rust.git] / src / librustc_passes / layout_test.rs
1 use rustc::hir;
2 use rustc::hir::def_id::DefId;
3 use rustc::hir::itemlikevisit::ItemLikeVisitor;
4 use rustc::hir::ItemKind;
5 use rustc::ty::layout::HasDataLayout;
6 use rustc::ty::layout::HasTyCtxt;
7 use rustc::ty::layout::LayoutOf;
8 use rustc::ty::layout::TargetDataLayout;
9 use rustc::ty::layout::TyLayout;
10 use rustc::ty::ParamEnv;
11 use rustc::ty::Ty;
12 use rustc::ty::TyCtxt;
13 use syntax::ast::Attribute;
14
15 pub fn test_layout<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>) {
16     if tcx.features().rustc_attrs {
17         // if the `rustc_attrs` feature is not enabled, don't bother testing layout
18         tcx.hir()
19             .krate()
20             .visit_all_item_likes(&mut VarianceTest { tcx });
21     }
22 }
23
24 struct VarianceTest<'a, 'tcx: 'a> {
25     tcx: TyCtxt<'a, 'tcx, 'tcx>,
26 }
27
28 impl<'a, 'tcx> ItemLikeVisitor<'tcx> for VarianceTest<'a, 'tcx> {
29     fn visit_item(&mut self, item: &'tcx hir::Item) {
30         let item_def_id = self.tcx.hir().local_def_id_from_hir_id(item.hir_id);
31
32         if let ItemKind::Ty(..) = item.node {
33             for attr in self.tcx.get_attrs(item_def_id).iter() {
34                 if attr.check_name("rustc_layout") {
35                     self.dump_layout_of(item_def_id, item, attr);
36                 }
37             }
38         }
39     }
40
41     fn visit_trait_item(&mut self, _: &'tcx hir::TraitItem) {}
42     fn visit_impl_item(&mut self, _: &'tcx hir::ImplItem) {}
43 }
44
45 impl<'a, 'tcx> VarianceTest<'a, 'tcx> {
46     fn dump_layout_of(&self, item_def_id: DefId, item: &hir::Item, attr: &Attribute) {
47         let tcx = self.tcx;
48         let param_env = self.tcx.param_env(item_def_id);
49         let ty = self.tcx.type_of(item_def_id);
50         match self.tcx.layout_of(param_env.and(ty)) {
51             Ok(ty_layout) => {
52                 // Check out the `#[rustc_layout(..)]` attribute to tell what to dump.
53                 // The `..` are the names of fields to dump.
54                 let meta_items = attr.meta_item_list().unwrap_or_default();
55                 for meta_item in meta_items {
56                     match meta_item.name_or_empty().get() {
57                         "abi" => {
58                             self.tcx
59                                 .sess
60                                 .span_err(item.span, &format!("abi: {:?}", ty_layout.abi));
61                         }
62
63                         "align" => {
64                             self.tcx
65                                 .sess
66                                 .span_err(item.span, &format!("align: {:?}", ty_layout.align));
67                         }
68
69                         "size" => {
70                             self.tcx
71                                 .sess
72                                 .span_err(item.span, &format!("size: {:?}", ty_layout.size));
73                         }
74
75                         "homogeneous_aggregate" => {
76                             self.tcx.sess.span_err(
77                                 item.span,
78                                 &format!(
79                                     "homogeneous_aggregate: {:?}",
80                                     ty_layout
81                                         .homogeneous_aggregate(&UnwrapLayoutCx { tcx, param_env }),
82                                 ),
83                             );
84                         }
85
86                         name => {
87                             self.tcx.sess.span_err(
88                                 meta_item.span(),
89                                 &format!("unrecognized field name `{}`", name),
90                             );
91                         }
92                     }
93                 }
94             }
95
96             Err(layout_error) => {
97                 self.tcx
98                     .sess
99                     .span_err(item.span, &format!("layout error: {:?}", layout_error));
100             }
101         }
102     }
103 }
104
105 struct UnwrapLayoutCx<'me, 'tcx> {
106     tcx: TyCtxt<'me, 'tcx, 'tcx>,
107     param_env: ParamEnv<'tcx>,
108 }
109
110 impl<'me, 'tcx> LayoutOf for UnwrapLayoutCx<'me, 'tcx> {
111     type Ty = Ty<'tcx>;
112     type TyLayout = TyLayout<'tcx>;
113
114     fn layout_of(&self, ty: Ty<'tcx>) -> Self::TyLayout {
115         self.tcx.layout_of(self.param_env.and(ty)).unwrap()
116     }
117 }
118
119 impl<'me, 'tcx> HasTyCtxt<'tcx> for UnwrapLayoutCx<'me, 'tcx> {
120     fn tcx<'a>(&'a self) -> TyCtxt<'a, 'tcx, 'tcx> {
121         self.tcx
122     }
123 }
124
125 impl<'me, 'tcx> HasDataLayout for UnwrapLayoutCx<'me, 'tcx> {
126     fn data_layout(&self) -> &TargetDataLayout {
127         self.tcx.data_layout()
128     }
129 }