aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl
Commit message (Collapse)AuthorAgeFilesLines
* vhdl-errors(disp_node): change message for generate bodyTristan Gingold2022-05-141-1/+1
|
* fix: avoid "pragma Unreferenced given" warnings with GCC 12Xiretza2022-05-141-1/+1
|
* fix: avoid "unnecessary with of ancestor [-gnatwr]" with GCC 12Xiretza2022-05-141-1/+1
|
* vhdl-canon: export extract_waveform_sensitivityTristan Gingold2022-05-121-2/+5
|
* trans_analyzes.adb: reindentTristan Gingold2022-05-121-3/+2
|
* vhdl: consider fully static record aggregates. Fix #2051Tristan Gingold2022-05-074-26/+83
|
* vhdl-sem.adb(are_trees_equal): handle selected element. Fix #2050Tristan Gingold2022-05-061-0/+4
|
* vhdl-sem_names: second fix for #2048Tristan Gingold2022-05-031-1/+2
|
* vhdl-sem_names(sem_selected_by_all_name): avoid a crashTristan Gingold2022-05-021-0/+4
| | | | | Emit an error message on invalid library declaration prefix. Fix #2048
* vhdl-sem_assocs: avoid a crash after forced analysisTristan Gingold2022-05-021-0/+5
|
* vhdl-annotations: do not annotate type for signal attributesTristan Gingold2022-04-291-2/+0
|
* vhdl-nodes: reorder, add iir_kinds_structural_statementTristan Gingold2022-04-291-9/+17
|
* synth: renaming (synth-static_oper -> synth-vhdl_eval)Tristan Gingold2022-04-271-5/+4
|
* vhdl-sem_expr: minor renamingTristan Gingold2022-04-271-3/+6
|
* vhdl-sem_expr: add a commentTristan Gingold2022-04-271-0/+21
|
* synth-static_oper: handle bit/boolean array element operationsTristan Gingold2022-04-271-3/+3
| | | | | (at least and). Fix #1898
* vhdl: handle static expressions with ieee operationsTristan Gingold2022-04-262-12/+370
|
* vhdl: avoid a crash after errors in associations for packagesTristan Gingold2022-04-223-96/+115
|
* vhdl-sem_names.adb: avoid a crash on incorrect type markTristan Gingold2022-04-202-1/+12
|
* trans-chap2.adb: adjust owner_subtype for instantiations. Fix #2026Tristan Gingold2022-04-152-0/+39
|
* vhdl-sem_names(sem_check_all_sensitized): only consider interface signalTristan Gingold2022-04-152-3/+14
|
* synth: handle type declarations in vunit. Fix #2034Tristan Gingold2022-04-133-1/+5
|
* synth: add support for subtype declaration in vunits. Fix #2033Tristan Gingold2022-04-133-232/+241
|
* vhdl-sem.adb: adjust location of error message. Fix #2031Tristan Gingold2022-04-111-1/+1
|
* synth: do not add info for element subtype (except for arrays).Tristan Gingold2022-04-052-31/+22
| | | | Fix #2021
* translate: adjust null access check: add an explicit check.Tristan Gingold2022-03-263-31/+52
|
* trans-chap6: add an explicit memory access during fat access deferenceTristan Gingold2022-03-251-0/+10
| | | | to catch NULL access
* grt: extract grt-vhdl_types from grt-typesTristan Gingold2022-03-221-0/+2
|
* vhdl-19: analyze return identifierTristan Gingold2022-03-161-0/+18
|
* vhdl: check access type restrictions also on completion. Fix #2006Tristan Gingold2022-03-133-25/+32
|
* vhdl: check association restrictions for operators. Fix #1999Tristan Gingold2022-03-113-170/+181
|
* vhdl-sem_names: fix a crash with select of element attribute. Fix #1992Tristan Gingold2022-03-041-1/+2
|
* vhdl: parse return identifier (v19)Tristan Gingold2022-03-045-210/+284
|
* vhdl-sem_decls: allow out/inout parameters to impure function in VHDL-2019Xiretza2022-03-011-3/+15
| | | | | This implements LCS-2016-002: http://www.eda-twiki.org/cgi-bin/view.cgi/P1076/LCS2016_002
* vhdl-sem_types: allow methods to return file and protected types in -2019Xiretza2022-03-011-1/+3
| | | | | | This implements LCS2016_004: http://www.eda-twiki.org/cgi-bin/view.cgi/P1076/LCS2016_004
* vhdl-sem_types: allow file and protected type access types in -2019Xiretza2022-03-011-7/+12
| | | | | This implements LCS-2016-014a: http://www.eda-twiki.org/cgi-bin/view.cgi/P1076/LCS2016_014a
* Add --std=19Xiretza2022-02-282-2/+3
| | | | | | Currently, all behaviour is the same as for --std=08, except for the standard library search path. No standard libraries exist yet, so running ghdl with --std=19 will fail.
* trans-chap6.adb: fix minor typing issueTristan Gingold2022-02-261-2/+11
|
* vhdl-sem_psl.adb: don't crash on overload in HDL expr. Fix #1979Tristan Gingold2022-02-241-2/+12
|
* synth: fix handling of record constraints in subtype. Fix #1961Tristan Gingold2022-02-221-4/+19
|
* synth: do not annotate generic types in package. Fix #1949Tristan Gingold2022-01-151-1/+4
|
* vhdl: add commentsTristan Gingold2022-01-151-1/+6
|
* synth: handle macro-expanded package body. Fix #1948Tristan Gingold2022-01-141-4/+12
|
* synth: refine handling of interface type. Fix #1944Tristan Gingold2022-01-101-6/+16
|
* trans-chap2.adb: handle Kind_Component in Copy_Info. Fix #1943Tristan Gingold2022-01-091-1/+8
|
* vhdl-sem_types: handle record in reparse_as_array_constraint. Fix #1934Tristan Gingold2022-01-091-0/+3
|
* vhdl-sem_decls: copy subtype indication also for files. Fix #1936Tristan Gingold2021-12-281-0/+3
|
* synth: handle interface type in generics. For #412Tristan Gingold2021-12-151-3/+8
|
* ghdldrv: handle generic overrides on foreign unitsTristan Gingold2021-12-132-21/+54
|
* vhdl-sem_expr.adb: avoid a crash after forced analysisTristan Gingold2021-12-131-1/+2
|