rust/crates/hir-def/src/adt.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

520 lines
17 KiB
Rust
Raw Normal View History

2019-10-31 08:40:36 -05:00
//! Defines hir-level representation of structs, enums and unions
2022-10-11 02:37:35 -05:00
use std::{num::NonZeroU32, sync::Arc};
2019-10-31 08:40:36 -05:00
use base_db::CrateId;
use either::Either;
use hir_expand::{
name::{AsName, Name},
2022-10-11 02:37:35 -05:00
HirFileId, InFile,
};
use la_arena::{Arena, ArenaMap};
2021-09-27 05:54:24 -05:00
use syntax::ast::{self, HasName, HasVisibility};
use tt::{Delimiter, DelimiterKind, Leaf, Subtree, TokenTree};
2019-10-31 08:40:36 -05:00
use crate::{
2020-04-30 05:20:13 -05:00
body::{CfgExpander, LowerCtx},
2022-10-11 02:37:35 -05:00
builtin_type::{BuiltinInt, BuiltinUint},
2020-04-30 05:20:13 -05:00
db::DefDatabase,
2021-04-01 12:46:43 -05:00
intern::Interned,
2022-10-11 02:37:35 -05:00
item_tree::{AttrOwner, Field, FieldAstId, Fields, ItemTree, ModItem, RawVisibilityId},
nameres::diagnostics::DefDiagnostic,
2020-04-30 05:20:13 -05:00
src::HasChildSource,
src::HasSource,
trace::Trace,
type_ref::TypeRef,
visibility::RawVisibility,
2022-10-11 02:37:35 -05:00
EnumId, LocalEnumVariantId, LocalFieldId, LocalModuleId, Lookup, ModuleId, StructId, UnionId,
VariantId,
2019-10-31 08:40:36 -05:00
};
2020-08-13 03:19:09 -05:00
use cfg::CfgOptions;
2019-10-31 08:40:36 -05:00
/// Note that we use `StructData` for unions as well!
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct StructData {
2019-11-27 14:22:20 -06:00
pub name: Name,
2019-10-31 08:40:36 -05:00
pub variant_data: Arc<VariantData>,
2022-10-11 02:37:35 -05:00
pub repr: Option<ReprData>,
2021-03-15 11:05:03 -05:00
pub visibility: RawVisibility,
2019-10-31 08:40:36 -05:00
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct EnumData {
2019-11-27 14:22:20 -06:00
pub name: Name,
2020-03-19 10:00:11 -05:00
pub variants: Arena<EnumVariantData>,
2022-10-11 02:37:35 -05:00
pub repr: Option<ReprData>,
2021-03-15 11:05:03 -05:00
pub visibility: RawVisibility,
2019-10-31 08:40:36 -05:00
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct EnumVariantData {
2019-11-27 14:22:20 -06:00
pub name: Name,
2019-10-31 08:40:36 -05:00
pub variant_data: Arc<VariantData>,
}
#[derive(Debug, Clone, PartialEq, Eq)]
2019-11-22 12:52:06 -06:00
pub enum VariantData {
2020-04-25 07:23:34 -05:00
Record(Arena<FieldData>),
Tuple(Arena<FieldData>),
2019-10-31 08:40:36 -05:00
Unit,
}
/// A single field of an enum variant or struct
#[derive(Debug, Clone, PartialEq, Eq)]
2020-04-25 07:23:34 -05:00
pub struct FieldData {
2019-10-31 08:40:36 -05:00
pub name: Name,
2021-04-01 12:46:43 -05:00
pub type_ref: Interned<TypeRef>,
pub visibility: RawVisibility,
2019-10-31 08:40:36 -05:00
}
2022-10-11 02:37:35 -05:00
#[derive(Copy, Debug, Clone, PartialEq, Eq)]
pub enum ReprKind {
2022-10-11 02:37:35 -05:00
C,
BuiltinInt { builtin: Either<BuiltinInt, BuiltinUint>, is_c: bool },
Transparent,
Default,
}
#[derive(Copy, Debug, Clone, PartialEq, Eq)]
pub struct ReprData {
pub kind: ReprKind,
pub packed: bool,
pub align: Option<NonZeroU32>,
}
fn repr_from_value(
db: &dyn DefDatabase,
krate: CrateId,
item_tree: &ItemTree,
of: AttrOwner,
2022-10-11 02:37:35 -05:00
) -> Option<ReprData> {
item_tree.attrs(db, krate, of).by_key("repr").tt_values().find_map(parse_repr_tt)
}
2022-10-11 02:37:35 -05:00
fn parse_repr_tt(tt: &Subtree) -> Option<ReprData> {
match tt.delimiter {
Some(Delimiter { kind: DelimiterKind::Parenthesis, .. }) => {}
_ => return None,
}
2022-10-11 02:37:35 -05:00
let mut data = ReprData { kind: ReprKind::Default, packed: false, align: None };
let mut tts = tt.token_trees.iter().peekable();
while let Some(tt) = tts.next() {
if let TokenTree::Leaf(Leaf::Ident(ident)) = tt {
match &*ident.text {
"packed" => {
data.packed = true;
if let Some(TokenTree::Subtree(_)) = tts.peek() {
tts.next();
}
}
"align" => {
if let Some(TokenTree::Subtree(tt)) = tts.peek() {
tts.next();
if let Some(TokenTree::Leaf(Leaf::Literal(lit))) = tt.token_trees.first() {
if let Ok(align) = lit.text.parse() {
data.align = Some(align);
}
}
}
}
"C" => {
if let ReprKind::BuiltinInt { is_c, .. } = &mut data.kind {
*is_c = true;
} else {
data.kind = ReprKind::C;
}
}
"transparent" => data.kind = ReprKind::Transparent,
repr => {
let is_c = matches!(data.kind, ReprKind::C);
if let Some(builtin) = BuiltinInt::from_suffix(repr)
.map(Either::Left)
.or_else(|| BuiltinUint::from_suffix(repr).map(Either::Right))
{
data.kind = ReprKind::BuiltinInt { builtin, is_c };
}
}
}
}
}
2022-10-11 02:37:35 -05:00
Some(data)
}
2019-10-31 08:40:36 -05:00
impl StructData {
pub(crate) fn struct_data_query(db: &dyn DefDatabase, id: StructId) -> Arc<StructData> {
2022-10-11 02:37:35 -05:00
db.struct_data_with_diagnostics(id).0
}
pub(crate) fn struct_data_with_diagnostics_query(
db: &dyn DefDatabase,
id: StructId,
) -> (Arc<StructData>, Arc<[DefDiagnostic]>) {
let loc = id.lookup(db);
2021-03-09 12:09:02 -06:00
let krate = loc.container.krate;
2021-03-12 17:34:01 -06:00
let item_tree = loc.id.item_tree(db);
let repr = repr_from_value(db, krate, &item_tree, ModItem::from(loc.id.value).into());
2021-03-09 12:09:02 -06:00
let cfg_options = db.crate_graph()[loc.container.krate].cfg_options.clone();
let strukt = &item_tree[loc.id.value];
2022-10-11 02:37:35 -05:00
let (variant_data, diagnostics) = lower_fields(
db,
krate,
loc.id.file_id(),
loc.container.local_id,
&item_tree,
&cfg_options,
&strukt.fields,
None,
);
(
Arc::new(StructData {
name: strukt.name.clone(),
variant_data: Arc::new(variant_data),
repr,
visibility: item_tree[strukt.visibility].clone(),
}),
diagnostics.into(),
)
2019-10-31 10:45:10 -05:00
}
2022-10-11 02:37:35 -05:00
pub(crate) fn union_data_query(db: &dyn DefDatabase, id: UnionId) -> Arc<StructData> {
2022-10-11 02:37:35 -05:00
db.union_data_with_diagnostics(id).0
}
pub(crate) fn union_data_with_diagnostics_query(
db: &dyn DefDatabase,
id: UnionId,
) -> (Arc<StructData>, Arc<[DefDiagnostic]>) {
let loc = id.lookup(db);
2021-03-09 12:09:02 -06:00
let krate = loc.container.krate;
2021-03-12 17:34:01 -06:00
let item_tree = loc.id.item_tree(db);
let repr = repr_from_value(db, krate, &item_tree, ModItem::from(loc.id.value).into());
2021-03-09 12:09:02 -06:00
let cfg_options = db.crate_graph()[loc.container.krate].cfg_options.clone();
let union = &item_tree[loc.id.value];
2022-10-11 02:37:35 -05:00
let (variant_data, diagnostics) = lower_fields(
db,
krate,
loc.id.file_id(),
loc.container.local_id,
&item_tree,
&cfg_options,
&union.fields,
None,
);
(
Arc::new(StructData {
name: union.name.clone(),
variant_data: Arc::new(variant_data),
repr,
visibility: item_tree[union.visibility].clone(),
}),
diagnostics.into(),
)
2019-11-25 08:30:50 -06:00
}
2019-10-31 08:40:36 -05:00
}
impl EnumData {
pub(crate) fn enum_data_query(db: &dyn DefDatabase, e: EnumId) -> Arc<EnumData> {
2022-10-11 02:37:35 -05:00
db.enum_data_with_diagnostics(e).0
}
pub(crate) fn enum_data_with_diagnostics_query(
db: &dyn DefDatabase,
e: EnumId,
) -> (Arc<EnumData>, Arc<[DefDiagnostic]>) {
2020-06-25 09:52:47 -05:00
let loc = e.lookup(db);
2021-03-09 12:09:02 -06:00
let krate = loc.container.krate;
2021-03-12 17:34:01 -06:00
let item_tree = loc.id.item_tree(db);
let cfg_options = db.crate_graph()[krate].cfg_options.clone();
2022-10-11 02:37:35 -05:00
let repr = repr_from_value(db, krate, &item_tree, ModItem::from(loc.id.value).into());
2020-06-25 09:52:47 -05:00
let enum_ = &item_tree[loc.id.value];
let mut variants = Arena::new();
2022-10-11 02:37:35 -05:00
let mut diagnostics = Vec::new();
for tree_id in enum_.variants.clone() {
2022-10-11 02:37:35 -05:00
let attrs = item_tree.attrs(db, krate, tree_id.into());
let var = &item_tree[tree_id];
if attrs.is_cfg_enabled(&cfg_options) {
let (var_data, field_diagnostics) = lower_fields(
db,
krate,
2022-10-11 02:37:35 -05:00
loc.id.file_id(),
loc.container.local_id,
&item_tree,
&cfg_options,
&var.fields,
Some(enum_.visibility),
);
2022-10-11 02:37:35 -05:00
diagnostics.extend(field_diagnostics);
2020-06-25 09:52:47 -05:00
variants.alloc(EnumVariantData {
name: var.name.clone(),
variant_data: Arc::new(var_data),
});
2022-10-11 02:37:35 -05:00
} else {
diagnostics.push(DefDiagnostic::unconfigured_code(
loc.container.local_id,
InFile::new(loc.id.file_id(), var.ast_id.upcast()),
attrs.cfg().unwrap(),
cfg_options.clone(),
))
2020-06-25 09:52:47 -05:00
}
}
2022-10-11 02:37:35 -05:00
(
Arc::new(EnumData {
name: enum_.name.clone(),
variants,
repr,
visibility: item_tree[enum_.visibility].clone(),
}),
diagnostics.into(),
)
2019-10-31 08:40:36 -05:00
}
2019-10-31 10:45:10 -05:00
2019-11-27 14:22:20 -06:00
pub fn variant(&self, name: &Name) -> Option<LocalEnumVariantId> {
let (id, _) = self.variants.iter().find(|(_id, data)| &data.name == name)?;
2019-10-31 10:45:10 -05:00
Some(id)
}
2022-10-11 02:37:35 -05:00
pub fn variant_body_type(&self) -> Either<BuiltinInt, BuiltinUint> {
match self.repr {
Some(ReprData { kind: ReprKind::BuiltinInt { builtin, .. }, .. }) => builtin,
_ => Either::Left(BuiltinInt::Isize),
}
}
2019-10-31 08:40:36 -05:00
}
impl HasChildSource<LocalEnumVariantId> for EnumId {
2020-07-30 10:56:53 -05:00
type Value = ast::Variant;
fn child_source(
&self,
db: &dyn DefDatabase,
) -> InFile<ArenaMap<LocalEnumVariantId, Self::Value>> {
2019-12-12 08:11:57 -06:00
let src = self.lookup(db).source(db);
let mut trace = Trace::new_for_map();
2021-03-09 12:09:02 -06:00
lower_enum(db, &mut trace, &src, self.lookup(db).container);
src.with_value(trace.into_map())
}
}
fn lower_enum(
db: &dyn DefDatabase,
2020-07-30 10:56:53 -05:00
trace: &mut Trace<EnumVariantData, ast::Variant>,
2020-07-30 10:52:53 -05:00
ast: &InFile<ast::Enum>,
module_id: ModuleId,
) {
let expander = CfgExpander::new(db, ast.file_id, module_id.krate);
let variants = ast
.value
.variant_list()
.into_iter()
.flat_map(|it| it.variants())
.filter(|var| expander.is_cfg_enabled(db, var));
for var in variants {
trace.alloc(
|| var.clone(),
|| EnumVariantData {
2019-11-27 14:22:20 -06:00
name: var.name().map_or_else(Name::missing, |it| it.as_name()),
variant_data: Arc::new(VariantData::new(db, ast.with_value(var.kind()), module_id)),
},
2019-11-24 08:49:49 -06:00
);
}
}
2019-10-31 08:40:36 -05:00
impl VariantData {
fn new(db: &dyn DefDatabase, flavor: InFile<ast::StructKind>, module_id: ModuleId) -> Self {
let mut expander = CfgExpander::new(db, flavor.file_id, module_id.krate);
let mut trace = Trace::new_for_arena();
match lower_struct(db, &mut expander, &mut trace, &flavor) {
StructKind::Tuple => VariantData::Tuple(trace.into_arena()),
StructKind::Record => VariantData::Record(trace.into_arena()),
StructKind::Unit => VariantData::Unit,
2019-11-22 12:52:06 -06:00
}
2019-10-31 08:40:36 -05:00
}
2020-04-25 07:23:34 -05:00
pub fn fields(&self) -> &Arena<FieldData> {
const EMPTY: &Arena<FieldData> = &Arena::new();
match &self {
2019-11-24 13:44:24 -06:00
VariantData::Record(fields) | VariantData::Tuple(fields) => fields,
_ => EMPTY,
}
}
2020-04-25 07:23:34 -05:00
pub fn field(&self, name: &Name) -> Option<LocalFieldId> {
2019-11-26 05:29:12 -06:00
self.fields().iter().find_map(|(id, data)| if &data.name == name { Some(id) } else { None })
}
pub fn kind(&self) -> StructKind {
match self {
VariantData::Record(_) => StructKind::Record,
VariantData::Tuple(_) => StructKind::Tuple,
VariantData::Unit => StructKind::Unit,
}
}
2019-10-31 08:40:36 -05:00
}
impl HasChildSource<LocalFieldId> for VariantId {
2020-07-30 09:49:13 -05:00
type Value = Either<ast::TupleField, ast::RecordField>;
fn child_source(&self, db: &dyn DefDatabase) -> InFile<ArenaMap<LocalFieldId, Self::Value>> {
let (src, module_id) = match self {
VariantId::EnumVariantId(it) => {
// I don't really like the fact that we call into parent source
// here, this might add to more queries then necessary.
let src = it.parent.child_source(db);
2021-03-09 12:09:02 -06:00
(src.map(|map| map[it.local_id].kind()), it.parent.lookup(db).container)
}
VariantId::StructId(it) => {
2021-03-09 12:09:02 -06:00
(it.lookup(db).source(db).map(|it| it.kind()), it.lookup(db).container)
}
VariantId::UnionId(it) => (
it.lookup(db).source(db).map(|it| {
2020-07-30 09:49:13 -05:00
it.record_field_list()
.map(ast::StructKind::Record)
.unwrap_or(ast::StructKind::Unit)
}),
2021-03-09 12:09:02 -06:00
it.lookup(db).container,
),
};
let mut expander = CfgExpander::new(db, src.file_id, module_id.krate);
let mut trace = Trace::new_for_map();
lower_struct(db, &mut expander, &mut trace, &src);
src.with_value(trace.into_map())
}
}
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum StructKind {
Tuple,
Record,
Unit,
}
fn lower_struct(
db: &dyn DefDatabase,
expander: &mut CfgExpander,
2020-07-30 09:49:13 -05:00
trace: &mut Trace<FieldData, Either<ast::TupleField, ast::RecordField>>,
ast: &InFile<ast::StructKind>,
) -> StructKind {
2020-04-30 05:20:13 -05:00
let ctx = LowerCtx::new(db, ast.file_id);
match &ast.value {
ast::StructKind::Tuple(fl) => {
for (i, fd) in fl.fields().enumerate() {
if !expander.is_cfg_enabled(db, &fd) {
continue;
}
trace.alloc(
|| Either::Left(fd.clone()),
2020-04-25 07:23:34 -05:00
|| FieldData {
name: Name::new_tuple_field(i),
2021-04-01 12:46:43 -05:00
type_ref: Interned::new(TypeRef::from_ast_opt(&ctx, fd.ty())),
visibility: RawVisibility::from_ast(db, ast.with_value(fd.visibility())),
},
2019-11-24 08:49:49 -06:00
);
}
StructKind::Tuple
}
ast::StructKind::Record(fl) => {
for fd in fl.fields() {
if !expander.is_cfg_enabled(db, &fd) {
continue;
}
trace.alloc(
|| Either::Right(fd.clone()),
2020-04-25 07:23:34 -05:00
|| FieldData {
name: fd.name().map(|n| n.as_name()).unwrap_or_else(Name::missing),
2021-04-01 12:46:43 -05:00
type_ref: Interned::new(TypeRef::from_ast_opt(&ctx, fd.ty())),
visibility: RawVisibility::from_ast(db, ast.with_value(fd.visibility())),
},
2019-11-24 08:49:49 -06:00
);
}
StructKind::Record
}
ast::StructKind::Unit => StructKind::Unit,
}
}
fn lower_fields(
db: &dyn DefDatabase,
krate: CrateId,
2022-10-11 02:37:35 -05:00
current_file_id: HirFileId,
container: LocalModuleId,
item_tree: &ItemTree,
cfg_options: &CfgOptions,
fields: &Fields,
override_visibility: Option<RawVisibilityId>,
2022-10-11 02:37:35 -05:00
) -> (VariantData, Vec<DefDiagnostic>) {
let mut diagnostics = Vec::new();
match fields {
Fields::Record(flds) => {
let mut arena = Arena::new();
for field_id in flds.clone() {
2022-10-11 02:37:35 -05:00
let attrs = item_tree.attrs(db, krate, field_id.into());
let field = &item_tree[field_id];
if attrs.is_cfg_enabled(cfg_options) {
arena.alloc(lower_field(item_tree, field, override_visibility));
} else {
diagnostics.push(DefDiagnostic::unconfigured_code(
container,
InFile::new(
current_file_id,
match field.ast_id {
FieldAstId::Record(it) => it.upcast(),
FieldAstId::Tuple(it) => it.upcast(),
},
),
attrs.cfg().unwrap(),
cfg_options.clone(),
))
}
}
2022-10-11 02:37:35 -05:00
(VariantData::Record(arena), diagnostics)
}
Fields::Tuple(flds) => {
let mut arena = Arena::new();
for field_id in flds.clone() {
2022-10-11 02:37:35 -05:00
let attrs = item_tree.attrs(db, krate, field_id.into());
let field = &item_tree[field_id];
if attrs.is_cfg_enabled(cfg_options) {
arena.alloc(lower_field(item_tree, field, override_visibility));
} else {
diagnostics.push(DefDiagnostic::unconfigured_code(
container,
InFile::new(
current_file_id,
match field.ast_id {
FieldAstId::Record(it) => it.upcast(),
FieldAstId::Tuple(it) => it.upcast(),
},
),
attrs.cfg().unwrap(),
cfg_options.clone(),
))
}
}
2022-10-11 02:37:35 -05:00
(VariantData::Tuple(arena), diagnostics)
}
2022-10-11 02:37:35 -05:00
Fields::Unit => (VariantData::Unit, diagnostics),
}
}
fn lower_field(
item_tree: &ItemTree,
field: &Field,
override_visibility: Option<RawVisibilityId>,
) -> FieldData {
FieldData {
name: field.name.clone(),
2021-04-01 12:46:43 -05:00
type_ref: field.type_ref.clone(),
visibility: item_tree[override_visibility.unwrap_or(field.visibility)].clone(),
}
}