use rustc::hir::def_id::DefId; use rustc::hir; use rustc::mir::*; use rustc::ty::{self, Predicate, TyCtxt}; use std::borrow::Cow; use syntax_pos::Span; type McfResult = Result<(), (Span, Cow<'static, str>)>; pub fn is_min_const_fn( tcx: TyCtxt<'a, 'tcx, 'tcx>, def_id: DefId, mir: &'a Mir<'tcx>, ) -> McfResult { let mut current = def_id; loop { let predicates = tcx.predicates_of(current); for (predicate, _) in &predicates.predicates { match predicate { | Predicate::RegionOutlives(_) | Predicate::TypeOutlives(_) | Predicate::WellFormed(_) | Predicate::ConstEvaluatable(..) => continue, | Predicate::ObjectSafe(_) => { bug!("object safe predicate on function: {:#?}", predicate) } Predicate::ClosureKind(..) => { bug!("closure kind predicate on function: {:#?}", predicate) } Predicate::Subtype(_) => bug!("subtype predicate on function: {:#?}", predicate), Predicate::Projection(_) => { let span = tcx.def_span(current); // we'll hit a `Predicate::Trait` later which will report an error tcx.sess .delay_span_bug(span, "projection without trait bound"); continue; } Predicate::Trait(pred) => { if Some(pred.def_id()) == tcx.lang_items().sized_trait() { continue; } match pred.skip_binder().self_ty().sty { ty::Param(ref p) => { let generics = tcx.generics_of(current); let def = generics.type_param(p, tcx); let span = tcx.def_span(def.def_id); return Err(( span, "trait bounds other than `Sized` \ on const fn parameters are unstable" .into(), )); } // other kinds of bounds are either tautologies // or cause errors in other passes _ => continue, } } } } match predicates.parent { Some(parent) => current = parent, None => break, } } for local in mir.vars_iter() { return Err(( mir.local_decls[local].source_info.span, "local variables in const fn are unstable".into(), )); } for local in &mir.local_decls { check_ty(tcx, local.ty, local.source_info.span)?; } // impl trait is gone in MIR, so check the return type manually check_ty( tcx, tcx.fn_sig(def_id).output().skip_binder(), mir.local_decls.iter().next().unwrap().source_info.span, )?; for bb in mir.basic_blocks() { check_terminator(tcx, mir, bb.terminator())?; for stmt in &bb.statements { check_statement(tcx, mir, stmt)?; } } Ok(()) } fn check_ty( tcx: TyCtxt<'a, 'tcx, 'tcx>, ty: ty::Ty<'tcx>, span: Span, ) -> McfResult { for ty in ty.walk() { match ty.sty { ty::Ref(_, _, hir::Mutability::MutMutable) => return Err(( span, "mutable references in const fn are unstable".into(), )), ty::Opaque(..) => return Err((span, "`impl Trait` in const fn is unstable".into())), ty::FnPtr(..) => { return Err((span, "function pointers in const fn are unstable".into())) } ty::Dynamic(preds, _) => { for pred in preds.iter() { match pred.skip_binder() { | ty::ExistentialPredicate::AutoTrait(_) | ty::ExistentialPredicate::Projection(_) => { return Err(( span, "trait bounds other than `Sized` \ on const fn parameters are unstable" .into(), )) } ty::ExistentialPredicate::Trait(trait_ref) => { if Some(trait_ref.def_id) != tcx.lang_items().sized_trait() { return Err(( span, "trait bounds other than `Sized` \ on const fn parameters are unstable" .into(), )); } } } } } _ => {} } } Ok(()) } fn check_rvalue( tcx: TyCtxt<'a, 'tcx, 'tcx>, mir: &'a Mir<'tcx>, rvalue: &Rvalue<'tcx>, span: Span, ) -> McfResult { match rvalue { Rvalue::Repeat(operand, _) | Rvalue::Use(operand) => { check_operand(tcx, mir, operand, span) } Rvalue::Len(place) | Rvalue::Discriminant(place) | Rvalue::Ref(_, _, place) => { check_place(tcx, mir, place, span, PlaceMode::Read) } Rvalue::Cast(CastKind::Misc, operand, cast_ty) => { use rustc::ty::cast::CastTy; let cast_in = CastTy::from_ty(operand.ty(mir, tcx)).expect("bad input type for cast"); let cast_out = CastTy::from_ty(cast_ty).expect("bad output type for cast"); match (cast_in, cast_out) { (CastTy::Ptr(_), CastTy::Int(_)) | (CastTy::FnPtr, CastTy::Int(_)) => Err(( span, "casting pointers to ints is unstable in const fn".into(), )), (CastTy::RPtr(_), CastTy::Float) => bug!(), (CastTy::RPtr(_), CastTy::Int(_)) => bug!(), (CastTy::Ptr(_), CastTy::RPtr(_)) => bug!(), _ => check_operand(tcx, mir, operand, span), } } Rvalue::Cast(CastKind::UnsafeFnPointer, _, _) | Rvalue::Cast(CastKind::ClosureFnPointer, _, _) | Rvalue::Cast(CastKind::ReifyFnPointer, _, _) => Err(( span, "function pointer casts are not allowed in const fn".into(), )), Rvalue::Cast(CastKind::Unsize, _, _) => Err(( span, "unsizing casts are not allowed in const fn".into(), )), // binops are fine on integers Rvalue::BinaryOp(_, lhs, rhs) | Rvalue::CheckedBinaryOp(_, lhs, rhs) => { check_operand(tcx, mir, lhs, span)?; check_operand(tcx, mir, rhs, span)?; let ty = lhs.ty(mir, tcx); if ty.is_integral() || ty.is_bool() || ty.is_char() { Ok(()) } else { Err(( span, "only int, `bool` and `char` operations are stable in const fn".into(), )) } } Rvalue::NullaryOp(NullOp::SizeOf, _) => Ok(()), Rvalue::NullaryOp(NullOp::Box, _) => Err(( span, "heap allocations are not allowed in const fn".into(), )), Rvalue::UnaryOp(_, operand) => { let ty = operand.ty(mir, tcx); if ty.is_integral() || ty.is_bool() { check_operand(tcx, mir, operand, span) } else { Err(( span, "only int and `bool` operations are stable in const fn".into(), )) } } Rvalue::Aggregate(_, operands) => { for operand in operands { check_operand(tcx, mir, operand, span)?; } Ok(()) } } } enum PlaceMode { Assign, Read, } fn check_statement( tcx: TyCtxt<'a, 'tcx, 'tcx>, mir: &'a Mir<'tcx>, statement: &Statement<'tcx>, ) -> McfResult { let span = statement.source_info.span; match &statement.kind { StatementKind::Assign(place, rval) => { check_place(tcx, mir, place, span, PlaceMode::Assign)?; check_rvalue(tcx, mir, rval, span) } StatementKind::FakeRead(..) => Err((span, "match in const fn is unstable".into())), // just an assignment StatementKind::SetDiscriminant { .. } => Ok(()), | StatementKind::InlineAsm { .. } => { Err((span, "cannot use inline assembly in const fn".into())) } // These are all NOPs | StatementKind::StorageLive(_) | StatementKind::StorageDead(_) | StatementKind::Validate(..) | StatementKind::EndRegion(_) | StatementKind::AscribeUserType(..) | StatementKind::Nop => Ok(()), } } fn check_operand( tcx: TyCtxt<'a, 'tcx, 'tcx>, mir: &'a Mir<'tcx>, operand: &Operand<'tcx>, span: Span, ) -> McfResult { match operand { Operand::Move(place) | Operand::Copy(place) => { check_place(tcx, mir, place, span, PlaceMode::Read) } Operand::Constant(_) => Ok(()), } } fn check_place( tcx: TyCtxt<'a, 'tcx, 'tcx>, mir: &'a Mir<'tcx>, place: &Place<'tcx>, span: Span, mode: PlaceMode, ) -> McfResult { match place { Place::Local(l) => match mode { PlaceMode::Assign => match mir.local_kind(*l) { LocalKind::Temp | LocalKind::ReturnPointer => Ok(()), LocalKind::Arg | LocalKind::Var => { Err((span, "assignments in const fn are unstable".into())) } }, PlaceMode::Read => Ok(()), }, // promoteds are always fine, they are essentially constants Place::Promoted(_) => Ok(()), Place::Static(_) => Err((span, "cannot access `static` items in const fn".into())), Place::Projection(proj) => { match proj.elem { | ProjectionElem::Deref | ProjectionElem::Field(..) | ProjectionElem::Index(_) => { check_place(tcx, mir, &proj.base, span, mode) } // slice patterns are unstable | ProjectionElem::ConstantIndex { .. } | ProjectionElem::Subslice { .. } => { return Err((span, "slice patterns in const fn are unstable".into())) } | ProjectionElem::Downcast(..) => { Err((span, "`match` or `if let` in `const fn` is unstable".into())) } } } } } fn check_terminator( tcx: TyCtxt<'a, 'tcx, 'tcx>, mir: &'a Mir<'tcx>, terminator: &Terminator<'tcx>, ) -> McfResult { let span = terminator.source_info.span; match &terminator.kind { | TerminatorKind::Goto { .. } | TerminatorKind::Return | TerminatorKind::Resume => Ok(()), TerminatorKind::Drop { location, .. } => { check_place(tcx, mir, location, span, PlaceMode::Read) } TerminatorKind::DropAndReplace { location, value, .. } => { check_place(tcx, mir, location, span, PlaceMode::Read)?; check_operand(tcx, mir, value, span) }, TerminatorKind::FalseEdges { .. } | TerminatorKind::SwitchInt { .. } => Err(( span, "`if`, `match`, `&&` and `||` are not stable in const fn".into(), )), | TerminatorKind::Abort | TerminatorKind::Unreachable => { Err((span, "const fn with unreachable code is not stable".into())) } | TerminatorKind::GeneratorDrop | TerminatorKind::Yield { .. } => { Err((span, "const fn generators are unstable".into())) } TerminatorKind::Call { func, args, from_hir_call: _, destination: _, cleanup: _, } => { let fn_ty = func.ty(mir, tcx); if let ty::FnDef(def_id, _) = fn_ty.sty { if tcx.is_min_const_fn(def_id) { check_operand(tcx, mir, func, span)?; for arg in args { check_operand(tcx, mir, arg, span)?; } Ok(()) } else { Err(( span, "can only call other `min_const_fn` within a `min_const_fn`".into(), )) } } else { Err((span, "can only call other const fns within const fn".into())) } } TerminatorKind::Assert { cond, expected: _, msg: _, target: _, cleanup: _, } => check_operand(tcx, mir, cond, span), | TerminatorKind::FalseUnwind { .. } => span_bug!( terminator.source_info.span, "min_const_fn encountered `{:#?}`", terminator ), } }