rust/crates/hir_def/src/body.rs

361 lines
11 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;
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-12 09:22:05 -05:00
use arena::{map::ArenaMap, Arena};
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-02-16 22:57:24 -06:00
use hir_expand::{ast_id_map::AstIdMap, hygiene::Hygiene, AstId, HirFileId, InFile, MacroDefId};
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};
use test_utils::mark;
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::{
2020-04-11 10:00:31 -05:00
attr::Attrs,
2019-11-23 05:44:43 -06:00
db::DefDatabase,
2019-11-12 09:46:57 -06:00
expr::{Expr, ExprId, Pat, PatId},
2019-12-20 08:43:45 -06:00
item_scope::BuiltinShadowMode,
item_scope::ItemScope,
2019-12-20 08:43:45 -06:00
nameres::CrateDefMap,
2019-12-18 10:41:33 -06:00
path::{ModPath, Path},
src::HasSource,
2020-02-16 22:57:24 -06:00
AsMacroCall, DefWithBodyId, HasModule, Lookup, ModuleId,
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,
}
2019-11-12 09:46:57 -06:00
2019-12-23 07:47:11 -06:00
pub(crate) struct Expander {
cfg_expander: CfgExpander,
2019-11-12 09:46:57 -06:00
crate_def_map: Arc<CrateDefMap>,
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>,
2019-11-12 09:46:57 -06:00
module: ModuleId,
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 }
}
pub(crate) fn parse_attrs(&self, owner: &dyn ast::AttrsOwner) -> Attrs {
Attrs::new(owner, &self.hygiene)
}
pub(crate) fn is_cfg_enabled(&self, owner: &dyn ast::AttrsOwner) -> bool {
let attrs = self.parse_attrs(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);
2019-11-14 00:37:33 -06:00
let crate_def_map = db.crate_def_map(module.krate);
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,
2020-04-11 10:09:50 -05:00
crate_def_map,
current_file_id,
ast_id_map,
module,
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,
2020-03-14 01:25:30 -05:00
local_scope: Option<&ItemScope>,
2019-11-14 01:04:39 -06:00
macro_call: ast::MacroCall,
2019-12-20 13:37:03 -06:00
) -> Option<(Mark, T)> {
self.recursion_limit += 1;
2020-07-11 13:01:56 -05:00
if self.recursion_limit > EXPANSION_RECURSION_LIMIT {
mark::hit!(your_stack_belongs_to_me);
return None;
}
2020-02-16 22:57:24 -06:00
let macro_call = InFile::new(self.current_file_id, &macro_call);
2020-06-11 05:08:24 -05:00
if let Some(call_id) = macro_call.as_call_id(db, self.crate_def_map.krate, |path| {
2020-03-14 01:25:30 -05:00
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)
}) {
2020-02-16 22:57:24 -06:00
let file_id = call_id.as_file();
if let Some(node) = db.parse_or_expand(file_id) {
if let Some(expr) = T::cast(node) {
log::debug!("macro expansion {:#?}", expr.syntax());
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);
2020-02-16 22:57:24 -06:00
self.current_file_id = file_id;
self.ast_id_map = db.ast_id_map(file_id);
return Some((mark, expr));
2019-11-14 01:04:39 -06:00
}
}
}
// FIXME: Instead of just dropping the error from expansion
// report it
None
}
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 is_cfg_enabled(&self, owner: &dyn ast::AttrsOwner) -> bool {
self.cfg_expander.is_cfg_enabled(owner)
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> {
2019-11-30 09:29:21 -06:00
self.crate_def_map
2019-12-18 10:41:33 -06:00
.resolve_path(db, self.module.local_id, path, BuiltinShadowMode::Other)
2019-11-30 09:29:21 -06:00
.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>,
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,
pub item_scope: ItemScope,
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
/// 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>>,
pat_map: FxHashMap<PatSource, PatId>,
2020-03-06 08:17:48 -06:00
pat_map_back: ArenaMap<PatId, Result<PatSource, SyntheticSyntax>>,
2020-07-30 09:21:30 -05:00
field_map: FxHashMap<(ExprId, usize), InFile<AstPtr<ast::RecordExprField>>>,
2019-12-23 07:47:11 -06:00
expansions: FxHashMap<InFile<AstPtr<ast::MacroCall>>, HirFileId>,
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);
2019-12-20 04:19:09 -06:00
let (body, source_map) = Body::new(db, def, 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-12-20 04:19:09 -06:00
def: DefWithBodyId,
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) {
2019-12-20 04:19:09 -06:00
lower::lower(db, def, 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]
}
}
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-07-30 09:21:30 -05:00
pub fn field_syntax(&self, expr: ExprId, field: usize) -> InFile<AstPtr<ast::RecordExprField>> {
2020-04-10 17:27:00 -05:00
self.field_map[&(expr, field)].clone()
2019-11-12 09:46:57 -06:00
}
}
#[cfg(test)]
mod tests {
2020-08-13 09:25:38 -05:00
use base_db::{fixture::WithFixture, SourceDatabase};
use test_utils::mark;
use crate::ModuleDefId;
use super::*;
fn lower(ra_fixture: &str) -> Arc<Body> {
let (db, file_id) = crate::test_db::TestDB::with_single_file(ra_fixture);
let krate = db.crate_graph().iter().next().unwrap();
let def_map = db.crate_def_map(krate);
let module = def_map.modules_for_file(file_id).next().unwrap();
let module = &def_map[module];
let fn_def = match module.scope.declarations().next().unwrap() {
ModuleDefId::FunctionId(it) => it,
_ => panic!(),
};
db.body(fn_def.into())
}
#[test]
fn your_stack_belongs_to_me() {
mark::check!(your_stack_belongs_to_me);
lower(
2020-07-11 13:01:56 -05:00
"
macro_rules! n_nuple {
($e:tt) => ();
($($rest:tt)*) => {{
(n_nuple!($($rest)*)None,)
}};
}
fn main() { n_nuple!(1,2,3); }
",
);
}
}