mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 20:42:04 +00:00
Use block_def_map in body lowering
This commit is contained in:
parent
1a59f75cda
commit
9cc7d57429
6 changed files with 40 additions and 26 deletions
|
@ -46,7 +46,7 @@ pub(crate) struct CfgExpander {
|
||||||
|
|
||||||
pub(crate) struct Expander {
|
pub(crate) struct Expander {
|
||||||
cfg_expander: CfgExpander,
|
cfg_expander: CfgExpander,
|
||||||
crate_def_map: Arc<DefMap>,
|
def_map: Arc<DefMap>,
|
||||||
current_file_id: HirFileId,
|
current_file_id: HirFileId,
|
||||||
ast_id_map: Arc<AstIdMap>,
|
ast_id_map: Arc<AstIdMap>,
|
||||||
module: ModuleId,
|
module: ModuleId,
|
||||||
|
@ -91,7 +91,7 @@ impl Expander {
|
||||||
let ast_id_map = db.ast_id_map(current_file_id);
|
let ast_id_map = db.ast_id_map(current_file_id);
|
||||||
Expander {
|
Expander {
|
||||||
cfg_expander,
|
cfg_expander,
|
||||||
crate_def_map,
|
def_map: crate_def_map,
|
||||||
current_file_id,
|
current_file_id,
|
||||||
ast_id_map,
|
ast_id_map,
|
||||||
module,
|
module,
|
||||||
|
@ -102,7 +102,6 @@ impl Expander {
|
||||||
pub(crate) fn enter_expand<T: ast::AstNode>(
|
pub(crate) fn enter_expand<T: ast::AstNode>(
|
||||||
&mut self,
|
&mut self,
|
||||||
db: &dyn DefDatabase,
|
db: &dyn DefDatabase,
|
||||||
local_scope: Option<&ItemScope>,
|
|
||||||
macro_call: ast::MacroCall,
|
macro_call: ast::MacroCall,
|
||||||
) -> ExpandResult<Option<(Mark, T)>> {
|
) -> ExpandResult<Option<(Mark, T)>> {
|
||||||
if self.recursion_limit + 1 > EXPANSION_RECURSION_LIMIT {
|
if self.recursion_limit + 1 > EXPANSION_RECURSION_LIMIT {
|
||||||
|
@ -112,18 +111,12 @@ impl Expander {
|
||||||
|
|
||||||
let macro_call = InFile::new(self.current_file_id, ¯o_call);
|
let macro_call = InFile::new(self.current_file_id, ¯o_call);
|
||||||
|
|
||||||
let resolver = |path: ModPath| -> Option<MacroDefId> {
|
let resolver =
|
||||||
if let Some(local_scope) = local_scope {
|
|path: ModPath| -> Option<MacroDefId> { self.resolve_path_as_macro(db, &path) };
|
||||||
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 mut err = None;
|
||||||
let call_id =
|
let call_id =
|
||||||
macro_call.as_call_id_with_errors(db, self.crate_def_map.krate(), resolver, &mut |e| {
|
macro_call.as_call_id_with_errors(db, self.def_map.krate(), resolver, &mut |e| {
|
||||||
err.get_or_insert(e);
|
err.get_or_insert(e);
|
||||||
});
|
});
|
||||||
let call_id = match call_id {
|
let call_id = match call_id {
|
||||||
|
@ -204,7 +197,7 @@ impl Expander {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn resolve_path_as_macro(&self, db: &dyn DefDatabase, path: &ModPath) -> Option<MacroDefId> {
|
fn resolve_path_as_macro(&self, db: &dyn DefDatabase, path: &ModPath) -> Option<MacroDefId> {
|
||||||
self.crate_def_map
|
self.def_map
|
||||||
.resolve_path(db, self.module.local_id, path, BuiltinShadowMode::Other)
|
.resolve_path(db, self.module.local_id, path, BuiltinShadowMode::Other)
|
||||||
.0
|
.0
|
||||||
.take_macros()
|
.take_macros()
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
//! Transforms `ast::Expr` into an equivalent `hir_def::expr::Expr`
|
//! Transforms `ast::Expr` into an equivalent `hir_def::expr::Expr`
|
||||||
//! representation.
|
//! representation.
|
||||||
|
|
||||||
use std::{any::type_name, sync::Arc};
|
use std::{any::type_name, mem, sync::Arc};
|
||||||
|
|
||||||
use either::Either;
|
use either::Either;
|
||||||
use hir_expand::{
|
use hir_expand::{
|
||||||
|
@ -36,8 +36,8 @@ use crate::{
|
||||||
item_tree::{ItemTree, ItemTreeId, ItemTreeNode},
|
item_tree::{ItemTree, ItemTreeId, ItemTreeNode},
|
||||||
path::{GenericArgs, Path},
|
path::{GenericArgs, Path},
|
||||||
type_ref::{Mutability, Rawness, TypeRef},
|
type_ref::{Mutability, Rawness, TypeRef},
|
||||||
AdtId, ConstLoc, ContainerId, DefWithBodyId, EnumLoc, FunctionLoc, Intern, ModuleDefId,
|
AdtId, BlockLoc, ConstLoc, ContainerId, DefWithBodyId, EnumLoc, FunctionLoc, Intern,
|
||||||
StaticLoc, StructLoc, TraitLoc, TypeAliasLoc, UnionLoc,
|
ModuleDefId, StaticLoc, StructLoc, TraitLoc, TypeAliasLoc, UnionLoc,
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::{diagnostics::BodyDiagnostic, ExprSource, PatSource};
|
use super::{diagnostics::BodyDiagnostic, ExprSource, PatSource};
|
||||||
|
@ -152,8 +152,8 @@ impl ExprCollector<'_> {
|
||||||
fn alloc_expr_desugared(&mut self, expr: Expr) -> ExprId {
|
fn alloc_expr_desugared(&mut self, expr: Expr) -> ExprId {
|
||||||
self.make_expr(expr, Err(SyntheticSyntax))
|
self.make_expr(expr, Err(SyntheticSyntax))
|
||||||
}
|
}
|
||||||
fn empty_block(&mut self) -> ExprId {
|
fn unit(&mut self) -> ExprId {
|
||||||
self.alloc_expr_desugared(Expr::Block { statements: Vec::new(), tail: None, label: None })
|
self.alloc_expr_desugared(Expr::Tuple { exprs: Vec::new() })
|
||||||
}
|
}
|
||||||
fn missing_expr(&mut self) -> ExprId {
|
fn missing_expr(&mut self) -> ExprId {
|
||||||
self.alloc_expr_desugared(Expr::Missing)
|
self.alloc_expr_desugared(Expr::Missing)
|
||||||
|
@ -222,7 +222,7 @@ impl ExprCollector<'_> {
|
||||||
MatchArm { pat, expr: then_branch, guard: None },
|
MatchArm { pat, expr: then_branch, guard: None },
|
||||||
MatchArm {
|
MatchArm {
|
||||||
pat: placeholder_pat,
|
pat: placeholder_pat,
|
||||||
expr: else_branch.unwrap_or_else(|| self.empty_block()),
|
expr: else_branch.unwrap_or_else(|| self.unit()),
|
||||||
guard: None,
|
guard: None,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
@ -561,7 +561,7 @@ impl ExprCollector<'_> {
|
||||||
let outer_file = self.expander.current_file_id;
|
let outer_file = self.expander.current_file_id;
|
||||||
|
|
||||||
let macro_call = self.expander.to_source(AstPtr::new(&e));
|
let macro_call = self.expander.to_source(AstPtr::new(&e));
|
||||||
let res = self.expander.enter_expand(self.db, Some(&self.body.item_scope), e);
|
let res = self.expander.enter_expand(self.db, e);
|
||||||
|
|
||||||
match &res.err {
|
match &res.err {
|
||||||
Some(ExpandError::UnresolvedProcMacro) => {
|
Some(ExpandError::UnresolvedProcMacro) => {
|
||||||
|
@ -697,12 +697,27 @@ impl ExprCollector<'_> {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn collect_block(&mut self, block: ast::BlockExpr) -> ExprId {
|
fn collect_block(&mut self, block: ast::BlockExpr) -> ExprId {
|
||||||
let syntax_node_ptr = AstPtr::new(&block.clone().into());
|
let ast_id = self.expander.ast_id(&block);
|
||||||
|
let block_loc = BlockLoc { ast_id, module: self.expander.module };
|
||||||
|
let block_id = self.db.intern_block(block_loc);
|
||||||
|
let def_map = self.db.block_def_map(block_id);
|
||||||
|
let root = def_map.module_id(def_map.root());
|
||||||
|
let prev_def_map = mem::replace(&mut self.expander.def_map, def_map);
|
||||||
|
let prev_module = mem::replace(&mut self.expander.module, root);
|
||||||
|
|
||||||
self.collect_stmts_items(block.statements());
|
self.collect_stmts_items(block.statements());
|
||||||
let statements =
|
let statements =
|
||||||
block.statements().filter_map(|s| self.collect_stmt(s)).flatten().collect();
|
block.statements().filter_map(|s| self.collect_stmt(s)).flatten().collect();
|
||||||
let tail = block.tail_expr().map(|e| self.collect_expr(e));
|
let tail = block.tail_expr().map(|e| self.collect_expr(e));
|
||||||
self.alloc_expr(Expr::Block { statements, tail, label: None }, syntax_node_ptr)
|
let syntax_node_ptr = AstPtr::new(&block.clone().into());
|
||||||
|
let expr_id = self.alloc_expr(
|
||||||
|
Expr::Block { id: block_id, statements, tail, label: None },
|
||||||
|
syntax_node_ptr,
|
||||||
|
);
|
||||||
|
|
||||||
|
self.expander.def_map = prev_def_map;
|
||||||
|
self.expander.module = prev_module;
|
||||||
|
expr_id
|
||||||
}
|
}
|
||||||
|
|
||||||
fn collect_stmts_items(&mut self, stmts: ast::AstChildren<ast::Stmt>) {
|
fn collect_stmts_items(&mut self, stmts: ast::AstChildren<ast::Stmt>) {
|
||||||
|
@ -832,7 +847,7 @@ impl ExprCollector<'_> {
|
||||||
if annotation == BindingAnnotation::Unannotated && subpat.is_none() {
|
if annotation == BindingAnnotation::Unannotated && subpat.is_none() {
|
||||||
// This could also be a single-segment path pattern. To
|
// This could also be a single-segment path pattern. To
|
||||||
// decide that, we need to try resolving the name.
|
// decide that, we need to try resolving the name.
|
||||||
let (resolved, _) = self.expander.crate_def_map.resolve_path(
|
let (resolved, _) = self.expander.def_map.resolve_path(
|
||||||
self.db,
|
self.db,
|
||||||
self.expander.module.local_id,
|
self.expander.module.local_id,
|
||||||
&name.clone().into(),
|
&name.clone().into(),
|
||||||
|
|
|
@ -262,7 +262,7 @@ fn collect_items(
|
||||||
let root = db.parse_or_expand(file_id).unwrap();
|
let root = db.parse_or_expand(file_id).unwrap();
|
||||||
let call = ast_id_map.get(call.ast_id).to_node(&root);
|
let call = ast_id_map.get(call.ast_id).to_node(&root);
|
||||||
|
|
||||||
if let Some((mark, mac)) = expander.enter_expand(db, None, call).value {
|
if let Some((mark, mac)) = expander.enter_expand(db, call).value {
|
||||||
let src: InFile<ast::MacroItems> = expander.to_source(mac);
|
let src: InFile<ast::MacroItems> = expander.to_source(mac);
|
||||||
let item_tree = db.item_tree(src.file_id);
|
let item_tree = db.item_tree(src.file_id);
|
||||||
let iter =
|
let iter =
|
||||||
|
|
|
@ -20,6 +20,7 @@ use crate::{
|
||||||
builtin_type::{BuiltinFloat, BuiltinInt},
|
builtin_type::{BuiltinFloat, BuiltinInt},
|
||||||
path::{GenericArgs, Path},
|
path::{GenericArgs, Path},
|
||||||
type_ref::{Mutability, Rawness, TypeRef},
|
type_ref::{Mutability, Rawness, TypeRef},
|
||||||
|
BlockId,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub type ExprId = Idx<Expr>;
|
pub type ExprId = Idx<Expr>;
|
||||||
|
@ -56,6 +57,7 @@ pub enum Expr {
|
||||||
else_branch: Option<ExprId>,
|
else_branch: Option<ExprId>,
|
||||||
},
|
},
|
||||||
Block {
|
Block {
|
||||||
|
id: BlockId,
|
||||||
statements: Vec<Statement>,
|
statements: Vec<Statement>,
|
||||||
tail: Option<ExprId>,
|
tail: Option<ExprId>,
|
||||||
label: Option<LabelId>,
|
label: Option<LabelId>,
|
||||||
|
|
|
@ -24,7 +24,7 @@ use la_arena::{Arena, Idx, RawIdx};
|
||||||
use profile::Count;
|
use profile::Count;
|
||||||
use rustc_hash::FxHashMap;
|
use rustc_hash::FxHashMap;
|
||||||
use smallvec::SmallVec;
|
use smallvec::SmallVec;
|
||||||
use syntax::{ast, match_ast};
|
use syntax::{ast, match_ast, SyntaxKind};
|
||||||
use test_utils::mark;
|
use test_utils::mark;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
|
@ -80,6 +80,10 @@ impl ItemTree {
|
||||||
pub(crate) fn item_tree_query(db: &dyn DefDatabase, file_id: HirFileId) -> Arc<ItemTree> {
|
pub(crate) fn item_tree_query(db: &dyn DefDatabase, file_id: HirFileId) -> Arc<ItemTree> {
|
||||||
let _p = profile::span("item_tree_query").detail(|| format!("{:?}", file_id));
|
let _p = profile::span("item_tree_query").detail(|| format!("{:?}", file_id));
|
||||||
let syntax = if let Some(node) = db.parse_or_expand(file_id) {
|
let syntax = if let Some(node) = db.parse_or_expand(file_id) {
|
||||||
|
if node.kind() == SyntaxKind::ERROR {
|
||||||
|
// FIXME: not 100% sure why these crop up, but return an empty tree to avoid a panic
|
||||||
|
return Default::default();
|
||||||
|
}
|
||||||
node
|
node
|
||||||
} else {
|
} else {
|
||||||
return Default::default();
|
return Default::default();
|
||||||
|
|
|
@ -137,7 +137,7 @@ impl<'a> InferenceContext<'a> {
|
||||||
|
|
||||||
self.coerce_merge_branch(&then_ty, &else_ty)
|
self.coerce_merge_branch(&then_ty, &else_ty)
|
||||||
}
|
}
|
||||||
Expr::Block { statements, tail, label } => match label {
|
Expr::Block { statements, tail, label, id: _ } => match label {
|
||||||
Some(_) => {
|
Some(_) => {
|
||||||
let break_ty = self.table.new_type_var();
|
let break_ty = self.table.new_type_var();
|
||||||
self.breakables.push(BreakableContext {
|
self.breakables.push(BreakableContext {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue