summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/plib/pmain.cpp
Commit message (Collapse)AuthorAgeFilesLines
* netlist: Relicensing of the GPL code to BSD-3 with the blessing of the Olivier Galibert2021-03-091-1/+1
| | | | | | | | | | copyright owners. Much thanks for that Couriersud, the main creator and contributor, but also to Jonathan Gevaryahu and Sergey Svishchev. There are small remnants in machine/NL_*, specifially breakout, pong doubles and rebound that are also copyrighted by the DICE team, whoever that means. They're not critical since they only concern these drivers and not an important core subsystem.
* netlist: Performance improvement and refactoring. [Couriersud] couriersud2020-06-131-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | 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: Reduce macro usage and make use of pstring utf8. (nw) couriersud2020-06-061-36/+16
|
* netlib: remove a fixme in pmain.cpp. (nw) couriersud2020-04-181-7/+3
|
* netlist: clang lint readability fixes. (nw) couriersud2020-01-251-2/+1
|
* use C++ library includes (nw) firewave2020-01-221-1/+1
|
* netlist: code maintenance and bug fixes. (nw) couriersud2019-11-081-8/+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: switch to c++ streams. (nw) couriersud2019-09-251-7/+0
| | | | Removed the home-brew implementation pstreams and replaced those with c++ streams.
* netlist code maintenance (nw) couriersud2019-09-211-0/+5
| | | | | - prepare move to c++ streams and later std::string - fix more lint and clang pedantic warnings/errors - fix some bugs
* (nw) Clean up the mess on master Vas Crabb2019-03-261-9/+4
| | | | | | | | | | | | | 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-4/+9
| | | | | This reverts commit c24473ddff715ecec2e258a6eb38960cf8c8e98e, reversing changes made to 009cba4fb8102102168ef32870892438327f3705.
* netlist: more cpp core guidelines work. (nw) couriersud2019-02-081-1/+1
|
* netlist: Refactoring after adding clang-tidy support to netlist makefile couriersud2019-02-071-5/+0
| | | | | | | - 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.
* Improve dealing ownership in pstreams. (nw) couriersud2019-01-131-2/+2
| | | | I am not really happy with this. But I am missing some creativity currently.
* (nw) fixed compile error in netlist. Robbbert2019-01-071-1/+1
|
* Make windows builds of nltool and nlwav understand unicode. couriersud2017-02-101-0/+87
nltool and nlwav now use wmain, i.e. UNICODE main on windows. (nw)