summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/plib/pexception.cpp
Commit message (Collapse)AuthorAgeFilesLines
* netlist: more clang lint fixes. couriersud2020-10-021-1/+1
|
* netlist: Rewrote frontier documentation. couriersud2020-09-301-1/+2
| | | | * Also includes a small optimization for FP signal code.
* netlist: applied some clang tidy recommendations couriersud2020-09-301-1/+0
|
* netlist: Performance improvement and refactoring. [Couriersud] couriersud2020-06-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Kidniki now achieves up to 910% when run with static solvers and with nltool. That is significant better than the 860% we have seen previously. This increase is driven by using a global memory pool in the solver code. In addition the following refactoring and code maintenance work is included. Please excuse the large commit, some of this took interfered with other work and the detail development steps were ugly. - gsl support: This commit adds pgsl.h which implements a very limited number of the functionality of the gsl header described in the c++ core guidelines. - clang-tidy fixes - A significant refactoring of palloc.h. Aligned hints were removed, they added complexity without a significant performance gain. Vector operations should better be done on special spans/views. The code has been tested on linux with g++-7, g++-9, clang-11. On Windows mingw-10 and VS2019, OSX clang-11.
* netlist: remove more macro usage, fix win float exceptions. (nw) couriersud2020-06-061-0/+26
|
* netlist: code maintenance. (nw) couriersud2019-11-131-2/+25
| | | | | | - move memory pool to netlist_state_t removing one static allocation. - add memory allocation stats to verbose output - nl_assert no longer throws, first step to remove NL_EXCEPT macro.
* netlist: code maintenance and bug fixes. (nw) couriersud2019-11-081-4/+0
| | | | | | | - comment style migration continues. - Fixed a two bugs in the truthtable ignore inputs code - refactored the truthtable code a bit for better readability. - updated netlist specific gitignore.
* netlist: less cpp - more headers (nw) couriersud2019-09-291-1/+1
| | | | - move more code in headers - delete some cpp files.
* (nw) Clean up the mess on master Vas Crabb2019-03-261-114/+101
| | | | | | | | | | | | | This effectively reverts b380514764cf857469bae61c11143a19f79a74c5 and c24473ddff715ecec2e258a6eb38960cf8c8e98e, restoring the state at 598cd5227223c3b04ca31f0dbc1981256d9ea3ff. Before pushing, please check that what you're about to push is sane. Check your local commit log and ensure there isn't anything out-of-place before pushing to mainline. When things like this happen, it wastes everyone's time. I really don't need this in a week when real work™ is busting my balls and I'm behind where I want to be with preparing for MAME release.
* Revert "conflict resolution (nw)" andreasnaive2019-03-251-101/+114
| | | | | This reverts commit c24473ddff715ecec2e258a6eb38960cf8c8e98e, reversing changes made to 009cba4fb8102102168ef32870892438327f3705.
* netlist: fix visibility issues and more issues reported by tidy. (nw) couriersud2019-02-221-1/+1
|
* netlist: tick off some issues clang-tidy highlights. (nw) couriersud2019-02-181-71/+84
|
* netlist: Refactoring after adding clang-tidy support to netlist makefile couriersud2019-02-071-27/+1
| | | | | | | - convert macros to c++ code. - order of device creation should not depend on std lib. - some state saving cleanup. - added support for clang-tidy to makefile. - modifications triggered by clang-tidy-9.
* More cppcheck fixes. (nw) Couriersud2017-03-051-2/+2
|
* Fix some cppcheck warnings. (nw) Couriersud2017-03-051-1/+1
|
* Reorder include order to comply with best practices. (nw) couriersud2017-02-101-2/+2
|
* srcclean (nw) Vas Crabb2017-01-221-2/+2
|
* Fix clang "-Wno-weak-vtables" warnings in netlist source. Refactored couriersud2017-01-051-1/+35
| | | code along the way. (nw)
* Fix some pedantic clang warnings. (nw) couriersud2017-01-051-1/+1
|
* Added SIGFPE enabling code to plib/pexception.*. Moved plib exceptions couriersud2017-01-041-0/+109
into these files as well. The code uses <cfenv> which is part of c++11 standard. Non-standard glib extensions are currently only used on linux and (i386 or x86_64). (nw)