aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-sem.adb
Commit message (Collapse)AuthorAgeFilesLines
* vhdl-sem.adb: also check elaboration status within package bodiesTristan Gingold2023-01-151-6/+19
|
* vhdl: add a warning to detect use before elaborationTristan Gingold2023-01-151-0/+36
|
* vhdl: clear associated_type in Sem_Generic_Association_ChainTristan Gingold2023-01-121-0/+6
| | | | So that it is cleared after use.
* vhdl: minor refactoringTristan Gingold2022-12-121-13/+1
|
* vhdl-sem.adb(are_trees_equal): handle parenthesis expressions.Tristan Gingold2022-10-081-0/+4
| | | | Fix #2209
* vhdl-sem: avoid a crash after error. Fix #2201Tristan Gingold2022-09-281-0/+1
|
* vhdl-sem.adb: lexical conformance is now a relaxed error. Fix #2165Tristan Gingold2022-08-071-2/+3
|
* vhdl-sem.adb(are_trees_equal): handle qualified expressions. Fix #2164Tristan Gingold2022-08-071-1/+2
|
* vhdl-nodes: renaming.Tristan Gingold2022-07-211-2/+2
| | | | | | | Node Iir_Kind_Signal_Attribute_Declaration is now Iir_Kind_Attribute_Implicit_Declaration Will also handle quantities.
* vhdl: avoid crash on incorrect use of attributes.Tristan Gingold2022-07-021-11/+20
| | | | For #2116
* vhdl-sem.adb: avoid a crash on conformance error. Fix #2103Tristan Gingold2022-06-211-2/+2
|
* vhdl-sem.adb(are_trees_equal): handle simple aggregate.Tristan Gingold2022-06-161-14/+12
| | | | Fix #2098
* vhdl-nodes: add Inertial_Flag for association_element_by_expressionTristan Gingold2022-06-121-0/+3
|
* vhdl-sem: adjust condition to set suspend_state on proceduresTristan Gingold2022-06-071-6/+25
|
* vhdl: avoid crash after an error. For #2070Tristan Gingold2022-06-011-1/+4
|
* vhdl-sem.adb(are_trees_equal): handle selected element. Fix #2050Tristan Gingold2022-05-061-0/+4
|
* vhdl-sem.adb: adjust location of error message. Fix #2031Tristan Gingold2022-04-111-1/+1
|
* vhdl-19: analyze return identifierTristan Gingold2022-03-161-0/+18
|
* vhdl-sem.adb: fix incorrect check for conformance rulesTristan Gingold2021-12-031-1/+3
|
* vhdl: Iir_Kind_Foreign_Module is now a library unitTristan Gingold2021-11-091-0/+2
| | | | | (instead of a design unit). Also, add Iir_Kind_Foreign_Vector_Type_Definition
* vhdl: remove iir_kind_anonymous_signal_declaration (now unused)Tristan Gingold2021-08-241-58/+1
|
* Rework inertial associations.Tristan Gingold2021-08-231-3/+5
| | | | | Fix #1625 Fix #1672
* vhdl: introduce iir_kind_association_element_by_nameTristan Gingold2021-08-061-72/+111
|
* vhdl-sem: handle indexed and slice names. Fix #1768Tristan Gingold2021-05-171-56/+42
|
* update license headersumarcor2021-01-141-11/+9
|
* src/vhd: remove use of chapter sign in comment to have on ASCII charactersTristan Gingold2021-01-091-1/+1
| | | | (except for vhdl-scanner)
* vhdl: handle locally static attributes on entity/architecture/configurationsTristan Gingold2020-12-081-0/+2
| | | | | | | | | | | | | Attributes of entity/architecture/configurations are expected to be locally static so that they can be referenced from outside (so on the non-instantiated entity). But many designs break this assumption. In relaxed mode, non-locally static attributes are allowed but now cannot be referenced outside the entity. Locally static attributes can be referenced from outside. Fix #1528
* vhdl: analyze subprogram instantiations. WIP. For #1470Tristan Gingold2020-09-261-2/+101
|
* vhdl: allow conflict design unit name with -frelaxedTristan Gingold2020-09-121-2/+10
| | | | | | Fix #1461 Allow a design unit (package or entity) to have the same name as a library.
* vhdl-sem: handle array attributes in are_trees_equal.Tristan Gingold2020-07-021-0/+10
|
* vhdl: check missing association to generics. Fix #1379Tristan Gingold2020-06-261-5/+5
|
* vhdl: slightly improve error message for libraries.Tristan Gingold2020-06-191-0/+14
|
* vhdl: --std93c is now an alias for --std=93 -frelaxedTristan Gingold2020-06-131-1/+1
| | | | This simplifies the definition of --std=93c
* vhdl-sem: add a todo note.Tristan Gingold2020-03-311-0/+1
|
* vhdl-sem: improve error location for unknown entity.Tristan Gingold2020-02-041-1/+1
|
* vhdl: improve support of AMS-vhdl (array and record natures, source quantities)Tristan Gingold2019-12-281-77/+103
|
* vhdl: handle architecture in verification unit hierarchical name.Tristan Gingold2019-08-201-5/+5
|
* vhdl: parse verification unit (WIP).Tristan Gingold2019-08-171-6/+8
|
* vhdl: declare verification units (WIP).Tristan Gingold2019-08-161-0/+3
|
* vhdl: improve reprint of inertial association.Tristan Gingold2019-08-111-0/+2
|
* vhdl-sem: fix minor thinko for sem_insert_anonymous_signal.Tristan Gingold2019-08-111-1/+24
| | | | Fix #885
* vhdl: set location on reference to the anonymous signal declaration.Tristan Gingold2019-07-141-0/+1
|
* vhdl: cleanup in clear_instantiation_configuration.Tristan Gingold2019-07-131-1/+1
|
* vhdl: translate anonymous_signal_declaration.Tristan Gingold2019-07-031-0/+1
|
* vhdl: add anonymous_signal_declaration.Tristan Gingold2019-07-031-7/+38
|
* vhdl: detect unused signals and variables.Tristan Gingold2019-06-051-10/+19
|
* errorout: add messages group instead of continuation.Tristan Gingold2019-05-121-5/+9
|
* vhdl: extract vhdl.errors from errorout.Tristan Gingold2019-05-081-0/+1
|
* vhdl: renames iir_chains to vhdl.nodes_utils. Remove iir_chain_handling.Tristan Gingold2019-05-061-2/+2
|
* vhdl: move iirs_utils to vhdl.utilsTristan Gingold2019-05-061-1/+1
|