File: scan_lpms.cc

package info (click to toggle)
iverilog 12.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 30,148 kB
  • sloc: cpp: 109,972; ansic: 62,713; yacc: 10,216; sh: 3,470; vhdl: 3,246; perl: 1,814; makefile: 1,774; python: 78; csh: 2
file content (175 lines) | stat: -rw-r--r-- 4,618 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/*
 * Copyright (c) 2014 Stephen Williams (steve@icarus.com)
 *
 *    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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

# include  "sizer_priv.h"

using namespace std;

/*
 * Count each bit of flip-flops. It is clear and obvious how these
 * come out, so no need to make alternate counts as well.
 */
static void scan_lpms_ff(ivl_scope_t, ivl_lpm_t lpm, struct sizer_statistics&stats)
{
      ivl_nexus_t out = ivl_lpm_q(lpm);
      unsigned wid = get_nexus_width(out);

      stats.flop_count += wid;
}

/*
 * Count adders as 2m gates.
 * Also keep a count of adders by width, just out of curiosity.
 */
static void scan_lpms_add(ivl_scope_t, ivl_lpm_t lpm, struct sizer_statistics&stats)
{
      unsigned wid = ivl_lpm_width(lpm);

      stats.adder_count[wid] += 1;

      stats.gate_count += 2*wid;
}

/*
 * Count equality comparator as 2m gates.
 * Also keep a count of comparators by width, just out of curiosity.
 */
static void scan_lpms_equality(ivl_scope_t, ivl_lpm_t lpm, struct sizer_statistics&stats)
{
      unsigned wid = ivl_lpm_width(lpm);

      stats.equality_count[wid] += 1;

      stats.gate_count += 2*wid;
}

static void scan_lpms_equality_wild(ivl_scope_t, ivl_lpm_t lpm, struct sizer_statistics&stats)
{
      unsigned wid = ivl_lpm_width(lpm);

      stats.equality_wc_count[wid] += 1;

      stats.gate_count += 2*wid;
}

/*
 * Count magnitude comparators as 2m gates.
 * Also keep a count of comparators by width, just out of curiosity.
 */
static void scan_lpms_magnitude(ivl_scope_t, ivl_lpm_t lpm, struct sizer_statistics&stats)
{
      unsigned wid = ivl_lpm_width(lpm);

      stats.magnitude_count[wid] += 1;

      stats.gate_count += 2*wid;
}

/*
 * Count mux devices as 2m gates.
 * Also count the mux slices of various select sizes.
 */
static void scan_lpms_mux(ivl_scope_t, ivl_lpm_t lpm, struct sizer_statistics&stats)
{
	// For now, don't generate statistics for wide mux devices.
      if (ivl_lpm_size(lpm) > 2) {
	    stats.lpm_bytype[ivl_lpm_type(lpm)] += 1;
	    return;
      }

	// The "width" of a mux is the number of 1-bit slices.
      unsigned wid = ivl_lpm_width(lpm);

	// Count the slices of the various width of muxes.
      stats.mux_count[2] += wid;

      stats.gate_count += 2*wid;
}

/*
 * Count reduction gates (wide input gates) as 1m gates.
 */
static void scan_lpms_reduction(ivl_scope_t, ivl_lpm_t lpm, struct sizer_statistics&stats)
{
      unsigned wid = ivl_lpm_width(lpm);

      stats.gate_count += wid;
}

void scan_lpms(ivl_scope_t scope, struct sizer_statistics&stats)
{
      for (unsigned idx = 0 ; idx < ivl_scope_lpms(scope) ; idx += 1) {
	    ivl_lpm_t lpm = ivl_scope_lpm(scope,idx);
	    switch (ivl_lpm_type(lpm)) {
		    // Part select nodes don't actually take up
		    // hardware. These represent things like bundle
		    // manipulations, which are done in routing.
		case IVL_LPM_PART_VP:
		case IVL_LPM_PART_PV:
		case IVL_LPM_CONCAT:
		case IVL_LPM_CONCATZ:
		case IVL_LPM_REPEAT:
		case IVL_LPM_SUBSTITUTE:
		  break;

		case IVL_LPM_ADD:
		  scan_lpms_add(scope, lpm, stats);
		  break;

		case IVL_LPM_CMP_EQ:
		case IVL_LPM_CMP_NE:
		case IVL_LPM_CMP_EEQ:
		case IVL_LPM_CMP_NEE:
		  scan_lpms_equality(scope, lpm, stats);
		  break;

		case IVL_LPM_CMP_EQX:
		case IVL_LPM_CMP_EQZ:
		  scan_lpms_equality_wild(scope, lpm, stats);
		  break;

		case IVL_LPM_CMP_GE:
		case IVL_LPM_CMP_GT:
		  scan_lpms_magnitude(scope, lpm, stats);
		  break;

		    // D-Type flip-flops.
		case IVL_LPM_FF:
		  scan_lpms_ff(scope, lpm, stats);
		  break;

		case IVL_LPM_MUX:
		  scan_lpms_mux(scope, lpm, stats);
		  break;

		case IVL_LPM_RE_AND:
		case IVL_LPM_RE_NAND:
		case IVL_LPM_RE_OR:
		case IVL_LPM_RE_NOR:
		case IVL_LPM_RE_XOR:
		case IVL_LPM_RE_XNOR:
		  scan_lpms_reduction(scope, lpm, stats);
		  break;

		default:
		  stats.lpm_bytype[ivl_lpm_type(lpm)] += 1;
		  break;
	    }
      }
}