//! Defines `Body`: a lowered representation of bodies of functions, statics and //! consts. mod lower; #[cfg(test)] mod tests; pub mod scope; mod pretty; use std::{ops::Index, sync::Arc}; use base_db::CrateId; use cfg::{CfgExpr, CfgOptions}; use drop_bomb::DropBomb; use either::Either; use hir_expand::{hygiene::Hygiene, ExpandError, ExpandResult, HirFileId, InFile, MacroCallId}; use la_arena::{Arena, ArenaMap}; use limit::Limit; use profile::Count; use rustc_hash::FxHashMap; use syntax::{ast, AstPtr, SyntaxNodePtr}; use crate::{ attr::{Attrs, RawAttrs}, db::DefDatabase, expr::{dummy_expr_id, Expr, ExprId, Label, LabelId, Pat, PatId}, item_scope::BuiltinShadowMode, macro_id_to_def_id, nameres::DefMap, path::{ModPath, Path}, src::{HasChildSource, HasSource}, AsMacroCall, BlockId, DefWithBodyId, HasModule, LocalModuleId, Lookup, MacroId, ModuleId, UnresolvedMacro, }; pub use lower::LowerCtx; /// A subset of Expander that only deals with cfg attributes. We only need it to /// avoid cyclic queries in crate def map during enum processing. #[derive(Debug)] pub(crate) struct CfgExpander { cfg_options: CfgOptions, hygiene: Hygiene, krate: CrateId, } #[derive(Debug)] pub struct Expander { cfg_expander: CfgExpander, def_map: Arc, current_file_id: HirFileId, module: LocalModuleId, recursion_limit: usize, } impl CfgExpander { pub(crate) fn new( db: &dyn DefDatabase, current_file_id: HirFileId, krate: CrateId, ) -> CfgExpander { let hygiene = Hygiene::new(db.upcast(), current_file_id); let cfg_options = db.crate_graph()[krate].cfg_options.clone(); CfgExpander { cfg_options, hygiene, krate } } pub(crate) fn parse_attrs(&self, db: &dyn DefDatabase, owner: &dyn ast::HasAttrs) -> Attrs { RawAttrs::new(db, owner, &self.hygiene).filter(db, self.krate) } pub(crate) fn is_cfg_enabled(&self, db: &dyn DefDatabase, owner: &dyn ast::HasAttrs) -> bool { let attrs = self.parse_attrs(db, owner); attrs.is_cfg_enabled(&self.cfg_options) } } impl Expander { pub fn new(db: &dyn DefDatabase, current_file_id: HirFileId, module: ModuleId) -> Expander { let cfg_expander = CfgExpander::new(db, current_file_id, module.krate); let def_map = module.def_map(db); Expander { cfg_expander, def_map, current_file_id, module: module.local_id, recursion_limit: 0, } } pub fn enter_expand( &mut self, db: &dyn DefDatabase, macro_call: ast::MacroCall, ) -> Result>, UnresolvedMacro> { if self.recursion_limit(db).check(self.recursion_limit + 1).is_err() { cov_mark::hit!(your_stack_belongs_to_me); return Ok(ExpandResult::only_err(ExpandError::Other( "reached recursion limit during macro expansion".into(), ))); } let macro_call = InFile::new(self.current_file_id, ¯o_call); let resolver = |path| self.resolve_path_as_macro(db, &path).map(|it| macro_id_to_def_id(db, it)); let mut err = None; let call_id = macro_call.as_call_id_with_errors(db, self.def_map.krate(), resolver, &mut |e| { err.get_or_insert(e); })?; let call_id = match call_id { Ok(it) => it, Err(_) => { return Ok(ExpandResult { value: None, err }); } }; Ok(self.enter_expand_inner(db, call_id, err)) } pub fn enter_expand_id( &mut self, db: &dyn DefDatabase, call_id: MacroCallId, ) -> ExpandResult> { self.enter_expand_inner(db, call_id, None) } fn enter_expand_inner( &mut self, db: &dyn DefDatabase, call_id: MacroCallId, mut err: Option, ) -> ExpandResult> { if err.is_none() { err = db.macro_expand_error(call_id); } let file_id = call_id.as_file(); let raw_node = match db.parse_or_expand(file_id) { Some(it) => it, None => { // Only `None` if the macro expansion produced no usable AST. if err.is_none() { tracing::warn!("no error despite `parse_or_expand` failing"); } return ExpandResult::only_err(err.unwrap_or_else(|| { ExpandError::Other("failed to parse macro invocation".into()) })); } }; let node = match T::cast(raw_node) { Some(it) => it, None => { // This can happen without being an error, so only forward previous errors. return ExpandResult { value: None, err }; } }; tracing::debug!("macro expansion {:#?}", node.syntax()); self.recursion_limit += 1; let mark = Mark { file_id: self.current_file_id, bomb: DropBomb::new("expansion mark dropped") }; self.cfg_expander.hygiene = Hygiene::new(db.upcast(), file_id); self.current_file_id = file_id; ExpandResult { value: Some((mark, node)), err } } pub fn exit(&mut self, db: &dyn DefDatabase, mut mark: Mark) { self.cfg_expander.hygiene = Hygiene::new(db.upcast(), mark.file_id); self.current_file_id = mark.file_id; self.recursion_limit -= 1; mark.bomb.defuse(); } pub(crate) fn to_source(&self, value: T) -> InFile { InFile { file_id: self.current_file_id, value } } pub(crate) fn parse_attrs(&self, db: &dyn DefDatabase, owner: &dyn ast::HasAttrs) -> Attrs { self.cfg_expander.parse_attrs(db, owner) } pub(crate) fn cfg_options(&self) -> &CfgOptions { &self.cfg_expander.cfg_options } pub fn current_file_id(&self) -> HirFileId { self.current_file_id } fn parse_path(&mut self, db: &dyn DefDatabase, path: ast::Path) -> Option { let ctx = LowerCtx::with_hygiene(db, &self.cfg_expander.hygiene); Path::from_src(path, &ctx) } fn resolve_path_as_macro(&self, db: &dyn DefDatabase, path: &ModPath) -> Option { self.def_map.resolve_path(db, self.module, path, BuiltinShadowMode::Other).0.take_macros() } fn recursion_limit(&self, db: &dyn DefDatabase) -> Limit { let limit = db.crate_limits(self.cfg_expander.krate).recursion_limit as _; #[cfg(not(test))] return Limit::new(limit); // Without this, `body::tests::your_stack_belongs_to_me` stack-overflows in debug #[cfg(test)] return Limit::new(std::cmp::min(32, limit)); } } #[derive(Debug)] pub struct Mark { file_id: HirFileId, bomb: DropBomb, } /// The body of an item (function, const etc.). #[derive(Debug, Eq, PartialEq)] pub struct Body { pub exprs: Arena, pub pats: Arena, pub or_pats: FxHashMap>, pub labels: Arena