1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
// Copyright (c) 2016-2021 Fabian Schuiki

//! This module implements the tracking of definitions and scopes for VHDL.

use crate::defs::*;
use crate::score::*;

macro_rules! impl_make_defs {
    ($slf:tt, $id:ident: $id_ty:ty => $blk:block) => {
        impl_make!($slf, $id: $id_ty => &Defs $blk);
    }
}

macro_rules! impl_make_scope {
    ($slf:tt, $id:ident: $id_ty:ty => $blk:block) => {
        impl_make!($slf, $id: $id_ty => &Scope $blk);
    }
}

impl_make_defs!(self, id: ScopeRef => {
    match id {
        ScopeRef::Lib(id)         => self.make(id),
        ScopeRef::CtxItems(id)    => self.make(id),
        ScopeRef::Entity(id)      => self.make(id),
        ScopeRef::BuiltinPkg(id)  => Ok(&(*BUILTIN_PKG_DEFS)[&id]),
        ScopeRef::Pkg(id)         => self.make(id),
        ScopeRef::PkgBody(id)     => self.make(id),
        ScopeRef::Arch(id)        => self.make(id),
        ScopeRef::Process(id)     => self.make(id),
        ScopeRef::Subprog(id)     => self.make(id),
        ScopeRef::SubprogBody(id) => self.make(id),
    }
});

impl_make_scope!(self, id: ScopeRef => {
    match id {
        ScopeRef::Lib(id)         => self.make(id),
        ScopeRef::CtxItems(id)    => self.make(id),
        ScopeRef::Entity(id)      => self.make(id),
        ScopeRef::BuiltinPkg(id)  => Ok(&(*BUILTIN_PKG_SCOPES)[&id]),
        ScopeRef::Pkg(id)         => self.make(id),
        ScopeRef::PkgBody(id)     => self.make(id),
        ScopeRef::Arch(id)        => self.make(id),
        ScopeRef::Process(id)     => self.make(id),
        ScopeRef::Subprog(id)     => self.make(id),
        ScopeRef::SubprogBody(id) => self.make(id),
    }
});

// Definitions in a library.
impl_make_defs!(self, id: LibRef => {
    // Approach:
    // 1) Get the HIR of the library
    // 2) Gather definitions from the HIR.
    // 3) Create defs and return.
    let lib = self.hir(id)?;

    // Assemble an uber-iterator that will iterate over each
    // definition in the library. We do this by obtaining an
    // iterator for every design unit type in the library, then
    // mapping each ID to the corresponding name and definition.
    // The name is determined by looking up the AST node of the
    // design unit to be defined.
    let iter = lib.entities.iter().map(|&n| (self.ast(n).2.name, Def::Entity(n)));
    let iter = iter.chain(lib.cfgs.iter().map(|&n| (self.ast(n).2.name, Def::Cfg(n))));
    let iter = iter.chain(lib.pkg_decls.iter().map(|&n| (self.ast(n).1.name, Def::Pkg(n))));
    let iter = iter.chain(lib.pkg_insts.iter().map(|&n| (self.ast(n).1.name, Def::PkgInst(n))));
    let iter = iter.chain(lib.ctxs.iter().map(|&n| (self.ast(n).2.name, Def::Ctx(n))));

    // For every element the iterator produces, add it to the map of
    // definitions.
    let mut defs = HashMap::new();
    for (name, def) in iter {
        defs.entry(name.value.into()).or_insert_with(|| Vec::new()).push(Spanned::new(def, name.span));
    }

    // Warn the user about duplicate definitions.
    let mut had_dups = false;
    for (name, defs) in &defs {
        if defs.len() <= 1 {
            continue;
        }
        let mut d = DiagBuilder2::error(format!("`{}` declared multiple times", name));
        for def in defs {
            d = d.span(def.span);
        }
        self.emit(d);
        had_dups = true;
    }
    if had_dups {
        return Err(());
    }

    // Return the definitions.
    Ok(self.sb.arenas.defs.alloc(defs))
});

// Definitions made by the context items that appear before design units.
impl_make_defs!(self, id: CtxItemsRef => {
    let (_, ast) = self.ast(id);
    let mut defs = HashMap::new();
    let mut has_fails = false;
    for item in ast {
        // For each name in a library clause, find the corresponding library
        // and create a definition for it.
        match *item {
            ast::CtxItem::LibClause(Spanned{ value: ref names, .. }) => {
                for ident in names {
                    if let Some(&lib_id) = self.sb.lib_names.borrow().get(&ident.name) {
                        let defs = defs.entry(ident.name.into()).or_insert_with(||vec![]);
                        if !defs.is_empty() {
                            self.emit(
                                DiagBuilder2::error(format!("`{}` has already been declared", ident.name))
                                .span(ident.span)
                                // TODO: Show previous declarations
                            );
                            has_fails = true;
                        } else {
                            defs.push(Spanned::new(Def::Lib(lib_id), ident.span));
                        }
                    } else {
                        self.emit(
                            DiagBuilder2::error(format!("no library named `{}` found", ident.name))
                            .span(ident.span)
                            // TODO: Print list of libraries.
                        );
                        has_fails = true;
                    }
                }
            }
            _ => ()
        }
    }
    if has_fails {
        Err(())
    } else {
        Ok(self.sb.arenas.defs.alloc(defs))
    }
});

impl_make_scope!(self, _id: CtxItemsRef => {
    Ok(self.sb.arenas.scope.alloc(Scope{
        parent: None,
        defs: Vec::new(),
        explicit_defs: HashMap::new(),
    }))
});

// Definitions in an entity.
impl_make_defs!(self, _id: EntityRef => {
    // TODO: Implement this.
    Ok(self.sb.arenas.defs.alloc(HashMap::new()))
});

// Definitions in an architecture.
impl_make_defs!(self, id: ArchRef => {
    let mut ctx = DefsContext::new(self);
    let hir = self.hir(id)?;
    for &decl in &hir.decls {
        ctx.declare_any_in_block(decl);
    }
    Ok(self.sb.arenas.defs.alloc(ctx.finish()?))
});

// Definitions in a package declaration.
impl_make_defs!(self, _id: PkgDeclRef => {
    let ctx = DefsContext::new(self);
    // let hir = self.hir(id)?;
    // for &decl in &hir.decls {
    //     ctx.declare_any_in_pkg(decl);
    // }
    Ok(self.sb.arenas.defs.alloc(ctx.finish()?))
});

// Definitions in a package body.
impl_make_defs!(self, id: PkgBodyRef => {
    let mut ctx = DefsContext::new(self);
    let hir = self.hir(id)?;
    for &decl in &hir.decls {
        ctx.declare_any_in_pkg_body(decl);
    }
    Ok(self.sb.arenas.defs.alloc(ctx.finish()?))
});

// Definitions in a subprogram declaration.
impl_make_defs!(self, id: SubprogDeclRef => {
    let mut ctx = DefsContext::new(self);
    let hir = self.hir(id)?;
    ctx.declare_subprog_spec(&hir.spec);
    Ok(self.sb.arenas.defs.alloc(ctx.finish()?))
});

// Definitions in a subprogram body.
impl_make_defs!(self, id: SubprogBodyRef => {
    let mut ctx = DefsContext::new(self);
    let hir = self.hir(id)?;
    ctx.declare_subprog_spec(&hir.spec);
    for &decl in &hir.decls {
        ctx.declare_any_in_subprog(decl);
    }
    Ok(self.sb.arenas.defs.alloc(ctx.finish()?))
});

// Populate the scope of a library.
impl_make_scope!(self, id: LibRef => {
    let mut defs = Vec::new();
    defs.push(id.into());
    Ok(self.sb.arenas.scope.alloc(Scope{
        parent: None,
        defs: defs,
        explicit_defs: HashMap::new(),
    }))
});

impl<'lazy, 'sb, 'ast, 'ctx> ScoreContext<'lazy, 'sb, 'ast, 'ctx> {
    // Populate the scope of the context items that appear before a design unit. The
    // scope of the design unit itself is a subscope of the context items.
    pub fn make_ctx_items_scope(
        &self,
        id: CtxItemsRef,
        parent: Option<ScopeRef>,
    ) -> Result<CtxItemsRef> {
        let (_, items) = self.ast(id);
        let mut defs = Vec::new();
        let mut explicit_defs = HashMap::new();
        defs.push(id.into());
        for item in items {
            if let &ast::CtxItem::UseClause(Spanned {
                value: ref names, ..
            }) = item
            {
                for name in names {
                    // TODO: This creates an infinite loop, since the name lookup requires the context items to be ready.
                    let (res_name, mut out_defs, valid_span, mut tail) =
                        self.resolve_compound_name(name, id.into(), true)?;

                    // Resolve the optional `all`.
                    match tail.first() {
                        Some(&ast::NamePart::SelectAll(all_span)) => {
                            tail = &tail[1..];
                            match out_defs.pop() {
                                Some(Spanned {
                                    value: Def::Pkg(id),
                                    ..
                                }) => {
                                    defs.push(id.into());
                                }
                                Some(_) => {
                                    self.emit(
                                        DiagBuilder2::error(format!(
                                            "`all` not possible on `{}`",
                                            valid_span.extract()
                                        ))
                                        .span(all_span),
                                    );
                                    continue;
                                }
                                None => unreachable!(),
                            }
                        }
                        _ => {
                            explicit_defs
                                .entry(res_name)
                                .or_insert_with(|| Vec::new())
                                .extend(out_defs);
                        }
                    }

                    // Ensure that there is no garbage.
                    if tail.len() > 0 {
                        let span = Span::union(valid_span.end().into(), name.span.end());
                        self.emit(DiagBuilder2::error("invalid name suffix").span(span));
                        continue;
                    }
                }
            }
        }
        self.sb.scope_table.borrow_mut().insert(
            id.into(),
            self.sb.arenas.scope.alloc(Scope {
                parent: Some(parent.unwrap_or(*ROOT_SCOPE_REF)),
                defs: defs,
                explicit_defs: explicit_defs,
            }),
        );
        Ok(id)
    }
}

// Populate the scope of an entity.
impl_make_scope!(self, id: EntityRef => {
    let hir = self.hir(id)?;
    let mut defs = Vec::new();
    defs.push(id.into());
    let parent = self.make_ctx_items_scope(hir.ctx_items, None)?;
    Ok(self.sb.arenas.scope.alloc(Scope{
        parent: Some(parent.into()),
        defs: defs,
        explicit_defs: HashMap::new(),
    }))
});

// Populate the scope of an architecture.
impl_make_scope!(self, id: ArchRef => {
    let hir = self.hir(id)?;
    let mut defs = Vec::new();
    defs.push(id.into());
    let parent = self.make_ctx_items_scope(hir.ctx_items, Some(hir.entity.into()))?;
    Ok(self.sb.arenas.scope.alloc(Scope{
        parent: Some(parent.into()),
        defs: defs,
        explicit_defs: HashMap::new(),
    }))
});

// Populate the scope of a package declaration.
impl_make_scope!(self, id: PkgDeclRef => {
    let hir = self.hir(id)?;
    let defs = Vec::new();
    // defs.push(id.into());
    let parent = match hir.parent {
        ScopeRef::CtxItems(id) => self.make_ctx_items_scope(id, None)?.into(),
        others => others
    };
    Ok(self.sb.arenas.scope.alloc(Scope{
        parent: Some(parent),
        defs: defs,
        explicit_defs: HashMap::new(),
    }))
});

// Populate the scope of a package body.
impl_make_scope!(self, id: PkgBodyRef => {
    let hir = self.hir(id)?;
    let mut defs = Vec::new();
    defs.push(id.into());
    let parent = match hir.parent {
        ScopeRef::CtxItems(id) => self.make_ctx_items_scope(id, None)?.into(),
        others => others
    };
    Ok(self.sb.arenas.scope.alloc(Scope{
        parent: Some(parent),
        defs: defs,
        explicit_defs: HashMap::new(),
    }))
});

// Populate the scope of a subprogram declaration.
impl_make_scope!(self, id: SubprogDeclRef => {
    let hir = self.hir(id)?;
    let mut defs = Vec::new();
    defs.push(id.into());
    let parent = match hir.parent {
        ScopeRef::CtxItems(id) => self.make_ctx_items_scope(id, None)?.into(),
        others => others
    };
    Ok(self.sb.arenas.scope.alloc(Scope{
        parent: Some(parent),
        defs: defs,
        explicit_defs: HashMap::new(),
    }))
});

// Populate the scope of a subprogram body.
impl_make_scope!(self, id: SubprogBodyRef => {
    let hir = self.hir(id)?;
    let mut defs = Vec::new();
    defs.push(id.into());
    let parent = match hir.parent {
        ScopeRef::CtxItems(id) => self.make_ctx_items_scope(id, None)?.into(),
        others => others
    };
    Ok(self.sb.arenas.scope.alloc(Scope{
        parent: Some(parent),
        defs: defs,
        explicit_defs: HashMap::new(),
    }))
});

impl_make_defs!(self, id: ProcessStmtRef => {
    let mut ctx = DefsContext::new(self);
    let hir = self.hir(id)?;
    for &decl in &hir.decls {
        ctx.declare_any_in_process(decl);
    }
    Ok(self.sb.arenas.defs.alloc(ctx.finish()?))
});

impl_make_scope!(self, id: ProcessStmtRef => {
    let hir = self.existing_hir(id)?;
    let mut defs = Vec::new();
    defs.push(id.into());
    Ok(self.sb.arenas.scope.alloc(Scope {
        parent: Some(hir.parent),
        defs: defs,
        explicit_defs: HashMap::new(),
    }))
});

// DeclInPkgRef::Pkg(id) => vec![(self.ast(id).1.name.map_into(), Def::Pkg(id))],
// DeclInPkgRef::PkgInst(id) => vec![(self.ast(id).1.name.map_into(), Def::PkgInst(id))],
// DeclInPkgRef::Type(id) => {
//     let hir = self.hir(id)?;
//     let mut v = vec![(hir.name.map_into(), Def::Type(id))];
//     match hir.data {
//         Some(hir::TypeData::Enum(_, ref lits)) => {
//             for (i, lit) in lits.iter().enumerate() {
//                 match *lit {
//                     hir::EnumLit::Ident(n) => v.push((n.map_into(), Def::Enum(EnumRef(id, i)))),
//                     hir::EnumLit::Char(c) => v.push((c.map_into(), Def::Enum(EnumRef(id, i)))),
//                 }
//             }
//         }
//         _ => ()
//     }
//     v
// }
// DeclInPkgRef::Subtype(id) => vec![(self.ast(id).1.name.map_into(), Def::Subtype(id))],