Merge pull request #1864 from boqwxp/cleanup_techmap_abc
[yosys.git] / passes / cmds / select.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 "kernel/yosys.h"
21 #include "kernel/celltypes.h"
22 #include "kernel/sigtools.h"
23 #include <string.h>
24 #include <errno.h>
25
26 USING_YOSYS_NAMESPACE
27 PRIVATE_NAMESPACE_BEGIN
28
29 using RTLIL::id2cstr;
30
31 static std::vector<RTLIL::Selection> work_stack;
32
33 static bool match_ids(RTLIL::IdString id, std::string pattern)
34 {
35 if (id == pattern)
36 return true;
37 if (id.size() > 0 && id[0] == '\\' && id.compare(1, std::string::npos, pattern.c_str()) == 0)
38 return true;
39 if (patmatch(pattern.c_str(), id.c_str()))
40 return true;
41 if (id.size() > 0 && id[0] == '\\' && patmatch(pattern.c_str(), id.substr(1).c_str()))
42 return true;
43 if (id.size() > 0 && id[0] == '$' && pattern.size() > 0 && pattern[0] == '$') {
44 const char *p = id.c_str();
45 const char *q = strrchr(p, '$');
46 if (pattern == q)
47 return true;
48 }
49 return false;
50 }
51
52 static bool match_attr_val(const RTLIL::Const &value, std::string pattern, char match_op)
53 {
54 if (match_op == 0)
55 return true;
56
57 if ((value.flags & RTLIL::CONST_FLAG_STRING) == 0)
58 {
59 RTLIL::SigSpec sig_value;
60
61 if (!RTLIL::SigSpec::parse(sig_value, nullptr, pattern))
62 return false;
63
64 RTLIL::Const pattern_value = sig_value.as_const();
65
66 if (match_op == '=')
67 return value == pattern_value;
68 if (match_op == '!')
69 return value != pattern_value;
70 if (match_op == '<')
71 return value.as_int() < pattern_value.as_int();
72 if (match_op == '>')
73 return value.as_int() > pattern_value.as_int();
74 if (match_op == '[')
75 return value.as_int() <= pattern_value.as_int();
76 if (match_op == ']')
77 return value.as_int() >= pattern_value.as_int();
78 }
79 else
80 {
81 std::string value_str = value.decode_string();
82
83 if (match_op == '=')
84 if (patmatch(pattern.c_str(), value.decode_string().c_str()))
85 return true;
86
87 if (match_op == '=')
88 return value_str == pattern;
89 if (match_op == '!')
90 return value_str != pattern;
91 if (match_op == '<')
92 return value_str < pattern;
93 if (match_op == '>')
94 return value_str > pattern;
95 if (match_op == '[')
96 return value_str <= pattern;
97 if (match_op == ']')
98 return value_str >= pattern;
99 }
100
101 log_abort();
102 }
103
104 static bool match_attr(const dict<RTLIL::IdString, RTLIL::Const> &attributes, std::string name_pat, std::string value_pat, char match_op)
105 {
106 if (name_pat.find('*') != std::string::npos || name_pat.find('?') != std::string::npos || name_pat.find('[') != std::string::npos) {
107 for (auto &it : attributes) {
108 if (patmatch(name_pat.c_str(), it.first.c_str()) && match_attr_val(it.second, value_pat, match_op))
109 return true;
110 if (it.first.size() > 0 && it.first[0] == '\\' && patmatch(name_pat.c_str(), it.first.substr(1).c_str()) && match_attr_val(it.second, value_pat, match_op))
111 return true;
112 }
113 } else {
114 if (name_pat.size() > 0 && (name_pat[0] == '\\' || name_pat[0] == '$') && attributes.count(name_pat) && match_attr_val(attributes.at(name_pat), value_pat, match_op))
115 return true;
116 if (attributes.count("\\" + name_pat) && match_attr_val(attributes.at("\\" + name_pat), value_pat, match_op))
117 return true;
118 }
119 return false;
120 }
121
122 static bool match_attr(const dict<RTLIL::IdString, RTLIL::Const> &attributes, std::string match_expr)
123 {
124 size_t pos = match_expr.find_first_of("<!=>");
125
126 if (pos != std::string::npos) {
127 if (match_expr.compare(pos, 2, "!=") == 0)
128 return match_attr(attributes, match_expr.substr(0, pos), match_expr.substr(pos+2), '!');
129 if (match_expr.compare(pos, 2, "<=") == 0)
130 return match_attr(attributes, match_expr.substr(0, pos), match_expr.substr(pos+2), '[');
131 if (match_expr.compare(pos, 2, ">=") == 0)
132 return match_attr(attributes, match_expr.substr(0, pos), match_expr.substr(pos+2), ']');
133 return match_attr(attributes, match_expr.substr(0, pos), match_expr.substr(pos+1), match_expr[pos]);
134 }
135
136 return match_attr(attributes, match_expr, std::string(), 0);
137 }
138
139 static void select_op_neg(RTLIL::Design *design, RTLIL::Selection &lhs)
140 {
141 if (lhs.full_selection) {
142 lhs.full_selection = false;
143 lhs.selected_modules.clear();
144 lhs.selected_members.clear();
145 return;
146 }
147
148 if (lhs.selected_modules.size() == 0 && lhs.selected_members.size() == 0) {
149 lhs.full_selection = true;
150 return;
151 }
152
153 RTLIL::Selection new_sel(false);
154
155 for (auto mod : design->modules())
156 {
157 if (lhs.selected_whole_module(mod->name))
158 continue;
159 if (!lhs.selected_module(mod->name)) {
160 new_sel.selected_modules.insert(mod->name);
161 continue;
162 }
163
164 for (auto wire : mod->wires())
165 if (!lhs.selected_member(mod->name, wire->name))
166 new_sel.selected_members[mod->name].insert(wire->name);
167 for (auto &it : mod->memories)
168 if (!lhs.selected_member(mod->name, it.first))
169 new_sel.selected_members[mod->name].insert(it.first);
170 for (auto cell : mod->cells())
171 if (!lhs.selected_member(mod->name, cell->name))
172 new_sel.selected_members[mod->name].insert(cell->name);
173 for (auto &it : mod->processes)
174 if (!lhs.selected_member(mod->name, it.first))
175 new_sel.selected_members[mod->name].insert(it.first);
176 }
177
178 lhs.selected_modules.swap(new_sel.selected_modules);
179 lhs.selected_members.swap(new_sel.selected_members);
180 }
181
182 static int my_xorshift32_rng() {
183 static uint32_t x32 = 314159265;
184 x32 ^= x32 << 13;
185 x32 ^= x32 >> 17;
186 x32 ^= x32 << 5;
187 return x32 & 0x0fffffff;
188 }
189
190 static void select_op_random(RTLIL::Design *design, RTLIL::Selection &lhs, int count)
191 {
192 vector<pair<IdString, IdString>> objects;
193
194 for (auto mod : design->modules())
195 {
196 if (!lhs.selected_module(mod->name))
197 continue;
198
199 for (auto cell : mod->cells()) {
200 if (lhs.selected_member(mod->name, cell->name))
201 objects.push_back(make_pair(mod->name, cell->name));
202 }
203
204 for (auto wire : mod->wires()) {
205 if (lhs.selected_member(mod->name, wire->name))
206 objects.push_back(make_pair(mod->name, wire->name));
207 }
208 }
209
210 lhs = RTLIL::Selection(false);
211
212 while (!objects.empty() && count-- > 0)
213 {
214 int idx = my_xorshift32_rng() % GetSize(objects);
215 lhs.selected_members[objects[idx].first].insert(objects[idx].second);
216 objects[idx] = objects.back();
217 objects.pop_back();
218 }
219
220 lhs.optimize(design);
221 }
222
223 static void select_op_submod(RTLIL::Design *design, RTLIL::Selection &lhs)
224 {
225 for (auto mod : design->modules())
226 {
227 if (lhs.selected_whole_module(mod->name))
228 {
229 for (auto cell : mod->cells())
230 {
231 if (design->module(cell->type) == nullptr)
232 continue;
233 lhs.selected_modules.insert(cell->type);
234 }
235 }
236 }
237 }
238
239 static void select_op_cells_to_modules(RTLIL::Design *design, RTLIL::Selection &lhs)
240 {
241 RTLIL::Selection new_sel(false);
242 for (auto mod : design->modules())
243 if (lhs.selected_module(mod->name))
244 for (auto cell : mod->cells())
245 if (lhs.selected_member(mod->name, cell->name) && (design->module(cell->type) != nullptr))
246 new_sel.selected_modules.insert(cell->type);
247 lhs = new_sel;
248 }
249
250 static void select_op_module_to_cells(RTLIL::Design *design, RTLIL::Selection &lhs)
251 {
252 RTLIL::Selection new_sel(false);
253 for (auto mod : design->modules())
254 for (auto cell : mod->cells())
255 if ((design->module(cell->type) != nullptr) && lhs.selected_whole_module(cell->type))
256 new_sel.selected_members[mod->name].insert(cell->name);
257 lhs = new_sel;
258 }
259
260 static void select_op_fullmod(RTLIL::Design *design, RTLIL::Selection &lhs)
261 {
262 lhs.optimize(design);
263 for (auto &it : lhs.selected_members)
264 lhs.selected_modules.insert(it.first);
265 lhs.selected_members.clear();
266 }
267
268 static void select_op_alias(RTLIL::Design *design, RTLIL::Selection &lhs)
269 {
270 for (auto mod : design->modules())
271 {
272 if (lhs.selected_whole_module(mod->name))
273 continue;
274 if (!lhs.selected_module(mod->name))
275 continue;
276
277 SigMap sigmap(mod);
278 SigPool selected_bits;
279
280 for (auto wire : mod->wires())
281 if (lhs.selected_member(mod->name, wire->name))
282 selected_bits.add(sigmap(wire));
283
284 for (auto wire : mod->wires())
285 if (!lhs.selected_member(mod->name, wire->name) && selected_bits.check_any(sigmap(wire)))
286 lhs.selected_members[mod->name].insert(wire->name);
287 }
288 }
289
290 static void select_op_union(RTLIL::Design*, RTLIL::Selection &lhs, const RTLIL::Selection &rhs)
291 {
292 if (rhs.full_selection) {
293 lhs.full_selection = true;
294 lhs.selected_modules.clear();
295 lhs.selected_members.clear();
296 return;
297 }
298
299 if (lhs.full_selection)
300 return;
301
302 for (auto &it : rhs.selected_members)
303 for (auto &it2 : it.second)
304 lhs.selected_members[it.first].insert(it2);
305
306 for (auto &it : rhs.selected_modules) {
307 lhs.selected_modules.insert(it);
308 lhs.selected_members.erase(it);
309 }
310 }
311
312 static void select_op_diff(RTLIL::Design *design, RTLIL::Selection &lhs, const RTLIL::Selection &rhs)
313 {
314 if (rhs.full_selection) {
315 lhs.full_selection = false;
316 lhs.selected_modules.clear();
317 lhs.selected_members.clear();
318 return;
319 }
320
321 if (lhs.full_selection) {
322 if (!rhs.full_selection && rhs.selected_modules.size() == 0 && rhs.selected_members.size() == 0)
323 return;
324 lhs.full_selection = false;
325 for (auto mod : design->modules())
326 lhs.selected_modules.insert(mod->name);
327 }
328
329 for (auto &it : rhs.selected_modules) {
330 lhs.selected_modules.erase(it);
331 lhs.selected_members.erase(it);
332 }
333
334 for (auto &it : rhs.selected_members)
335 {
336 if (design->module(it.first) == nullptr)
337 continue;
338
339 RTLIL::Module *mod = design->module(it.first);
340
341 if (lhs.selected_modules.count(mod->name) > 0)
342 {
343 for (auto wire : mod->wires())
344 lhs.selected_members[mod->name].insert(wire->name);
345 for (auto &it : mod->memories)
346 lhs.selected_members[mod->name].insert(it.first);
347 for (auto cell : mod->cells())
348 lhs.selected_members[mod->name].insert(cell->name);
349 for (auto &it : mod->processes)
350 lhs.selected_members[mod->name].insert(it.first);
351 lhs.selected_modules.erase(mod->name);
352 }
353
354 if (lhs.selected_members.count(mod->name) == 0)
355 continue;
356
357 for (auto &it2 : it.second)
358 lhs.selected_members[mod->name].erase(it2);
359 }
360 }
361
362 static void select_op_intersect(RTLIL::Design *design, RTLIL::Selection &lhs, const RTLIL::Selection &rhs)
363 {
364 if (rhs.full_selection)
365 return;
366
367 if (lhs.full_selection) {
368 lhs.full_selection = false;
369 for (auto mod : design->modules())
370 lhs.selected_modules.insert(mod->name);
371 }
372
373 std::vector<RTLIL::IdString> del_list;
374
375 for (auto &it : lhs.selected_modules)
376 if (rhs.selected_modules.count(it) == 0) {
377 if (rhs.selected_members.count(it) > 0)
378 for (auto &it2 : rhs.selected_members.at(it))
379 lhs.selected_members[it].insert(it2);
380 del_list.push_back(it);
381 }
382 for (auto &it : del_list)
383 lhs.selected_modules.erase(it);
384
385 del_list.clear();
386 for (auto &it : lhs.selected_members) {
387 if (rhs.selected_modules.count(it.first) > 0)
388 continue;
389 if (rhs.selected_members.count(it.first) == 0) {
390 del_list.push_back(it.first);
391 continue;
392 }
393 std::vector<RTLIL::IdString> del_list2;
394 for (auto &it2 : it.second)
395 if (rhs.selected_members.at(it.first).count(it2) == 0)
396 del_list2.push_back(it2);
397 for (auto &it2 : del_list2)
398 it.second.erase(it2);
399 if (it.second.size() == 0)
400 del_list.push_back(it.first);
401 }
402 for (auto &it : del_list)
403 lhs.selected_members.erase(it);
404 }
405
406 namespace {
407 struct expand_rule_t {
408 char mode;
409 std::set<RTLIL::IdString> cell_types, port_names;
410 };
411 }
412
413 static int parse_comma_list(std::set<RTLIL::IdString> &tokens, std::string str, size_t pos, std::string stopchar)
414 {
415 stopchar += ',';
416 while (1) {
417 size_t endpos = str.find_first_of(stopchar, pos);
418 if (endpos == std::string::npos)
419 endpos = str.size();
420 if (endpos != pos)
421 tokens.insert(RTLIL::escape_id(str.substr(pos, endpos-pos)));
422 pos = endpos;
423 if (pos == str.size() || str[pos] != ',')
424 return pos;
425 pos++;
426 }
427 }
428
429 static int select_op_expand(RTLIL::Design *design, RTLIL::Selection &lhs, std::vector<expand_rule_t> &rules, std::set<RTLIL::IdString> &limits, int max_objects, char mode, CellTypes &ct, bool eval_only)
430 {
431 int sel_objects = 0;
432 bool is_input, is_output;
433 for (auto mod : design->modules())
434 {
435 if (lhs.selected_whole_module(mod->name) || !lhs.selected_module(mod->name))
436 continue;
437
438 std::set<RTLIL::Wire*> selected_wires;
439 auto selected_members = lhs.selected_members[mod->name];
440
441 for (auto wire : mod->wires())
442 if (lhs.selected_member(mod->name, wire->name) && limits.count(wire->name) == 0)
443 selected_wires.insert(wire);
444
445 for (auto &conn : mod->connections())
446 {
447 std::vector<RTLIL::SigBit> conn_lhs = conn.first.to_sigbit_vector();
448 std::vector<RTLIL::SigBit> conn_rhs = conn.second.to_sigbit_vector();
449
450 for (size_t i = 0; i < conn_lhs.size(); i++) {
451 if (conn_lhs[i].wire == nullptr || conn_rhs[i].wire == nullptr)
452 continue;
453 if (mode != 'i' && selected_wires.count(conn_rhs[i].wire) && selected_members.count(conn_lhs[i].wire->name) == 0)
454 lhs.selected_members[mod->name].insert(conn_lhs[i].wire->name), sel_objects++, max_objects--;
455 if (mode != 'o' && selected_wires.count(conn_lhs[i].wire) && selected_members.count(conn_rhs[i].wire->name) == 0)
456 lhs.selected_members[mod->name].insert(conn_rhs[i].wire->name), sel_objects++, max_objects--;
457 }
458 }
459
460 for (auto cell : mod->cells())
461 for (auto &conn : cell->connections())
462 {
463 char last_mode = '-';
464 if (eval_only && !yosys_celltypes.cell_evaluable(cell->type))
465 goto exclude_match;
466 for (auto &rule : rules) {
467 last_mode = rule.mode;
468 if (rule.cell_types.size() > 0 && rule.cell_types.count(cell->type) == 0)
469 continue;
470 if (rule.port_names.size() > 0 && rule.port_names.count(conn.first) == 0)
471 continue;
472 if (rule.mode == '+')
473 goto include_match;
474 else
475 goto exclude_match;
476 }
477 if (last_mode == '+')
478 goto exclude_match;
479 include_match:
480 is_input = mode == 'x' || ct.cell_input(cell->type, conn.first);
481 is_output = mode == 'x' || ct.cell_output(cell->type, conn.first);
482 for (auto &chunk : conn.second.chunks())
483 if (chunk.wire != nullptr) {
484 if (max_objects != 0 && selected_wires.count(chunk.wire) > 0 && selected_members.count(cell->name) == 0)
485 if (mode == 'x' || (mode == 'i' && is_output) || (mode == 'o' && is_input))
486 lhs.selected_members[mod->name].insert(cell->name), sel_objects++, max_objects--;
487 if (max_objects != 0 && selected_members.count(cell->name) > 0 && limits.count(cell->name) == 0 && selected_members.count(chunk.wire->name) == 0)
488 if (mode == 'x' || (mode == 'i' && is_input) || (mode == 'o' && is_output))
489 lhs.selected_members[mod->name].insert(chunk.wire->name), sel_objects++, max_objects--;
490 }
491 exclude_match:;
492 }
493 }
494
495 return sel_objects;
496 }
497
498 static void select_op_expand(RTLIL::Design *design, std::string arg, char mode, bool eval_only)
499 {
500 int pos = (mode == 'x' ? 2 : 3) + (eval_only ? 1 : 0);
501 int levels = 1, rem_objects = -1;
502 std::vector<expand_rule_t> rules;
503 std::set<RTLIL::IdString> limits;
504
505 CellTypes ct;
506
507 if (mode != 'x')
508 ct.setup(design);
509
510 if (pos < int(arg.size()) && arg[pos] == '*') {
511 levels = 1000000;
512 pos++;
513 } else
514 if (pos < int(arg.size()) && '0' <= arg[pos] && arg[pos] <= '9') {
515 size_t endpos = arg.find_first_not_of("0123456789", pos);
516 if (endpos == std::string::npos)
517 endpos = arg.size();
518 levels = atoi(arg.substr(pos, endpos-pos).c_str());
519 pos = endpos;
520 }
521
522 if (pos < int(arg.size()) && arg[pos] == '.') {
523 size_t endpos = arg.find_first_not_of("0123456789", ++pos);
524 if (endpos == std::string::npos)
525 endpos = arg.size();
526 if (int(endpos) > pos)
527 rem_objects = atoi(arg.substr(pos, endpos-pos).c_str());
528 pos = endpos;
529 }
530
531 while (pos < int(arg.size())) {
532 if (arg[pos] != ':' || pos+1 == int(arg.size()))
533 log_cmd_error("Syntax error in expand operator '%s'.\n", arg.c_str());
534 pos++;
535 if (arg[pos] == '+' || arg[pos] == '-') {
536 expand_rule_t rule;
537 rule.mode = arg[pos++];
538 pos = parse_comma_list(rule.cell_types, arg, pos, "[:");
539 if (pos < int(arg.size()) && arg[pos] == '[') {
540 pos = parse_comma_list(rule.port_names, arg, pos+1, "]:");
541 if (pos < int(arg.size()) && arg[pos] == ']')
542 pos++;
543 }
544 rules.push_back(rule);
545 } else {
546 size_t endpos = arg.find(':', pos);
547 if (endpos == std::string::npos)
548 endpos = arg.size();
549 if (int(endpos) > pos) {
550 std::string str = arg.substr(pos, endpos-pos);
551 if (str[0] == '@') {
552 str = RTLIL::escape_id(str.substr(1));
553 if (design->selection_vars.count(str) > 0) {
554 for (auto i1 : design->selection_vars.at(str).selected_members)
555 for (auto i2 : i1.second)
556 limits.insert(i2);
557 } else
558 log_cmd_error("Selection %s is not defined!\n", RTLIL::unescape_id(str).c_str());
559 } else
560 limits.insert(RTLIL::escape_id(str));
561 }
562 pos = endpos;
563 }
564 }
565
566 #if 0
567 log("expand by %d levels (max. %d objects):\n", levels, rem_objects);
568 for (auto &rule : rules) {
569 log(" rule (%c):\n", rule.mode);
570 if (rule.cell_types.size() > 0) {
571 log(" cell types:");
572 for (auto &it : rule.cell_types)
573 log(" %s", it.c_str());
574 log("\n");
575 }
576 if (rule.port_names.size() > 0) {
577 log(" port names:");
578 for (auto &it : rule.port_names)
579 log(" %s", it.c_str());
580 log("\n");
581 }
582 }
583 if (limits.size() > 0) {
584 log(" limits:");
585 for (auto &it : limits)
586 log(" %s", it.c_str());
587 log("\n");
588 }
589 #endif
590
591 while (levels-- > 0 && rem_objects != 0) {
592 int num_objects = select_op_expand(design, work_stack.back(), rules, limits, rem_objects, mode, ct, eval_only);
593 if (num_objects == 0)
594 break;
595 rem_objects -= num_objects;
596 }
597
598 if (rem_objects == 0)
599 log_warning("reached configured limit at `%s'.\n", arg.c_str());
600 }
601
602 static void select_filter_active_mod(RTLIL::Design *design, RTLIL::Selection &sel)
603 {
604 if (design->selected_active_module.empty())
605 return;
606
607 if (sel.full_selection) {
608 sel.full_selection = false;
609 sel.selected_modules.clear();
610 sel.selected_members.clear();
611 sel.selected_modules.insert(design->selected_active_module);
612 return;
613 }
614
615 std::vector<RTLIL::IdString> del_list;
616 for (auto mod_name : sel.selected_modules)
617 if (mod_name != design->selected_active_module)
618 del_list.push_back(mod_name);
619 for (auto &it : sel.selected_members)
620 if (it.first != design->selected_active_module)
621 del_list.push_back(it.first);
622 for (auto mod_name : del_list) {
623 sel.selected_modules.erase(mod_name);
624 sel.selected_members.erase(mod_name);
625 }
626 }
627
628 static void select_stmt(RTLIL::Design *design, std::string arg, bool disable_empty_warning = false)
629 {
630 std::string arg_mod, arg_memb;
631 std::unordered_map<std::string, bool> arg_mod_found;
632 std::unordered_map<std::string, bool> arg_memb_found;
633 auto isalpha = [](const char &x) { return ((x >= 'a' && x <= 'z') || (x >= 'A' && x <= 'Z')); };
634 bool prefixed = GetSize(arg) >= 2 && isalpha(arg[0]) && arg[1] == ':';
635
636 if (arg.size() == 0)
637 return;
638
639 if (arg[0] == '%') {
640 if (arg == "%") {
641 if (design->selection_stack.size() > 0)
642 work_stack.push_back(design->selection_stack.back());
643 } else
644 if (arg == "%%") {
645 while (work_stack.size() > 1) {
646 select_op_union(design, work_stack.front(), work_stack.back());
647 work_stack.pop_back();
648 }
649 } else
650 if (arg == "%n") {
651 if (work_stack.size() < 1)
652 log_cmd_error("Must have at least one element on the stack for operator %%n.\n");
653 select_op_neg(design, work_stack[work_stack.size()-1]);
654 } else
655 if (arg == "%u") {
656 if (work_stack.size() < 2)
657 log_cmd_error("Must have at least two elements on the stack for operator %%u.\n");
658 select_op_union(design, work_stack[work_stack.size()-2], work_stack[work_stack.size()-1]);
659 work_stack.pop_back();
660 } else
661 if (arg == "%d") {
662 if (work_stack.size() < 2)
663 log_cmd_error("Must have at least two elements on the stack for operator %%d.\n");
664 select_op_diff(design, work_stack[work_stack.size()-2], work_stack[work_stack.size()-1]);
665 work_stack.pop_back();
666 } else
667 if (arg == "%D") {
668 if (work_stack.size() < 2)
669 log_cmd_error("Must have at least two elements on the stack for operator %%D.\n");
670 select_op_diff(design, work_stack[work_stack.size()-1], work_stack[work_stack.size()-2]);
671 work_stack[work_stack.size()-2] = work_stack[work_stack.size()-1];
672 work_stack.pop_back();
673 } else
674 if (arg == "%i") {
675 if (work_stack.size() < 2)
676 log_cmd_error("Must have at least two elements on the stack for operator %%i.\n");
677 select_op_intersect(design, work_stack[work_stack.size()-2], work_stack[work_stack.size()-1]);
678 work_stack.pop_back();
679 } else
680 if (arg.size() >= 2 && arg[0] == '%' && arg[1] == 'R') {
681 if (work_stack.size() < 1)
682 log_cmd_error("Must have at least one element on the stack for operator %%R.\n");
683 int count = arg.size() > 2 ? atoi(arg.c_str() + 2) : 1;
684 select_op_random(design, work_stack[work_stack.size()-1], count);
685 } else
686 if (arg == "%s") {
687 if (work_stack.size() < 1)
688 log_cmd_error("Must have at least one element on the stack for operator %%s.\n");
689 select_op_submod(design, work_stack[work_stack.size()-1]);
690 } else
691 if (arg == "%M") {
692 if (work_stack.size() < 1)
693 log_cmd_error("Must have at least one element on the stack for operator %%M.\n");
694 select_op_cells_to_modules(design, work_stack[work_stack.size()-1]);
695 } else
696 if (arg == "%C") {
697 if (work_stack.size() < 1)
698 log_cmd_error("Must have at least one element on the stack for operator %%C.\n");
699 select_op_module_to_cells(design, work_stack[work_stack.size()-1]);
700 } else
701 if (arg == "%c") {
702 if (work_stack.size() < 1)
703 log_cmd_error("Must have at least one element on the stack for operator %%c.\n");
704 work_stack.push_back(work_stack.back());
705 } else
706 if (arg == "%m") {
707 if (work_stack.size() < 1)
708 log_cmd_error("Must have at least one element on the stack for operator %%m.\n");
709 select_op_fullmod(design, work_stack[work_stack.size()-1]);
710 } else
711 if (arg == "%a") {
712 if (work_stack.size() < 1)
713 log_cmd_error("Must have at least one element on the stack for operator %%a.\n");
714 select_op_alias(design, work_stack[work_stack.size()-1]);
715 } else
716 if (arg == "%x" || (arg.size() > 2 && arg.compare(0, 2, "%x") == 0 && (arg[2] == ':' || arg[2] == '*' || arg[2] == '.' || ('0' <= arg[2] && arg[2] <= '9')))) {
717 if (work_stack.size() < 1)
718 log_cmd_error("Must have at least one element on the stack for operator %%x.\n");
719 select_op_expand(design, arg, 'x', false);
720 } else
721 if (arg == "%ci" || (arg.size() > 3 && arg.compare(0, 3, "%ci") == 0 && (arg[3] == ':' || arg[3] == '*' || arg[3] == '.' || ('0' <= arg[3] && arg[3] <= '9')))) {
722 if (work_stack.size() < 1)
723 log_cmd_error("Must have at least one element on the stack for operator %%ci.\n");
724 select_op_expand(design, arg, 'i', false);
725 } else
726 if (arg == "%co" || (arg.size() > 3 && arg.compare(0, 3, "%co") == 0 && (arg[3] == ':' || arg[3] == '*' || arg[3] == '.' || ('0' <= arg[3] && arg[3] <= '9')))) {
727 if (work_stack.size() < 1)
728 log_cmd_error("Must have at least one element on the stack for operator %%co.\n");
729 select_op_expand(design, arg, 'o', false);
730 } else
731 if (arg == "%xe" || (arg.size() > 3 && arg.compare(0, 3, "%xe") == 0 && (arg[3] == ':' || arg[3] == '*' || arg[3] == '.' || ('0' <= arg[3] && arg[3] <= '9')))) {
732 if (work_stack.size() < 1)
733 log_cmd_error("Must have at least one element on the stack for operator %%xe.\n");
734 select_op_expand(design, arg, 'x', true);
735 } else
736 if (arg == "%cie" || (arg.size() > 4 && arg.compare(0, 4, "%cie") == 0 && (arg[4] == ':' || arg[4] == '*' || arg[4] == '.' || ('0' <= arg[4] && arg[4] <= '9')))) {
737 if (work_stack.size() < 1)
738 log_cmd_error("Must have at least one element on the stack for operator %%cie.\n");
739 select_op_expand(design, arg, 'i', true);
740 } else
741 if (arg == "%coe" || (arg.size() > 4 && arg.compare(0, 4, "%coe") == 0 && (arg[4] == ':' || arg[4] == '*' || arg[4] == '.' || ('0' <= arg[4] && arg[4] <= '9')))) {
742 if (work_stack.size() < 1)
743 log_cmd_error("Must have at least one element on the stack for operator %%coe.\n");
744 select_op_expand(design, arg, 'o', true);
745 } else
746 log_cmd_error("Unknown selection operator '%s'.\n", arg.c_str());
747 if (work_stack.size() >= 1)
748 select_filter_active_mod(design, work_stack.back());
749 return;
750 }
751
752 if (arg[0] == '@') {
753 std::string set_name = RTLIL::escape_id(arg.substr(1));
754 if (design->selection_vars.count(set_name) > 0)
755 work_stack.push_back(design->selection_vars[set_name]);
756 else
757 log_cmd_error("Selection @%s is not defined!\n", RTLIL::unescape_id(set_name).c_str());
758 select_filter_active_mod(design, work_stack.back());
759 return;
760 }
761
762 if (!design->selected_active_module.empty()) {
763 arg_mod = design->selected_active_module;
764 arg_memb = arg;
765 if (!prefixed) arg_memb_found[arg_memb] = false;
766 } else
767 if (prefixed && arg[0] >= 'a' && arg[0] <= 'z') {
768 arg_mod = "*", arg_memb = arg;
769 } else {
770 size_t pos = arg.find('/');
771 if (pos == std::string::npos) {
772 arg_mod = arg;
773 if (!prefixed) arg_mod_found[arg_mod] = false;
774 } else {
775 arg_mod = arg.substr(0, pos);
776 if (!prefixed) arg_mod_found[arg_mod] = false;
777 arg_memb = arg.substr(pos+1);
778 bool arg_memb_prefixed = GetSize(arg_memb) >= 2 && isalpha(arg_memb[0]) && arg_memb[1] == ':';
779 if (!arg_memb_prefixed) arg_memb_found[arg_memb] = false;
780 }
781 }
782
783 work_stack.push_back(RTLIL::Selection());
784 RTLIL::Selection &sel = work_stack.back();
785
786 if (arg == "*" && arg_mod == "*") {
787 select_filter_active_mod(design, work_stack.back());
788 return;
789 }
790
791 sel.full_selection = false;
792 for (auto mod : design->modules())
793 {
794 if (arg_mod.compare(0, 2, "A:") == 0) {
795 if (!match_attr(mod->attributes, arg_mod.substr(2)))
796 continue;
797 } else
798 if (arg_mod.compare(0, 2, "N:") == 0) {
799 if (!match_ids(mod->name, arg_mod.substr(2)))
800 continue;
801 } else
802 if (!match_ids(mod->name, arg_mod))
803 continue;
804 else
805 arg_mod_found[arg_mod] = true;
806
807 if (arg_memb == "") {
808 sel.selected_modules.insert(mod->name);
809 continue;
810 }
811
812 if (arg_memb.compare(0, 2, "w:") == 0) {
813 for (auto wire : mod->wires())
814 if (match_ids(wire->name, arg_memb.substr(2)))
815 sel.selected_members[mod->name].insert(wire->name);
816 } else
817 if (arg_memb.compare(0, 2, "i:") == 0) {
818 for (auto wire : mod->wires())
819 if (wire->port_input && match_ids(wire->name, arg_memb.substr(2)))
820 sel.selected_members[mod->name].insert(wire->name);
821 } else
822 if (arg_memb.compare(0, 2, "o:") == 0) {
823 for (auto wire : mod->wires())
824 if (wire->port_output && match_ids(wire->name, arg_memb.substr(2)))
825 sel.selected_members[mod->name].insert(wire->name);
826 } else
827 if (arg_memb.compare(0, 2, "x:") == 0) {
828 for (auto wire : mod->wires())
829 if ((wire->port_input || wire->port_output) && match_ids(wire->name, arg_memb.substr(2)))
830 sel.selected_members[mod->name].insert(wire->name);
831 } else
832 if (arg_memb.compare(0, 2, "s:") == 0) {
833 size_t delim = arg_memb.substr(2).find(':');
834 if (delim == std::string::npos) {
835 int width = atoi(arg_memb.substr(2).c_str());
836 for (auto wire : mod->wires())
837 if (wire->width == width)
838 sel.selected_members[mod->name].insert(wire->name);
839 } else {
840 std::string min_str = arg_memb.substr(2, delim);
841 std::string max_str = arg_memb.substr(2+delim+1);
842 int min_width = min_str.empty() ? 0 : atoi(min_str.c_str());
843 int max_width = max_str.empty() ? -1 : atoi(max_str.c_str());
844 for (auto wire : mod->wires())
845 if (min_width <= wire->width && (wire->width <= max_width || max_width == -1))
846 sel.selected_members[mod->name].insert(wire->name);
847 }
848 } else
849 if (arg_memb.compare(0, 2, "m:") == 0) {
850 for (auto &it : mod->memories)
851 if (match_ids(it.first, arg_memb.substr(2)))
852 sel.selected_members[mod->name].insert(it.first);
853 } else
854 if (arg_memb.compare(0, 2, "c:") == 0) {
855 for (auto cell : mod->cells())
856 if (match_ids(cell->name, arg_memb.substr(2)))
857 sel.selected_members[mod->name].insert(cell->name);
858 } else
859 if (arg_memb.compare(0, 2, "t:") == 0) {
860 for (auto cell : mod->cells())
861 if (match_ids(cell->type, arg_memb.substr(2)))
862 sel.selected_members[mod->name].insert(cell->name);
863 } else
864 if (arg_memb.compare(0, 2, "p:") == 0) {
865 for (auto &it : mod->processes)
866 if (match_ids(it.first, arg_memb.substr(2)))
867 sel.selected_members[mod->name].insert(it.first);
868 } else
869 if (arg_memb.compare(0, 2, "a:") == 0) {
870 for (auto wire : mod->wires())
871 if (match_attr(wire->attributes, arg_memb.substr(2)))
872 sel.selected_members[mod->name].insert(wire->name);
873 for (auto &it : mod->memories)
874 if (match_attr(it.second->attributes, arg_memb.substr(2)))
875 sel.selected_members[mod->name].insert(it.first);
876 for (auto cell : mod->cells())
877 if (match_attr(cell->attributes, arg_memb.substr(2)))
878 sel.selected_members[mod->name].insert(cell->name);
879 for (auto &it : mod->processes)
880 if (match_attr(it.second->attributes, arg_memb.substr(2)))
881 sel.selected_members[mod->name].insert(it.first);
882 } else
883 if (arg_memb.compare(0, 2, "r:") == 0) {
884 for (auto cell : mod->cells())
885 if (match_attr(cell->parameters, arg_memb.substr(2)))
886 sel.selected_members[mod->name].insert(cell->name);
887 } else {
888 std::string orig_arg_memb = arg_memb;
889 if (arg_memb.compare(0, 2, "n:") == 0)
890 arg_memb = arg_memb.substr(2);
891 for (auto wire : mod->wires())
892 if (match_ids(wire->name, arg_memb)) {
893 sel.selected_members[mod->name].insert(wire->name);
894 arg_memb_found[orig_arg_memb] = true;
895 }
896 for (auto &it : mod->memories)
897 if (match_ids(it.first, arg_memb)) {
898 sel.selected_members[mod->name].insert(it.first);
899 arg_memb_found[orig_arg_memb] = true;
900 }
901 for (auto cell : mod->cells())
902 if (match_ids(cell->name, arg_memb)) {
903 sel.selected_members[mod->name].insert(cell->name);
904 arg_memb_found[orig_arg_memb] = true;
905 }
906 for (auto &it : mod->processes)
907 if (match_ids(it.first, arg_memb)) {
908 sel.selected_members[mod->name].insert(it.first);
909 arg_memb_found[orig_arg_memb] = true;
910 }
911 }
912 }
913
914 select_filter_active_mod(design, work_stack.back());
915
916 for (auto &it : arg_mod_found) {
917 if (it.second == false && !disable_empty_warning) {
918 log_warning("Selection \"%s\" did not match any module.\n", it.first.c_str());
919 }
920 }
921 for (auto &it : arg_memb_found) {
922 if (it.second == false && !disable_empty_warning) {
923 log_warning("Selection \"%s\" did not match any object.\n", it.first.c_str());
924 }
925 }
926 }
927
928 static std::string describe_selection_for_assert(RTLIL::Design *design, RTLIL::Selection *sel)
929 {
930 std::string desc = "Selection contains:\n";
931 for (auto mod : design->modules())
932 {
933 if (sel->selected_module(mod->name)) {
934 for (auto wire : mod->wires())
935 if (sel->selected_member(mod->name, wire->name))
936 desc += stringf("%s/%s\n", id2cstr(mod->name), id2cstr(wire->name));
937 for (auto &it : mod->memories)
938 if (sel->selected_member(mod->name, it.first))
939 desc += stringf("%s/%s\n", id2cstr(mod->name), id2cstr(it.first));
940 for (auto cell : mod->cells())
941 if (sel->selected_member(mod->name, cell->name))
942 desc += stringf("%s/%s\n", id2cstr(mod->name), id2cstr(cell->name));
943 for (auto &it : mod->processes)
944 if (sel->selected_member(mod->name, it.first))
945 desc += stringf("%s/%s\n", id2cstr(mod->name), id2cstr(it.first));
946 }
947 }
948 return desc;
949 }
950
951 PRIVATE_NAMESPACE_END
952 YOSYS_NAMESPACE_BEGIN
953
954 // used in kernel/register.cc and maybe other locations, extern decl. in register.h
955 void handle_extra_select_args(Pass *pass, vector<string> args, size_t argidx, size_t args_size, RTLIL::Design *design)
956 {
957 work_stack.clear();
958 for (; argidx < args_size; argidx++) {
959 if (args[argidx].compare(0, 1, "-") == 0) {
960 if (pass != nullptr)
961 pass->cmd_error(args, argidx, "Unexpected option in selection arguments.");
962 else
963 log_cmd_error("Unexpected option in selection arguments.");
964 }
965 select_stmt(design, args[argidx]);
966 }
967 while (work_stack.size() > 1) {
968 select_op_union(design, work_stack.front(), work_stack.back());
969 work_stack.pop_back();
970 }
971 if (work_stack.empty())
972 design->selection_stack.push_back(RTLIL::Selection(false));
973 else
974 design->selection_stack.push_back(work_stack.back());
975 }
976
977 // extern decl. in register.h
978 RTLIL::Selection eval_select_args(const vector<string> &args, RTLIL::Design *design)
979 {
980 work_stack.clear();
981 for (auto &arg : args)
982 select_stmt(design, arg);
983 while (work_stack.size() > 1) {
984 select_op_union(design, work_stack.front(), work_stack.back());
985 work_stack.pop_back();
986 }
987 if (work_stack.empty())
988 return RTLIL::Selection(false);
989 return work_stack.back();
990 }
991
992 // extern decl. in register.h
993 void eval_select_op(vector<RTLIL::Selection> &work, const string &op, RTLIL::Design *design)
994 {
995 work_stack.swap(work);
996 select_stmt(design, op);
997 work_stack.swap(work);
998 }
999
1000 YOSYS_NAMESPACE_END
1001 PRIVATE_NAMESPACE_BEGIN
1002
1003 struct SelectPass : public Pass {
1004 SelectPass() : Pass("select", "modify and view the list of selected objects") { }
1005 void help() YS_OVERRIDE
1006 {
1007 // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
1008 log("\n");
1009 log(" select [ -add | -del | -set <name> ] {-read <filename> | <selection>}\n");
1010 log(" select [ -unset <name> ]\n");
1011 log(" select [ <assert_option> ] {-read <filename> | <selection>}\n");
1012 log(" select [ -list | -write <filename> | -count | -clear ]\n");
1013 log(" select -module <modname>\n");
1014 log("\n");
1015 log("Most commands use the list of currently selected objects to determine which part\n");
1016 log("of the design to operate on. This command can be used to modify and view this\n");
1017 log("list of selected objects.\n");
1018 log("\n");
1019 log("Note that many commands support an optional [selection] argument that can be\n");
1020 log("used to override the global selection for the command. The syntax of this\n");
1021 log("optional argument is identical to the syntax of the <selection> argument\n");
1022 log("described here.\n");
1023 log("\n");
1024 log(" -add, -del\n");
1025 log(" add or remove the given objects to the current selection.\n");
1026 log(" without this options the current selection is replaced.\n");
1027 log("\n");
1028 log(" -set <name>\n");
1029 log(" do not modify the current selection. instead save the new selection\n");
1030 log(" under the given name (see @<name> below). to save the current selection,\n");
1031 log(" use \"select -set <name> %%\"\n");
1032 log("\n");
1033 log(" -unset <name>\n");
1034 log(" do not modify the current selection. instead remove a previously saved\n");
1035 log(" selection under the given name (see @<name> below).");
1036 log("\n");
1037 log(" -assert-none\n");
1038 log(" do not modify the current selection. instead assert that the given\n");
1039 log(" selection is empty. i.e. produce an error if any object matching the\n");
1040 log(" selection is found.\n");
1041 log("\n");
1042 log(" -assert-any\n");
1043 log(" do not modify the current selection. instead assert that the given\n");
1044 log(" selection is non-empty. i.e. produce an error if no object matching\n");
1045 log(" the selection is found.\n");
1046 log("\n");
1047 log(" -assert-count N\n");
1048 log(" do not modify the current selection. instead assert that the given\n");
1049 log(" selection contains exactly N objects.\n");
1050 log("\n");
1051 log(" -assert-max N\n");
1052 log(" do not modify the current selection. instead assert that the given\n");
1053 log(" selection contains less than or exactly N objects.\n");
1054 log("\n");
1055 log(" -assert-min N\n");
1056 log(" do not modify the current selection. instead assert that the given\n");
1057 log(" selection contains at least N objects.\n");
1058 log("\n");
1059 log(" -list\n");
1060 log(" list all objects in the current selection\n");
1061 log("\n");
1062 log(" -write <filename>\n");
1063 log(" like -list but write the output to the specified file\n");
1064 log("\n");
1065 log(" -read <filename>\n");
1066 log(" read the specified file (written by -write)\n");
1067 log("\n");
1068 log(" -count\n");
1069 log(" count all objects in the current selection\n");
1070 log("\n");
1071 log(" -clear\n");
1072 log(" clear the current selection. this effectively selects the whole\n");
1073 log(" design. it also resets the selected module (see -module). use the\n");
1074 log(" command 'select *' to select everything but stay in the current module.\n");
1075 log("\n");
1076 log(" -none\n");
1077 log(" create an empty selection. the current module is unchanged.\n");
1078 log("\n");
1079 log(" -module <modname>\n");
1080 log(" limit the current scope to the specified module.\n");
1081 log(" the difference between this and simply selecting the module\n");
1082 log(" is that all object names are interpreted relative to this\n");
1083 log(" module after this command until the selection is cleared again.\n");
1084 log("\n");
1085 log("When this command is called without an argument, the current selection\n");
1086 log("is displayed in a compact form (i.e. only the module name when a whole module\n");
1087 log("is selected).\n");
1088 log("\n");
1089 log("The <selection> argument itself is a series of commands for a simple stack\n");
1090 log("machine. Each element on the stack represents a set of selected objects.\n");
1091 log("After this commands have been executed, the union of all remaining sets\n");
1092 log("on the stack is computed and used as selection for the command.\n");
1093 log("\n");
1094 log("Pushing (selecting) object when not in -module mode:\n");
1095 log("\n");
1096 log(" <mod_pattern>\n");
1097 log(" select the specified module(s)\n");
1098 log("\n");
1099 log(" <mod_pattern>/<obj_pattern>\n");
1100 log(" select the specified object(s) from the module(s)\n");
1101 log("\n");
1102 log("Pushing (selecting) object when in -module mode:\n");
1103 log("\n");
1104 log(" <obj_pattern>\n");
1105 log(" select the specified object(s) from the current module\n");
1106 log("\n");
1107 log("A <mod_pattern> can be a module name, wildcard expression (*, ?, [..])\n");
1108 log("matching module names, or one of the following:\n");
1109 log("\n");
1110 log(" A:<pattern>, A:<pattern>=<pattern>\n");
1111 log(" all modules with an attribute matching the given pattern\n");
1112 log(" in addition to = also <, <=, >=, and > are supported\n");
1113 log("\n");
1114 log(" N:<pattern>\n");
1115 log(" all modules with a name matching the given pattern\n");
1116 log(" (i.e. 'N:' is optional as it is the default matching rule)\n");
1117 log("\n");
1118 log("An <obj_pattern> can be an object name, wildcard expression, or one of\n");
1119 log("the following:\n");
1120 log("\n");
1121 log(" w:<pattern>\n");
1122 log(" all wires with a name matching the given wildcard pattern\n");
1123 log("\n");
1124 log(" i:<pattern>, o:<pattern>, x:<pattern>\n");
1125 log(" all inputs (i:), outputs (o:) or any ports (x:) with matching names\n");
1126 log("\n");
1127 log(" s:<size>, s:<min>:<max>\n");
1128 log(" all wires with a matching width\n");
1129 log("\n");
1130 log(" m:<pattern>\n");
1131 log(" all memories with a name matching the given pattern\n");
1132 log("\n");
1133 log(" c:<pattern>\n");
1134 log(" all cells with a name matching the given pattern\n");
1135 log("\n");
1136 log(" t:<pattern>\n");
1137 log(" all cells with a type matching the given pattern\n");
1138 log("\n");
1139 log(" p:<pattern>\n");
1140 log(" all processes with a name matching the given pattern\n");
1141 log("\n");
1142 log(" a:<pattern>\n");
1143 log(" all objects with an attribute name matching the given pattern\n");
1144 log("\n");
1145 log(" a:<pattern>=<pattern>\n");
1146 log(" all objects with a matching attribute name-value-pair.\n");
1147 log(" in addition to = also <, <=, >=, and > are supported\n");
1148 log("\n");
1149 log(" r:<pattern>, r:<pattern>=<pattern>\n");
1150 log(" cells with matching parameters. also with <, <=, >= and >.\n");
1151 log("\n");
1152 log(" n:<pattern>\n");
1153 log(" all objects with a name matching the given pattern\n");
1154 log(" (i.e. 'n:' is optional as it is the default matching rule)\n");
1155 log("\n");
1156 log(" @<name>\n");
1157 log(" push the selection saved prior with 'select -set <name> ...'\n");
1158 log("\n");
1159 log("The following actions can be performed on the top sets on the stack:\n");
1160 log("\n");
1161 log(" %%\n");
1162 log(" push a copy of the current selection to the stack\n");
1163 log("\n");
1164 log(" %%%%\n");
1165 log(" replace the stack with a union of all elements on it\n");
1166 log("\n");
1167 log(" %%n\n");
1168 log(" replace top set with its invert\n");
1169 log("\n");
1170 log(" %%u\n");
1171 log(" replace the two top sets on the stack with their union\n");
1172 log("\n");
1173 log(" %%i\n");
1174 log(" replace the two top sets on the stack with their intersection\n");
1175 log("\n");
1176 log(" %%d\n");
1177 log(" pop the top set from the stack and subtract it from the new top\n");
1178 log("\n");
1179 log(" %%D\n");
1180 log(" like %%d but swap the roles of two top sets on the stack\n");
1181 log("\n");
1182 log(" %%c\n");
1183 log(" create a copy of the top set from the stack and push it\n");
1184 log("\n");
1185 log(" %%x[<num1>|*][.<num2>][:<rule>[:<rule>..]]\n");
1186 log(" expand top set <num1> num times according to the specified rules.\n");
1187 log(" (i.e. select all cells connected to selected wires and select all\n");
1188 log(" wires connected to selected cells) The rules specify which cell\n");
1189 log(" ports to use for this. the syntax for a rule is a '-' for exclusion\n");
1190 log(" and a '+' for inclusion, followed by an optional comma separated\n");
1191 log(" list of cell types followed by an optional comma separated list of\n");
1192 log(" cell ports in square brackets. a rule can also be just a cell or wire\n");
1193 log(" name that limits the expansion (is included but does not go beyond).\n");
1194 log(" select at most <num2> objects. a warning message is printed when this\n");
1195 log(" limit is reached. When '*' is used instead of <num1> then the process\n");
1196 log(" is repeated until no further object are selected.\n");
1197 log("\n");
1198 log(" %%ci[<num1>|*][.<num2>][:<rule>[:<rule>..]]\n");
1199 log(" %%co[<num1>|*][.<num2>][:<rule>[:<rule>..]]\n");
1200 log(" similar to %%x, but only select input (%%ci) or output cones (%%co)\n");
1201 log("\n");
1202 log(" %%xe[...] %%cie[...] %%coe\n");
1203 log(" like %%x, %%ci, and %%co but only consider combinatorial cells\n");
1204 log("\n");
1205 log(" %%a\n");
1206 log(" expand top set by selecting all wires that are (at least in part)\n");
1207 log(" aliases for selected wires.\n");
1208 log("\n");
1209 log(" %%s\n");
1210 log(" expand top set by adding all modules that implement cells in selected\n");
1211 log(" modules\n");
1212 log("\n");
1213 log(" %%m\n");
1214 log(" expand top set by selecting all modules that contain selected objects\n");
1215 log("\n");
1216 log(" %%M\n");
1217 log(" select modules that implement selected cells\n");
1218 log("\n");
1219 log(" %%C\n");
1220 log(" select cells that implement selected modules\n");
1221 log("\n");
1222 log(" %%R[<num>]\n");
1223 log(" select <num> random objects from top selection (default 1)\n");
1224 log("\n");
1225 log("Example: the following command selects all wires that are connected to a\n");
1226 log("'GATE' input of a 'SWITCH' cell:\n");
1227 log("\n");
1228 log(" select */t:SWITCH %%x:+[GATE] */t:SWITCH %%d\n");
1229 log("\n");
1230 }
1231 void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
1232 {
1233 bool add_mode = false;
1234 bool del_mode = false;
1235 bool clear_mode = false;
1236 bool none_mode = false;
1237 bool list_mode = false;
1238 bool count_mode = false;
1239 bool got_module = false;
1240 bool assert_none = false;
1241 bool assert_any = false;
1242 int assert_count = -1;
1243 int assert_max = -1;
1244 int assert_min = -1;
1245 std::string write_file, read_file;
1246 std::string set_name, unset_name, sel_str;
1247
1248 work_stack.clear();
1249
1250 size_t argidx;
1251 for (argidx = 1; argidx < args.size(); argidx++)
1252 {
1253 std::string arg = args[argidx];
1254 if (arg == "-add") {
1255 add_mode = true;
1256 continue;
1257 }
1258 if (arg == "-del") {
1259 del_mode = true;
1260 continue;
1261 }
1262 if (arg == "-assert-none") {
1263 assert_none = true;
1264 continue;
1265 }
1266 if (arg == "-assert-any") {
1267 assert_any = true;
1268 continue;
1269 }
1270 if (arg == "-assert-count" && argidx+1 < args.size()) {
1271 assert_count = atoi(args[++argidx].c_str());
1272 continue;
1273 }
1274 if (arg == "-assert-max" && argidx+1 < args.size()) {
1275 assert_max = atoi(args[++argidx].c_str());
1276 continue;
1277 }
1278 if (arg == "-assert-min" && argidx+1 < args.size()) {
1279 assert_min = atoi(args[++argidx].c_str());
1280 continue;
1281 }
1282 if (arg == "-clear") {
1283 clear_mode = true;
1284 continue;
1285 }
1286 if (arg == "-none") {
1287 none_mode = true;
1288 continue;
1289 }
1290 if (arg == "-list") {
1291 list_mode = true;
1292 continue;
1293 }
1294 if (arg == "-write" && argidx+1 < args.size()) {
1295 write_file = args[++argidx];
1296 continue;
1297 }
1298 if (arg == "-read" && argidx+1 < args.size()) {
1299 read_file = args[++argidx];
1300 continue;
1301 }
1302 if (arg == "-count") {
1303 count_mode = true;
1304 continue;
1305 }
1306 if (arg == "-module" && argidx+1 < args.size()) {
1307 RTLIL::IdString mod_name = RTLIL::escape_id(args[++argidx]);
1308 if (design->module(mod_name) == nullptr)
1309 log_cmd_error("No such module: %s\n", id2cstr(mod_name));
1310 design->selected_active_module = mod_name.str();
1311 got_module = true;
1312 continue;
1313 }
1314 if (arg == "-set" && argidx+1 < args.size()) {
1315 set_name = RTLIL::escape_id(args[++argidx]);
1316 continue;
1317 }
1318 if (arg == "-unset" && argidx+1 < args.size()) {
1319 unset_name = RTLIL::escape_id(args[++argidx]);
1320 continue;
1321 }
1322 if (arg.size() > 0 && arg[0] == '-')
1323 log_cmd_error("Unknown option %s.\n", arg.c_str());
1324 bool disable_empty_warning = count_mode || assert_none || assert_any || (assert_count != -1) || (assert_max != -1) || (assert_min != -1);
1325 select_stmt(design, arg, disable_empty_warning);
1326 sel_str += " " + arg;
1327 }
1328
1329 if (!read_file.empty())
1330 {
1331 if (!sel_str.empty())
1332 log_cmd_error("Option -read can not be combined with a selection expression.\n");
1333
1334 std::ifstream f(read_file);
1335 yosys_input_files.insert(read_file);
1336 if (f.fail())
1337 log_error("Can't open '%s' for reading: %s\n", read_file.c_str(), strerror(errno));
1338
1339 RTLIL::Selection sel(false);
1340 string line;
1341
1342 while (std::getline(f, line)) {
1343 size_t slash_pos = line.find('/');
1344 if (slash_pos == string::npos) {
1345 log_warning("Ignoring line without slash in 'select -read': %s\n", line.c_str());
1346 continue;
1347 }
1348 IdString mod_name = RTLIL::escape_id(line.substr(0, slash_pos));
1349 IdString obj_name = RTLIL::escape_id(line.substr(slash_pos+1));
1350 sel.selected_members[mod_name].insert(obj_name);
1351 }
1352
1353 select_filter_active_mod(design, sel);
1354 sel.optimize(design);
1355 work_stack.push_back(sel);
1356 }
1357
1358 if (clear_mode && args.size() != 2)
1359 log_cmd_error("Option -clear can not be combined with any other options.\n");
1360
1361 if (none_mode && args.size() != 2)
1362 log_cmd_error("Option -none can not be combined with any other options.\n");
1363
1364 if (add_mode + del_mode + assert_none + assert_any + (assert_count >= 0) + (assert_max >= 0) + (assert_min >= 0) > 1)
1365 log_cmd_error("Options -add, -del, -assert-none, -assert-any, assert-count, -assert-max or -assert-min can not be combined.\n");
1366
1367 if ((list_mode || !write_file.empty() || count_mode) && (add_mode || del_mode || assert_none || assert_any || assert_count >= 0 || assert_max >= 0 || assert_min >= 0))
1368 log_cmd_error("Options -list, -write and -count can not be combined with -add, -del, -assert-none, -assert-any, assert-count, -assert-max, or -assert-min.\n");
1369
1370 if (!set_name.empty() && (list_mode || !write_file.empty() || count_mode || add_mode || !unset_name.empty() || del_mode || assert_none || assert_any || assert_count >= 0 || assert_max >= 0 || assert_min >= 0))
1371 log_cmd_error("Option -set can not be combined with -list, -write, -count, -add, -del, -unset, -assert-none, -assert-any, -assert-count, -assert-max, or -assert-min.\n");
1372
1373 if (!unset_name.empty() && (list_mode || !write_file.empty() || count_mode || add_mode || !set_name.empty() || del_mode || assert_none || assert_any || assert_count >= 0 || assert_max >= 0 || assert_min >= 0))
1374 log_cmd_error("Option -unset can not be combined with -list, -write, -count, -add, -del, -set, -assert-none, -assert-any, -assert-count, -assert-max, or -assert-min.\n");
1375
1376 if (work_stack.size() == 0 && got_module) {
1377 RTLIL::Selection sel;
1378 select_filter_active_mod(design, sel);
1379 work_stack.push_back(sel);
1380 }
1381
1382 while (work_stack.size() > 1) {
1383 select_op_union(design, work_stack.front(), work_stack.back());
1384 work_stack.pop_back();
1385 }
1386
1387 log_assert(design->selection_stack.size() > 0);
1388
1389 if (clear_mode) {
1390 design->selection_stack.back() = RTLIL::Selection(true);
1391 design->selected_active_module = std::string();
1392 return;
1393 }
1394
1395 if (none_mode) {
1396 design->selection_stack.back() = RTLIL::Selection(false);
1397 return;
1398 }
1399
1400 if (list_mode || count_mode || !write_file.empty())
1401 {
1402 #define LOG_OBJECT(...) { if (list_mode) log(__VA_ARGS__); if (f != nullptr) fprintf(f, __VA_ARGS__); total_count++; }
1403 int total_count = 0;
1404 FILE *f = nullptr;
1405 if (!write_file.empty()) {
1406 f = fopen(write_file.c_str(), "w");
1407 yosys_output_files.insert(write_file);
1408 if (f == nullptr)
1409 log_error("Can't open '%s' for writing: %s\n", write_file.c_str(), strerror(errno));
1410 }
1411 RTLIL::Selection *sel = &design->selection_stack.back();
1412 if (work_stack.size() > 0)
1413 sel = &work_stack.back();
1414 sel->optimize(design);
1415 for (auto mod : design->modules())
1416 {
1417 if (sel->selected_whole_module(mod->name) && list_mode)
1418 log("%s\n", id2cstr(mod->name));
1419 if (sel->selected_module(mod->name)) {
1420 for (auto wire : mod->wires())
1421 if (sel->selected_member(mod->name, wire->name))
1422 LOG_OBJECT("%s/%s\n", id2cstr(mod->name), id2cstr(wire->name))
1423 for (auto &it : mod->memories)
1424 if (sel->selected_member(mod->name, it.first))
1425 LOG_OBJECT("%s/%s\n", id2cstr(mod->name), id2cstr(it.first))
1426 for (auto cell : mod->cells())
1427 if (sel->selected_member(mod->name, cell->name))
1428 LOG_OBJECT("%s/%s\n", id2cstr(mod->name), id2cstr(cell->name))
1429 for (auto &it : mod->processes)
1430 if (sel->selected_member(mod->name, it.first))
1431 LOG_OBJECT("%s/%s\n", id2cstr(mod->name), id2cstr(it.first))
1432 }
1433 }
1434 if (count_mode)
1435 log("%d objects.\n", total_count);
1436 if (f != nullptr)
1437 fclose(f);
1438 #undef LOG_OBJECT
1439 return;
1440 }
1441
1442 if (add_mode)
1443 {
1444 if (work_stack.size() == 0)
1445 log_cmd_error("Nothing to add to selection.\n");
1446 select_op_union(design, design->selection_stack.back(), work_stack.back());
1447 design->selection_stack.back().optimize(design);
1448 return;
1449 }
1450
1451 if (del_mode)
1452 {
1453 if (work_stack.size() == 0)
1454 log_cmd_error("Nothing to delete from selection.\n");
1455 select_op_diff(design, design->selection_stack.back(), work_stack.back());
1456 design->selection_stack.back().optimize(design);
1457 return;
1458 }
1459
1460 if (assert_none)
1461 {
1462 if (work_stack.size() == 0)
1463 log_cmd_error("No selection to check.\n");
1464 work_stack.back().optimize(design);
1465 if (!work_stack.back().empty())
1466 {
1467 RTLIL::Selection *sel = &work_stack.back();
1468 sel->optimize(design);
1469 std::string desc = describe_selection_for_assert(design, sel);
1470 log_error("Assertion failed: selection is not empty:%s\n%s", sel_str.c_str(), desc.c_str());
1471 }
1472 return;
1473 }
1474
1475 if (assert_any)
1476 {
1477 if (work_stack.size() == 0)
1478 log_cmd_error("No selection to check.\n");
1479 work_stack.back().optimize(design);
1480 if (work_stack.back().empty())
1481 {
1482 RTLIL::Selection *sel = &work_stack.back();
1483 sel->optimize(design);
1484 std::string desc = describe_selection_for_assert(design, sel);
1485 log_error("Assertion failed: selection is empty:%s\n%s", sel_str.c_str(), desc.c_str());
1486 }
1487 return;
1488 }
1489
1490 if (assert_count >= 0 || assert_max >= 0 || assert_min >= 0)
1491 {
1492 int total_count = 0;
1493 if (work_stack.size() == 0)
1494 log_cmd_error("No selection to check.\n");
1495 RTLIL::Selection *sel = &work_stack.back();
1496 sel->optimize(design);
1497 for (auto mod : design->modules())
1498 if (sel->selected_module(mod->name)) {
1499 for (auto wire : mod->wires())
1500 if (sel->selected_member(mod->name, wire->name))
1501 total_count++;
1502 for (auto &it : mod->memories)
1503 if (sel->selected_member(mod->name, it.first))
1504 total_count++;
1505 for (auto cell : mod->cells())
1506 if (sel->selected_member(mod->name, cell->name))
1507 total_count++;
1508 for (auto &it : mod->processes)
1509 if (sel->selected_member(mod->name, it.first))
1510 total_count++;
1511 }
1512 if (assert_count >= 0 && assert_count != total_count)
1513 {
1514 std::string desc = describe_selection_for_assert(design, sel);
1515 log_error("Assertion failed: selection contains %d elements instead of the asserted %d:%s\n%s",
1516 total_count, assert_count, sel_str.c_str(), desc.c_str());
1517 }
1518 if (assert_max >= 0 && assert_max < total_count)
1519 {
1520 std::string desc = describe_selection_for_assert(design, sel);
1521 log_error("Assertion failed: selection contains %d elements, more than the maximum number %d:%s\n%s",
1522 total_count, assert_max, sel_str.c_str(), desc.c_str());
1523 }
1524 if (assert_min >= 0 && assert_min > total_count)
1525 {
1526 std::string desc = describe_selection_for_assert(design, sel);
1527 log_error("Assertion failed: selection contains %d elements, less than the minimum number %d:%s\n%s",
1528 total_count, assert_min, sel_str.c_str(), desc.c_str());
1529 }
1530 return;
1531 }
1532
1533 if (!set_name.empty())
1534 {
1535 if (work_stack.size() == 0)
1536 design->selection_vars[set_name] = RTLIL::Selection(false);
1537 else
1538 design->selection_vars[set_name] = work_stack.back();
1539 return;
1540 }
1541
1542 if (!unset_name.empty())
1543 {
1544 if (!design->selection_vars.erase(unset_name))
1545 log_error("Selection '%s' does not exist!\n", unset_name.c_str());
1546 return;
1547 }
1548
1549 if (work_stack.size() == 0) {
1550 RTLIL::Selection &sel = design->selection_stack.back();
1551 if (sel.full_selection)
1552 log("*\n");
1553 for (auto &it : sel.selected_modules)
1554 log("%s\n", id2cstr(it));
1555 for (auto &it : sel.selected_members)
1556 for (auto &it2 : it.second)
1557 log("%s/%s\n", id2cstr(it.first), id2cstr(it2));
1558 return;
1559 }
1560
1561 design->selection_stack.back() = work_stack.back();
1562 design->selection_stack.back().optimize(design);
1563 }
1564 } SelectPass;
1565
1566 struct CdPass : public Pass {
1567 CdPass() : Pass("cd", "a shortcut for 'select -module <name>'") { }
1568 void help() YS_OVERRIDE
1569 {
1570 // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
1571 log("\n");
1572 log(" cd <modname>\n");
1573 log("\n");
1574 log("This is just a shortcut for 'select -module <modname>'.\n");
1575 log("\n");
1576 log("\n");
1577 log(" cd <cellname>\n");
1578 log("\n");
1579 log("When no module with the specified name is found, but there is a cell\n");
1580 log("with the specified name in the current module, then this is equivalent\n");
1581 log("to 'cd <celltype>'.\n");
1582 log("\n");
1583 log(" cd ..\n");
1584 log("\n");
1585 log("Remove trailing substrings that start with '.' in current module name until\n");
1586 log("the name of a module in the current design is generated, then switch to that\n");
1587 log("module. Otherwise clear the current selection.\n");
1588 log("\n");
1589 log(" cd\n");
1590 log("\n");
1591 log("This is just a shortcut for 'select -clear'.\n");
1592 log("\n");
1593 }
1594 void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
1595 {
1596 if (args.size() != 1 && args.size() != 2)
1597 log_cmd_error("Invalid number of arguments.\n");
1598
1599 if (args.size() == 1 || args[1] == "/") {
1600 design->selection_stack.back() = RTLIL::Selection(true);
1601 design->selected_active_module = std::string();
1602 return;
1603 }
1604
1605 if (args[1] == "..")
1606 {
1607 string modname = design->selected_active_module;
1608
1609 design->selection_stack.back() = RTLIL::Selection(true);
1610 design->selected_active_module = std::string();
1611
1612 while (1)
1613 {
1614 size_t pos = modname.rfind('.');
1615
1616 if (pos == string::npos)
1617 break;
1618
1619 modname = modname.substr(0, pos);
1620 Module *mod = design->module(modname);
1621
1622 if (mod == nullptr)
1623 continue;
1624
1625 design->selected_active_module = modname;
1626 design->selection_stack.back() = RTLIL::Selection();
1627 select_filter_active_mod(design, design->selection_stack.back());
1628 design->selection_stack.back().optimize(design);
1629 return;
1630 }
1631
1632 return;
1633 }
1634
1635 std::string modname = RTLIL::escape_id(args[1]);
1636
1637 if (design->module(modname) == nullptr && !design->selected_active_module.empty()) {
1638 RTLIL::Module *module = design->module(design->selected_active_module);
1639 if (module != nullptr && module->cell(modname) != nullptr)
1640 modname = module->cell(modname)->type.str();
1641 }
1642
1643 if (design->module(modname) != nullptr) {
1644 design->selected_active_module = modname;
1645 design->selection_stack.back() = RTLIL::Selection();
1646 select_filter_active_mod(design, design->selection_stack.back());
1647 design->selection_stack.back().optimize(design);
1648 return;
1649 }
1650
1651 log_cmd_error("No such module `%s' found!\n", RTLIL::unescape_id(modname).c_str());
1652 }
1653 } CdPass;
1654
1655 template<typename T>
1656 static void log_matches(const char *title, Module *module, T list)
1657 {
1658 std::vector<IdString> matches;
1659
1660 for (auto &it : list)
1661 if (module->selected(it.second))
1662 matches.push_back(it.first);
1663
1664 if (!matches.empty()) {
1665 log("\n%d %s:\n", int(matches.size()), title);
1666 std::sort(matches.begin(), matches.end(), RTLIL::sort_by_id_str());
1667 for (auto id : matches)
1668 log(" %s\n", RTLIL::id2cstr(id));
1669 }
1670 }
1671
1672 struct LsPass : public Pass {
1673 LsPass() : Pass("ls", "list modules or objects in modules") { }
1674 void help() YS_OVERRIDE
1675 {
1676 // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
1677 log("\n");
1678 log(" ls [selection]\n");
1679 log("\n");
1680 log("When no active module is selected, this prints a list of modules.\n");
1681 log("\n");
1682 log("When an active module is selected, this prints a list of objects in the module.\n");
1683 log("\n");
1684 }
1685 void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
1686 {
1687 size_t argidx = 1;
1688 extra_args(args, argidx, design);
1689
1690 if (design->selected_active_module.empty())
1691 {
1692 std::vector<IdString> matches;
1693
1694 for (auto mod : design->selected_modules())
1695 matches.push_back(mod->name);
1696
1697 if (!matches.empty()) {
1698 log("\n%d %s:\n", int(matches.size()), "modules");
1699 std::sort(matches.begin(), matches.end(), RTLIL::sort_by_id_str());
1700 for (auto id : matches)
1701 log(" %s%s\n", log_id(id), design->selected_whole_module(design->module(id)) ? "" : "*");
1702 }
1703 }
1704 else
1705 if (design->module(design->selected_active_module) != nullptr)
1706 {
1707 RTLIL::Module *module = design->module(design->selected_active_module);
1708 log_matches("wires", module, module->wires_);
1709 log_matches("memories", module, module->memories);
1710 log_matches("cells", module, module->cells_);
1711 log_matches("processes", module, module->processes);
1712 }
1713 }
1714 } LsPass;
1715
1716 PRIVATE_NAMESPACE_END