aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* lsp/vhdl_ls.py: slightly improve log messageTristan Gingold2021-07-051-1/+1
|
* libghdl: also use dll extension on msysTristan Gingold2021-07-051-1/+2
|
* lsp.py: print python platform and name for disp-configTristan Gingold2021-07-051-0/+3
|
* Read requirement files recursively. Normalize and deduplicate items.Patrick Lehmann2021-07-031-4/+10
|
* ci: test the installation of pyGHDL through pipumarcor2021-07-031-1/+53
|
* lsp.py: fix style (indentation)Tristan Gingold2021-07-031-1/+1
|
* lsp.py: remove oldest file.Tristan Gingold2021-07-031-0/+8
| | | | Partial work for ghdl-language-server#79
* pyHDL: CLI Update for DOM (#1808)Unai Martinez-Corral2021-07-0246-750/+1868
|\
| * Changed dependency files. Fixed a typo.Patrick Lehmann2021-07-026-7/+16
| |
| * Fixed text indentations.Patrick Lehmann2021-07-011-11/+12
| | | | | | | | (cherry picked from commit 2dc7659fc1a8300ccf1a414c742beb15bffd6f1d)
| * Fixed bug in OthersAggregateElement.Patrick Lehmann2021-07-012-5/+3
| |
| * Pin pyVHDLModel to v0.11.1.Patrick Lehmann2021-07-011-2/+2
| |
| * Fixed rename operation in Git.Patrick Lehmann2021-07-011-0/+0
| |
| * Satisfy black.Patrick Lehmann2021-07-012-39/+113
| |
| * Simplified test code for literals.Patrick Lehmann2021-07-011-28/+31
| |
| * New command line interface for DOM.Patrick Lehmann2021-07-015-84/+267
| |
| * Added package declarations inside of declarations.Patrick Lehmann2021-07-014-1/+53
| | | | | | | | | | Added PSL Default clock (dummy). Added Disconnect specification (dummy).
| * Extended attribute specification.Patrick Lehmann2021-07-012-12/+79
| |
| * Exchanged sides in asserts to the understanding of pytests actual vs. ↵Patrick Lehmann2021-07-015-22/+17
| | | | | | | | expected order.
| * Improved test code.Patrick Lehmann2021-07-014-10/+10
| |
| * Minor changes.Patrick Lehmann2021-07-014-8/+8
| |
| * Renamed '[sS]ubType' to '[sS]ubtype'.Patrick Lehmann2021-07-0110-184/+212
| |
| * Preparations for PSL.Patrick Lehmann2021-07-013-2/+127
| |
| * Reworked scalar types created from ranges.Patrick Lehmann2021-07-013-12/+17
| |
| * Added missing operators, especially matching operators.Patrick Lehmann2021-07-012-8/+90
| |
| * Added Allocations.Patrick Lehmann2021-07-012-1/+35
| |
| * Renamed '_?[nN]ame: str' to '_?[iI]dentifier: str'.Patrick Lehmann2021-07-0111-113/+112
| |
| * Rework and fine tuning.Patrick Lehmann2021-07-017-53/+124
| |
| * Reworked symbols.Patrick Lehmann2021-07-013-39/+35
| |
| * Minor improvements.Patrick Lehmann2021-07-011-174/+71
| |
| * Fixed MRO problems.Patrick Lehmann2021-07-013-32/+25
| |
| * Current state.Patrick Lehmann2021-07-012-14/+15
| |
| * Fix Codacy problems.Patrick Lehmann2021-07-0116-6/+432
| |
| * WIP: Handle more generic interface kinds.Patrick Lehmann2021-07-013-18/+97
| | | | | | | | (cherry picked from commit 6b5606852371bdd8bdc9c8a3dcd38ef8e7eecbc9)
| * Added missing import.Patrick Lehmann2021-07-013-3/+3
|/
* adjust previous commit (no identifier in Psl_Default_Clock)Tristan Gingold2021-07-015-4/+5
|
* vhdl-nodes: remove Identifier from Psl_Default_ClockTristan Gingold2021-06-306-670/+681
|
* pyGHDL: Added DLL search path for Python ≥3.8. (#1811)Patrick Lehmann2021-06-302-10/+22
| | | | | | | | | | | * Added DLL search path for Python ≥3.8. Let Windows CPython 64-bit execute GHDL in msys64/mingw64. * Fix executable name of Python based on the current environment. (cherry picked from commit 618c8149df1fa53d06cb197d65b3b10a02ae52ee) * Removed debug code.
* testsuite/gna: add a test for #1810Tristan Gingold2021-06-302-0/+21
|
* vhdl: handle mod/rem for physical. Fix #1810Tristan Gingold2021-06-304-1/+23
|
* synth: minor renaming in netlists-memoriesTristan Gingold2021-06-303-10/+11
|
* src/ortho: adjust constructor for codacy warning.Tristan Gingold2021-06-301-1/+1
| | | | Not sure how legitimate it is.
* Codacy issues, Travis cleanup and update ghdl.texi (#1807)Unai Martinez-Corral2021-06-2695-3394/+45956
| | | | | | | | | | | | | | | | | | | * ghw: fix memleaks reported by codacy * ghw: printf issues and style (GNU indent) * testsuite/gna: minor printf issues * testsuite: fix issues reported by codacy * scripts/ci-run: clean travis stuff (deprecated) * scripts: fix issues reported by codacy * doc/Makefile: add .PHONY * doc: update ghdl.texi * testsuite/synth: use synth_tb
* More DOM improvements (#1806)Patrick Lehmann2021-06-2630-564/+1640
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * First try to handle names. * Reworked names. * Reworked range expressions. * Handle AttributeNames. * Added handling of file declaration and attribute declarations. * Improved error outputs. * Handle protected types. * Make black happy with ugly code. * Handle Null literal and File parameters. * File type and physical type. * Don't fail on reported syntax errors. Catch call errors into libghdl. * Improved Sanity checks for pyGHDL.dom. * Load sourcecode via Python and process in-memory. Fixed testcases. * Added package instantiations and packages with generics. * Added UseClause, AttributeSpecification and PhysicalTypes. * Improved pretty-printing. * Fixed AttributeName in subtype indication. * Get code position of IIR nodes. * Added DOMMixin into all derived classes. * Mark as not yet implemented. * Pinned pyVHDLModel version to v0.10.4. * Removed xfail in LSP test. Bumped requirement of pyVHDLModel to v0.10.4. Fixed some Codacy issues. (cherry picked from commit f64e7ed7c3d69cbf84cd60db8e9b085e90b846cb)
* vhdl-nodes: do not reset free hooks on initializationTristan Gingold2021-06-263-2/+2
|
* synth-vhdl_context.adb(Is_Full): consider fractional words.Tristan Gingold2021-06-231-2/+16
|
* Fix more codacy issuesPatrick Lehmann2021-06-2311-31/+32
|\
| * fix more codacy issuesumarcor2021-06-2311-31/+32
|/
* DOM: Functions and types (#1804)Unai Martinez-Corral2021-06-2327-627/+1186
|\
| * Minor fixes and pinned pyVHDLModel version to v0.10.3.Patrick Lehmann2021-06-233-5/+5
| |