Bugfix in mapping $tribuf to $_TBUF_
[yosys.git] / passes / techmap / simplemap.cc
1 /*
2 * yosys -- Yosys Open SYnthesis Suite
3 *
4 * Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
5 *
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 *
18 */
19
20 #include "simplemap.h"
21 #include "kernel/sigtools.h"
22 #include <stdlib.h>
23 #include <stdio.h>
24 #include <string.h>
25
26 USING_YOSYS_NAMESPACE
27 YOSYS_NAMESPACE_BEGIN
28
29 void simplemap_not(RTLIL::Module *module, RTLIL::Cell *cell)
30 {
31 RTLIL::SigSpec sig_a = cell->getPort("\\A");
32 RTLIL::SigSpec sig_y = cell->getPort("\\Y");
33
34 sig_a.extend_u0(GetSize(sig_y), cell->parameters.at("\\A_SIGNED").as_bool());
35
36 for (int i = 0; i < GetSize(sig_y); i++) {
37 RTLIL::Cell *gate = module->addCell(NEW_ID, "$_NOT_");
38 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
39 gate->setPort("\\A", sig_a[i]);
40 gate->setPort("\\Y", sig_y[i]);
41 }
42 }
43
44 void simplemap_pos(RTLIL::Module *module, RTLIL::Cell *cell)
45 {
46 RTLIL::SigSpec sig_a = cell->getPort("\\A");
47 RTLIL::SigSpec sig_y = cell->getPort("\\Y");
48
49 sig_a.extend_u0(GetSize(sig_y), cell->parameters.at("\\A_SIGNED").as_bool());
50
51 module->connect(RTLIL::SigSig(sig_y, sig_a));
52 }
53
54 void simplemap_bitop(RTLIL::Module *module, RTLIL::Cell *cell)
55 {
56 RTLIL::SigSpec sig_a = cell->getPort("\\A");
57 RTLIL::SigSpec sig_b = cell->getPort("\\B");
58 RTLIL::SigSpec sig_y = cell->getPort("\\Y");
59
60 sig_a.extend_u0(GetSize(sig_y), cell->parameters.at("\\A_SIGNED").as_bool());
61 sig_b.extend_u0(GetSize(sig_y), cell->parameters.at("\\B_SIGNED").as_bool());
62
63 if (cell->type == "$xnor")
64 {
65 RTLIL::SigSpec sig_t = module->addWire(NEW_ID, GetSize(sig_y));
66
67 for (int i = 0; i < GetSize(sig_y); i++) {
68 RTLIL::Cell *gate = module->addCell(NEW_ID, "$_NOT_");
69 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
70 gate->setPort("\\A", sig_t[i]);
71 gate->setPort("\\Y", sig_y[i]);
72 }
73
74 sig_y = sig_t;
75 }
76
77 std::string gate_type;
78 if (cell->type == "$and") gate_type = "$_AND_";
79 if (cell->type == "$or") gate_type = "$_OR_";
80 if (cell->type == "$xor") gate_type = "$_XOR_";
81 if (cell->type == "$xnor") gate_type = "$_XOR_";
82 log_assert(!gate_type.empty());
83
84 for (int i = 0; i < GetSize(sig_y); i++) {
85 RTLIL::Cell *gate = module->addCell(NEW_ID, gate_type);
86 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
87 gate->setPort("\\A", sig_a[i]);
88 gate->setPort("\\B", sig_b[i]);
89 gate->setPort("\\Y", sig_y[i]);
90 }
91 }
92
93 void simplemap_reduce(RTLIL::Module *module, RTLIL::Cell *cell)
94 {
95 RTLIL::SigSpec sig_a = cell->getPort("\\A");
96 RTLIL::SigSpec sig_y = cell->getPort("\\Y");
97
98 if (sig_y.size() == 0)
99 return;
100
101 if (sig_a.size() == 0) {
102 if (cell->type == "$reduce_and") module->connect(RTLIL::SigSig(sig_y, RTLIL::SigSpec(1, sig_y.size())));
103 if (cell->type == "$reduce_or") module->connect(RTLIL::SigSig(sig_y, RTLIL::SigSpec(0, sig_y.size())));
104 if (cell->type == "$reduce_xor") module->connect(RTLIL::SigSig(sig_y, RTLIL::SigSpec(0, sig_y.size())));
105 if (cell->type == "$reduce_xnor") module->connect(RTLIL::SigSig(sig_y, RTLIL::SigSpec(1, sig_y.size())));
106 if (cell->type == "$reduce_bool") module->connect(RTLIL::SigSig(sig_y, RTLIL::SigSpec(0, sig_y.size())));
107 return;
108 }
109
110 if (sig_y.size() > 1) {
111 module->connect(RTLIL::SigSig(sig_y.extract(1, sig_y.size()-1), RTLIL::SigSpec(0, sig_y.size()-1)));
112 sig_y = sig_y.extract(0, 1);
113 }
114
115 std::string gate_type;
116 if (cell->type == "$reduce_and") gate_type = "$_AND_";
117 if (cell->type == "$reduce_or") gate_type = "$_OR_";
118 if (cell->type == "$reduce_xor") gate_type = "$_XOR_";
119 if (cell->type == "$reduce_xnor") gate_type = "$_XOR_";
120 if (cell->type == "$reduce_bool") gate_type = "$_OR_";
121 log_assert(!gate_type.empty());
122
123 RTLIL::Cell *last_output_cell = NULL;
124
125 while (sig_a.size() > 1)
126 {
127 RTLIL::SigSpec sig_t = module->addWire(NEW_ID, sig_a.size() / 2);
128
129 for (int i = 0; i < sig_a.size(); i += 2)
130 {
131 if (i+1 == sig_a.size()) {
132 sig_t.append(sig_a[i]);
133 continue;
134 }
135
136 RTLIL::Cell *gate = module->addCell(NEW_ID, gate_type);
137 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
138 gate->setPort("\\A", sig_a[i]);
139 gate->setPort("\\B", sig_a[i+1]);
140 gate->setPort("\\Y", sig_t[i/2]);
141 last_output_cell = gate;
142 }
143
144 sig_a = sig_t;
145 }
146
147 if (cell->type == "$reduce_xnor") {
148 RTLIL::SigSpec sig_t = module->addWire(NEW_ID);
149 RTLIL::Cell *gate = module->addCell(NEW_ID, "$_NOT_");
150 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
151 gate->setPort("\\A", sig_a);
152 gate->setPort("\\Y", sig_t);
153 last_output_cell = gate;
154 sig_a = sig_t;
155 }
156
157 if (last_output_cell == NULL) {
158 module->connect(RTLIL::SigSig(sig_y, sig_a));
159 } else {
160 last_output_cell->setPort("\\Y", sig_y);
161 }
162 }
163
164 static void logic_reduce(RTLIL::Module *module, RTLIL::SigSpec &sig, RTLIL::Cell *cell)
165 {
166 while (sig.size() > 1)
167 {
168 RTLIL::SigSpec sig_t = module->addWire(NEW_ID, sig.size() / 2);
169
170 for (int i = 0; i < sig.size(); i += 2)
171 {
172 if (i+1 == sig.size()) {
173 sig_t.append(sig[i]);
174 continue;
175 }
176
177 RTLIL::Cell *gate = module->addCell(NEW_ID, "$_OR_");
178 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
179 gate->setPort("\\A", sig[i]);
180 gate->setPort("\\B", sig[i+1]);
181 gate->setPort("\\Y", sig_t[i/2]);
182 }
183
184 sig = sig_t;
185 }
186
187 if (sig.size() == 0)
188 sig = RTLIL::SigSpec(0, 1);
189 }
190
191 void simplemap_lognot(RTLIL::Module *module, RTLIL::Cell *cell)
192 {
193 RTLIL::SigSpec sig_a = cell->getPort("\\A");
194 logic_reduce(module, sig_a, cell);
195
196 RTLIL::SigSpec sig_y = cell->getPort("\\Y");
197
198 if (sig_y.size() == 0)
199 return;
200
201 if (sig_y.size() > 1) {
202 module->connect(RTLIL::SigSig(sig_y.extract(1, sig_y.size()-1), RTLIL::SigSpec(0, sig_y.size()-1)));
203 sig_y = sig_y.extract(0, 1);
204 }
205
206 RTLIL::Cell *gate = module->addCell(NEW_ID, "$_NOT_");
207 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
208 gate->setPort("\\A", sig_a);
209 gate->setPort("\\Y", sig_y);
210 }
211
212 void simplemap_logbin(RTLIL::Module *module, RTLIL::Cell *cell)
213 {
214 RTLIL::SigSpec sig_a = cell->getPort("\\A");
215 logic_reduce(module, sig_a, cell);
216
217 RTLIL::SigSpec sig_b = cell->getPort("\\B");
218 logic_reduce(module, sig_b, cell);
219
220 RTLIL::SigSpec sig_y = cell->getPort("\\Y");
221
222 if (sig_y.size() == 0)
223 return;
224
225 if (sig_y.size() > 1) {
226 module->connect(RTLIL::SigSig(sig_y.extract(1, sig_y.size()-1), RTLIL::SigSpec(0, sig_y.size()-1)));
227 sig_y = sig_y.extract(0, 1);
228 }
229
230 std::string gate_type;
231 if (cell->type == "$logic_and") gate_type = "$_AND_";
232 if (cell->type == "$logic_or") gate_type = "$_OR_";
233 log_assert(!gate_type.empty());
234
235 RTLIL::Cell *gate = module->addCell(NEW_ID, gate_type);
236 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
237 gate->setPort("\\A", sig_a);
238 gate->setPort("\\B", sig_b);
239 gate->setPort("\\Y", sig_y);
240 }
241
242 void simplemap_eqne(RTLIL::Module *module, RTLIL::Cell *cell)
243 {
244 RTLIL::SigSpec sig_a = cell->getPort("\\A");
245 RTLIL::SigSpec sig_b = cell->getPort("\\B");
246 RTLIL::SigSpec sig_y = cell->getPort("\\Y");
247 bool is_signed = cell->parameters.at("\\A_SIGNED").as_bool();
248 bool is_ne = cell->type == "$ne" || cell->type == "$nex";
249
250 RTLIL::SigSpec xor_out = module->addWire(NEW_ID, max(GetSize(sig_a), GetSize(sig_b)));
251 RTLIL::Cell *xor_cell = module->addXor(NEW_ID, sig_a, sig_b, xor_out, is_signed);
252 xor_cell->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
253 simplemap_bitop(module, xor_cell);
254 module->remove(xor_cell);
255
256 RTLIL::SigSpec reduce_out = is_ne ? sig_y : module->addWire(NEW_ID);
257 RTLIL::Cell *reduce_cell = module->addReduceOr(NEW_ID, xor_out, reduce_out);
258 reduce_cell->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
259 simplemap_reduce(module, reduce_cell);
260 module->remove(reduce_cell);
261
262 if (!is_ne) {
263 RTLIL::Cell *not_cell = module->addLogicNot(NEW_ID, reduce_out, sig_y);
264 not_cell->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
265 simplemap_lognot(module, not_cell);
266 module->remove(not_cell);
267 }
268 }
269
270 void simplemap_mux(RTLIL::Module *module, RTLIL::Cell *cell)
271 {
272 RTLIL::SigSpec sig_a = cell->getPort("\\A");
273 RTLIL::SigSpec sig_b = cell->getPort("\\B");
274 RTLIL::SigSpec sig_y = cell->getPort("\\Y");
275
276 for (int i = 0; i < GetSize(sig_y); i++) {
277 RTLIL::Cell *gate = module->addCell(NEW_ID, "$_MUX_");
278 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
279 gate->setPort("\\A", sig_a[i]);
280 gate->setPort("\\B", sig_b[i]);
281 gate->setPort("\\S", cell->getPort("\\S"));
282 gate->setPort("\\Y", sig_y[i]);
283 }
284 }
285
286 void simplemap_tribuf(RTLIL::Module *module, RTLIL::Cell *cell)
287 {
288 RTLIL::SigSpec sig_a = cell->getPort("\\A");
289 RTLIL::SigSpec sig_e = cell->getPort("\\EN");
290 RTLIL::SigSpec sig_y = cell->getPort("\\Y");
291
292 for (int i = 0; i < GetSize(sig_y); i++) {
293 RTLIL::Cell *gate = module->addCell(NEW_ID, "$_TBUF_");
294 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
295 gate->setPort("\\A", sig_a[i]);
296 gate->setPort("\\E", sig_e);
297 gate->setPort("\\Y", sig_y[i]);
298 }
299 }
300
301 void simplemap_lut(RTLIL::Module *module, RTLIL::Cell *cell)
302 {
303 SigSpec lut_ctrl = cell->getPort("\\A");
304 SigSpec lut_data = cell->getParam("\\LUT");
305 lut_data.extend_u0(1 << cell->getParam("\\WIDTH").as_int());
306
307 for (int idx = 0; GetSize(lut_data) > 1; idx++) {
308 SigSpec sig_s = lut_ctrl[idx];
309 SigSpec new_lut_data = module->addWire(NEW_ID, GetSize(lut_data)/2);
310 for (int i = 0; i < GetSize(lut_data); i += 2) {
311 RTLIL::Cell *gate = module->addCell(NEW_ID, "$_MUX_");
312 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
313 gate->setPort("\\A", lut_data[i]);
314 gate->setPort("\\B", lut_data[i+1]);
315 gate->setPort("\\S", lut_ctrl[idx]);
316 gate->setPort("\\Y", new_lut_data[i/2]);
317 }
318 lut_data = new_lut_data;
319 }
320
321 module->connect(cell->getPort("\\Y"), lut_data);
322 }
323
324 void simplemap_slice(RTLIL::Module *module, RTLIL::Cell *cell)
325 {
326 int offset = cell->parameters.at("\\OFFSET").as_int();
327 RTLIL::SigSpec sig_a = cell->getPort("\\A");
328 RTLIL::SigSpec sig_y = cell->getPort("\\Y");
329 module->connect(RTLIL::SigSig(sig_y, sig_a.extract(offset, sig_y.size())));
330 }
331
332 void simplemap_concat(RTLIL::Module *module, RTLIL::Cell *cell)
333 {
334 RTLIL::SigSpec sig_ab = cell->getPort("\\A");
335 sig_ab.append(cell->getPort("\\B"));
336 RTLIL::SigSpec sig_y = cell->getPort("\\Y");
337 module->connect(RTLIL::SigSig(sig_y, sig_ab));
338 }
339
340 void simplemap_sr(RTLIL::Module *module, RTLIL::Cell *cell)
341 {
342 int width = cell->parameters.at("\\WIDTH").as_int();
343 char set_pol = cell->parameters.at("\\SET_POLARITY").as_bool() ? 'P' : 'N';
344 char clr_pol = cell->parameters.at("\\CLR_POLARITY").as_bool() ? 'P' : 'N';
345
346 RTLIL::SigSpec sig_s = cell->getPort("\\SET");
347 RTLIL::SigSpec sig_r = cell->getPort("\\CLR");
348 RTLIL::SigSpec sig_q = cell->getPort("\\Q");
349
350 std::string gate_type = stringf("$_SR_%c%c_", set_pol, clr_pol);
351
352 for (int i = 0; i < width; i++) {
353 RTLIL::Cell *gate = module->addCell(NEW_ID, gate_type);
354 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
355 gate->setPort("\\S", sig_s[i]);
356 gate->setPort("\\R", sig_r[i]);
357 gate->setPort("\\Q", sig_q[i]);
358 }
359 }
360
361 void simplemap_dff(RTLIL::Module *module, RTLIL::Cell *cell)
362 {
363 int width = cell->parameters.at("\\WIDTH").as_int();
364 char clk_pol = cell->parameters.at("\\CLK_POLARITY").as_bool() ? 'P' : 'N';
365
366 RTLIL::SigSpec sig_clk = cell->getPort("\\CLK");
367 RTLIL::SigSpec sig_d = cell->getPort("\\D");
368 RTLIL::SigSpec sig_q = cell->getPort("\\Q");
369
370 std::string gate_type = stringf("$_DFF_%c_", clk_pol);
371
372 for (int i = 0; i < width; i++) {
373 RTLIL::Cell *gate = module->addCell(NEW_ID, gate_type);
374 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
375 gate->setPort("\\C", sig_clk);
376 gate->setPort("\\D", sig_d[i]);
377 gate->setPort("\\Q", sig_q[i]);
378 }
379 }
380
381 void simplemap_dffe(RTLIL::Module *module, RTLIL::Cell *cell)
382 {
383 int width = cell->parameters.at("\\WIDTH").as_int();
384 char clk_pol = cell->parameters.at("\\CLK_POLARITY").as_bool() ? 'P' : 'N';
385 char en_pol = cell->parameters.at("\\EN_POLARITY").as_bool() ? 'P' : 'N';
386
387 RTLIL::SigSpec sig_clk = cell->getPort("\\CLK");
388 RTLIL::SigSpec sig_en = cell->getPort("\\EN");
389 RTLIL::SigSpec sig_d = cell->getPort("\\D");
390 RTLIL::SigSpec sig_q = cell->getPort("\\Q");
391
392 std::string gate_type = stringf("$_DFFE_%c%c_", clk_pol, en_pol);
393
394 for (int i = 0; i < width; i++) {
395 RTLIL::Cell *gate = module->addCell(NEW_ID, gate_type);
396 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
397 gate->setPort("\\C", sig_clk);
398 gate->setPort("\\E", sig_en);
399 gate->setPort("\\D", sig_d[i]);
400 gate->setPort("\\Q", sig_q[i]);
401 }
402 }
403
404 void simplemap_dffsr(RTLIL::Module *module, RTLIL::Cell *cell)
405 {
406 int width = cell->parameters.at("\\WIDTH").as_int();
407 char clk_pol = cell->parameters.at("\\CLK_POLARITY").as_bool() ? 'P' : 'N';
408 char set_pol = cell->parameters.at("\\SET_POLARITY").as_bool() ? 'P' : 'N';
409 char clr_pol = cell->parameters.at("\\CLR_POLARITY").as_bool() ? 'P' : 'N';
410
411 RTLIL::SigSpec sig_clk = cell->getPort("\\CLK");
412 RTLIL::SigSpec sig_s = cell->getPort("\\SET");
413 RTLIL::SigSpec sig_r = cell->getPort("\\CLR");
414 RTLIL::SigSpec sig_d = cell->getPort("\\D");
415 RTLIL::SigSpec sig_q = cell->getPort("\\Q");
416
417 std::string gate_type = stringf("$_DFFSR_%c%c%c_", clk_pol, set_pol, clr_pol);
418
419 for (int i = 0; i < width; i++) {
420 RTLIL::Cell *gate = module->addCell(NEW_ID, gate_type);
421 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
422 gate->setPort("\\C", sig_clk);
423 gate->setPort("\\S", sig_s[i]);
424 gate->setPort("\\R", sig_r[i]);
425 gate->setPort("\\D", sig_d[i]);
426 gate->setPort("\\Q", sig_q[i]);
427 }
428 }
429
430 void simplemap_adff(RTLIL::Module *module, RTLIL::Cell *cell)
431 {
432 int width = cell->parameters.at("\\WIDTH").as_int();
433 char clk_pol = cell->parameters.at("\\CLK_POLARITY").as_bool() ? 'P' : 'N';
434 char rst_pol = cell->parameters.at("\\ARST_POLARITY").as_bool() ? 'P' : 'N';
435
436 std::vector<RTLIL::State> rst_val = cell->parameters.at("\\ARST_VALUE").bits;
437 while (int(rst_val.size()) < width)
438 rst_val.push_back(RTLIL::State::S0);
439
440 RTLIL::SigSpec sig_clk = cell->getPort("\\CLK");
441 RTLIL::SigSpec sig_rst = cell->getPort("\\ARST");
442 RTLIL::SigSpec sig_d = cell->getPort("\\D");
443 RTLIL::SigSpec sig_q = cell->getPort("\\Q");
444
445 std::string gate_type_0 = stringf("$_DFF_%c%c0_", clk_pol, rst_pol);
446 std::string gate_type_1 = stringf("$_DFF_%c%c1_", clk_pol, rst_pol);
447
448 for (int i = 0; i < width; i++) {
449 RTLIL::Cell *gate = module->addCell(NEW_ID, rst_val.at(i) == RTLIL::State::S1 ? gate_type_1 : gate_type_0);
450 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
451 gate->setPort("\\C", sig_clk);
452 gate->setPort("\\R", sig_rst);
453 gate->setPort("\\D", sig_d[i]);
454 gate->setPort("\\Q", sig_q[i]);
455 }
456 }
457
458 void simplemap_dlatch(RTLIL::Module *module, RTLIL::Cell *cell)
459 {
460 int width = cell->parameters.at("\\WIDTH").as_int();
461 char en_pol = cell->parameters.at("\\EN_POLARITY").as_bool() ? 'P' : 'N';
462
463 RTLIL::SigSpec sig_en = cell->getPort("\\EN");
464 RTLIL::SigSpec sig_d = cell->getPort("\\D");
465 RTLIL::SigSpec sig_q = cell->getPort("\\Q");
466
467 std::string gate_type = stringf("$_DLATCH_%c_", en_pol);
468
469 for (int i = 0; i < width; i++) {
470 RTLIL::Cell *gate = module->addCell(NEW_ID, gate_type);
471 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
472 gate->setPort("\\E", sig_en);
473 gate->setPort("\\D", sig_d[i]);
474 gate->setPort("\\Q", sig_q[i]);
475 }
476 }
477
478 void simplemap_get_mappers(std::map<RTLIL::IdString, void(*)(RTLIL::Module*, RTLIL::Cell*)> &mappers)
479 {
480 mappers["$not"] = simplemap_not;
481 mappers["$pos"] = simplemap_pos;
482 mappers["$and"] = simplemap_bitop;
483 mappers["$or"] = simplemap_bitop;
484 mappers["$xor"] = simplemap_bitop;
485 mappers["$xnor"] = simplemap_bitop;
486 mappers["$reduce_and"] = simplemap_reduce;
487 mappers["$reduce_or"] = simplemap_reduce;
488 mappers["$reduce_xor"] = simplemap_reduce;
489 mappers["$reduce_xnor"] = simplemap_reduce;
490 mappers["$reduce_bool"] = simplemap_reduce;
491 mappers["$logic_not"] = simplemap_lognot;
492 mappers["$logic_and"] = simplemap_logbin;
493 mappers["$logic_or"] = simplemap_logbin;
494 mappers["$eq"] = simplemap_eqne;
495 mappers["$eqx"] = simplemap_eqne;
496 mappers["$ne"] = simplemap_eqne;
497 mappers["$nex"] = simplemap_eqne;
498 mappers["$mux"] = simplemap_mux;
499 mappers["$tribuf"] = simplemap_tribuf;
500 mappers["$lut"] = simplemap_lut;
501 mappers["$slice"] = simplemap_slice;
502 mappers["$concat"] = simplemap_concat;
503 mappers["$sr"] = simplemap_sr;
504 mappers["$dff"] = simplemap_dff;
505 mappers["$dffe"] = simplemap_dffe;
506 mappers["$dffsr"] = simplemap_dffsr;
507 mappers["$adff"] = simplemap_adff;
508 mappers["$dlatch"] = simplemap_dlatch;
509 }
510
511 void simplemap(RTLIL::Module *module, RTLIL::Cell *cell)
512 {
513 static std::map<RTLIL::IdString, void(*)(RTLIL::Module*, RTLIL::Cell*)> mappers;
514 static bool initialized_mappers = false;
515
516 if (!initialized_mappers) {
517 simplemap_get_mappers(mappers);
518 initialized_mappers = true;
519 }
520
521 mappers.at(cell->type)(module, cell);
522 }
523
524 YOSYS_NAMESPACE_END
525 PRIVATE_NAMESPACE_BEGIN
526
527 struct SimplemapPass : public Pass {
528 SimplemapPass() : Pass("simplemap", "mapping simple coarse-grain cells") { }
529 virtual void help()
530 {
531 // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
532 log("\n");
533 log(" simplemap [selection]\n");
534 log("\n");
535 log("This pass maps a small selection of simple coarse-grain cells to yosys gate\n");
536 log("primitives. The following internal cell types are mapped by this pass:\n");
537 log("\n");
538 log(" $not, $pos, $and, $or, $xor, $xnor\n");
539 log(" $reduce_and, $reduce_or, $reduce_xor, $reduce_xnor, $reduce_bool\n");
540 log(" $logic_not, $logic_and, $logic_or, $mux, $tribuf\n");
541 log(" $sr, $dff, $dffsr, $adff, $dlatch\n");
542 log("\n");
543 }
544 virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
545 {
546 log_header("Executing SIMPLEMAP pass (map simple cells to gate primitives).\n");
547 extra_args(args, 1, design);
548
549 std::map<RTLIL::IdString, void(*)(RTLIL::Module*, RTLIL::Cell*)> mappers;
550 simplemap_get_mappers(mappers);
551
552 for (auto mod : design->modules()) {
553 if (!design->selected(mod))
554 continue;
555 std::vector<RTLIL::Cell*> cells = mod->cells();
556 for (auto cell : cells) {
557 if (mappers.count(cell->type) == 0)
558 continue;
559 if (!design->selected(mod, cell))
560 continue;
561 log("Mapping %s.%s (%s).\n", log_id(mod), log_id(cell), log_id(cell->type));
562 mappers.at(cell->type)(mod, cell);
563 mod->remove(cell);
564 }
565 }
566 }
567 } SimplemapPass;
568
569 PRIVATE_NAMESPACE_END