aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* vhdl-sem.adb: fix incorrect check for conformance rulesTristan Gingold2021-12-031-1/+3
|
* synth: adjustments for foreign_moduleTristan Gingold2021-11-281-0/+2
|
* vhdl-parse: improve error message for empty recordsTristan Gingold2021-11-281-29/+33
|
* vhdl/translate: handle target aggregate with unbounded names. Fix #1914Tristan Gingold2021-11-244-22/+75
|
* vhdl-sem_decls: avoid a crash on invalid alias name. Fix #1919Tristan Gingold2021-11-211-0/+10
|
* vhdl-utils.adb: minor refactoringTristan Gingold2021-11-171-7/+3
|
* grt: refactoring to fix build failure. For #1913Tristan Gingold2021-11-171-2/+1
|
* Add commentsTristan Gingold2021-11-171-0/+2
|
* vhdl-evaluation: use grt to compute value attribute for integers.Tristan Gingold2021-11-171-6/+17
| | | | For #1913
* vhdl-evaluation: catch bad parameter for value attribute. Fix #1913Tristan Gingold2021-11-151-1/+7
|
* vhdl-sem_expr: improve code generation for multi-dim aggregatesTristan Gingold2021-11-151-3/+3
|
* vhdl: recognize ror/rol from ieee.numeric_std. For #1909Tristan Gingold2021-11-112-4/+20
|
* vhdl: Iir_Kind_Foreign_Module is now a library unitTristan Gingold2021-11-0919-618/+687
| | | | | (instead of a design unit). Also, add Iir_Kind_Foreign_Vector_Type_Definition
* vhdl-configuration: stop earlier in case of error. Fix #1908Tristan Gingold2021-11-051-17/+19
|
* vhdl/psl: handle PSL inherit spec. For #1899Tristan Gingold2021-11-056-39/+115
|
* vhdl: parse PSL inherit spec. For #1899Tristan Gingold2021-11-049-362/+422
|
* vhdl: add tok_inherit. Preliminary work for #1899Tristan Gingold2021-11-033-0/+5
|
* trans-chap7: convert to base type for array-element operation. For #1898Tristan Gingold2021-11-031-3/+5
|
* synth: Support alias declarations in vunittmeissner2021-11-023-3/+9
|
* synth: do full elaboration before synthesisTristan Gingold2021-11-012-29/+43
|
* vhdl: also warns on unused enumeration literalTristan Gingold2021-11-015-219/+256
|