2014-12-02 12:57:38 -05:00
|
|
|
// Recursion limit.
|
|
|
|
|
//
|
|
|
|
|
// There are various parts of the compiler that must impose arbitrary limits
|
|
|
|
|
// on how deeply they recurse to prevent stack overflow. Users can override
|
2015-01-11 12:28:46 -08:00
|
|
|
// this via an attribute on the crate like `#![recursion_limit="22"]`. This pass
|
2014-12-02 12:57:38 -05:00
|
|
|
// just peeks and looks for that attribute.
|
|
|
|
|
|
2019-02-05 11:20:45 -06:00
|
|
|
use crate::session::Session;
|
2014-12-02 12:57:38 -05:00
|
|
|
use syntax::ast;
|
2019-12-22 17:42:04 -05:00
|
|
|
use syntax::symbol::{sym, Symbol};
|
2014-12-02 12:57:38 -05:00
|
|
|
|
2018-04-01 08:15:59 +02:00
|
|
|
use rustc_data_structures::sync::Once;
|
2016-11-15 23:25:59 +02:00
|
|
|
|
|
|
|
|
pub fn update_limits(sess: &Session, krate: &ast::Crate) {
|
2019-07-06 20:11:40 +03:00
|
|
|
update_limit(krate, &sess.recursion_limit, sym::recursion_limit, 128);
|
2019-05-08 13:21:18 +10:00
|
|
|
update_limit(krate, &sess.type_length_limit, sym::type_length_limit, 1048576);
|
2016-11-15 23:25:59 +02:00
|
|
|
}
|
|
|
|
|
|
2019-05-08 13:21:18 +10:00
|
|
|
fn update_limit(krate: &ast::Crate, limit: &Once<usize>, name: Symbol, default: usize) {
|
2015-01-31 12:20:46 -05:00
|
|
|
for attr in &krate.attrs {
|
2016-11-15 23:25:59 +02:00
|
|
|
if !attr.check_name(name) {
|
2014-12-02 12:57:38 -05:00
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let Some(s) = attr.value_str() {
|
2016-11-16 10:52:37 +00:00
|
|
|
if let Some(n) = s.as_str().parse().ok() {
|
2016-11-15 23:25:59 +02:00
|
|
|
limit.set(n);
|
2014-12-02 12:57:38 -05:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-01 08:15:59 +02:00
|
|
|
limit.set(default);
|
2014-12-02 12:57:38 -05:00
|
|
|
}
|