yosys-master
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
fsm_info.cc
Go to the documentation of this file.
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/log.h"
21 #include "kernel/register.h"
22 #include "kernel/sigtools.h"
23 #include "kernel/consteval.h"
24 #include "kernel/celltypes.h"
25 #include "fsmdata.h"
26 #include <string.h>
27 
30 
31 struct FsmInfoPass : public Pass {
32  FsmInfoPass() : Pass("fsm_info", "print information on finite state machines") { }
33  virtual void help()
34  {
35  // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
36  log("\n");
37  log(" fsm_info [selection]\n");
38  log("\n");
39  log("This pass dumps all internal information on FSM cells. It can be useful for\n");
40  log("analyzing the synthesis process and is called automatically by the 'fsm'\n");
41  log("pass so that this information is included in the synthesis log file.\n");
42  log("\n");
43  }
44  virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
45  {
46  log_header("Executing FSM_INFO pass (dumping all available information on FSM cells).\n");
47  extra_args(args, 1, design);
48 
49  for (auto &mod_it : design->modules_)
50  if (design->selected(mod_it.second))
51  for (auto &cell_it : mod_it.second->cells_)
52  if (cell_it.second->type == "$fsm" && design->selected(mod_it.second, cell_it.second)) {
53  log("\n");
54  log("FSM `%s' from module `%s':\n", cell_it.second->name.c_str(), mod_it.first.c_str());
55  FsmData fsm_data;
56  fsm_data.copy_from_cell(cell_it.second);
57  fsm_data.log_info(cell_it.second);
58  }
59  }
60 } FsmInfoPass;
61 
bool selected(T1 *module) const
Definition: rtlil.h:551
void log_header(const char *format,...)
Definition: log.cc:188
virtual void execute(std::vector< std::string > args, RTLIL::Design *design)
Definition: fsm_info.cc:44
virtual void help()
Definition: fsm_info.cc:33
FsmInfoPass FsmInfoPass
#define PRIVATE_NAMESPACE_BEGIN
Definition: yosys.h:97
#define PRIVATE_NAMESPACE_END
Definition: yosys.h:98
Definition: register.h:27
#define USING_YOSYS_NAMESPACE
Definition: yosys.h:102
std::map< RTLIL::IdString, RTLIL::Module * > modules_
Definition: rtlil.h:507
void log(const char *format,...)
Definition: log.cc:180
void copy_from_cell(RTLIL::Cell *cell)
Definition: fsmdata.h:79
void extra_args(std::vector< std::string > args, size_t argidx, RTLIL::Design *design, bool select=true)
Definition: register.cc:128