Skip to content

Commit e871775

Browse files
committed
Auto merge of #17419 - ishanjain28:filter_builtin_macro_expansion, r=Veykril
Filter builtin macro expansion This PR adds a filter on the types of built in macros that are allowed to be expanded. Currently, This list of allowed macros contains, `stringify, cfg, core_panic, std_panic, concat, concat_bytes, include, include_str, include_bytes, env` and `option_env`. Fixes #14177
2 parents a17efb9 + e5d5c7b commit e871775

File tree

2 files changed

+75
-5
lines changed

2 files changed

+75
-5
lines changed

src/tools/rust-analyzer/crates/hir/src/semantics.rs

+48-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,12 @@ use hir_def::{
1919
AsMacroCall, DefWithBodyId, FunctionId, MacroId, TraitId, VariantId,
2020
};
2121
use hir_expand::{
22-
attrs::collect_attrs, db::ExpandDatabase, files::InRealFile, name::AsName, InMacroFile,
23-
MacroCallId, MacroFileId, MacroFileIdExt,
22+
attrs::collect_attrs,
23+
builtin_fn_macro::{BuiltinFnLikeExpander, EagerExpander},
24+
db::ExpandDatabase,
25+
files::InRealFile,
26+
name::AsName,
27+
InMacroFile, MacroCallId, MacroFileId, MacroFileIdExt,
2428
};
2529
use itertools::Itertools;
2630
use rustc_hash::{FxHashMap, FxHashSet};
@@ -324,6 +328,48 @@ impl<'db> SemanticsImpl<'db> {
324328
Some(node)
325329
}
326330

331+
/// Expands the macro if it isn't one of the built-in ones that expand to custom syntax or dummy
332+
/// expansions.
333+
pub fn expand_allowed_builtins(&self, macro_call: &ast::MacroCall) -> Option<SyntaxNode> {
334+
let sa = self.analyze_no_infer(macro_call.syntax())?;
335+
336+
let macro_call = InFile::new(sa.file_id, macro_call);
337+
let file_id = if let Some(call) =
338+
<ast::MacroCall as crate::semantics::ToDef>::to_def(self, macro_call)
339+
{
340+
call.as_macro_file()
341+
} else {
342+
sa.expand(self.db, macro_call)?
343+
};
344+
let macro_call = self.db.lookup_intern_macro_call(file_id.macro_call_id);
345+
346+
let skip = matches!(
347+
macro_call.def.kind,
348+
hir_expand::MacroDefKind::BuiltIn(
349+
_,
350+
BuiltinFnLikeExpander::Column
351+
| BuiltinFnLikeExpander::File
352+
| BuiltinFnLikeExpander::ModulePath
353+
| BuiltinFnLikeExpander::Asm
354+
| BuiltinFnLikeExpander::LlvmAsm
355+
| BuiltinFnLikeExpander::GlobalAsm
356+
| BuiltinFnLikeExpander::LogSyntax
357+
| BuiltinFnLikeExpander::TraceMacros
358+
| BuiltinFnLikeExpander::FormatArgs
359+
| BuiltinFnLikeExpander::FormatArgsNl
360+
| BuiltinFnLikeExpander::ConstFormatArgs,
361+
) | hir_expand::MacroDefKind::BuiltInEager(_, EagerExpander::CompileError)
362+
);
363+
if skip {
364+
// these macros expand to custom builtin syntax and/or dummy things, no point in
365+
// showing these to the user
366+
return None;
367+
}
368+
369+
let node = self.parse_or_expand(file_id.into());
370+
Some(node)
371+
}
372+
327373
/// If `item` has an attribute macro attached to it, expands it.
328374
pub fn expand_attr_macro(&self, item: &ast::Item) -> Option<SyntaxNode> {
329375
let src = self.wrap_node_infile(item.clone());

src/tools/rust-analyzer/crates/ide/src/expand_macro.rs

+27-3
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,10 @@ fn expand_macro_recur(
111111
macro_call: &ast::Item,
112112
) -> Option<SyntaxNode> {
113113
let expanded = match macro_call {
114-
item @ ast::Item::MacroCall(macro_call) => {
115-
sema.expand_attr_macro(item).or_else(|| sema.expand(macro_call))?.clone_for_update()
116-
}
114+
item @ ast::Item::MacroCall(macro_call) => sema
115+
.expand_attr_macro(item)
116+
.or_else(|| sema.expand_allowed_builtins(macro_call))?
117+
.clone_for_update(),
117118
item => sema.expand_attr_macro(item)?.clone_for_update(),
118119
};
119120
expand(sema, expanded)
@@ -228,6 +229,29 @@ mod tests {
228229
expect.assert_eq(&actual);
229230
}
230231

232+
#[test]
233+
fn expand_allowed_builtin_macro() {
234+
check(
235+
r#"
236+
//- minicore: concat
237+
$0concat!("test", 10, 'b', true);"#,
238+
expect![[r#"
239+
concat!
240+
"test10btrue""#]],
241+
);
242+
}
243+
244+
#[test]
245+
fn do_not_expand_disallowed_macro() {
246+
let (analysis, pos) = fixture::position(
247+
r#"
248+
//- minicore: asm
249+
$0asm!("0x300, x0");"#,
250+
);
251+
let expansion = analysis.expand_macro(pos).unwrap();
252+
assert!(expansion.is_none());
253+
}
254+
231255
#[test]
232256
fn macro_expand_as_keyword() {
233257
check(

0 commit comments

Comments
 (0)