]> git.lizzy.rs Git - rust.git/blob - src/librustc/middle/check_rvalues.rs
Auto merge of #30341 - pnkfelix:call-site-scope, r=nikomatsakis
[rust.git] / src / librustc / middle / check_rvalues.rs
1 // Copyright 2014 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 // Checks that all rvalues in a crate have statically known size. check_crate
12 // is the public starting point.
13
14 use middle::expr_use_visitor as euv;
15 use middle::infer;
16 use middle::mem_categorization as mc;
17 use middle::ty::ParameterEnvironment;
18 use middle::ty;
19
20 use syntax::ast;
21 use rustc_front::hir;
22 use syntax::codemap::Span;
23 use rustc_front::intravisit;
24
25 pub fn check_crate(tcx: &ty::ctxt,
26                    krate: &hir::Crate) {
27     let mut rvcx = RvalueContext { tcx: tcx };
28     krate.visit_all_items(&mut rvcx);
29 }
30
31 struct RvalueContext<'a, 'tcx: 'a> {
32     tcx: &'a ty::ctxt<'tcx>,
33 }
34
35 impl<'a, 'tcx, 'v> intravisit::Visitor<'v> for RvalueContext<'a, 'tcx> {
36     fn visit_fn(&mut self,
37                 fk: intravisit::FnKind<'v>,
38                 fd: &'v hir::FnDecl,
39                 b: &'v hir::Block,
40                 s: Span,
41                 fn_id: ast::NodeId) {
42         {
43             // FIXME (@jroesch) change this to be an inference context
44             let param_env = ParameterEnvironment::for_item(self.tcx, fn_id);
45             let infcx = infer::new_infer_ctxt(self.tcx,
46                                               &self.tcx.tables,
47                                               Some(param_env.clone()),
48                                               false);
49             let mut delegate = RvalueContextDelegate { tcx: self.tcx, param_env: &param_env };
50             let mut euv = euv::ExprUseVisitor::new(&mut delegate, &infcx);
51             euv.walk_fn(fd, b);
52         }
53         intravisit::walk_fn(self, fk, fd, b, s)
54     }
55 }
56
57 struct RvalueContextDelegate<'a, 'tcx: 'a> {
58     tcx: &'a ty::ctxt<'tcx>,
59     param_env: &'a ty::ParameterEnvironment<'a,'tcx>,
60 }
61
62 impl<'a, 'tcx> euv::Delegate<'tcx> for RvalueContextDelegate<'a, 'tcx> {
63     fn consume(&mut self,
64                _: ast::NodeId,
65                span: Span,
66                cmt: mc::cmt<'tcx>,
67                _: euv::ConsumeMode) {
68         debug!("consume; cmt: {:?}; type: {:?}", *cmt, cmt.ty);
69         if !cmt.ty.is_sized(self.param_env, span) {
70             span_err!(self.tcx.sess, span, E0161,
71                 "cannot move a value of type {0}: the size of {0} cannot be statically determined",
72                 cmt.ty);
73         }
74     }
75
76     fn matched_pat(&mut self,
77                    _matched_pat: &hir::Pat,
78                    _cmt: mc::cmt,
79                    _mode: euv::MatchMode) {}
80
81     fn consume_pat(&mut self,
82                    _consume_pat: &hir::Pat,
83                    _cmt: mc::cmt,
84                    _mode: euv::ConsumeMode) {
85     }
86
87     fn borrow(&mut self,
88               _borrow_id: ast::NodeId,
89               _borrow_span: Span,
90               _cmt: mc::cmt,
91               _loan_region: ty::Region,
92               _bk: ty::BorrowKind,
93               _loan_cause: euv::LoanCause) {
94     }
95
96     fn decl_without_init(&mut self,
97                          _id: ast::NodeId,
98                          _span: Span) {
99     }
100
101     fn mutate(&mut self,
102               _assignment_id: ast::NodeId,
103               _assignment_span: Span,
104               _assignee_cmt: mc::cmt,
105               _mode: euv::MutateMode) {
106     }
107 }