2002-07-05 04:50:57 +02:00
|
|
|
#ifndef __statistics_H
|
|
|
|
|
#define __statistics_H
|
|
|
|
|
/*
|
2010-05-31 22:12:06 +02:00
|
|
|
* Copyright (c) 2002-2010 Stephen Williams (steve@icarus.com)
|
2002-07-05 04:50:57 +02:00
|
|
|
*
|
|
|
|
|
* This source code is free software; you can redistribute it
|
|
|
|
|
* and/or modify it in source code form under the terms of the GNU
|
|
|
|
|
* General Public License as published by the Free Software
|
|
|
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
|
|
|
* any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the 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 this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
|
*/
|
|
|
|
|
|
2010-05-31 22:12:06 +02:00
|
|
|
# include <cstddef>
|
2002-07-05 04:50:57 +02:00
|
|
|
|
|
|
|
|
extern unsigned long count_opcodes;
|
|
|
|
|
extern unsigned long count_functors;
|
2007-12-02 17:47:06 +01:00
|
|
|
extern unsigned long count_functors_logic;
|
2002-07-05 22:08:44 +02:00
|
|
|
extern unsigned long count_functors_bufif;
|
|
|
|
|
extern unsigned long count_functors_resolv;
|
2007-12-02 17:47:06 +01:00
|
|
|
extern unsigned long count_functors_sig;
|
2009-10-01 07:10:35 +02:00
|
|
|
extern unsigned long count_filters;
|
2008-06-07 04:50:44 +02:00
|
|
|
extern unsigned long count_vvp_nets;
|
2002-07-05 04:50:57 +02:00
|
|
|
extern unsigned long count_vpi_nets;
|
2002-07-05 19:14:15 +02:00
|
|
|
extern unsigned long count_vpi_scopes;
|
2008-06-14 02:41:24 +02:00
|
|
|
|
|
|
|
|
extern unsigned long count_net_arrays;
|
|
|
|
|
extern unsigned long count_net_array_words;
|
|
|
|
|
extern unsigned long count_var_arrays;
|
|
|
|
|
extern unsigned long count_var_array_words;
|
|
|
|
|
extern unsigned long count_real_arrays;
|
|
|
|
|
extern unsigned long count_real_array_words;
|
|
|
|
|
|
2002-07-05 05:46:43 +02:00
|
|
|
|
2008-06-07 04:50:44 +02:00
|
|
|
extern unsigned long count_time_events;
|
2008-06-13 04:55:53 +02:00
|
|
|
extern unsigned long count_time_pool(void);
|
|
|
|
|
|
|
|
|
|
extern unsigned long count_assign_events;
|
|
|
|
|
extern unsigned long count_assign4_pool(void);
|
|
|
|
|
extern unsigned long count_assign8_pool(void);
|
|
|
|
|
extern unsigned long count_assign_real_pool(void);
|
|
|
|
|
extern unsigned long count_assign_aword_pool(void);
|
2009-09-03 05:04:34 +02:00
|
|
|
extern unsigned long count_assign_arword_pool(void);
|
2008-06-13 04:55:53 +02:00
|
|
|
|
|
|
|
|
extern unsigned long count_gen_events;
|
|
|
|
|
extern unsigned long count_gen_pool(void);
|
2008-06-07 04:50:44 +02:00
|
|
|
|
2002-07-05 05:46:43 +02:00
|
|
|
extern size_t size_opcodes;
|
2008-06-07 04:50:44 +02:00
|
|
|
extern size_t size_vvp_nets;
|
2008-06-14 02:08:11 +02:00
|
|
|
extern size_t size_vvp_net_funs;
|
2002-07-05 05:46:43 +02:00
|
|
|
|
2002-07-05 04:50:57 +02:00
|
|
|
#endif
|