summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Added SIMLIB_NOLUT to simlib.vClifford Wolf2014-04-02
|
* Added SIMLIB_NOSR to simlib.vClifford Wolf2014-04-02
|
* Added support for dlatchsr cellsClifford Wolf2014-03-31
|
* Fixed mapping of Verific WIDE_DFFRS operatorClifford Wolf2014-03-20
|
* Fixed mapping of Verific FADD primitive with unconnected outputsClifford Wolf2014-03-20
|
* Fixed performance problem in opt_mux with nets driven by many conflicting ↵Clifford Wolf2014-03-19
| | | | drivers
* Progress in Verific bindingsClifford Wolf2014-03-17
|
* Fixed typo in RTLIL::Module::addAdff()Clifford Wolf2014-03-17
|
* Progress in Verific bindingsClifford Wolf2014-03-17
|
* Progress in Verific bindingsClifford Wolf2014-03-17
|
* Added support for memories to verific bindingsClifford Wolf2014-03-16
|
* Use Verific Net::{IsGnd,IsPwr} API in Verific bindingsClifford Wolf2014-03-16
|
* Fixed typo in RTLIL::Module::{addSshl,addSshr}Clifford Wolf2014-03-15
|
* Progress in Verific bindingsClifford Wolf2014-03-15
|
* Progress in Verific bindingsClifford Wolf2014-03-15
|
* Progress in Verific bindingsClifford Wolf2014-03-15
|
* Added RTLIL::Module::add{Dff,Dffsr,Adff,Dlatch}Gate() APIClifford Wolf2014-03-15
|
* Progress in Verific bindingsClifford Wolf2014-03-14
|
* Added log_dump() support for generic pointersClifford Wolf2014-03-14
|
* Progress in Verific bindingsClifford Wolf2014-03-14
|
* Added RTLIL::Module::Add{Inv,And,Or,Xor,Mux}Gate APIClifford Wolf2014-03-14
|
* Progress in Verific bindingsClifford Wolf2014-03-13
|
* Copy Verific vdbs files to Yosys "share" data directoryClifford Wolf2014-03-13
|
* Small improvement in SAT log messagesClifford Wolf2014-03-13
|
* Added test_navre.ys for verific frontendClifford Wolf2014-03-13
|
* Hotfix for kernel/compatibility.hClifford Wolf2014-03-13
|
* Merge branch 'master' of https://github.com/Siesh1oo/yosysClifford Wolf2014-03-13
|\
| * - Makefile, kernel/posix_compatibility.h/.cc: replay isolated ↵Siesh1oo2014-03-13
| | | | | | | | OSX/POSIX.2008 compatibility patch.
| * Merge branch 'master' of https://github.com/Siesh1oo/yosysSiesh1oo2014-03-13
| |\ | | | | | | | | | | | | | | | Conflicts: Makefile libs/minisat/System.cc
| | * - kernel/register.h, kernel/driver.cc: refactor ↵Siesh1oo2014-03-12
| | | | | | | | | | | | | | | | | | | | | | | | 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. - Makefile: no need to add $(PWD) to $(PATH) anymore.
| | * - Makefile: don't export DYLD_LIBRARY_PATH/LD_LIBRARY_PATH: not needed if ↵Siesh1oo2014-03-12
| | | | | | | | | | | | we link minisat objects instead of library
| | * - .gitignore: ignore qmake/OSX package libs/svgviewer/svgviewer.appSiesh1oo2014-03-12
| | |
| | * - Makefile: follow changes in https://github.com/cliffordwolf/yosysSiesh1oo2014-03-12
| | |
| | * - libs/minisat/Solver.cc: insert spaces between string and PRIu64 literal, ↵Siesh1oo2014-03-12
| | | | | | | | | | | | otherwise c++11-compliant compilers will bail out due to user-defined literals (minisat bug tracker #13).
| | * - libs/minisat/System.cc: fix definition/declaration mismatch for ↵Siesh1oo2014-03-12
| | | | | | | | | | | | Minisat::memUsedPeak() and mark unused parameters as unused to fix compiler error+warning. (minisat bug tracker issues #1, #9, #10.)
| | * Merge branch 'master' of https://github.com/Siesh1oo/yosysSiesh1oo2014-03-12
| | |\
| | | * - Makefile: don't add '-g' after '-ggdb' to CXXFLAGSSiesh1oo2014-03-11
| | | |
| | | * Rebase to cliffordwolf repo HEAD finished.Siesh1oo2014-03-11
| | | |\
| | | | * - passes/techmap/Makefile.inc: POSIX 'od' has no '-w' option. Use '-An' ↵Siesh1oo2014-03-11
| | | | | | | | | | | | | | | | | | | | instead. Replace awk by simple shell commands for portability.
| | | | * - Makefile: include $(PWD) in PATH, since 'make test' can happen before ↵Siesh1oo2014-03-10
| | | | | | | | | | | | | | | | | | | | 'make install'.
| | | | * - libs/ezsat/ezminisat.cc: use sigemptyset() to clear sig_action.sa_mask; ↵Siesh1oo2014-03-10
| | | | | | | | | | | | | | | | | | | | use SA_RESTART flag for improved robustness of code that is not signal-aware.
| | | | * - Makefile: fix typo in LDFLAGS: obviously -L, not -I is required hereSiesh1oo2014-03-10
| | | | |
| | | | * - Makefile: export PATH=${DESTDIR}/bin:$(PATH) and (DY)LD_LIBRARY_PATH, to ↵Siesh1oo2014-03-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | make sure our local copies of built executables and libraries are used. - Makefile: use find expression in target 'yosys-svgviewer' to find svgviewer binary (qmake will build into .app package on OSX). - Makefile: make 'test' target dependent on $(TARGETS) and $(EXTRA_TARGETS) to make sure that minisat is built.
| | | | * - frontends/vhdl2verilog/vhdl2verilog.cc, passes/abc/abc.cc: #include ↵Siesh1oo2014-03-10
| | | | | | | | | | | | | | | | | | | | <climits> for PATH_MAX.
| | | | * - Makefile, techlibs/common/Makefile.inc: call GNU sed instead of BSD sed ↵Siesh1oo2014-03-10
| | | | | | | | | | | | | | | | | | | | on OSX (for extended regular expressions).
| | | | * - libs/ezsat/ezminisat.cc: use POSIX.2001 sigaction() instead on ↵Siesh1oo2014-03-10
| | | | | | | | | | | | | | | | | | | | non-portable signal().
| | | | * - Makefile, kernel/posix_compatibility.h/.cc: provide POSIX.2008 fake ↵Siesh1oo2014-03-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | implementation of open_memstream()/fmemopen() for pre-POSIX.2008 systems. - Makefile: OSX build rules (Apple's gcc and clang have no -rdynamic option and no librt). - Makefile: Generate debugger symbols and don't optimize for size in debug target (otherwise the debugger pretty hard to use). - Makefile: Reorder target concatenation in order to avoid use-before-built problems for source-include and linker dependencies. - Makefile: On OSX/macports, qmake-qt4 is named 'qmake' (the default Qt4 installation name, unless the distribution changes it). - Makefile: For OSX/Macports, we need to pass -I/opt/local/include and -L/opt/local/lib to give GNU libraries precedence over Apple's. - Makefile: Build a local minisat copy just like abc (to avoid dependency on broken/unmaintained distribution header files). - .gitignore: Ignore minisat directory.
| | | | * - README: fix typo in sed-command for minisat-include fix.Siesh1oo2014-03-10
| | | | |
| | | | * - frontends/vhdl2verilog/vhdl2verilog.cc: #include <cerrno> for errno; use ↵Siesh1oo2014-03-10
| | | | | | | | | | | | | | | | | | | | POSIX getcwd() for portability.
| | | | * - kernel/register.cc: need to #include <cerrno> or errno.h for errno.Siesh1oo2014-03-10
| | | | |