Add support for cell arrays
[yosys.git] / passes / hierarchy / hierarchy.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/register.h"
21 #include "kernel/log.h"
22 #include <stdlib.h>
23 #include <stdio.h>
24 #include <fnmatch.h>
25 #include <set>
26 #include <unistd.h>
27
28 namespace {
29 struct generate_port_decl_t {
30 bool input, output;
31 std::string portname;
32 int index;
33 };
34 }
35
36 static void generate(RTLIL::Design *design, const std::vector<std::string> &celltypes, const std::vector<generate_port_decl_t> &portdecls)
37 {
38 std::set<std::string> found_celltypes;
39
40 for (auto i1 : design->modules)
41 for (auto i2 : i1.second->cells)
42 {
43 RTLIL::Cell *cell = i2.second;
44 if (cell->type[0] == '$' || design->modules.count(cell->type) > 0)
45 continue;
46 for (auto &pattern : celltypes)
47 if (!fnmatch(pattern.c_str(), RTLIL::unescape_id(cell->type).c_str(), FNM_NOESCAPE))
48 found_celltypes.insert(cell->type);
49 }
50
51 for (auto &celltype : found_celltypes)
52 {
53 std::set<std::string> portnames;
54 std::set<std::string> parameters;
55 std::map<std::string, int> portwidths;
56 log("Generate module for cell type %s:\n", celltype.c_str());
57
58 for (auto i1 : design->modules)
59 for (auto i2 : i1.second->cells)
60 if (i2.second->type == celltype) {
61 for (auto &conn : i2.second->connections) {
62 if (conn.first[0] != '$')
63 portnames.insert(conn.first);
64 portwidths[conn.first] = std::max(portwidths[conn.first], conn.second.width);
65 }
66 for (auto &para : i2.second->parameters)
67 parameters.insert(para.first);
68 }
69
70 for (auto &decl : portdecls)
71 if (decl.index > 0)
72 portnames.insert(decl.portname);
73
74 std::set<int> indices;
75 for (int i = 0; i < int(portnames.size()); i++)
76 indices.insert(i+1);
77
78 std::vector<generate_port_decl_t> ports(portnames.size());
79
80 for (auto &decl : portdecls)
81 if (decl.index > 0) {
82 portwidths[decl.portname] = std::max(portwidths[decl.portname], 1);
83 portwidths[decl.portname] = std::max(portwidths[decl.portname], portwidths[stringf("$%d", decl.index)]);
84 log(" port %d: %s [%d:0] %s\n", decl.index, decl.input ? decl.output ? "inout" : "input" : "output", portwidths[decl.portname]-1, RTLIL::id2cstr(decl.portname));
85 if (indices.count(decl.index) > ports.size())
86 log_error("Port index (%d) exceeds number of found ports (%d).\n", decl.index, int(ports.size()));
87 if (indices.count(decl.index) == 0)
88 log_error("Conflict on port index %d.\n", decl.index);
89 indices.erase(decl.index);
90 portnames.erase(decl.portname);
91 ports[decl.index-1] = decl;
92 }
93
94 while (portnames.size() > 0) {
95 std::string portname = *portnames.begin();
96 for (auto &decl : portdecls)
97 if (decl.index == 0 && !fnmatch(decl.portname.c_str(), RTLIL::unescape_id(portname).c_str(), FNM_NOESCAPE)) {
98 generate_port_decl_t d = decl;
99 d.portname = portname;
100 d.index = *indices.begin();
101 assert(!indices.empty());
102 indices.erase(d.index);
103 ports[d.index-1] = d;
104 portwidths[d.portname] = std::max(portwidths[d.portname], 1);
105 log(" port %d: %s [%d:0] %s\n", d.index, d.input ? d.output ? "inout" : "input" : "output", portwidths[d.portname]-1, RTLIL::id2cstr(d.portname));
106 goto found_matching_decl;
107 }
108 log_error("Can't match port %s.\n", RTLIL::id2cstr(portname));
109 found_matching_decl:;
110 portnames.erase(portname);
111 }
112
113 assert(indices.empty());
114
115 RTLIL::Module *mod = new RTLIL::Module;
116 mod->name = celltype;
117 mod->attributes["\\blackbox"] = RTLIL::Const(1);
118 design->modules[mod->name] = mod;
119
120 for (auto &decl : ports) {
121 RTLIL::Wire *wire = new RTLIL::Wire;
122 wire->name = decl.portname;
123 wire->width = portwidths.at(decl.portname);
124 wire->port_id = decl.index;
125 wire->port_input = decl.input;
126 wire->port_output = decl.output;
127 mod->add(wire);
128 }
129
130 for (auto &para : parameters)
131 log(" ignoring parameter %s.\n", RTLIL::id2cstr(para));
132
133 log(" module %s created.\n", RTLIL::id2cstr(mod->name));
134 }
135 }
136
137 static bool expand_module(RTLIL::Design *design, RTLIL::Module *module, bool flag_check, std::vector<std::string> &libdirs)
138 {
139 bool did_something = false;
140 std::map<RTLIL::Cell*, std::pair<int, int>> array_cells;
141 std::string filename;
142
143 for (auto &cell_it : module->cells)
144 {
145 RTLIL::Cell *cell = cell_it.second;
146
147 if (cell->type.substr(0, 7) == "$array:") {
148 int pos_idx = cell->type.find_first_of(':');
149 int pos_num = cell->type.find_first_of(':', pos_idx + 1);
150 int pos_type = cell->type.find_first_of(':', pos_num + 1);
151 int idx = atoi(cell->type.substr(pos_idx + 1, pos_num).c_str());
152 int num = atoi(cell->type.substr(pos_num + 1, pos_type).c_str());
153 array_cells[cell] = std::pair<int, int>(idx, num);
154 cell->type = cell->type.substr(pos_type + 1);
155 }
156
157 if (design->modules.count(cell->type) == 0)
158 {
159 if (design->modules.count("$abstract" + cell->type))
160 {
161 cell->type = design->modules.at("$abstract" + cell->type)->derive(design, cell->parameters);
162 cell->parameters.clear();
163 did_something = true;
164 continue;
165 }
166
167 if (cell->type[0] == '$')
168 continue;
169
170 for (auto &dir : libdirs)
171 {
172 filename = dir + "/" + RTLIL::unescape_id(cell->type) + ".v";
173 if (access(filename.c_str(), F_OK) == 0) {
174 std::vector<std::string> args;
175 args.push_back(filename);
176 Frontend::frontend_call(design, NULL, filename, "verilog");
177 goto loaded_module;
178 }
179
180 filename = dir + "/" + RTLIL::unescape_id(cell->type) + ".il";
181 if (access(filename.c_str(), F_OK) == 0) {
182 std::vector<std::string> args;
183 args.push_back(filename);
184 Frontend::frontend_call(design, NULL, filename, "ilang");
185 goto loaded_module;
186 }
187 }
188
189 if (flag_check && cell->type[0] != '$')
190 log_error("Module `%s' referenced in module `%s' in cell `%s' is not part of the design.\n",
191 cell->type.c_str(), module->name.c_str(), cell->name.c_str());
192 continue;
193
194 loaded_module:
195 if (design->modules.count(cell->type) == 0)
196 log_error("File `%s' from libdir does not declare module `%s'.\n", filename.c_str(), cell->type.c_str());
197 did_something = true;
198 }
199
200 if (cell->parameters.size() == 0)
201 continue;
202
203 if (design->modules.at(cell->type)->get_bool_attribute("\\blackbox"))
204 continue;
205
206 RTLIL::Module *mod = design->modules[cell->type];
207 cell->type = mod->derive(design, cell->parameters);
208 cell->parameters.clear();
209 did_something = true;
210 }
211
212 for (auto &it : array_cells)
213 {
214 RTLIL::Cell *cell = it.first;
215 int idx = it.second.first, num = it.second.second;
216
217 if (design->modules.count(cell->type) == 0)
218 log_error("Array cell `%s.%s' of unkown type `%s'.\n", RTLIL::id2cstr(module->name), RTLIL::id2cstr(cell->name), RTLIL::id2cstr(cell->type));
219
220 RTLIL::Module *mod = design->modules[cell->type];
221
222 for (auto &conn : cell->connections) {
223 int conn_size = conn.second.width;
224 if (mod->wires.count(conn.first) == 0)
225 log_error("Array cell `%s.%s' connects to unkown port `%s'.\n", RTLIL::id2cstr(module->name), RTLIL::id2cstr(cell->name), RTLIL::id2cstr(conn.first));
226 int port_size = mod->wires.at(conn.first)->width;
227 if (conn_size == port_size)
228 continue;
229 if (conn_size != port_size*num)
230 log_error("Array cell `%s.%s' has invalid port vs. signal size for port `%s'.\n", RTLIL::id2cstr(module->name), RTLIL::id2cstr(cell->name), RTLIL::id2cstr(conn.first));
231 conn.second = conn.second.extract(port_size*idx, port_size);
232 }
233 }
234
235 return did_something;
236 }
237
238 static void hierarchy_worker(RTLIL::Design *design, std::set<RTLIL::Module*> &used, RTLIL::Module *mod, int indent)
239 {
240 if (used.count(mod) > 0)
241 return;
242
243 if (indent == 0)
244 log("Top module: %s\n", mod->name.c_str());
245 else
246 log("Used module: %*s%s\n", indent, "", mod->name.c_str());
247 used.insert(mod);
248
249 for (auto &it : mod->cells) {
250 if (design->modules.count(it.second->type) > 0)
251 hierarchy_worker(design, used, design->modules[it.second->type], indent+4);
252 }
253 }
254
255 static void hierarchy(RTLIL::Design *design, RTLIL::Module *top, bool purge_lib, bool first_pass)
256 {
257 std::set<RTLIL::Module*> used;
258 hierarchy_worker(design, used, top, 0);
259
260 std::vector<RTLIL::Module*> del_modules;
261 for (auto &it : design->modules)
262 if (used.count(it.second) == 0)
263 del_modules.push_back(it.second);
264
265 for (auto mod : del_modules) {
266 if (first_pass && mod->name.substr(0, 9) == "$abstract")
267 continue;
268 if (!purge_lib && mod->get_bool_attribute("\\blackbox"))
269 continue;
270 log("Removing unused module `%s'.\n", mod->name.c_str());
271 design->modules.erase(mod->name);
272 delete mod;
273 }
274
275 log("Removed %zd unused modules.\n", del_modules.size());
276 }
277
278 struct HierarchyPass : public Pass {
279 HierarchyPass() : Pass("hierarchy", "check, expand and clean up design hierarchy") { }
280 virtual void help()
281 {
282 // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
283 log("\n");
284 log(" hierarchy [-check] [-top <module>]\n");
285 log(" hierarchy -generate <cell-types> <port-decls>\n");
286 log("\n");
287 log("In parametric designs, a module might exists in serveral variations with\n");
288 log("different parameter values. This pass looks at all modules in the current\n");
289 log("design an re-runs the language frontends for the parametric modules as\n");
290 log("needed.\n");
291 log("\n");
292 log(" -check\n");
293 log(" also check the design hierarchy. this generates an error when\n");
294 log(" an unknown module is used as cell type.\n");
295 log("\n");
296 log(" -purge_lib\n");
297 log(" by default the hierarchy command will not remove library (blackbox)\n");
298 log(" module. use this options to also remove unused blackbox modules.\n");
299 log("\n");
300 log(" -libdir <directory>\n");
301 log(" search for files named <module_name>.v in the specified directory\n");
302 log(" for unkown modules and automatically run read_verilog for each\n");
303 log(" unknown module.\n");
304 log("\n");
305 log(" -keep_positionals\n");
306 log(" per default this pass also converts positional arguments in cells\n");
307 log(" to arguments using port names. this option disables this behavior.\n");
308 log("\n");
309 log(" -top <module>\n");
310 log(" use the specified top module to built a design hierarchy. modules\n");
311 log(" outside this tree (unused modules) are removed.\n");
312 log("\n");
313 log(" when the -top option is used, the 'top' attribute will be set on the\n");
314 log(" specified top module. otherwise a module with the 'top' attribute set\n");
315 log(" will implicitly be used as top module, if such a module exists.\n");
316 log("\n");
317 log("In -generate mode this pass generates blackbox modules for the given cell\n");
318 log("types (wildcards supported). For this the design is searched for cells that\n");
319 log("match the given types and then the given port declarations are used to\n");
320 log("determine the direction of the ports. The syntax for a port declaration is:\n");
321 log("\n");
322 log(" {i|o|io}[@<num>]:<portname>\n");
323 log("\n");
324 log("Input ports are specified with the 'i' prefix, output ports with the 'o'\n");
325 log("prefix and inout ports with the 'io' prefix. The optional <num> specifies\n");
326 log("the position of the port in the parameter list (needed when instanciated\n");
327 log("using positional arguments). When <num> is not specified, the <portname> can\n");
328 log("also contain wildcard characters.\n");
329 log("\n");
330 log("This pass ignores the current selection and always operates on all modules\n");
331 log("in the current design.\n");
332 log("\n");
333 }
334 virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
335 {
336 log_header("Executing HIERARCHY pass (managing design hierarchy).\n");
337
338 bool flag_check = false;
339 bool purge_lib = false;
340 RTLIL::Module *top_mod = NULL;
341 std::vector<std::string> libdirs;
342
343 bool generate_mode = false;
344 bool keep_positionals = false;
345 std::vector<std::string> generate_cells;
346 std::vector<generate_port_decl_t> generate_ports;
347
348 size_t argidx;
349 for (argidx = 1; argidx < args.size(); argidx++)
350 {
351 if (args[argidx] == "-generate" && !flag_check && !top_mod) {
352 generate_mode = true;
353 log("Entering generate mode.\n");
354 while (++argidx < args.size()) {
355 const char *p = args[argidx].c_str();
356 generate_port_decl_t decl;
357 if (p[0] == 'i' && p[1] == 'o')
358 decl.input = true, decl.output = true, p += 2;
359 else if (*p == 'i')
360 decl.input = true, decl.output = false, p++;
361 else if (*p == 'o')
362 decl.input = false, decl.output = true, p++;
363 else
364 goto is_celltype;
365 if (*p == '@') {
366 char *endptr;
367 decl.index = strtol(++p, &endptr, 10);
368 if (decl.index < 1)
369 goto is_celltype;
370 p = endptr;
371 } else
372 decl.index = 0;
373 if (*(p++) != ':')
374 goto is_celltype;
375 if (*p == 0)
376 goto is_celltype;
377 decl.portname = p;
378 log("Port declaration: %s", decl.input ? decl.output ? "inout" : "input" : "output");
379 if (decl.index >= 1)
380 log(" [at position %d]", decl.index);
381 log(" %s\n", decl.portname.c_str());
382 generate_ports.push_back(decl);
383 continue;
384 is_celltype:
385 log("Celltype: %s\n", args[argidx].c_str());
386 generate_cells.push_back(RTLIL::unescape_id(args[argidx]));
387 }
388 continue;
389 }
390 if (args[argidx] == "-check") {
391 flag_check = true;
392 continue;
393 }
394 if (args[argidx] == "-purge_lib") {
395 purge_lib = true;
396 continue;
397 }
398 if (args[argidx] == "-keep_positionals") {
399 keep_positionals = true;
400 continue;
401 }
402 if (args[argidx] == "-libdir" && argidx+1 < args.size()) {
403 libdirs.push_back(args[++argidx]);
404 continue;
405 }
406 if (args[argidx] == "-top") {
407 if (++argidx >= args.size())
408 log_cmd_error("Option -top requires an additional argument!\n");
409 top_mod = design->modules.count(RTLIL::escape_id(args[argidx])) ? design->modules.at(RTLIL::escape_id(args[argidx])) : NULL;
410 if (top_mod == NULL && design->modules.count("$abstract" + RTLIL::escape_id(args[argidx]))) {
411 std::map<RTLIL::IdString, RTLIL::Const> empty_parameters;
412 design->modules.at("$abstract" + RTLIL::escape_id(args[argidx]))->derive(design, empty_parameters);
413 top_mod = design->modules.count(RTLIL::escape_id(args[argidx])) ? design->modules.at(RTLIL::escape_id(args[argidx])) : NULL;
414 }
415 if (top_mod == NULL)
416 log_cmd_error("Module `%s' not found!\n", args[argidx].c_str());
417 continue;
418 }
419 break;
420 }
421 extra_args(args, argidx, design, false);
422
423 if (generate_mode) {
424 generate(design, generate_cells, generate_ports);
425 return;
426 }
427
428 log_push();
429
430 if (top_mod == NULL)
431 for (auto &mod_it : design->modules)
432 if (mod_it.second->get_bool_attribute("\\top"))
433 top_mod = mod_it.second;
434
435 if (top_mod != NULL)
436 hierarchy(design, top_mod, purge_lib, true);
437
438 bool did_something = true;
439 bool did_something_once = false;
440 while (did_something) {
441 did_something = false;
442 std::vector<std::string> modnames;
443 modnames.reserve(design->modules.size());
444 for (auto &mod_it : design->modules)
445 modnames.push_back(mod_it.first);
446 for (auto &modname : modnames) {
447 if (design->modules.count(modname) == 0)
448 continue;
449 if (expand_module(design, design->modules[modname], flag_check, libdirs))
450 did_something = true;
451 }
452 if (did_something)
453 did_something_once = true;
454 }
455
456 if (top_mod != NULL && did_something_once) {
457 log_header("Re-running hierarchy analysis..\n");
458 hierarchy(design, top_mod, purge_lib, false);
459 }
460
461 if (top_mod != NULL) {
462 for (auto &mod_it : design->modules)
463 if (mod_it.second == top_mod)
464 mod_it.second->attributes["\\top"] = RTLIL::Const(1);
465 else
466 mod_it.second->attributes.erase("\\top");
467 }
468
469 if (!keep_positionals)
470 {
471 std::set<RTLIL::Module*> pos_mods;
472 std::map<std::pair<RTLIL::Module*,int>, RTLIL::IdString> pos_map;
473 std::vector<std::pair<RTLIL::Module*,RTLIL::Cell*>> pos_work;
474
475 for (auto &mod_it : design->modules)
476 for (auto &cell_it : mod_it.second->cells) {
477 RTLIL::Cell *cell = cell_it.second;
478 if (design->modules.count(cell->type) == 0)
479 continue;
480 for (auto &conn : cell->connections)
481 if (conn.first[0] == '$' && '0' <= conn.first[1] && conn.first[1] <= '9') {
482 pos_mods.insert(design->modules.at(cell->type));
483 pos_work.push_back(std::pair<RTLIL::Module*,RTLIL::Cell*>(mod_it.second, cell));
484 break;
485 }
486 }
487
488 for (auto module : pos_mods)
489 for (auto &wire_it : module->wires) {
490 RTLIL::Wire *wire = wire_it.second;
491 if (wire->port_id > 0)
492 pos_map[std::pair<RTLIL::Module*,int>(module, wire->port_id)] = wire->name;
493 }
494
495 for (auto &work : pos_work) {
496 RTLIL::Module *module = work.first;
497 RTLIL::Cell *cell = work.second;
498 log("Mapping positional arguments of cell %s.%s (%s).\n",
499 RTLIL::id2cstr(module->name), RTLIL::id2cstr(cell->name), RTLIL::id2cstr(cell->type));
500 std::map<RTLIL::IdString, RTLIL::SigSpec> new_connections;
501 for (auto &conn : cell->connections)
502 if (conn.first[0] == '$' && '0' <= conn.first[1] && conn.first[1] <= '9') {
503 int id = atoi(conn.first.c_str()+1);
504 std::pair<RTLIL::Module*,int> key(design->modules.at(cell->type), id);
505 if (pos_map.count(key) == 0) {
506 log(" Failed to map positional argument %d of cell %s.%s (%s).\n",
507 id, RTLIL::id2cstr(module->name), RTLIL::id2cstr(cell->name), RTLIL::id2cstr(cell->type));
508 new_connections[conn.first] = conn.second;
509 } else
510 new_connections[pos_map.at(key)] = conn.second;
511 } else
512 new_connections[conn.first] = conn.second;
513 cell->connections = new_connections;
514 }
515 }
516
517 log_pop();
518 }
519 } HierarchyPass;
520