Merge branch 'master' of https://github.com/stv0g/yosys into stv0g-master
[yosys.git] / frontends / ast / ast.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 * This is the AST frontend library.
21 *
22 * The AST frontend library is not a frontend on it's own but provides a
23 * generic abstract syntax tree (AST) abstraction for HDL code and can be
24 * used by HDL frontends. See "ast.h" for an overview of the API and the
25 * Verilog frontend for an usage example.
26 *
27 */
28
29 #ifndef AST_H
30 #define AST_H
31
32 #include "kernel/rtlil.h"
33 #include <stdint.h>
34 #include <set>
35
36 YOSYS_NAMESPACE_BEGIN
37
38 namespace AST
39 {
40 // all node types, type2str() must be extended
41 // whenever a new node type is added here
42 enum AstNodeType
43 {
44 AST_NONE,
45 AST_DESIGN,
46 AST_MODULE,
47 AST_TASK,
48 AST_FUNCTION,
49 AST_DPI_FUNCTION,
50
51 AST_WIRE,
52 AST_MEMORY,
53 AST_AUTOWIRE,
54 AST_PARAMETER,
55 AST_LOCALPARAM,
56 AST_DEFPARAM,
57 AST_PARASET,
58 AST_ARGUMENT,
59 AST_RANGE,
60 AST_MULTIRANGE,
61 AST_CONSTANT,
62 AST_REALVALUE,
63 AST_CELLTYPE,
64 AST_IDENTIFIER,
65 AST_PREFIX,
66 AST_ASSERT,
67 AST_ASSUME,
68 AST_COVER,
69
70 AST_FCALL,
71 AST_TO_BITS,
72 AST_TO_SIGNED,
73 AST_TO_UNSIGNED,
74 AST_CONCAT,
75 AST_REPLICATE,
76 AST_BIT_NOT,
77 AST_BIT_AND,
78 AST_BIT_OR,
79 AST_BIT_XOR,
80 AST_BIT_XNOR,
81 AST_REDUCE_AND,
82 AST_REDUCE_OR,
83 AST_REDUCE_XOR,
84 AST_REDUCE_XNOR,
85 AST_REDUCE_BOOL,
86 AST_SHIFT_LEFT,
87 AST_SHIFT_RIGHT,
88 AST_SHIFT_SLEFT,
89 AST_SHIFT_SRIGHT,
90 AST_LT,
91 AST_LE,
92 AST_EQ,
93 AST_NE,
94 AST_EQX,
95 AST_NEX,
96 AST_GE,
97 AST_GT,
98 AST_ADD,
99 AST_SUB,
100 AST_MUL,
101 AST_DIV,
102 AST_MOD,
103 AST_POW,
104 AST_POS,
105 AST_NEG,
106 AST_LOGIC_AND,
107 AST_LOGIC_OR,
108 AST_LOGIC_NOT,
109 AST_TERNARY,
110 AST_MEMRD,
111 AST_MEMWR,
112 AST_MEMINIT,
113
114 AST_TCALL,
115 AST_ASSIGN,
116 AST_CELL,
117 AST_PRIMITIVE,
118 AST_CELLARRAY,
119 AST_ALWAYS,
120 AST_INITIAL,
121 AST_BLOCK,
122 AST_ASSIGN_EQ,
123 AST_ASSIGN_LE,
124 AST_CASE,
125 AST_COND,
126 AST_CONDX,
127 AST_CONDZ,
128 AST_DEFAULT,
129 AST_FOR,
130 AST_WHILE,
131 AST_REPEAT,
132
133 AST_GENVAR,
134 AST_GENFOR,
135 AST_GENIF,
136 AST_GENCASE,
137 AST_GENBLOCK,
138
139 AST_POSEDGE,
140 AST_NEGEDGE,
141 AST_EDGE,
142
143 AST_PACKAGE
144 };
145
146 // convert an node type to a string (e.g. for debug output)
147 std::string type2str(AstNodeType type);
148
149 // The AST is built using instances of this struct
150 struct AstNode
151 {
152 // for dict<> and pool<>
153 unsigned int hashidx_;
154 unsigned int hash() const { return hashidx_; }
155
156 // this nodes type
157 AstNodeType type;
158
159 // the list of child nodes for this node
160 std::vector<AstNode*> children;
161
162 // the list of attributes assigned to this node
163 std::map<RTLIL::IdString, AstNode*> attributes;
164 bool get_bool_attribute(RTLIL::IdString id);
165
166 // node content - most of it is unused in most node types
167 std::string str;
168 std::vector<RTLIL::State> bits;
169 bool is_input, is_output, is_reg, is_signed, is_string, range_valid, range_swapped;
170 int port_id, range_left, range_right;
171 uint32_t integer;
172 double realvalue;
173
174 // if this is a multirange memory then this vector contains offset and length of each dimension
175 std::vector<int> multirange_dimensions;
176
177 // this is set by simplify and used during RTLIL generation
178 AstNode *id2ast;
179
180 // this is used by simplify to detect if basic analysis has been performed already on the node
181 bool basic_prep;
182
183 // this is the original sourcecode location that resulted in this AST node
184 // it is automatically set by the constructor using AST::current_filename and
185 // the AST::get_line_num() callback function.
186 std::string filename;
187 int linenum;
188
189 // creating and deleting nodes
190 AstNode(AstNodeType type = AST_NONE, AstNode *child1 = NULL, AstNode *child2 = NULL, AstNode *child3 = NULL);
191 AstNode *clone();
192 void cloneInto(AstNode *other);
193 void delete_children();
194 ~AstNode();
195
196 enum mem2reg_flags
197 {
198 /* status flags */
199 MEM2REG_FL_ALL = 0x00000001,
200 MEM2REG_FL_ASYNC = 0x00000002,
201 MEM2REG_FL_INIT = 0x00000004,
202
203 /* candidate flags */
204 MEM2REG_FL_FORCED = 0x00000100,
205 MEM2REG_FL_SET_INIT = 0x00000200,
206 MEM2REG_FL_SET_ELSE = 0x00000400,
207 MEM2REG_FL_SET_ASYNC = 0x00000800,
208 MEM2REG_FL_EQ2 = 0x00001000,
209 MEM2REG_FL_CMPLX_LHS = 0x00002000,
210
211 /* proc flags */
212 MEM2REG_FL_EQ1 = 0x01000000,
213 };
214
215 // simplify() creates a simpler AST by unrolling for-loops, expanding generate blocks, etc.
216 // it also sets the id2ast pointers so that identifier lookups are fast in genRTLIL()
217 bool simplify(bool const_fold, bool at_zero, bool in_lvalue, int stage, int width_hint, bool sign_hint, bool in_param);
218 AstNode *readmem(bool is_readmemh, std::string mem_filename, AstNode *memory, int start_addr, int finish_addr, bool unconditional_init);
219 void expand_genblock(std::string index_var, std::string prefix, std::map<std::string, std::string> &name_map);
220 void replace_ids(const std::string &prefix, const std::map<std::string, std::string> &rules);
221 void mem2reg_as_needed_pass1(dict<AstNode*, pool<std::string>> &mem2reg_places,
222 dict<AstNode*, uint32_t> &mem2reg_flags, dict<AstNode*, uint32_t> &proc_flags, uint32_t &status_flags);
223 bool mem2reg_as_needed_pass2(pool<AstNode*> &mem2reg_set, AstNode *mod, AstNode *block, AstNode *&async_block);
224 bool mem2reg_check(pool<AstNode*> &mem2reg_set);
225 void mem2reg_remove(pool<AstNode*> &mem2reg_set, vector<AstNode*> &delnodes);
226 void meminfo(int &mem_width, int &mem_size, int &addr_bits);
227
228 // additional functionality for evaluating constant functions
229 struct varinfo_t { RTLIL::Const val; int offset; bool is_signed; };
230 bool has_const_only_constructs(bool &recommend_const_eval);
231 void replace_variables(std::map<std::string, varinfo_t> &variables, AstNode *fcall);
232 AstNode *eval_const_function(AstNode *fcall);
233
234 // create a human-readable text representation of the AST (for debugging)
235 void dumpAst(FILE *f, std::string indent);
236 void dumpVlog(FILE *f, std::string indent);
237
238 // used by genRTLIL() for detecting expression width and sign
239 void detectSignWidthWorker(int &width_hint, bool &sign_hint, bool *found_real = NULL);
240 void detectSignWidth(int &width_hint, bool &sign_hint, bool *found_real = NULL);
241
242 // create RTLIL code for this AST node
243 // for expressions the resulting signal vector is returned
244 // all generated cell instances, etc. are written to the RTLIL::Module pointed to by AST_INTERNAL::current_module
245 RTLIL::SigSpec genRTLIL(int width_hint = -1, bool sign_hint = false);
246 RTLIL::SigSpec genWidthRTLIL(int width, const dict<RTLIL::SigBit, RTLIL::SigBit> *new_subst_ptr = NULL);
247
248 // compare AST nodes
249 bool operator==(const AstNode &other) const;
250 bool operator!=(const AstNode &other) const;
251 bool contains(const AstNode *other) const;
252
253 // helper functions for creating AST nodes for constants
254 static AstNode *mkconst_int(uint32_t v, bool is_signed, int width = 32);
255 static AstNode *mkconst_bits(const std::vector<RTLIL::State> &v, bool is_signed);
256 static AstNode *mkconst_str(const std::vector<RTLIL::State> &v);
257 static AstNode *mkconst_str(const std::string &str);
258
259 // helper function for creating sign-extended const objects
260 RTLIL::Const bitsAsConst(int width, bool is_signed);
261 RTLIL::Const bitsAsConst(int width = -1);
262 RTLIL::Const asAttrConst();
263 RTLIL::Const asParaConst();
264 uint64_t asInt(bool is_signed);
265 bool bits_only_01();
266 bool asBool();
267
268 // helper functions for real valued const eval
269 int isConst(); // return '1' for AST_CONSTANT and '2' for AST_REALVALUE
270 double asReal(bool is_signed);
271 RTLIL::Const realAsConst(int width);
272 };
273
274 // process an AST tree (ast must point to an AST_DESIGN node) and generate RTLIL code
275 void process(RTLIL::Design *design, AstNode *ast, bool dump_ast1, bool dump_ast2, bool dump_vlog, bool dump_rtlil, bool nolatches, bool nomeminit,
276 bool nomem2reg, bool mem2reg, bool lib, bool noopt, bool icells, bool ignore_redef, bool defer, bool autowire);
277
278 // parametric modules are supported directly by the AST library
279 // therefore we need our own derivate of RTLIL::Module with overloaded virtual functions
280 struct AstModule : RTLIL::Module {
281 AstNode *ast;
282 bool nolatches, nomeminit, nomem2reg, mem2reg, lib, noopt, icells, autowire;
283 virtual ~AstModule();
284 virtual RTLIL::IdString derive(RTLIL::Design *design, dict<RTLIL::IdString, RTLIL::Const> parameters);
285 virtual RTLIL::Module *clone() const;
286 };
287
288 // this must be set by the language frontend before parsing the sources
289 // the AstNode constructor then uses current_filename and get_line_num()
290 // to initialize the filename and linenum properties of new nodes
291 extern std::string current_filename;
292 extern void (*set_line_num)(int);
293 extern int (*get_line_num)();
294
295 // set set_line_num and get_line_num to internal dummy functions (done by simplify() and AstModule::derive
296 // to control the filename and linenum properties of new nodes not generated by a frontend parser)
297 void use_internal_line_num();
298
299 // call a DPI function
300 AstNode *dpi_call(const std::string &rtype, const std::string &fname, const std::vector<std::string> &argtypes, const std::vector<AstNode*> &args);
301 }
302
303 namespace AST_INTERNAL
304 {
305 // internal state variables
306 extern bool flag_dump_ast1, flag_dump_ast2, flag_dump_rtlil, flag_nolatches, flag_nomeminit;
307 extern bool flag_nomem2reg, flag_mem2reg, flag_lib, flag_noopt, flag_icells, flag_autowire;
308 extern AST::AstNode *current_ast, *current_ast_mod;
309 extern std::map<std::string, AST::AstNode*> current_scope;
310 extern const dict<RTLIL::SigBit, RTLIL::SigBit> *genRTLIL_subst_ptr;
311 extern RTLIL::SigSpec ignoreThisSignalsInInitial;
312 extern AST::AstNode *current_always, *current_top_block, *current_block, *current_block_child;
313 extern AST::AstModule *current_module;
314 extern bool current_always_clocked;
315 struct ProcessGenerator;
316 }
317
318 YOSYS_NAMESPACE_END
319
320 #endif