Replaced RTLIL::Const::str with generic decoder method
[yosys.git] / passes / fsm / fsmdata.h
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 #ifndef FSMDATA_H
21 #define FSMDATA_H
22
23 #include "kernel/rtlil.h"
24 #include "kernel/log.h"
25
26 struct FsmData
27 {
28 int num_inputs, num_outputs, state_bits, reset_state;
29 struct transition_t { int state_in, state_out; RTLIL::Const ctrl_in, ctrl_out; };
30 std::vector<transition_t> transition_table;
31 std::vector<RTLIL::Const> state_table;
32
33 void copy_to_cell(RTLIL::Cell *cell)
34 {
35 cell->parameters["\\CTRL_IN_WIDTH"] = RTLIL::Const(num_inputs);
36 cell->parameters["\\CTRL_OUT_WIDTH"] = RTLIL::Const(num_outputs);
37
38 int state_num_log2 = 0;
39 for (int i = state_table.size(); i > 0; i = i >> 1)
40 state_num_log2++;
41 state_num_log2 = std::max(state_num_log2, 1);
42
43 cell->parameters["\\STATE_BITS"] = RTLIL::Const(state_bits);
44 cell->parameters["\\STATE_NUM"] = RTLIL::Const(state_table.size());
45 cell->parameters["\\STATE_NUM_LOG2"] = RTLIL::Const(state_num_log2);
46 cell->parameters["\\STATE_RST"] = RTLIL::Const(reset_state);
47 cell->parameters["\\STATE_TABLE"] = RTLIL::Const();
48
49 for (int i = 0; i < int(state_table.size()); i++) {
50 std::vector<RTLIL::State> &bits_table = cell->parameters["\\STATE_TABLE"].bits;
51 std::vector<RTLIL::State> &bits_state = state_table[i].bits;
52 bits_table.insert(bits_table.end(), bits_state.begin(), bits_state.end());
53 }
54
55 cell->parameters["\\TRANS_NUM"] = RTLIL::Const(transition_table.size());
56 cell->parameters["\\TRANS_TABLE"] = RTLIL::Const();
57 for (int i = 0; i < int(transition_table.size()); i++)
58 {
59 std::vector<RTLIL::State> &bits_table = cell->parameters["\\TRANS_TABLE"].bits;
60 transition_t &tr = transition_table[i];
61
62 RTLIL::Const const_state_in = RTLIL::Const(tr.state_in, state_num_log2);
63 RTLIL::Const const_state_out = RTLIL::Const(tr.state_out, state_num_log2);
64 std::vector<RTLIL::State> &bits_state_in = const_state_in.bits;
65 std::vector<RTLIL::State> &bits_state_out = const_state_out.bits;
66
67 std::vector<RTLIL::State> &bits_ctrl_in = tr.ctrl_in.bits;
68 std::vector<RTLIL::State> &bits_ctrl_out = tr.ctrl_out.bits;
69
70 // append lsb first
71 bits_table.insert(bits_table.end(), bits_ctrl_out.begin(), bits_ctrl_out.end());
72 bits_table.insert(bits_table.end(), bits_state_out.begin(), bits_state_out.end());
73 bits_table.insert(bits_table.end(), bits_ctrl_in.begin(), bits_ctrl_in.end());
74 bits_table.insert(bits_table.end(), bits_state_in.begin(), bits_state_in.end());
75 }
76 }
77
78 void copy_from_cell(RTLIL::Cell *cell)
79 {
80 num_inputs = cell->parameters["\\CTRL_IN_WIDTH"].as_int();
81 num_outputs = cell->parameters["\\CTRL_OUT_WIDTH"].as_int();
82
83 state_bits = cell->parameters["\\STATE_BITS"].as_int();
84 reset_state = cell->parameters["\\STATE_RST"].as_int();
85
86 int state_num = cell->parameters["\\STATE_NUM"].as_int();
87 int state_num_log2 = cell->parameters["\\STATE_NUM_LOG2"].as_int();
88 int trans_num = cell->parameters["\\TRANS_NUM"].as_int();
89
90 if (reset_state < 0 || reset_state >= state_num)
91 reset_state = -1;
92
93 RTLIL::Const state_table = cell->parameters["\\STATE_TABLE"];
94 RTLIL::Const trans_table = cell->parameters["\\TRANS_TABLE"];
95
96 for (int i = 0; i < state_num; i++) {
97 RTLIL::Const state_code;
98 int off_begin = i*state_bits, off_end = off_begin + state_bits;
99 state_code.bits.insert(state_code.bits.begin(), state_table.bits.begin()+off_begin, state_table.bits.begin()+off_end);
100 this->state_table.push_back(state_code);
101 }
102
103 for (int i = 0; i < trans_num; i++)
104 {
105 auto off_ctrl_out = trans_table.bits.begin() + i*(num_inputs+num_outputs+2*state_num_log2);
106 auto off_state_out = off_ctrl_out + num_outputs;
107 auto off_ctrl_in = off_state_out + state_num_log2;
108 auto off_state_in = off_ctrl_in + num_inputs;
109 auto off_end = off_state_in + state_num_log2;
110
111 RTLIL::Const state_in, state_out, ctrl_in, ctrl_out;
112 ctrl_out.bits.insert(state_in.bits.begin(), off_ctrl_out, off_state_out);
113 state_out.bits.insert(state_out.bits.begin(), off_state_out, off_ctrl_in);
114 ctrl_in.bits.insert(ctrl_in.bits.begin(), off_ctrl_in, off_state_in);
115 state_in.bits.insert(state_in.bits.begin(), off_state_in, off_end);
116
117 transition_t tr;
118 tr.state_in = state_in.as_int();
119 tr.state_out = state_out.as_int();
120 tr.ctrl_in = ctrl_in;
121 tr.ctrl_out = ctrl_out;
122
123 if (tr.state_in < 0 || tr.state_in >= state_num)
124 tr.state_in = -1;
125 if (tr.state_out < 0 || tr.state_out >= state_num)
126 tr.state_out = -1;
127
128 transition_table.push_back(tr);
129 }
130 }
131
132 void log_info(RTLIL::Cell *cell)
133 {
134 log("-------------------------------------\n");
135 log("\n");
136 log(" Information on FSM %s (%s):\n", cell->name.c_str(), cell->parameters["\\NAME"].decode_string().c_str());
137 log("\n");
138 log(" Number of input signals: %3d\n", num_inputs);
139 log(" Number of output signals: %3d\n", num_outputs);
140 log(" Number of state bits: %3d\n", state_bits);
141
142 log("\n");
143 log(" Input signals:\n");
144 RTLIL::SigSpec sig_in = cell->connections["\\CTRL_IN"];
145 sig_in.expand();
146 for (size_t i = 0; i < sig_in.chunks.size(); i++)
147 log(" %3zd: %s\n", i, log_signal(sig_in.chunks[i]));
148
149 log("\n");
150 log(" Output signals:\n");
151 RTLIL::SigSpec sig_out = cell->connections["\\CTRL_OUT"];
152 sig_out.expand();
153 for (size_t i = 0; i < sig_out.chunks.size(); i++)
154 log(" %3zd: %s\n", i, log_signal(sig_out.chunks[i]));
155
156 log("\n");
157 log(" State encoding:\n");
158 for (size_t i = 0; i < state_table.size(); i++)
159 log(" %3zd: %10s%s\n", i, log_signal(state_table[i], false),
160 int(i) == reset_state ? " <RESET STATE>" : "");
161
162 log("\n");
163 log(" Transition Table (state_in, ctrl_in, state_out, ctrl_out):\n");
164 for (size_t i = 0; i < transition_table.size(); i++) {
165 transition_t &tr = transition_table[i];
166 log(" %5zd: %5d %s -> %5d %s\n", i, tr.state_in, log_signal(tr.ctrl_in), tr.state_out, log_signal(tr.ctrl_out));
167 }
168
169 log("\n");
170 log("-------------------------------------\n");
171 }
172
173 // implemented in fsm_opt.cc
174 static void optimize_fsm(RTLIL::Cell *cell, RTLIL::Module *module);
175 };
176
177 #endif