]> git.proxmox.com Git - rustc.git/blame - src/librustc_mir/build/expr/as_constant.rs
New upstream version 1.19.0+dfsg1
[rustc.git] / src / librustc_mir / build / expr / as_constant.rs
CommitLineData
e9174d1e
SL
1// Copyright 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//! See docs in build/expr/mod.rs
12
b039eaaf 13use build::Builder;
e9174d1e 14use hair::*;
c30ab7b3 15use rustc::mir::*;
e9174d1e 16
a7813a04 17impl<'a, 'gcx, 'tcx> Builder<'a, 'gcx, 'tcx> {
e9174d1e
SL
18 /// Compile `expr`, yielding a compile-time constant. Assumes that
19 /// `expr` is a valid compile-time constant!
b039eaaf
SL
20 pub fn as_constant<M>(&mut self, expr: M) -> Constant<'tcx>
21 where M: Mirror<'tcx, Output=Expr<'tcx>>
e9174d1e
SL
22 {
23 let expr = self.hir.mirror(expr);
24 self.expr_as_constant(expr)
25 }
26
b039eaaf 27 fn expr_as_constant(&mut self, expr: Expr<'tcx>) -> Constant<'tcx> {
e9174d1e 28 let this = self;
7cac9316 29 let Expr { ty, temp_lifetime: _, span, kind }
32a655c1 30 = expr;
b039eaaf
SL
31 match kind {
32 ExprKind::Scope { extent: _, value } =>
33 this.as_constant(value),
34 ExprKind::Literal { literal } =>
35 Constant { span: span, ty: ty, literal: literal },
36 _ =>
54a0048b 37 span_bug!(
e9174d1e 38 span,
54a0048b
SL
39 "expression is not a valid constant {:?}",
40 kind),
b039eaaf 41 }
e9174d1e
SL
42 }
43}