2020-01-09 10:18:47 +00:00
|
|
|
//! The compiler code necessary to support the cfg! extension, which expands to
|
|
|
|
//! a literal `true` or `false` based on whether the given cfg matches the
|
|
|
|
//! current compilation environment.
|
2019-02-04 12:49:54 +00:00
|
|
|
|
2020-04-27 17:56:11 +00:00
|
|
|
use rustc_ast as ast;
|
2020-02-29 17:37:32 +00:00
|
|
|
use rustc_ast::token;
|
|
|
|
use rustc_ast::tokenstream::TokenStream;
|
2020-01-11 12:15:20 +00:00
|
|
|
use rustc_attr as attr;
|
2022-01-27 09:44:25 +00:00
|
|
|
use rustc_errors::PResult;
|
2019-12-29 14:23:55 +00:00
|
|
|
use rustc_expand::base::{self, *};
|
2022-09-18 15:46:56 +00:00
|
|
|
use rustc_macros::Diagnostic;
|
2019-12-31 17:15:40 +00:00
|
|
|
use rustc_span::Span;
|
2013-08-01 13:03:03 +00:00
|
|
|
|
2019-06-11 10:20:33 +00:00
|
|
|
pub fn expand_cfg(
|
|
|
|
cx: &mut ExtCtxt<'_>,
|
|
|
|
sp: Span,
|
2019-08-31 17:08:06 +00:00
|
|
|
tts: TokenStream,
|
2019-06-11 10:20:33 +00:00
|
|
|
) -> Box<dyn base::MacResult + 'static> {
|
2019-09-14 20:17:11 +00:00
|
|
|
let sp = cx.with_def_site_ctxt(sp);
|
2018-12-04 19:10:32 +00:00
|
|
|
|
|
|
|
match parse_cfg(cx, sp, tts) {
|
|
|
|
Ok(cfg) => {
|
2022-02-27 21:26:24 +00:00
|
|
|
let matches_cfg = attr::cfg_matches(
|
|
|
|
&cfg,
|
|
|
|
&cx.sess.parse_sess,
|
|
|
|
cx.current_expansion.lint_node_id,
|
|
|
|
cx.ecfg.features,
|
|
|
|
);
|
2018-12-04 19:10:32 +00:00
|
|
|
MacEager::expr(cx.expr_bool(sp, matches_cfg))
|
|
|
|
}
|
|
|
|
Err(mut err) => {
|
|
|
|
err.emit();
|
2019-08-13 17:51:54 +00:00
|
|
|
DummyResult::any(sp)
|
2018-12-04 19:10:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(builtin_macros_requires_cfg_pattern)]
|
2022-06-21 19:10:31 +00:00
|
|
|
struct RequiresCfgPattern {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
span: Span,
|
|
|
|
}
|
|
|
|
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(builtin_macros_expected_one_cfg_pattern)]
|
2022-06-21 19:20:00 +00:00
|
|
|
struct OneCfgPattern {
|
|
|
|
#[primary_span]
|
|
|
|
span: Span,
|
|
|
|
}
|
|
|
|
|
2022-06-21 19:10:31 +00:00
|
|
|
fn parse_cfg<'a>(cx: &mut ExtCtxt<'a>, span: Span, tts: TokenStream) -> PResult<'a, ast::MetaItem> {
|
2014-07-03 09:42:24 +00:00
|
|
|
let mut p = cx.new_parser_from_tts(tts);
|
2018-12-04 19:10:32 +00:00
|
|
|
|
|
|
|
if p.token == token::Eof {
|
2022-06-21 19:10:31 +00:00
|
|
|
return Err(cx.create_err(RequiresCfgPattern { span }));
|
2018-12-04 19:10:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let cfg = p.parse_meta_item()?;
|
2013-08-01 13:03:03 +00:00
|
|
|
|
2018-02-07 14:32:26 +00:00
|
|
|
let _ = p.eat(&token::Comma);
|
|
|
|
|
2015-12-30 23:11:53 +00:00
|
|
|
if !p.eat(&token::Eof) {
|
2022-06-21 19:20:00 +00:00
|
|
|
return Err(cx.create_err(OneCfgPattern { span }));
|
2014-09-25 03:22:57 +00:00
|
|
|
}
|
|
|
|
|
2018-12-04 19:10:32 +00:00
|
|
|
Ok(cfg)
|
2013-08-01 13:03:03 +00:00
|
|
|
}
|