aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* are_trees_equal: handle type_conversion.Tristan Gingold2016-12-121-0/+15
| | | | Fix #223
* ghdlprint: do not canon associations.Tristan Gingold2016-12-123-0/+8
|
* canon: can canon expressions without canon concurrent statements.Tristan Gingold2016-12-122-150/+187
|
* ghdlcomp: extract disp_config as a procedure.Tristan Gingold2016-12-122-9/+19
|
* ownership: fix ghdlsimulTristan Gingold2016-12-124-29/+56
|
* travis: use CLANGXX instead of CXXTristan Gingold2016-12-121-3/+3
|
* errorout: add set_program_name.Tristan Gingold2016-12-113-26/+57
| | | | ghdlmain: use errorout.
* Add testcase for #202Tristan Gingold2016-12-112-28/+8
|
* Rework subprograms translation for package instance.Tristan Gingold2016-12-112-11/+11
| | | | Fix #202
* Set pure on implicit interface function.Tristan Gingold2016-12-081-0/+1
| | | | Fix #204
* Add tests for oread (some are old)Tristan Gingold2016-12-0881-0/+1353
|
* Allow operator symbol as formal name.Tristan Gingold2016-12-085-16/+33
| | | | For #205
* sem_names: handle expanded name of interface subprograms.Tristan Gingold2016-12-081-1/+8
|
* sem_inst: set hash for interface subprograms.Tristan Gingold2016-12-081-1/+2
|
* sem_assocs.Extract_Non_Object_Association: fix when multiple assocs.Tristan Gingold2016-12-081-3/+8
|
* Errorout.Disp_Subprg: handle interface subprograms.Tristan Gingold2016-12-081-4/+7
|
* Merge pull request #215 from robinkjoy/mastertgingold2016-12-071-2/+2
|\ | | | | Fix spelling in error message
| * Fix spelling in error messageRobin Joy2016-12-071-2/+2
| |
* | Add xrefs for interface_subprograms.Tristan Gingold2016-12-062-0/+2
| |
* | disp_vhdl: handle association_element_subprogram.Tristan Gingold2016-12-061-1/+2
| |
* | are_trees_equal: handle function_callTristan Gingold2016-12-061-0/+6
| | | | | | | | Fixes #212
* | Use -fpic if gcc is configured with --enable-default-pieTristan Gingold2016-12-065-13/+57
|/ | | | | | | | Test in configure and set Default_Pie in default_pathes.ads Pass -fpic to ghdl1 if Default_Pie is set. Decode -fpic in ghdl1_llvm Fix #213
* cleanup: remove Package_Instantiation_Bodies_ChainTristan Gingold2016-12-057-280/+188
|
* disp_tree: avoid a crash on Ref list.Tristan Gingold2016-12-051-0/+2
|
* vhdl08: support top-level macro-expanded package instantiation declarations.Tristan Gingold2016-12-058-151/+186
| | | | Fixes #199
* sem_assocs: handle overloaded operators for interface_functionTristan Gingold2016-12-055-269/+320
| | | | For #199
* parse: improve error message on missing 'generic map'Tristan Gingold2016-12-051-0/+9
|
* implement vpi_free_objectSijmen Woutersen2016-11-161-5/+13
|
* Handle top-level instantiation of macro-expansed packages.Tristan Gingold2016-11-124-18/+49
| | | | Fix #199
* WIP for nested instantiation of macro-expansed packages.Tristan Gingold2016-11-123-23/+34
|
* support operator_symbol in subprogram association.Tristan Gingold2016-11-122-6/+16
| | | | Fix #197
* improve error message for a procedure call within an expression.Tristan Gingold2016-11-121-1/+2
|
* scanner: emit better error message for UTF-8 quote marks.Tristan Gingold2016-11-111-4/+51
|
* iirs: add Iir_Predefined_IEEE_Explicit subtype.Tristan Gingold2016-11-111-0/+5
|
* Add dyn_tables package, rewrite tables using dyn_tables.Tristan Gingold2016-11-084-99/+256
|
* win32.c: install SEH handler only on i386Tristan Gingold2016-11-061-3/+9
|
* ownership: check tree after sem and canon.Tristan Gingold2016-11-0524-544/+737
|
* Merge pull request #184 from Jonsba/jonsba/signals_selectiontgingold2016-11-0212-147/+254
|\ | | | | Support added for * and **. Current version set to 1.1
| * Support added for * and **. Please note that wildcards inside names like ↵Jonas Baggett2016-11-0212-147/+254
| | | | | | | | | | | | /top/sub*/... are not supported yet, only synthax like /top/*/... works for now. Support for wildcards inside names will be added on version 1.2, at the same time as simple regexp support. Current version set to 1.1
* | name_table: auto-initialize.Tristan Gingold2016-11-014-14/+22
|/
* There is a new --write-opt-file option that will create a wave option file ↵Jonas Baggett2016-11-0113-272/+423
| | | | | | | with all the signals of the design. (#179) The --wave-opt-file option is renamed to --read-opt-file for consistency Some code cleanup and bug fixes
* ghdlxml: display image of string_literal8Tristan Gingold2016-11-014-4/+32
| | | | Fix #176
* Makefiles: use gnatmake instead of gcc to compile single Ada files.Tristan Gingold2016-11-011-11/+6
|
* vhdl08: allow unaffected in sequential signal assignments.Tristan Gingold2016-11-0110-30/+106
|
* canon: use vhdl08 for concurrent selected signal assignment.Tristan Gingold2016-11-011-28/+56
|
* Fix a crash for a simple 'unaffected'.Tristan Gingold2016-11-011-1/+4
|
* Add translation for selected signal assignment.Tristan Gingold2016-11-018-139/+355
|
* translation of case: rewrite as generic code (preliminary work).Tristan Gingold2016-11-012-96/+87
|
* Create version.ads from git hash/date in version.adsTristan Gingold2016-10-201-1/+1
| | | | Fix #161
* Add a dash in version.Tristan Gingold2016-10-201-2/+2
| | | | Fix #173