Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | vhdl-fixed-bug-7432 | hake | 2020-02-04 | 1 | -36/+35 |
| | |||||
* | fixed some parser bugs,make parser ready for javacc 7.0.5 | hake | 2020-01-24 | 1 | -65/+111 |
| | |||||
* | Make VHDL parser reentrant | Dimitri van Heesch | 2020-01-03 | 1 | -397/+420 |
| | |||||
* | issue #7436 Incorrect handling of block comments in VHDL | albert-github | 2019-12-11 | 1 | -6/+6 |
| | | | | | | The search for `/*` or /*!` ended at the last `*/` in a file and thus skipping other intermediate block end and new starts. Also the intermediate code was lost see as comment. The filter pattern used was incorrect and should have been `<"/*" (~["*"])* "*" ("*" | ~["*","/"] (~["*"])* "*")* "/">` (thanks to https://javacc.org/contrib/C.jj). Here also the space plus one or more `*` at the end beginning of the line are still incorporated as well as multiple `*` before the colosing `*/` this is also filtered. | ||||
* | Merge pull request #7334 from albert-github/feature/issue_7313_vhdl_subtype | Dimitri van Heesch | 2019-12-10 | 1 | -0/+3 |
|\ | | | | | issue #7313 VHDL attribute 'subtype is not supported and breaks parser | ||||
| * | issue #7313 VHDL attribute 'subtype is not supported and breaks parser | albert-github | 2019-10-18 | 1 | -0/+3 |
| | | | | | | | | Add the `'subtype` construct for variables etc. | ||||
* | | Changed std::unique_ptr<Entry> to std::shared_ptr<Entry> at avoid use after ↵ | Dimitri van Heesch | 2019-12-08 | 1 | -3/+2 |
| | | | | | | | | free issues | ||||
* | | Spelling corrections for vhdl directory | albert-github | 2019-11-04 | 1 | -1/+1 |
|/ | | | | | | | | Spelling corrections as found by codespell and in #561. `assume_guarentee` is not a vhdl keyword, `assume_guarantee` is. A number of spelling errors are in generated code (through javacc) and have been reported upstrean (https://github.com/javacc/javacc/pull/118) Corection of `guarded_signal_specificatio` to `guarded_signal_specification` is not possible as `guarded_signal_specification` exists as well. | ||||
* | Discrepancy between vhdl input and generated sources | albert-github | 2019-10-17 | 1 | -2/+2 |
| | | | | | | The generated vhdl code files (.cc and .h) and didn't match the vhdl input source (vhdlpardser.jj). When regenerating with javacc the vhdl code file they didn't compile. vhdlparser.jj has been corrected. | ||||
* | Use smartpointers to manage the lifetime of Entry objects | Dimitri van Heesch | 2019-10-07 | 1 | -11/+11 |
| | |||||
* | Bug 691689 - Line numbers for examples | Dimitri van Heesch | 2018-08-19 | 1 | -3/+3 |
| | |||||
* | add decimal to base identifier | ogre | 2017-05-10 | 1 | -1/+1 |
| | |||||
* | fixes vhdl literal bug | ogre | 2017-05-09 | 1 | -1/+3 |
| | |||||
* | Bug fix for rendering the VHDL Hierarchy (thanks to a patch by Martin Kreis) | Dimitri van Heesch | 2016-06-05 | 1 | -4/+12 |
| | |||||
* | Changed configuration mechanism to directly access options in order to ↵ | Dimitri van Heesch | 2016-01-17 | 1 | -2/+2 |
| | | | | improve performance | ||||
* | Bug 758495 - Bug in VHDL parser + other fixes | Dimitri van Heesch | 2015-12-20 | 1 | -3/+3 |
| | |||||
* | Various VHDL related fixes | Dimitri van Heesch | 2015-04-27 | 1 | -21/+51 |
| | |||||
* | Various VHDL related fixes | Dimitri van Heesch | 2015-01-02 | 1 | -9/+15 |
| | |||||
* | Fixed a couple of cases where sharing string data could lead to corruption | Dimitri van Heesch | 2015-01-02 | 1 | -1/+1 |
| | | | | | Also made dangerous string access more visible by introducing rawData(). This replaces data() which will now return a constant string. | ||||
* | Various VHDL fixes | Dimitri van Heesch | 2014-11-06 | 1 | -558/+571 |
| | |||||
* | Bug 735767 - [PATCH] Fix potential copy and paste issue in ↵ | Dimitri van Heesch | 2014-09-23 | 1 | -1/+1 |
| | | | | vhdlparser/VhdlParser.cc | ||||
* | Vhdl fixes | Dimitri van Heesch | 2014-08-11 | 1 | -93/+151 |
| | |||||
* | New VHDL parser implementation | Dimitri van Heesch | 2014-08-02 | 1 | -0/+2758 |