rust/crates/hir_def/src/body.rs

401 lines
13 KiB
Rust
Raw Normal View History

2019-11-24 11:39:48 -06:00
//! Defines `Body`: a lowered representation of bodies of functions, statics and
//! consts.
2019-11-12 06:09:25 -06:00
mod lower;
2020-10-23 12:27:04 -05:00
mod diagnostics;
#[cfg(test)]
mod tests;
2019-11-14 02:56:13 -06:00
pub mod scope;
2019-11-12 09:46:57 -06:00
2019-12-20 04:19:09 -06:00
use std::{mem, ops::Index, sync::Arc};
2019-11-12 09:46:57 -06:00
2020-08-13 09:25:38 -05:00
use base_db::CrateId;
2020-08-13 03:32:19 -05:00
use cfg::CfgOptions;
2019-12-20 04:19:09 -06:00
use drop_bomb::DropBomb;
use either::Either;
2020-10-23 12:27:04 -05:00
use hir_expand::{
ast_id_map::AstIdMap, diagnostics::DiagnosticSink, hygiene::Hygiene, AstId, ExpandResult,
HirFileId, InFile, MacroDefId,
2020-10-23 12:27:04 -05:00
};
use la_arena::{Arena, ArenaMap};
2021-01-27 03:16:24 -06:00
use profile::Count;
2019-11-12 09:46:57 -06:00
use rustc_hash::FxHashMap;
2020-08-12 11:26:51 -05:00
use syntax::{ast, AstNode, AstPtr};
2019-11-12 09:46:57 -06:00
2020-04-30 05:20:13 -05:00
pub(crate) use lower::LowerCtx;
2019-11-12 09:46:57 -06:00
use crate::{
attr::{Attrs, RawAttrs},
2019-11-23 05:44:43 -06:00
db::DefDatabase,
2020-12-23 09:34:30 -06:00
expr::{Expr, ExprId, Label, LabelId, Pat, PatId},
2019-12-20 08:43:45 -06:00
item_scope::BuiltinShadowMode,
2021-01-18 13:18:05 -06:00
nameres::DefMap,
2019-12-18 10:41:33 -06:00
path::{ModPath, Path},
src::HasSource,
2021-03-05 07:08:23 -06:00
AsMacroCall, BlockId, DefWithBodyId, HasModule, LocalModuleId, Lookup, ModuleId,
UnresolvedMacro,
2019-11-12 09:46:57 -06:00
};
/// 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,
}
2019-11-12 09:46:57 -06:00
2019-12-23 07:47:11 -06:00
pub(crate) struct Expander {
cfg_expander: CfgExpander,
2021-02-01 06:19:55 -06:00
def_map: Arc<DefMap>,
2019-11-14 00:37:33 -06:00
current_file_id: HirFileId,
2019-12-20 04:19:09 -06:00
ast_id_map: Arc<AstIdMap>,
module: LocalModuleId,
recursion_limit: usize,
2019-11-12 09:46:57 -06:00
}
2020-07-11 13:01:56 -05:00
#[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)
}
}
2019-11-14 00:38:25 -06:00
impl Expander {
2019-12-23 07:47:11 -06:00
pub(crate) fn new(
db: &dyn DefDatabase,
2019-12-23 07:47:11 -06:00
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);
2019-12-20 04:19:09 -06:00
let ast_id_map = db.ast_id_map(current_file_id);
2020-04-11 10:09:50 -05:00
Expander {
cfg_expander,
def_map,
2020-04-11 10:09:50 -05:00
current_file_id,
ast_id_map,
module: module.local_id,
recursion_limit: 0,
2020-04-11 10:09:50 -05:00
}
2019-11-14 00:52:03 -06:00
}
pub(crate) fn enter_expand<T: ast::AstNode>(
2019-11-14 01:04:39 -06:00
&mut self,
db: &dyn DefDatabase,
2019-11-14 01:04:39 -06:00
macro_call: ast::MacroCall,
) -> Result<ExpandResult<Option<(Mark, T)>>, UnresolvedMacro> {
if self.recursion_limit + 1 > EXPANSION_RECURSION_LIMIT {
2021-03-08 14:19:44 -06:00
cov_mark::hit!(your_stack_belongs_to_me);
return Ok(ExpandResult::str_err(
"reached recursion limit during macro expansion".into(),
));
}
2020-02-16 22:57:24 -06:00
let macro_call = InFile::new(self.current_file_id, &macro_call);
2021-02-01 06:19:55 -06:00
let resolver =
|path: ModPath| -> Option<MacroDefId> { self.resolve_path_as_macro(db, &path) };
2020-10-17 16:35:21 -05:00
2020-12-02 09:52:14 -06:00
let mut err = None;
let call_id =
2021-02-01 06:19:55 -06:00
macro_call.as_call_id_with_errors(db, self.def_map.krate(), resolver, &mut |e| {
2020-12-02 09:52:14 -06:00
err.get_or_insert(e);
})?;
2020-12-02 09:52:14 -06:00
let call_id = match call_id {
Ok(it) => it,
Err(_) => {
return Ok(ExpandResult { value: None, err });
}
};
2020-12-02 09:52:14 -06:00
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");
2019-11-14 01:04:39 -06:00
}
return Ok(ExpandResult::only_err(err.unwrap_or_else(|| {
mbe::ExpandError::Other("failed to parse macro invocation".into())
})));
2019-11-14 01:04:39 -06:00
}
};
let node = match T::cast(raw_node) {
Some(it) => it,
None => {
// This can happen without being an error, so only forward previous errors.
return Ok(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);
2019-11-14 01:04:39 -06:00
Ok(ExpandResult { value: Some((mark, node)), err })
2019-11-14 01:04:39 -06:00
}
pub(crate) fn exit(&mut self, db: &dyn DefDatabase, mut mark: Mark) {
self.cfg_expander.hygiene = Hygiene::new(db.upcast(), mark.file_id);
2019-11-14 00:52:03 -06:00
self.current_file_id = mark.file_id;
2019-12-20 04:19:09 -06:00
self.ast_id_map = mem::take(&mut mark.ast_id_map);
self.recursion_limit -= 1;
2019-12-20 04:19:09 -06:00
mark.bomb.defuse();
2019-11-14 00:41:46 -06:00
}
2019-12-23 07:47:11 -06:00
pub(crate) fn to_source<T>(&self, value: T) -> InFile<T> {
2019-11-28 03:50:26 -06:00
InFile { file_id: self.current_file_id, value }
2019-11-14 00:43:59 -06:00
}
pub(crate) fn parse_attrs(&self, db: &dyn DefDatabase, owner: &dyn ast::AttrsOwner) -> Attrs {
self.cfg_expander.parse_attrs(db, owner)
2020-10-23 12:27:04 -05:00
}
pub(crate) fn cfg_options(&self) -> &CfgOptions {
&self.cfg_expander.cfg_options
2020-04-11 10:09:50 -05:00
}
2019-11-14 00:58:39 -06:00
fn parse_path(&mut self, path: ast::Path) -> Option<Path> {
Path::from_src(path, &self.cfg_expander.hygiene)
2019-11-14 00:58:39 -06:00
}
fn resolve_path_as_macro(&self, db: &dyn DefDatabase, path: &ModPath) -> Option<MacroDefId> {
self.def_map.resolve_path(db, self.module, path, BuiltinShadowMode::Other).0.take_macros()
2019-11-12 09:46:57 -06:00
}
2019-12-20 04:19:09 -06:00
fn ast_id<N: AstNode>(&self, item: &N) -> AstId<N> {
let file_local_id = self.ast_id_map.ast_id(item);
AstId::new(self.current_file_id, file_local_id)
}
2019-11-12 09:46:57 -06:00
}
2019-12-23 07:47:11 -06:00
pub(crate) struct Mark {
2019-11-14 00:52:03 -06:00
file_id: HirFileId,
2019-12-20 04:19:09 -06:00
ast_id_map: Arc<AstIdMap>,
bomb: DropBomb,
2019-11-14 00:52:03 -06:00
}
2019-11-12 09:46:57 -06:00
/// The body of an item (function, const etc.).
#[derive(Debug, Eq, PartialEq)]
pub struct Body {
2020-03-19 10:00:11 -05:00
pub exprs: Arena<Expr>,
pub pats: Arena<Pat>,
2020-12-23 09:34:30 -06:00
pub labels: Arena<Label>,
2019-11-12 09:46:57 -06:00
/// The patterns for the function's parameters. While the parameter types are
/// part of the function signature, the patterns are not (they don't change
/// the external type of the function).
///
/// If this `Body` is for the body of a constant, this will just be
/// empty.
2019-11-24 09:48:29 -06:00
pub params: Vec<PatId>,
2019-11-12 09:46:57 -06:00
/// The `ExprId` of the actual body expression.
2019-11-24 09:48:29 -06:00
pub body_expr: ExprId,
2021-03-05 07:08:23 -06:00
/// Block expressions in this body that may contain inner items.
pub block_scopes: Vec<BlockId>,
2021-01-27 03:16:24 -06:00
_c: Count<Self>,
2019-11-12 09:46:57 -06:00
}
2020-04-11 12:25:33 -05:00
pub type ExprPtr = AstPtr<ast::Expr>;
2019-11-28 03:50:26 -06:00
pub type ExprSource = InFile<ExprPtr>;
2019-11-12 09:46:57 -06:00
pub type PatPtr = Either<AstPtr<ast::Pat>, AstPtr<ast::SelfParam>>;
2019-11-28 03:50:26 -06:00
pub type PatSource = InFile<PatPtr>;
2019-11-12 09:46:57 -06:00
2020-12-23 09:34:30 -06:00
pub type LabelPtr = AstPtr<ast::Label>;
pub type LabelSource = InFile<LabelPtr>;
2019-11-12 09:46:57 -06:00
/// An item body together with the mapping from syntax nodes to HIR expression
/// IDs. This is needed to go from e.g. a position in a file to the HIR
/// expression containing it; but for type inference etc., we want to operate on
/// a structure that is agnostic to the actual positions of expressions in the
/// file, so that we don't recompute types whenever some whitespace is typed.
///
/// One complication here is that, due to macro expansion, a single `Body` might
/// be spread across several files. So, for each ExprId and PatId, we record
/// both the HirFileId and the position inside the file. However, we only store
/// AST -> ExprId mapping for non-macro files, as it is not clear how to handle
/// this properly for macros.
#[derive(Default, Debug, Eq, PartialEq)]
pub struct BodySourceMap {
expr_map: FxHashMap<ExprSource, ExprId>,
2020-03-06 08:11:05 -06:00
expr_map_back: ArenaMap<ExprId, Result<ExprSource, SyntheticSyntax>>,
2021-03-15 07:38:50 -05:00
pat_map: FxHashMap<PatSource, PatId>,
2020-03-06 08:17:48 -06:00
pat_map_back: ArenaMap<PatId, Result<PatSource, SyntheticSyntax>>,
2021-03-15 07:38:50 -05:00
2020-12-23 09:34:30 -06:00
label_map: FxHashMap<LabelSource, LabelId>,
label_map_back: ArenaMap<LabelId, LabelSource>,
2021-03-15 07:38:50 -05:00
/// We don't create explicit nodes for record fields (`S { record_field: 92 }`).
/// Instead, we use id of expression (`92`) to identify the field.
field_map: FxHashMap<InFile<AstPtr<ast::RecordExprField>>, ExprId>,
field_map_back: FxHashMap<ExprId, InFile<AstPtr<ast::RecordExprField>>>,
2019-12-23 07:47:11 -06:00
expansions: FxHashMap<InFile<AstPtr<ast::MacroCall>>, HirFileId>,
2020-10-23 12:27:04 -05:00
/// Diagnostics accumulated during body lowering. These contain `AstPtr`s and so are stored in
/// the source map (since they're just as volatile).
diagnostics: Vec<diagnostics::BodyDiagnostic>,
2019-11-12 09:46:57 -06:00
}
2020-03-06 08:11:05 -06:00
#[derive(Default, Debug, Eq, PartialEq, Clone, Copy)]
2020-03-06 07:44:44 -06:00
pub struct SyntheticSyntax;
2019-11-12 09:46:57 -06:00
impl Body {
2019-11-14 08:37:22 -06:00
pub(crate) fn body_with_source_map_query(
db: &dyn DefDatabase,
2019-11-14 08:37:22 -06:00
def: DefWithBodyId,
) -> (Arc<Body>, Arc<BodySourceMap>) {
2020-08-12 09:32:36 -05:00
let _p = profile::span("body_with_source_map_query");
2019-11-14 08:37:22 -06:00
let mut params = None;
let (file_id, module, body) = match def {
DefWithBodyId::FunctionId(f) => {
let f = f.lookup(db);
2019-11-14 08:37:22 -06:00
let src = f.source(db);
2019-11-20 00:40:36 -06:00
params = src.value.param_list();
(src.file_id, f.module(db), src.value.body().map(ast::Expr::from))
2019-11-14 08:37:22 -06:00
}
DefWithBodyId::ConstId(c) => {
let c = c.lookup(db);
2019-11-14 08:37:22 -06:00
let src = c.source(db);
2019-11-20 00:40:36 -06:00
(src.file_id, c.module(db), src.value.body())
2019-11-14 08:37:22 -06:00
}
DefWithBodyId::StaticId(s) => {
2019-11-24 06:13:56 -06:00
let s = s.lookup(db);
2019-11-14 08:37:22 -06:00
let src = s.source(db);
2019-11-20 00:40:36 -06:00
(src.file_id, s.module(db), src.value.body())
2019-11-14 08:37:22 -06:00
}
};
let expander = Expander::new(db, file_id, module);
2021-03-05 07:53:54 -06:00
let (body, source_map) = Body::new(db, expander, params, body);
2019-11-14 08:37:22 -06:00
(Arc::new(body), Arc::new(source_map))
}
pub(crate) fn body_query(db: &dyn DefDatabase, def: DefWithBodyId) -> Arc<Body> {
2019-11-14 08:37:22 -06:00
db.body_with_source_map(def).0
}
fn new(
db: &dyn DefDatabase,
2019-11-14 00:38:25 -06:00
expander: Expander,
2019-11-12 09:46:57 -06:00
params: Option<ast::ParamList>,
body: Option<ast::Expr>,
) -> (Body, BodySourceMap) {
2021-03-05 07:53:54 -06:00
lower::lower(db, expander, params, body)
2019-11-12 09:46:57 -06:00
}
}
impl Index<ExprId> for Body {
type Output = Expr;
fn index(&self, expr: ExprId) -> &Expr {
&self.exprs[expr]
}
}
impl Index<PatId> for Body {
type Output = Pat;
fn index(&self, pat: PatId) -> &Pat {
&self.pats[pat]
}
}
2020-12-23 09:34:30 -06:00
impl Index<LabelId> for Body {
type Output = Label;
fn index(&self, label: LabelId) -> &Label {
&self.labels[label]
}
}
2021-03-15 07:38:50 -05:00
// FIXME: Change `node_` prefix to something more reasonable.
// Perhaps `expr_syntax` and `expr_id`?
2019-11-12 09:46:57 -06:00
impl BodySourceMap {
2020-03-06 07:44:44 -06:00
pub fn expr_syntax(&self, expr: ExprId) -> Result<ExprSource, SyntheticSyntax> {
2020-04-10 17:27:00 -05:00
self.expr_map_back[expr].clone()
2019-11-12 09:46:57 -06:00
}
2019-11-28 03:50:26 -06:00
pub fn node_expr(&self, node: InFile<&ast::Expr>) -> Option<ExprId> {
2020-04-11 12:25:33 -05:00
let src = node.map(|it| AstPtr::new(it));
self.expr_map.get(&src).cloned()
2019-11-12 09:46:57 -06:00
}
2019-12-23 07:47:11 -06:00
pub fn node_macro_file(&self, node: InFile<&ast::MacroCall>) -> Option<HirFileId> {
let src = node.map(|it| AstPtr::new(it));
self.expansions.get(&src).cloned()
}
2020-03-06 07:44:44 -06:00
pub fn pat_syntax(&self, pat: PatId) -> Result<PatSource, SyntheticSyntax> {
2020-04-10 17:27:00 -05:00
self.pat_map_back[pat].clone()
2019-11-12 09:46:57 -06:00
}
2019-11-28 03:50:26 -06:00
pub fn node_pat(&self, node: InFile<&ast::Pat>) -> Option<PatId> {
let src = node.map(|it| Either::Left(AstPtr::new(it)));
self.pat_map.get(&src).cloned()
2019-11-12 09:46:57 -06:00
}
2020-07-10 07:08:35 -05:00
pub fn node_self_param(&self, node: InFile<&ast::SelfParam>) -> Option<PatId> {
let src = node.map(|it| Either::Right(AstPtr::new(it)));
self.pat_map.get(&src).cloned()
}
2020-12-23 09:34:30 -06:00
pub fn label_syntax(&self, label: LabelId) -> LabelSource {
self.label_map_back[label].clone()
}
pub fn node_label(&self, node: InFile<&ast::Label>) -> Option<LabelId> {
let src = node.map(|it| AstPtr::new(it));
self.label_map.get(&src).cloned()
}
2021-03-15 07:38:50 -05:00
pub fn field_syntax(&self, expr: ExprId) -> InFile<AstPtr<ast::RecordExprField>> {
self.field_map_back[&expr].clone()
}
pub fn node_field(&self, node: InFile<&ast::RecordExprField>) -> Option<ExprId> {
let src = node.map(|it| AstPtr::new(it));
self.field_map.get(&src).cloned()
2019-11-12 09:46:57 -06:00
}
2020-10-23 12:27:04 -05:00
pub(crate) fn add_diagnostics(&self, _db: &dyn DefDatabase, sink: &mut DiagnosticSink<'_>) {
for diag in &self.diagnostics {
diag.add_to(sink);
}
}
}