Merge remote-tracking branch 'origin/master' into feature/python_bindings
[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_sop(RTLIL::Module *module, RTLIL::Cell *cell)
325 {
326 SigSpec ctrl = cell->getPort("\\A");
327 SigSpec table = cell->getParam("\\TABLE");
328
329 int width = cell->getParam("\\WIDTH").as_int();
330 int depth = cell->getParam("\\DEPTH").as_int();
331 table.extend_u0(2 * width * depth);
332
333 SigSpec products;
334
335 for (int i = 0; i < depth; i++) {
336 SigSpec in, pat;
337 for (int j = 0; j < width; j++) {
338 if (table[2*i*width + 2*j + 0] == State::S1) {
339 in.append(ctrl[j]);
340 pat.append(State::S0);
341 }
342 if (table[2*i*width + 2*j + 1] == State::S1) {
343 in.append(ctrl[j]);
344 pat.append(State::S1);
345 }
346 }
347
348 products.append(GetSize(in) > 0 ? module->Eq(NEW_ID, in, pat) : State::S1);
349 }
350
351 module->connect(cell->getPort("\\Y"), module->ReduceOr(NEW_ID, products));
352 }
353
354 void simplemap_slice(RTLIL::Module *module, RTLIL::Cell *cell)
355 {
356 int offset = cell->parameters.at("\\OFFSET").as_int();
357 RTLIL::SigSpec sig_a = cell->getPort("\\A");
358 RTLIL::SigSpec sig_y = cell->getPort("\\Y");
359 module->connect(RTLIL::SigSig(sig_y, sig_a.extract(offset, sig_y.size())));
360 }
361
362 void simplemap_concat(RTLIL::Module *module, RTLIL::Cell *cell)
363 {
364 RTLIL::SigSpec sig_ab = cell->getPort("\\A");
365 sig_ab.append(cell->getPort("\\B"));
366 RTLIL::SigSpec sig_y = cell->getPort("\\Y");
367 module->connect(RTLIL::SigSig(sig_y, sig_ab));
368 }
369
370 void simplemap_sr(RTLIL::Module *module, RTLIL::Cell *cell)
371 {
372 int width = cell->parameters.at("\\WIDTH").as_int();
373 char set_pol = cell->parameters.at("\\SET_POLARITY").as_bool() ? 'P' : 'N';
374 char clr_pol = cell->parameters.at("\\CLR_POLARITY").as_bool() ? 'P' : 'N';
375
376 RTLIL::SigSpec sig_s = cell->getPort("\\SET");
377 RTLIL::SigSpec sig_r = cell->getPort("\\CLR");
378 RTLIL::SigSpec sig_q = cell->getPort("\\Q");
379
380 std::string gate_type = stringf("$_SR_%c%c_", set_pol, clr_pol);
381
382 for (int i = 0; i < width; i++) {
383 RTLIL::Cell *gate = module->addCell(NEW_ID, gate_type);
384 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
385 gate->setPort("\\S", sig_s[i]);
386 gate->setPort("\\R", sig_r[i]);
387 gate->setPort("\\Q", sig_q[i]);
388 }
389 }
390
391 void simplemap_ff(RTLIL::Module *module, RTLIL::Cell *cell)
392 {
393 int width = cell->parameters.at("\\WIDTH").as_int();
394
395 RTLIL::SigSpec sig_d = cell->getPort("\\D");
396 RTLIL::SigSpec sig_q = cell->getPort("\\Q");
397
398 std::string gate_type = "$_FF_";
399
400 for (int i = 0; i < width; i++) {
401 RTLIL::Cell *gate = module->addCell(NEW_ID, gate_type);
402 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
403 gate->setPort("\\D", sig_d[i]);
404 gate->setPort("\\Q", sig_q[i]);
405 }
406 }
407
408 void simplemap_dff(RTLIL::Module *module, RTLIL::Cell *cell)
409 {
410 int width = cell->parameters.at("\\WIDTH").as_int();
411 char clk_pol = cell->parameters.at("\\CLK_POLARITY").as_bool() ? 'P' : 'N';
412
413 RTLIL::SigSpec sig_clk = cell->getPort("\\CLK");
414 RTLIL::SigSpec sig_d = cell->getPort("\\D");
415 RTLIL::SigSpec sig_q = cell->getPort("\\Q");
416
417 std::string gate_type = stringf("$_DFF_%c_", clk_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("\\D", sig_d[i]);
424 gate->setPort("\\Q", sig_q[i]);
425 }
426 }
427
428 void simplemap_dffe(RTLIL::Module *module, RTLIL::Cell *cell)
429 {
430 int width = cell->parameters.at("\\WIDTH").as_int();
431 char clk_pol = cell->parameters.at("\\CLK_POLARITY").as_bool() ? 'P' : 'N';
432 char en_pol = cell->parameters.at("\\EN_POLARITY").as_bool() ? 'P' : 'N';
433
434 RTLIL::SigSpec sig_clk = cell->getPort("\\CLK");
435 RTLIL::SigSpec sig_en = cell->getPort("\\EN");
436 RTLIL::SigSpec sig_d = cell->getPort("\\D");
437 RTLIL::SigSpec sig_q = cell->getPort("\\Q");
438
439 std::string gate_type = stringf("$_DFFE_%c%c_", clk_pol, en_pol);
440
441 for (int i = 0; i < width; i++) {
442 RTLIL::Cell *gate = module->addCell(NEW_ID, gate_type);
443 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
444 gate->setPort("\\C", sig_clk);
445 gate->setPort("\\E", sig_en);
446 gate->setPort("\\D", sig_d[i]);
447 gate->setPort("\\Q", sig_q[i]);
448 }
449 }
450
451 void simplemap_dffsr(RTLIL::Module *module, RTLIL::Cell *cell)
452 {
453 int width = cell->parameters.at("\\WIDTH").as_int();
454 char clk_pol = cell->parameters.at("\\CLK_POLARITY").as_bool() ? 'P' : 'N';
455 char set_pol = cell->parameters.at("\\SET_POLARITY").as_bool() ? 'P' : 'N';
456 char clr_pol = cell->parameters.at("\\CLR_POLARITY").as_bool() ? 'P' : 'N';
457
458 RTLIL::SigSpec sig_clk = cell->getPort("\\CLK");
459 RTLIL::SigSpec sig_s = cell->getPort("\\SET");
460 RTLIL::SigSpec sig_r = cell->getPort("\\CLR");
461 RTLIL::SigSpec sig_d = cell->getPort("\\D");
462 RTLIL::SigSpec sig_q = cell->getPort("\\Q");
463
464 std::string gate_type = stringf("$_DFFSR_%c%c%c_", clk_pol, set_pol, clr_pol);
465
466 for (int i = 0; i < width; i++) {
467 RTLIL::Cell *gate = module->addCell(NEW_ID, gate_type);
468 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
469 gate->setPort("\\C", sig_clk);
470 gate->setPort("\\S", sig_s[i]);
471 gate->setPort("\\R", sig_r[i]);
472 gate->setPort("\\D", sig_d[i]);
473 gate->setPort("\\Q", sig_q[i]);
474 }
475 }
476
477 void simplemap_adff(RTLIL::Module *module, RTLIL::Cell *cell)
478 {
479 int width = cell->parameters.at("\\WIDTH").as_int();
480 char clk_pol = cell->parameters.at("\\CLK_POLARITY").as_bool() ? 'P' : 'N';
481 char rst_pol = cell->parameters.at("\\ARST_POLARITY").as_bool() ? 'P' : 'N';
482
483 std::vector<RTLIL::State> rst_val = cell->parameters.at("\\ARST_VALUE").bits;
484 while (int(rst_val.size()) < width)
485 rst_val.push_back(RTLIL::State::S0);
486
487 RTLIL::SigSpec sig_clk = cell->getPort("\\CLK");
488 RTLIL::SigSpec sig_rst = cell->getPort("\\ARST");
489 RTLIL::SigSpec sig_d = cell->getPort("\\D");
490 RTLIL::SigSpec sig_q = cell->getPort("\\Q");
491
492 std::string gate_type_0 = stringf("$_DFF_%c%c0_", clk_pol, rst_pol);
493 std::string gate_type_1 = stringf("$_DFF_%c%c1_", clk_pol, rst_pol);
494
495 for (int i = 0; i < width; i++) {
496 RTLIL::Cell *gate = module->addCell(NEW_ID, rst_val.at(i) == RTLIL::State::S1 ? gate_type_1 : gate_type_0);
497 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
498 gate->setPort("\\C", sig_clk);
499 gate->setPort("\\R", sig_rst);
500 gate->setPort("\\D", sig_d[i]);
501 gate->setPort("\\Q", sig_q[i]);
502 }
503 }
504
505 void simplemap_dlatch(RTLIL::Module *module, RTLIL::Cell *cell)
506 {
507 int width = cell->parameters.at("\\WIDTH").as_int();
508 char en_pol = cell->parameters.at("\\EN_POLARITY").as_bool() ? 'P' : 'N';
509
510 RTLIL::SigSpec sig_en = cell->getPort("\\EN");
511 RTLIL::SigSpec sig_d = cell->getPort("\\D");
512 RTLIL::SigSpec sig_q = cell->getPort("\\Q");
513
514 std::string gate_type = stringf("$_DLATCH_%c_", en_pol);
515
516 for (int i = 0; i < width; i++) {
517 RTLIL::Cell *gate = module->addCell(NEW_ID, gate_type);
518 gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
519 gate->setPort("\\E", sig_en);
520 gate->setPort("\\D", sig_d[i]);
521 gate->setPort("\\Q", sig_q[i]);
522 }
523 }
524
525 void simplemap_get_mappers(std::map<RTLIL::IdString, void(*)(RTLIL::Module*, RTLIL::Cell*)> &mappers)
526 {
527 mappers["$not"] = simplemap_not;
528 mappers["$pos"] = simplemap_pos;
529 mappers["$and"] = simplemap_bitop;
530 mappers["$or"] = simplemap_bitop;
531 mappers["$xor"] = simplemap_bitop;
532 mappers["$xnor"] = simplemap_bitop;
533 mappers["$reduce_and"] = simplemap_reduce;
534 mappers["$reduce_or"] = simplemap_reduce;
535 mappers["$reduce_xor"] = simplemap_reduce;
536 mappers["$reduce_xnor"] = simplemap_reduce;
537 mappers["$reduce_bool"] = simplemap_reduce;
538 mappers["$logic_not"] = simplemap_lognot;
539 mappers["$logic_and"] = simplemap_logbin;
540 mappers["$logic_or"] = simplemap_logbin;
541 mappers["$eq"] = simplemap_eqne;
542 mappers["$eqx"] = simplemap_eqne;
543 mappers["$ne"] = simplemap_eqne;
544 mappers["$nex"] = simplemap_eqne;
545 mappers["$mux"] = simplemap_mux;
546 mappers["$tribuf"] = simplemap_tribuf;
547 mappers["$lut"] = simplemap_lut;
548 mappers["$sop"] = simplemap_sop;
549 mappers["$slice"] = simplemap_slice;
550 mappers["$concat"] = simplemap_concat;
551 mappers["$sr"] = simplemap_sr;
552 mappers["$ff"] = simplemap_ff;
553 mappers["$dff"] = simplemap_dff;
554 mappers["$dffe"] = simplemap_dffe;
555 mappers["$dffsr"] = simplemap_dffsr;
556 mappers["$adff"] = simplemap_adff;
557 mappers["$dlatch"] = simplemap_dlatch;
558 }
559
560 void simplemap(RTLIL::Module *module, RTLIL::Cell *cell)
561 {
562 static std::map<RTLIL::IdString, void(*)(RTLIL::Module*, RTLIL::Cell*)> mappers;
563 static bool initialized_mappers = false;
564
565 if (!initialized_mappers) {
566 simplemap_get_mappers(mappers);
567 initialized_mappers = true;
568 }
569
570 mappers.at(cell->type)(module, cell);
571 }
572
573 YOSYS_NAMESPACE_END
574 PRIVATE_NAMESPACE_BEGIN
575
576 struct SimplemapPass : public Pass {
577 SimplemapPass() : Pass("simplemap", "mapping simple coarse-grain cells") { }
578 void help() YS_OVERRIDE
579 {
580 // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
581 log("\n");
582 log(" simplemap [selection]\n");
583 log("\n");
584 log("This pass maps a small selection of simple coarse-grain cells to yosys gate\n");
585 log("primitives. The following internal cell types are mapped by this pass:\n");
586 log("\n");
587 log(" $not, $pos, $and, $or, $xor, $xnor\n");
588 log(" $reduce_and, $reduce_or, $reduce_xor, $reduce_xnor, $reduce_bool\n");
589 log(" $logic_not, $logic_and, $logic_or, $mux, $tribuf\n");
590 log(" $sr, $ff, $dff, $dffsr, $adff, $dlatch\n");
591 log("\n");
592 }
593 void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
594 {
595 log_header(design, "Executing SIMPLEMAP pass (map simple cells to gate primitives).\n");
596 extra_args(args, 1, design);
597
598 std::map<RTLIL::IdString, void(*)(RTLIL::Module*, RTLIL::Cell*)> mappers;
599 simplemap_get_mappers(mappers);
600
601 for (auto mod : design->modules()) {
602 if (!design->selected(mod))
603 continue;
604 std::vector<RTLIL::Cell*> cells = mod->cells();
605 for (auto cell : cells) {
606 if (mappers.count(cell->type) == 0)
607 continue;
608 if (!design->selected(mod, cell))
609 continue;
610 log("Mapping %s.%s (%s).\n", log_id(mod), log_id(cell), log_id(cell->type));
611 mappers.at(cell->type)(mod, cell);
612 mod->remove(cell);
613 }
614 }
615 }
616 } SimplemapPass;
617
618 PRIVATE_NAMESPACE_END