Files
rust/src/librustc_codegen_ssa/mir/constant.rs

106 lines
4.0 KiB
Rust
Raw Normal View History

// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use rustc::mir::interpret::ErrorHandled;
use rustc_mir::const_eval::const_field;
2016-09-19 23:50:00 +03:00
use rustc::mir;
2018-01-16 09:31:48 +01:00
use rustc_data_structures::indexed_vec::Idx;
use rustc::mir::interpret::{GlobalId, ConstValue};
2018-01-25 16:44:45 +01:00
use rustc::ty::{self, Ty};
use rustc::ty::layout::{self, LayoutOf};
2018-08-18 12:14:03 +02:00
use syntax::source_map::Span;
use traits::*;
use super::FunctionCx;
impl<'a, 'tcx: 'a, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
2018-06-25 20:53:02 +02:00
fn fully_evaluate(
2018-01-16 09:31:48 +01:00
&mut self,
bx: &Bx,
2018-01-16 09:31:48 +01:00
constant: &'tcx ty::Const<'tcx>,
) -> Result<&'tcx ty::Const<'tcx>, ErrorHandled> {
2018-01-16 09:31:48 +01:00
match constant.val {
2018-06-25 20:53:02 +02:00
ConstValue::Unevaluated(def_id, ref substs) => {
let tcx = bx.tcx();
let param_env = ty::ParamEnv::reveal_all();
2018-01-16 09:31:48 +01:00
let instance = ty::Instance::resolve(tcx, param_env, def_id, substs).unwrap();
let cid = GlobalId {
instance,
promoted: None,
};
2018-06-25 20:53:02 +02:00
tcx.const_eval(param_env.and(cid))
2018-01-16 09:31:48 +01:00
},
2018-06-25 20:53:02 +02:00
_ => Ok(constant),
2017-01-02 11:00:42 -07:00
}
}
2018-06-25 20:53:02 +02:00
pub fn eval_mir_constant(
2018-01-16 09:31:48 +01:00
&mut self,
bx: &Bx,
2018-01-16 09:31:48 +01:00
constant: &mir::Constant<'tcx>,
) -> Result<&'tcx ty::Const<'tcx>, ErrorHandled> {
let c = self.monomorphize(&constant.literal);
self.fully_evaluate(bx, c)
}
2017-01-02 11:00:42 -07:00
/// process constant containing SIMD shuffle indices
pub fn simd_shuffle_indices(
&mut self,
bx: &Bx,
span: Span,
ty: Ty<'tcx>,
constant: Result<&'tcx ty::Const<'tcx>, ErrorHandled>,
) -> (Bx::Value, Ty<'tcx>) {
constant
2018-01-16 09:31:48 +01:00
.and_then(|c| {
2018-06-25 20:53:02 +02:00
let field_ty = c.ty.builtin_index().unwrap();
let fields = match c.ty.sty {
ty::Array(_, n) => n.unwrap_usize(bx.tcx()),
2018-01-29 09:58:28 +01:00
ref other => bug!("invalid simd shuffle type: {}", other),
2018-01-16 09:31:48 +01:00
};
let values: Result<Vec<_>, ErrorHandled> = (0..fields).map(|field| {
let field = const_field(
2018-01-29 09:58:28 +01:00
bx.tcx(),
ty::ParamEnv::reveal_all(),
2018-01-29 09:58:28 +01:00
self.instance,
None,
mir::Field::new(field as usize),
c,
)?;
if let Some(prim) = field.val.try_to_scalar() {
let layout = bx.cx().layout_of(field_ty);
let scalar = match layout.abi {
layout::Abi::Scalar(ref x) => x,
_ => bug!("from_const: invalid ByVal layout: {:#?}", layout)
};
Ok(bx.cx().scalar_to_backend(
prim, scalar,
bx.cx().immediate_backend_type(layout),
))
} else {
bug!("simd shuffle field {:?}", field)
2018-01-29 09:58:28 +01:00
}
}).collect();
let llval = bx.cx().const_struct(&values?, false);
2018-06-25 20:53:02 +02:00
Ok((llval, c.ty))
2018-01-16 09:31:48 +01:00
})
.unwrap_or_else(|_| {
bx.tcx().sess.span_err(
span,
2018-06-02 23:38:57 +02:00
"could not evaluate shuffle_indices at compile time",
);
2018-01-16 09:31:48 +01:00
// We've errored, so we don't have to produce working code.
let ty = self.monomorphize(&ty);
let llty = bx.cx().backend_type(bx.cx().layout_of(ty));
(bx.cx().const_undef(llty), ty)
2018-01-16 09:31:48 +01:00
})
2017-01-02 11:00:42 -07:00
}
}