aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/json
Commit message (Collapse)AuthorAgeFilesLines
* fix handling of escaped chars in json backend and frontendN. Engelhardt2022-02-181-3/+31
|
* Fixing old e-mail addresses and deadnamesClaire Xenia Wolf2021-06-081-1/+1
| | | | | | | | s/((Claire|Xen|Xenia|Clifford)\s+)+(Wolf|Xen)\s+<(claire|clifford)@(symbioticeda.com|clifford.at|yosyshq.com)>/Claire Xenia Wolf <claire@yosyshq.com>/gi; s/((Nina|Nak|N\.)\s+)+Engelhardt\s+<nak@(symbioticeda.com|yosyshq.com)>/N. Engelhardt <nak@yosyshq.com>/gi; s/((David)\s+)+Shah\s+<(dave|david)@(symbioticeda.com|yosyshq.com|ds0.me)>/David Shah <dave@ds0.me>/gi; s/((Miodrag)\s+)+Milanovic\s+<(miodrag|micko)@(symbioticeda.com|yosyshq.com)>/Miodrag Milanovic <micko@yosyshq.com>/gi; s,https?://www.clifford.at/yosys/,http://yosyshq.net/yosys/,g;
* Remove duplicates from conns array in JSON front-end, fixes #2736Claire Xenia Wolf2021-04-261-0/+4
|
* json: Add support for memories.Marcelina Kościelnicka2021-03-151-0/+46
| | | | | | | | | | | | | | Previously, memories were silently discarded by the JSON backend, making round-tripping modules with them crash. Since there are already some users using JSON to implement custom external passes that use memories (and infer width/size from memory ports), let's fix this by just making JSON backend and frontend support memories as first-class objects. Processes are still not supported, and will now cause a hard error. Fixes #1908.
* frontend: json: parse negative valuesKarol Gugala2021-02-231-2/+10
| | | | Signed-off-by: Karol Gugala <kgugala@antmicro.com>
* Use C++11 final/override keywords.whitequark2020-06-181-2/+2
|
* frontends/json/jsonparse.cc: Like the upto field read_json can also read the ↵Vamsi K Vytla2020-04-271-1/+6
| | | | signedness of a wire
* Update JSON front-end to process new attr/param encodingClifford Wolf2019-08-011-23/+34
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Add upto and offset to JSON portsMiodrag Milanovic2019-06-211-0/+12
|
* Fix typoMiodrag Milanovic2019-06-211-1/+1
|
* Added JSON upto and offsetClifford Wolf2019-06-211-0/+12
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Consistent use of 'override' for virtual methods in derived classes.Henner Zeller2018-07-201-2/+2
| | | | | | | | | o Not all derived methods were marked 'override', but it is a great feature of C++11 that we should make use of. o While at it: touched header files got a -*- c++ -*- for emacs to provide support for that language. o use YS_OVERRIDE for all override keywords (though we should probably use the plain keyword going forward now that C++11 is established)
* Parse reals as string in JSON front-endClifford Wolf2017-09-261-0/+28
|
* json: Parse inout correctly rather than as an outputRobert Ou2017-08-141-0/+1
|
* Add attributes and parameter support to JSON front-endClifford Wolf2017-07-101-7/+50
|
* Add JSON front-endClifford Wolf2017-07-082-0/+472