aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/log.h
Commit message (Expand)AuthorAgeFilesLines
* Added log_spacer()Clifford Wolf2014-08-161-0/+1
* Improvements in new RTLIL::IdString implementationClifford Wolf2014-08-021-2/+0
* Preparations for RTLIL::IdString redesign: cleanup of existing codeClifford Wolf2014-08-021-1/+1
* Added logfile hash to statistics footerClifford Wolf2014-08-011-0/+2
* Added per-pass cpu usage statisticsClifford Wolf2014-08-011-0/+1
* Added ModIndex helper class, some changes to RTLIL::MonitorClifford Wolf2014-08-011-5/+0
* Moved some stuff to kernel/yosys.{h,cc}, using Yosys:: namespaceClifford Wolf2014-07-311-2/+4
* Added "log_dump_val_worker(char *v)"Clifford Wolf2014-07-301-0/+1
* Added "kernel/yosys.h" and "kernel/yosys.cc"Clifford Wolf2014-07-301-4/+2
* Using log_assert() instead of assert()Clifford Wolf2014-07-281-45/+11
* Small improvements in PerformanceTimer APIClifford Wolf2014-07-271-6/+7
* Added log_cmd_error_expectionClifford Wolf2014-07-271-0/+2
* Disabled cover() for non-linux buildsClifford Wolf2014-07-251-1/+2
* Added cover_list() APIClifford Wolf2014-07-241-2/+43
* Added log_ping()Clifford Wolf2014-07-211-0/+1
* Added log_cell()Clifford Wolf2014-07-201-0/+2
* Fixed log_id() memory corruptionClifford Wolf2014-07-191-5/+2
* Added log_id() helper functionClifford Wolf2014-07-181-0/+8
* Added log_dump() support for generic pointersClifford Wolf2014-03-141-0/+3
* Merged a few fixes for non-posix systems from github.com/Siesh1oo/yosysClifford Wolf2014-03-111-0/+16
* Some improvements in log_dump_val_worker() templatesClifford Wolf2014-01-171-1/+6
* Added log_dump() APIClifford Wolf2013-12-201-0/+54
* Added more performance measurement infrastructureClifford Wolf2013-11-221-0/+41
* Added -v<level> option and some minor driver cleanupsClifford Wolf2013-11-171-0/+1
* Added log_assert() apiClifford Wolf2013-05-241-0/+1
* Added log_abort() apiClifford Wolf2013-05-241-0/+2
* initial importClifford Wolf2013-01-051-0/+51
e implied warranty of MERCHANTABILITY or -- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- for more details. -- -- You should have received a copy of the GNU General Public License -- along with GHDL; see the file COPYING. If not, write to the Free -- Software Foundation, 59 Temple Place - Suite 330, Boston, MA -- 02111-1307, USA. with Tables; package body Flists is -- Index of elements. type El_Index_Type is new Int32; -- Describe an flist. type Entry_Type is record -- Index of the first element (in the element table). Els : El_Index_Type; -- Length of the list. Len : Nat32; end record; -- Flists descriptors. package Flistt is new Tables (Table_Component_Type => Entry_Type, Table_Index_Type => Flist_Type, Table_Low_Bound => 4, Table_Initial => 32); -- Table of all elements. package Els is new Tables