aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Improved testcase ' SimpleEntity' for pyGHDL.dom.Patrick Lehmann2020-12-283-9/+25
|
* Fixed typo in 'ghdl-ls'.Patrick Lehmann2020-12-281-1/+1
|
* Renamed testcase to SimpleEntity.Patrick Lehmann2020-12-282-0/+0
|
* Merge sub tests into one test due to test case ordering and possible ↵Patrick Lehmann2020-12-282-25/+9
| | | | parallel execution.
* Translatest `python/units01` test to a unit test in Python.Patrick Lehmann2020-12-282-8/+95
|
* Merge remote-tracking branch 'github-umarcor/py/GHDL' into paebbels/pyGHDLPatrick Lehmann2020-12-283-132/+129
|\
| * pyGHDL: move 'lsp/main.py' to 'cli/ghdl-ls.py'umarcor2020-12-273-132/+129
| |
* | Added a minimal README for pyGHDL.Patrick Lehmann2020-12-281-0/+12
| |
* | Added requirements for Python test.Patrick Lehmann2020-12-282-0/+5
| |
* | Added structure for unit tests for Python code.Patrick Lehmann2020-12-272-0/+44
| |
* | Added settings for Python's Coverage package.Patrick Lehmann2020-12-271-0/+12
| |
* | Make pyGHDL/cli a Python package.Patrick Lehmann2020-12-271-0/+0
| |
* | Added Python requirements.Patrick Lehmann2020-12-271-0/+2
| |
* | Reorganized gitignore.Patrick Lehmann2020-12-271-9/+33
| |
* | Added first implementation of a document object model (DOM).Patrick Lehmann2020-12-275-0/+281
| |
* | Merge remote-tracking branch 'github-umarcor/py/GHDL' into paebbels/pyGHDLPatrick Lehmann2020-12-2744-55/+52
|\|
| * rework 'python', rename to 'pyGHDL'umarcor2020-12-2744-55/+52
|/ | | | | | | | | | * Rename 'python' to 'pyGHDL'. * Let 'thin' be 'libghdl'. * Move move 'pyutils.py' from 'python/libghdl/vhdl' to a separate package ('pyGHDL/libghdl/utils/'). * Update 'vhdl_langserver' accordingly. * Rename 'vhdl_langserver' to 'lsp'. * Move 'ghdl-ls' to 'pyGHDL/cli'.
* testsuite/python: adjust tests for previous commit. For #1551Tristan Gingold2020-12-262-3/+4
|
* libraries: Load_Std_Library: now return a status.Tristan Gingold2020-12-2612-40/+123
| | | | | | Propagate this change to libghdl and python binding to avoid abort. For #1551
* testsuite/python/units01: install error handlerTristan Gingold2020-12-262-0/+7
|
* testsuite/synth: add tests for #1540Tristan Gingold2020-12-203-0/+38
|
* synth: handle static to_bit and to_bitvector. Fix #1540Tristan Gingold2020-12-203-0/+60
|
* py: run blackeine2020-12-162-723/+446
|
* testsuite/synth: add tests for #1537Tristan Gingold2020-12-143-0/+37
|
* synth-static_oper: handle to_x01. Fix #1537Tristan Gingold2020-12-141-0/+26
|
* testsuite/synth: adjust harness for #1534Tristan Gingold2020-12-131-1/+3
|
* testsuite/synth: add a test for #1536Tristan Gingold2020-12-133-0/+39
|
* synth-oper: handle more conversions. Fix #1536Tristan Gingold2020-12-131-1/+3
|
* testsuite/synth: more tests for #1534Tristan Gingold2020-12-133-0/+41
|
* synth-static_oper: handle bit xor (scalar and array). Fix #1534Tristan Gingold2020-12-131-2/+23
|
* testsuite/synth: add test for #1534Tristan Gingold2020-12-132-0/+22
|
* synth-static_oper: handle to_stdulogic. For #1534Tristan Gingold2020-12-133-11/+33
|
* testsuite/synth: add a test for previous commitTristan Gingold2020-12-123-0/+85
|
* synth-expr: improve handling of null element in a recordTristan Gingold2020-12-121-1/+5
|
* synth-static_oper: handle xor reduceTristan Gingold2020-12-121-0/+2
|
* testsuite/synth: add a test for previous commitTristan Gingold2020-12-125-0/+112
|
* synth: improve handling of null-range nets.Tristan Gingold2020-12-123-6/+35
|
* synth-insts: comment assert for gcc/gnat-11. Fix #1533Tristan Gingold2020-12-111-1/+4
|
* testsuite/gna: add a test for #1528Tristan Gingold2020-12-088-0/+226
|
* vhdl: handle locally static attributes on entity/architecture/configurationsTristan Gingold2020-12-0810-1467/+1832
| | | | | | | | | | | | | 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
* synth-stmts: avoid a crash on empty memories.Tristan Gingold2020-12-081-1/+4
|
* readme: update URLseine2020-12-071-6/+6
|
* testsuite/synth: add a testcase for #1531Tristan Gingold2020-12-065-0/+94
|
* synth: handle static resize from std_numeric. Fix #1531Tristan Gingold2020-12-062-2/+5
|
* synth-oper: simplify synth_dyadic_vec_log. For #1520Tristan Gingold2020-12-041-10/+4
|
* synth-oper: Support Iir_Predefined_Enum_Greater{,_Equal}Xiretza2020-12-045-0/+108
|
* testsuite/synth: add a test for #1520Tristan Gingold2020-12-033-0/+149
|
* synth: handle dyadic logical vec/log operations. Fix #1520Tristan Gingold2020-12-031-2/+52
|
* vhdl: recognize logica vec/log and log/vec operators. For #1520Tristan Gingold2020-12-032-0/+96
|
* synth-expr.adb: avoid crash on unhandled ieee operator. For #1520Tristan Gingold2020-12-031-7/+16
|