2015-08-18 16:59:21 -05:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2015-10-05 11:31:48 -05:00
|
|
|
/*!
|
|
|
|
* This module contains the code to convert from the wacky tcx data
|
|
|
|
* structures into the hair. The `builder` is generally ignorant of
|
|
|
|
* the tcx etc, and instead goes through the `Cx` for most of its
|
|
|
|
* work.
|
|
|
|
*/
|
|
|
|
|
2015-08-18 16:59:21 -05:00
|
|
|
use hair::*;
|
|
|
|
use repr::*;
|
2015-10-05 11:31:48 -05:00
|
|
|
|
|
|
|
use rustc::middle::const_eval::ConstVal;
|
|
|
|
use rustc::middle::def_id::DefId;
|
|
|
|
use rustc::middle::infer::InferCtxt;
|
|
|
|
use rustc::middle::subst::{Subst, Substs};
|
|
|
|
use rustc::middle::ty::{self, Ty};
|
|
|
|
use syntax::codemap::Span;
|
|
|
|
use syntax::parse::token::{self, special_idents};
|
2015-08-18 16:59:21 -05:00
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct Cx<'a,'tcx:'a> {
|
2015-10-05 11:31:48 -05:00
|
|
|
tcx: &'a ty::ctxt<'tcx>,
|
|
|
|
infcx: &'a InferCtxt<'a,'tcx>,
|
2015-08-18 16:59:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a,'tcx> Cx<'a,'tcx> {
|
|
|
|
pub fn new(infcx: &'a InferCtxt<'a,'tcx>) -> Cx<'a,'tcx> {
|
|
|
|
Cx { tcx: infcx.tcx, infcx: infcx }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub use self::pattern::PatNode;
|
|
|
|
|
2015-10-05 11:31:48 -05:00
|
|
|
impl<'a,'tcx:'a> Cx<'a, 'tcx> {
|
|
|
|
/// Normalizes `ast` into the appropriate `mirror` type.
|
|
|
|
pub fn mirror<M:Mirror<'tcx>>(&mut self, ast: M) -> M::Output {
|
|
|
|
ast.make_mirror(self)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn unit_ty(&mut self) -> Ty<'tcx> {
|
2015-08-18 16:59:21 -05:00
|
|
|
self.tcx.mk_nil()
|
|
|
|
}
|
|
|
|
|
2015-10-05 11:31:48 -05:00
|
|
|
pub fn usize_ty(&mut self) -> Ty<'tcx> {
|
2015-08-18 16:59:21 -05:00
|
|
|
self.tcx.types.usize
|
|
|
|
}
|
|
|
|
|
2015-10-05 11:31:48 -05:00
|
|
|
pub fn usize_literal(&mut self, value: usize) -> Literal<'tcx> {
|
2015-09-10 14:44:44 -05:00
|
|
|
Literal::Value { value: ConstVal::Uint(value as u64) }
|
|
|
|
}
|
|
|
|
|
2015-10-05 11:31:48 -05:00
|
|
|
pub fn bool_ty(&mut self) -> Ty<'tcx> {
|
2015-08-18 16:59:21 -05:00
|
|
|
self.tcx.types.bool
|
|
|
|
}
|
|
|
|
|
2015-10-05 11:31:48 -05:00
|
|
|
pub fn true_literal(&mut self) -> Literal<'tcx> {
|
2015-09-10 14:44:44 -05:00
|
|
|
Literal::Value { value: ConstVal::Bool(true) }
|
|
|
|
}
|
|
|
|
|
2015-10-05 11:31:48 -05:00
|
|
|
pub fn false_literal(&mut self) -> Literal<'tcx> {
|
2015-09-10 14:44:44 -05:00
|
|
|
Literal::Value { value: ConstVal::Bool(false) }
|
|
|
|
}
|
|
|
|
|
2015-10-05 11:31:48 -05:00
|
|
|
pub fn partial_eq(&mut self, ty: Ty<'tcx>) -> ItemRef<'tcx> {
|
2015-08-18 16:59:21 -05:00
|
|
|
let eq_def_id = self.tcx.lang_items.eq_trait().unwrap();
|
|
|
|
self.cmp_method_ref(eq_def_id, "eq", ty)
|
|
|
|
}
|
|
|
|
|
2015-10-05 11:31:48 -05:00
|
|
|
pub fn partial_le(&mut self, ty: Ty<'tcx>) -> ItemRef<'tcx> {
|
2015-08-18 16:59:21 -05:00
|
|
|
let ord_def_id = self.tcx.lang_items.ord_trait().unwrap();
|
|
|
|
self.cmp_method_ref(ord_def_id, "le", ty)
|
|
|
|
}
|
|
|
|
|
2015-10-05 11:31:48 -05:00
|
|
|
pub fn num_variants(&mut self, adt_def: ty::AdtDef<'tcx>) -> usize {
|
2015-08-18 16:59:21 -05:00
|
|
|
adt_def.variants.len()
|
|
|
|
}
|
|
|
|
|
2015-10-05 11:31:48 -05:00
|
|
|
pub fn fields(&mut self, adt_def: ty::AdtDef<'tcx>, variant_index: usize) -> Vec<Field> {
|
2015-08-18 16:59:21 -05:00
|
|
|
adt_def.variants[variant_index]
|
|
|
|
.fields
|
|
|
|
.iter()
|
|
|
|
.enumerate()
|
|
|
|
.map(|(index, field)| {
|
|
|
|
if field.name == special_idents::unnamed_field.name {
|
|
|
|
Field::Indexed(index)
|
|
|
|
} else {
|
|
|
|
Field::Named(field.name)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
|
2015-10-05 11:31:48 -05:00
|
|
|
pub fn needs_drop(&mut self, ty: Ty<'tcx>, span: Span) -> bool {
|
2015-08-18 16:59:21 -05:00
|
|
|
if self.infcx.type_moves_by_default(ty, span) {
|
2015-09-01 15:55:40 -05:00
|
|
|
// FIXME(#21859) we should do an add'l check here to determine if
|
2015-08-18 16:59:21 -05:00
|
|
|
// any dtor will execute, but the relevant fn
|
|
|
|
// (`type_needs_drop`) is currently factored into
|
|
|
|
// `librustc_trans`, so we can't easily do so.
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
// if type implements Copy, cannot require drop
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-05 11:31:48 -05:00
|
|
|
pub fn span_bug(&mut self, span: Span, message: &str) -> ! {
|
2015-08-18 16:59:21 -05:00
|
|
|
self.tcx.sess.span_bug(span, message)
|
|
|
|
}
|
|
|
|
|
2015-10-05 11:31:48 -05:00
|
|
|
pub fn tcx(&self) -> &'a ty::ctxt<'tcx> {
|
|
|
|
self.tcx
|
|
|
|
}
|
|
|
|
|
2015-08-18 16:59:21 -05:00
|
|
|
fn cmp_method_ref(&mut self,
|
|
|
|
trait_def_id: DefId,
|
|
|
|
method_name: &str,
|
|
|
|
arg_ty: Ty<'tcx>)
|
2015-10-05 11:31:48 -05:00
|
|
|
-> ItemRef<'tcx> {
|
2015-08-18 16:59:21 -05:00
|
|
|
let method_name = token::intern(method_name);
|
|
|
|
let substs = Substs::new_trait(vec![arg_ty], vec![], arg_ty);
|
|
|
|
for trait_item in self.tcx.trait_items(trait_def_id).iter() {
|
|
|
|
match *trait_item {
|
|
|
|
ty::ImplOrTraitItem::MethodTraitItem(ref method) => {
|
|
|
|
if method.name == method_name {
|
|
|
|
let method_ty = self.tcx.lookup_item_type(method.def_id);
|
|
|
|
let method_ty = method_ty.ty.subst(self.tcx, &substs);
|
|
|
|
return ItemRef {
|
|
|
|
ty: method_ty,
|
|
|
|
def_id: method.def_id,
|
|
|
|
substs: self.tcx.mk_substs(substs),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ty::ImplOrTraitItem::ConstTraitItem(..) |
|
|
|
|
ty::ImplOrTraitItem::TypeTraitItem(..) => {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.tcx.sess.bug(
|
|
|
|
&format!("found no method `{}` in `{:?}`", method_name, trait_def_id));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod block;
|
|
|
|
mod expr;
|
|
|
|
mod pattern;
|
|
|
|
mod to_ref;
|
|
|
|
|