//! Defines `Body`: a lowered representation of bodies of functions, statics and //! consts. mod lower; mod diagnostics; #[cfg(test)] mod tests; pub mod scope; use std::{mem, ops::Index, sync::Arc}; use base_db::CrateId; use cfg::CfgOptions; use drop_bomb::DropBomb; use either::Either; use hir_expand::{ ast_id_map::AstIdMap, diagnostics::DiagnosticSink, hygiene::Hygiene, AstId, ExpandResult, HirFileId, InFile, MacroDefId, }; use la_arena::{map::ArenaMap, Arena}; use rustc_hash::FxHashMap; use syntax::{ast, AstNode, AstPtr}; use test_utils::mark; pub(crate) use lower::LowerCtx; use crate::{ attr::{Attrs, RawAttrs}, db::DefDatabase, expr::{Expr, ExprId, Label, LabelId, Pat, PatId}, item_scope::BuiltinShadowMode, item_scope::ItemScope, nameres::CrateDefMap, path::{ModPath, Path}, src::HasSource, AsMacroCall, DefWithBodyId, HasModule, Lookup, ModuleId, }; /// 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. pub(crate) struct CfgExpander { cfg_options: CfgOptions, hygiene: Hygiene, krate: CrateId, } pub(crate) struct Expander { cfg_expander: CfgExpander, crate_def_map: Arc, current_file_id: HirFileId, ast_id_map: Arc, module: ModuleId, recursion_limit: usize, } #[cfg(test)] const EXPANSION_RECURSION_LIMIT: usize = 32; #[cfg(not(test))] const EXPANSION_RECURSION_LIMIT: usize = 128; 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::AttrsOwner) -> Attrs { RawAttrs::new(owner, &self.hygiene).filter(db, self.krate) } pub(crate) fn is_cfg_enabled(&self, db: &dyn DefDatabase, owner: &dyn ast::AttrsOwner) -> bool { let attrs = self.parse_attrs(db, owner); attrs.is_cfg_enabled(&self.cfg_options) } } impl Expander { pub(crate) fn new( db: &dyn DefDatabase, current_file_id: HirFileId, module: ModuleId, ) -> Expander { let cfg_expander = CfgExpander::new(db, current_file_id, module.krate); let crate_def_map = db.crate_def_map(module.krate); let ast_id_map = db.ast_id_map(current_file_id); Expander { cfg_expander, crate_def_map, current_file_id, ast_id_map, module, recursion_limit: 0, } } pub(crate) fn enter_expand( &mut self, db: &dyn DefDatabase, local_scope: Option<&ItemScope>, macro_call: ast::MacroCall, ) -> ExpandResult> { if self.recursion_limit + 1 > EXPANSION_RECURSION_LIMIT { mark::hit!(your_stack_belongs_to_me); return ExpandResult::str_err("reached recursion limit during macro expansion".into()); } let macro_call = InFile::new(self.current_file_id, ¯o_call); let resolver = |path: ModPath| -> Option { if let Some(local_scope) = local_scope { if let Some(def) = path.as_ident().and_then(|n| local_scope.get_legacy_macro(n)) { return Some(def); } } self.resolve_path_as_macro(db, &path) }; let mut err = None; let call_id = macro_call.as_call_id_with_errors(db, self.crate_def_map.krate, resolver, &mut |e| { err.get_or_insert(e); }); let call_id = match call_id { Some(it) => it, None => { if err.is_none() { eprintln!("no error despite `as_call_id_with_errors` returning `None`"); } return ExpandResult { value: None, err }; } }; 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() { log::warn!("no error despite `parse_or_expand` failing"); } return ExpandResult::only_err(err.unwrap_or_else(|| { mbe::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 }; } }; log::debug!("macro expansion {:#?}", node.syntax()); self.recursion_limit += 1; let mark = Mark { file_id: self.current_file_id, ast_id_map: mem::take(&mut self.ast_id_map), bomb: DropBomb::new("expansion mark dropped"), }; self.cfg_expander.hygiene = Hygiene::new(db.upcast(), file_id); self.current_file_id = file_id; self.ast_id_map = db.ast_id_map(file_id); ExpandResult { value: Some((mark, node)), err } } pub(crate) 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.ast_id_map = mem::take(&mut mark.ast_id_map); 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::AttrsOwner) -> Attrs { self.cfg_expander.parse_attrs(db, owner) } pub(crate) fn cfg_options(&self) -> &CfgOptions { &self.cfg_expander.cfg_options } fn parse_path(&mut self, path: ast::Path) -> Option { Path::from_src(path, &self.cfg_expander.hygiene) } fn resolve_path_as_macro(&self, db: &dyn DefDatabase, path: &ModPath) -> Option { self.crate_def_map .resolve_path(db, self.module.local_id, path, BuiltinShadowMode::Other) .0 .take_macros() } fn ast_id(&self, item: &N) -> AstId { let file_local_id = self.ast_id_map.ast_id(item); AstId::new(self.current_file_id, file_local_id) } } pub(crate) struct Mark { file_id: HirFileId, ast_id_map: Arc, bomb: DropBomb, } /// The body of an item (function, const etc.). #[derive(Debug, Eq, PartialEq)] pub struct Body { pub exprs: Arena, pub pats: Arena, pub labels: Arena