2019-12-14 17:51:56 +00:00
|
|
|
//! Registering limits, recursion_limit, type_length_limit and const_eval_limit
|
2019-12-13 08:38:07 +00:00
|
|
|
//!
|
|
|
|
//! There are various parts of the compiler that must impose arbitrary limits
|
|
|
|
//! on how deeply they recurse to prevent stack overflow. Users can override
|
|
|
|
//! this via an attribute on the crate like `#![recursion_limit="22"]`. This pass
|
|
|
|
//! just peeks and looks for that attribute.
|
2014-12-02 17:57:38 +00:00
|
|
|
|
2020-03-29 14:41:09 +00:00
|
|
|
use crate::bug;
|
2020-04-27 17:56:11 +00:00
|
|
|
use rustc_ast as ast;
|
2020-05-16 04:44:28 +00:00
|
|
|
use rustc_data_structures::sync::OnceCell;
|
2020-05-26 18:48:08 +00:00
|
|
|
use rustc_session::{Limit, Session};
|
2020-01-01 18:30:57 +00:00
|
|
|
use rustc_span::symbol::{sym, Symbol};
|
2014-12-02 17:57:38 +00:00
|
|
|
|
2020-03-11 11:49:08 +00:00
|
|
|
use std::num::IntErrorKind;
|
2016-11-15 21:25:59 +00:00
|
|
|
|
|
|
|
pub fn update_limits(sess: &Session, krate: &ast::Crate) {
|
2019-12-13 04:18:21 +00:00
|
|
|
update_limit(sess, krate, &sess.recursion_limit, sym::recursion_limit, 128);
|
|
|
|
update_limit(sess, krate, &sess.type_length_limit, sym::type_length_limit, 1048576);
|
2019-12-14 17:51:56 +00:00
|
|
|
update_limit(sess, krate, &sess.const_eval_limit, sym::const_eval_limit, 1_000_000);
|
2016-11-15 21:25:59 +00:00
|
|
|
}
|
|
|
|
|
2019-12-13 04:18:21 +00:00
|
|
|
fn update_limit(
|
|
|
|
sess: &Session,
|
|
|
|
krate: &ast::Crate,
|
2020-05-26 18:48:08 +00:00
|
|
|
limit: &OnceCell<Limit>,
|
2019-12-13 04:18:21 +00:00
|
|
|
name: Symbol,
|
|
|
|
default: usize,
|
|
|
|
) {
|
2015-01-31 17:20:46 +00:00
|
|
|
for attr in &krate.attrs {
|
2020-07-30 01:27:50 +00:00
|
|
|
if !sess.check_name(attr, name) {
|
2014-12-02 17:57:38 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(s) = attr.value_str() {
|
2019-12-13 04:18:21 +00:00
|
|
|
match s.as_str().parse() {
|
|
|
|
Ok(n) => {
|
2020-05-26 18:48:08 +00:00
|
|
|
limit.set(Limit::new(n)).unwrap();
|
2019-12-13 04:18:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
Err(e) => {
|
2020-02-19 09:24:16 +00:00
|
|
|
let mut err =
|
|
|
|
sess.struct_span_err(attr.span, "`limit` must be a non-negative integer");
|
2019-12-13 04:18:21 +00:00
|
|
|
|
|
|
|
let value_span = attr
|
|
|
|
.meta()
|
|
|
|
.and_then(|meta| meta.name_value_literal().cloned())
|
|
|
|
.map(|lit| lit.span)
|
|
|
|
.unwrap_or(attr.span);
|
|
|
|
|
|
|
|
let error_str = match e.kind() {
|
2020-10-06 13:06:25 +00:00
|
|
|
IntErrorKind::PosOverflow => "`limit` is too large",
|
2020-10-06 21:42:33 +00:00
|
|
|
IntErrorKind::Empty => "`limit` must be a non-negative integer",
|
2020-10-06 18:05:25 +00:00
|
|
|
IntErrorKind::InvalidDigit(_) => "not a valid integer",
|
2020-10-06 13:06:25 +00:00
|
|
|
IntErrorKind::NegOverflow => bug!("`limit` should never underflow"),
|
2020-02-19 09:24:16 +00:00
|
|
|
IntErrorKind::Zero => bug!("zero is a valid `limit`"),
|
2019-12-13 04:18:21 +00:00
|
|
|
kind => bug!("unimplemented IntErrorKind variant: {:?}", kind),
|
|
|
|
};
|
|
|
|
|
|
|
|
err.span_label(value_span, error_str);
|
|
|
|
err.emit();
|
|
|
|
}
|
2014-12-02 17:57:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-26 18:48:08 +00:00
|
|
|
limit.set(Limit::new(default)).unwrap();
|
2014-12-02 17:57:38 +00:00
|
|
|
}
|