aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/register.h
Commit message (Collapse)AuthorAgeFilesLines
* Use C++11 final/override keywords.whitequark2020-06-181-6/+6
|
* Pass some more args by reference in select.ccRupert Swarbrick2020-05-271-1/+1
| | | | | | | | | Before this patch, the code passed around std::string objects by value. It's probably not a hot-spot, but it can't hurt to avoid the copying. Removing the copy and clean-up code means the resulting code is ~6.1kb smaller when compiled with GCC 9.3 and standard settings.
* Add ScriptPass::run_nocheck and use for abc9David Shah2020-03-091-0/+1
| | | | Signed-off-by: David Shah <dave@ds0.me>
* Add log_experimental() and experimental() API and "yosys -x"Claire Wolf2020-01-271-0/+5
| | | | Signed-off-by: Claire Wolf <clifford@clifford.at>
* Add Pass::on_register() and Pass::on_shutdown()Clifford Wolf2020-01-091-0/+3
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Open aig frontend as binary fileMiodrag Milanovic2019-09-291-1/+1
|
* Support binary files for backends, fixes #1407Miodrag Milanovic2019-09-281-1/+1
|
* Consistent use of 'override' for virtual methods in derived classes.Henner Zeller2018-07-201-7/+7
| | | | | | | | | 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)
* Added ScriptPass helper class for script-like passesClifford Wolf2016-03-311-0/+17
|
* Fixed trailing whitespacesClifford Wolf2015-07-021-2/+2
|
* Fixed clang (svn trunk) warningsClifford Wolf2015-02-181-2/+2
|
* Fixed eval_select_op() apiClifford Wolf2015-02-081-1/+1
|
* Added eval_select_args() and eval_select_op()Clifford Wolf2015-02-081-0/+2
|
* Introducing YS_OVERRIDE, YS_FINAL, YS_ATTRIBUTE, YS_NORETURNClifford Wolf2014-11-091-2/+2
|
* Changed frontend-api from FILE to std::istreamClifford Wolf2014-08-231-4/+4
|
* Changed backend-api from FILE to std::ostreamClifford Wolf2014-08-231-10/+6
|
* Fixed build with gcc-4.6Clifford Wolf2014-08-071-2/+2
|
* Added per-pass cpu usage statisticsClifford Wolf2014-08-011-2/+11
|
* Moved some stuff to kernel/yosys.{h,cc}, using Yosys:: namespaceClifford Wolf2014-07-311-6/+8
|
* Added write_file commandClifford Wolf2014-07-301-2/+2
|
* Added "kernel/yosys.h" and "kernel/yosys.cc"Clifford Wolf2014-07-301-18/+0
|
* Added support for here documentsClifford Wolf2014-07-261-1/+5
|
* Added "cover" commandClifford Wolf2014-07-241-4/+5
|
* Added call_on_selection() and call_on_module() APIClifford Wolf2014-07-201-2/+5
|
* - kernel/register.h, kernel/driver.cc: refactor ↵Siesh1oo2014-03-121-2/+2
| | | | | | | rewrite_yosys_exe()/get_share_file_name() to portable proc_self_dirname()/proc_share_dirname(). This refactoring improves robustness and allows OSX support with only 7 new lines of code, and easy extension for other systems. - passes/abc/abc.cc, passes/cmds/show.cc, passes/techmap/techmap.cc: use new, refactored semantics.
* Added "design -push" and "design -pop"Clifford Wolf2014-02-201-0/+4
|
* Added echo commandClifford Wolf2014-02-071-0/+1
|
* Added Pass:call_newsel APIClifford Wolf2013-12-021-0/+3
|
* Write yosys version to output filesClifford Wolf2013-11-031-0/+3
|
* Added API and Makefile rules for share/ filesClifford Wolf2013-10-271-0/+1
|
* Improved readline tab completionClifford Wolf2013-06-091-1/+1
|
* Look for yosys-abc and yosys-svgviewer where the main exe isClifford Wolf2013-06-091-1/+4
|
* Only initialize TCL interpreter when neededClifford Wolf2013-05-231-2/+2
|
* Improved/simplified TCL bindingsClifford Wolf2013-05-011-1/+0
|
* Added -color <color> <selection> option to show commandClifford Wolf2013-04-011-0/+3
|
* Implemented TCL support (only via -c option at the moment)Clifford Wolf2013-03-281-0/+7
|
* Implemented general handler for selection argumentsClifford Wolf2013-03-031-1/+1
|
* Added "help" commandClifford Wolf2013-02-281-4/+4
|
* Improvements in command shellClifford Wolf2013-01-061-0/+9
| | | | | | - Added 'shell' command (run interactive shell from synth script) - Added support for ; as cmd seperator as in "proc; opt" - Fixed c++ static initialization order problem with pass register
* initial importClifford Wolf2013-01-051-0/+80