Merge pull request #1399 from Manishearth/the_ice_was_a_lie
fix an ice related to associated types
This commit is contained in:
commit
b729b3b8e2
@ -1,12 +1,12 @@
|
|||||||
use rustc::hir::*;
|
use rustc::hir::*;
|
||||||
use rustc::hir::intravisit as visit;
|
use rustc::hir::intravisit as visit;
|
||||||
use rustc::hir::map::Node::{NodeExpr, NodeStmt};
|
use rustc::hir::map::Node::{NodeExpr, NodeStmt};
|
||||||
use rustc::infer::InferCtxt;
|
|
||||||
use rustc::lint::*;
|
use rustc::lint::*;
|
||||||
use rustc::middle::expr_use_visitor::*;
|
use rustc::middle::expr_use_visitor::*;
|
||||||
use rustc::middle::mem_categorization::{cmt, Categorization};
|
use rustc::middle::mem_categorization::{cmt, Categorization};
|
||||||
use rustc::ty;
|
use rustc::ty;
|
||||||
use rustc::ty::layout::TargetDataLayout;
|
use rustc::ty::layout::TargetDataLayout;
|
||||||
|
use rustc::traits::Reveal;
|
||||||
use rustc::util::nodemap::NodeSet;
|
use rustc::util::nodemap::NodeSet;
|
||||||
use syntax::ast::NodeId;
|
use syntax::ast::NodeId;
|
||||||
use syntax::codemap::Span;
|
use syntax::codemap::Span;
|
||||||
@ -46,10 +46,9 @@ fn is_non_trait_box(ty: ty::Ty) -> bool {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
struct EscapeDelegate<'a, 'tcx: 'a + 'gcx, 'gcx: 'a> {
|
struct EscapeDelegate<'a, 'tcx: 'a> {
|
||||||
tcx: ty::TyCtxt<'a, 'tcx, 'tcx>,
|
|
||||||
set: NodeSet,
|
set: NodeSet,
|
||||||
infcx: &'a InferCtxt<'a, 'gcx, 'gcx>,
|
tcx: ty::TyCtxt<'a, 'tcx, 'tcx>,
|
||||||
target: TargetDataLayout,
|
target: TargetDataLayout,
|
||||||
too_large_for_stack: u64,
|
too_large_for_stack: u64,
|
||||||
}
|
}
|
||||||
@ -70,20 +69,17 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
|
|||||||
_: Span,
|
_: Span,
|
||||||
id: NodeId
|
id: NodeId
|
||||||
) {
|
) {
|
||||||
let param_env = ty::ParameterEnvironment::for_item(cx.tcx, id);
|
|
||||||
|
|
||||||
let infcx = cx.tcx.borrowck_fake_infer_ctxt(param_env);
|
|
||||||
|
|
||||||
// we store the infcx because it is expensive to recreate
|
// we store the infcx because it is expensive to recreate
|
||||||
// the context each time.
|
// the context each time.
|
||||||
let mut v = EscapeDelegate {
|
let mut v = EscapeDelegate {
|
||||||
tcx: cx.tcx,
|
|
||||||
set: NodeSet(),
|
set: NodeSet(),
|
||||||
infcx: &infcx,
|
tcx: cx.tcx,
|
||||||
target: TargetDataLayout::parse(cx.sess()),
|
target: TargetDataLayout::parse(cx.sess()),
|
||||||
too_large_for_stack: self.too_large_for_stack,
|
too_large_for_stack: self.too_large_for_stack,
|
||||||
};
|
};
|
||||||
|
let param_env = ty::ParameterEnvironment::for_item(cx.tcx, id);
|
||||||
|
|
||||||
|
let infcx = cx.tcx.borrowck_fake_infer_ctxt(param_env);
|
||||||
{
|
{
|
||||||
let mut vis = ExprUseVisitor::new(&mut v, &infcx);
|
let mut vis = ExprUseVisitor::new(&mut v, &infcx);
|
||||||
vis.walk_fn(decl, body);
|
vis.walk_fn(decl, body);
|
||||||
@ -98,7 +94,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, 'tcx: 'a + 'gcx, 'gcx: 'a> Delegate<'tcx> for EscapeDelegate<'a, 'tcx, 'gcx> {
|
impl<'a, 'tcx: 'a> Delegate<'tcx> for EscapeDelegate<'a, 'tcx> {
|
||||||
fn consume(&mut self, _: NodeId, _: Span, cmt: cmt<'tcx>, mode: ConsumeMode) {
|
fn consume(&mut self, _: NodeId, _: Span, cmt: cmt<'tcx>, mode: ConsumeMode) {
|
||||||
if let Categorization::Local(lid) = cmt.cat {
|
if let Categorization::Local(lid) = cmt.cat {
|
||||||
if self.set.contains(&lid) {
|
if self.set.contains(&lid) {
|
||||||
@ -207,18 +203,20 @@ impl<'a, 'tcx: 'a + 'gcx, 'gcx: 'a> Delegate<'tcx> for EscapeDelegate<'a, 'tcx,
|
|||||||
fn mutate(&mut self, _: NodeId, _: Span, _: cmt<'tcx>, _: MutateMode) {}
|
fn mutate(&mut self, _: NodeId, _: Span, _: cmt<'tcx>, _: MutateMode) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, 'tcx: 'a + 'gcx, 'gcx: 'a> EscapeDelegate<'a, 'tcx, 'gcx> {
|
impl<'a, 'tcx: 'a> EscapeDelegate<'a, 'tcx> {
|
||||||
fn is_large_box(&self, ty: ty::Ty<'gcx>) -> bool {
|
fn is_large_box(&self, ty: ty::Ty<'tcx>) -> bool {
|
||||||
// Large types need to be boxed to avoid stack
|
// Large types need to be boxed to avoid stack
|
||||||
// overflows.
|
// overflows.
|
||||||
match ty.sty {
|
match ty.sty {
|
||||||
ty::TyBox(inner) => {
|
ty::TyBox(inner) => {
|
||||||
if let Ok(layout) = inner.layout(self.infcx) {
|
self.tcx.infer_ctxt(None, None, Reveal::All).enter(|infcx| {
|
||||||
let size = layout.size(&self.target);
|
if let Ok(layout) = inner.layout(&infcx) {
|
||||||
size.bytes() > self.too_large_for_stack
|
let size = layout.size(&self.target);
|
||||||
} else {
|
size.bytes() > self.too_large_for_stack
|
||||||
false
|
} else {
|
||||||
}
|
false
|
||||||
|
}
|
||||||
|
})
|
||||||
},
|
},
|
||||||
_ => false,
|
_ => false,
|
||||||
}
|
}
|
||||||
|
@ -112,3 +112,20 @@ fn nowarn_large_array() {
|
|||||||
ref y => ()
|
ref y => ()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// ICE regression test
|
||||||
|
pub trait Foo {
|
||||||
|
type Item;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> Foo for &'a () {
|
||||||
|
type Item = ();
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct PeekableSeekable<I: Foo> {
|
||||||
|
_peeked: I::Item,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn new(_needs_name: Box<PeekableSeekable<&()>>) -> () { //~ ERROR local variable doesn't need
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user