aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/extract_counter.cc
Commit message (Collapse)AuthorAgeFilesLines
* extract_counter: Implement extracting up countersR. Ou2020-02-171-65/+247
|
* extract_counter: Add support for inverted clock enableR. Ou2020-02-171-8/+28
|
* extract_counter: Fix clock enableR. Ou2020-02-171-1/+3
|
* extract_counter: Fix outputting count to module portR. Ou2020-02-171-8/+20
|
* extract_counter: Allow forbidding async resetR. Ou2020-02-171-2/+17
|
* extract_counter: Refactor out extraction settings into structR. Ou2020-02-171-17/+43
|
* Use more ID::{A,B,Y,blackbox,whitebox}Eddie Hung2019-08-151-19/+19
|
* ID(\\.*) -> ID(.*)Eddie Hung2019-08-151-69/+69
|
* Transform all "\\*" identifiers into ID()Eddie Hung2019-08-151-69/+69
|
* Transform "$.*" to ID("$.*") in passes/techmapEddie Hung2019-08-151-7/+7
|
* 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)
* Fixed bug where counter extraction on non-GreenPAK devices incorrectly ↵Andrew Zonenberg2017-09-141-32/+27
| | | | handled parallel counter output
* Added support for inferring counters with reset to full scale instead of zeroAndrew Zonenberg2017-09-141-4/+11
|
* Added RESET_TO_MAX parameter to $__COUNT_ cell. Cannot yet be extracted.Andrew Zonenberg2017-09-141-0/+1
|
* Added support for inferring counters with active-low resetAndrew Zonenberg2017-09-141-6/+15
|
* Initial support for extraction of counters with clock enableAndrew Zonenberg2017-09-141-9/+66
|
* Fixed typo in comment. Fixed bug where extract_counter would create up ↵Andrew Zonenberg2017-09-141-2/+2
| | | | counters when it meant to create down counters.
* extract_counter: Added optimizations to remove unused high-order bitsAndrew Zonenberg2017-08-301-16/+34
|
* extract_counter: Minor changes requested to comply with upstream policy, ↵Andrew Zonenberg2017-08-301-3/+4
| | | | fixed a few typos
* Finished refactoring counter extraction to be nice and generic. Implemented ↵Andrew Zonenberg2017-08-281-11/+25
| | | | techmapping from $__COUNT_ to GP_COUNTx cells.
* Refactored extract_counter to be generic vs GreenPAK specificAndrew Zonenberg2017-08-281-51/+87
|
* Refactoring: Renamed greenpak4_counters pass to extract_counter, moved it to ↵Andrew Zonenberg2017-08-281-0/+513
techmap/ since it's going to become a generic pass