Add LookaheadRewriter for proper bitselwrite support
[yosys.git] / frontends / ast / ast.h
1 /* -*- c++ -*-
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_LIVE,
69 AST_FAIR,
70 AST_COVER,
71 AST_ENUM,
72 AST_ENUM_ITEM,
73
74 AST_FCALL,
75 AST_TO_BITS,
76 AST_TO_SIGNED,
77 AST_TO_UNSIGNED,
78 AST_CONCAT,
79 AST_REPLICATE,
80 AST_BIT_NOT,
81 AST_BIT_AND,
82 AST_BIT_OR,
83 AST_BIT_XOR,
84 AST_BIT_XNOR,
85 AST_REDUCE_AND,
86 AST_REDUCE_OR,
87 AST_REDUCE_XOR,
88 AST_REDUCE_XNOR,
89 AST_REDUCE_BOOL,
90 AST_SHIFT_LEFT,
91 AST_SHIFT_RIGHT,
92 AST_SHIFT_SLEFT,
93 AST_SHIFT_SRIGHT,
94 AST_LT,
95 AST_LE,
96 AST_EQ,
97 AST_NE,
98 AST_EQX,
99 AST_NEX,
100 AST_GE,
101 AST_GT,
102 AST_ADD,
103 AST_SUB,
104 AST_MUL,
105 AST_DIV,
106 AST_MOD,
107 AST_POW,
108 AST_POS,
109 AST_NEG,
110 AST_LOGIC_AND,
111 AST_LOGIC_OR,
112 AST_LOGIC_NOT,
113 AST_TERNARY,
114 AST_MEMRD,
115 AST_MEMWR,
116 AST_MEMINIT,
117
118 AST_TCALL,
119 AST_ASSIGN,
120 AST_CELL,
121 AST_PRIMITIVE,
122 AST_CELLARRAY,
123 AST_ALWAYS,
124 AST_INITIAL,
125 AST_BLOCK,
126 AST_ASSIGN_EQ,
127 AST_ASSIGN_LE,
128 AST_CASE,
129 AST_COND,
130 AST_CONDX,
131 AST_CONDZ,
132 AST_DEFAULT,
133 AST_FOR,
134 AST_WHILE,
135 AST_REPEAT,
136
137 AST_GENVAR,
138 AST_GENFOR,
139 AST_GENIF,
140 AST_GENCASE,
141 AST_GENBLOCK,
142 AST_TECALL,
143
144 AST_POSEDGE,
145 AST_NEGEDGE,
146 AST_EDGE,
147
148 AST_INTERFACE,
149 AST_INTERFACEPORT,
150 AST_INTERFACEPORTTYPE,
151 AST_MODPORT,
152 AST_MODPORTMEMBER,
153 AST_PACKAGE,
154
155 AST_WIRETYPE,
156 AST_TYPEDEF
157 };
158
159 struct AstSrcLocType {
160 unsigned int first_line, last_line;
161 unsigned int first_column, last_column;
162 AstSrcLocType() : first_line(0), last_line(0), first_column(0), last_column(0) {}
163 AstSrcLocType(int _first_line, int _first_column, int _last_line, int _last_column) : first_line(_first_line), last_line(_last_line), first_column(_first_column), last_column(_last_column) {}
164 };
165
166 // convert an node type to a string (e.g. for debug output)
167 std::string type2str(AstNodeType type);
168
169 // The AST is built using instances of this struct
170 struct AstNode
171 {
172 // for dict<> and pool<>
173 unsigned int hashidx_;
174 unsigned int hash() const { return hashidx_; }
175
176 // this nodes type
177 AstNodeType type;
178
179 // the list of child nodes for this node
180 std::vector<AstNode*> children;
181
182 // the list of attributes assigned to this node
183 std::map<RTLIL::IdString, AstNode*> attributes;
184 bool get_bool_attribute(RTLIL::IdString id);
185
186 // node content - most of it is unused in most node types
187 std::string str;
188 std::vector<RTLIL::State> bits;
189 bool is_input, is_output, is_reg, is_logic, is_signed, is_string, is_wand, is_wor, range_valid, range_swapped, was_checked, is_unsized, is_custom_type;
190 int port_id, range_left, range_right;
191 uint32_t integer;
192 double realvalue;
193 // set for IDs typed to an enumeration, not used
194 bool is_enum;
195
196 // if this is a multirange memory then this vector contains offset and length of each dimension
197 std::vector<int> multirange_dimensions;
198
199 // this is set by simplify and used during RTLIL generation
200 AstNode *id2ast;
201
202 // this is used by simplify to detect if basic analysis has been performed already on the node
203 bool basic_prep;
204
205 // this is used for ID references in RHS expressions that should use the "new" value for non-blocking assignments
206 bool lookahead;
207
208 // this is the original sourcecode location that resulted in this AST node
209 // it is automatically set by the constructor using AST::current_filename and
210 // the AST::get_line_num() callback function.
211 std::string filename;
212 AstSrcLocType location;
213
214 // creating and deleting nodes
215 AstNode(AstNodeType type = AST_NONE, AstNode *child1 = NULL, AstNode *child2 = NULL, AstNode *child3 = NULL);
216 AstNode *clone() const;
217 void cloneInto(AstNode *other) const;
218 void delete_children();
219 ~AstNode();
220
221 enum mem2reg_flags
222 {
223 /* status flags */
224 MEM2REG_FL_ALL = 0x00000001,
225 MEM2REG_FL_ASYNC = 0x00000002,
226 MEM2REG_FL_INIT = 0x00000004,
227
228 /* candidate flags */
229 MEM2REG_FL_FORCED = 0x00000100,
230 MEM2REG_FL_SET_INIT = 0x00000200,
231 MEM2REG_FL_SET_ELSE = 0x00000400,
232 MEM2REG_FL_SET_ASYNC = 0x00000800,
233 MEM2REG_FL_EQ2 = 0x00001000,
234 MEM2REG_FL_CMPLX_LHS = 0x00002000,
235 MEM2REG_FL_CONST_LHS = 0x00004000,
236 MEM2REG_FL_VAR_LHS = 0x00008000,
237
238 /* proc flags */
239 MEM2REG_FL_EQ1 = 0x01000000,
240 };
241
242 // simplify() creates a simpler AST by unrolling for-loops, expanding generate blocks, etc.
243 // it also sets the id2ast pointers so that identifier lookups are fast in genRTLIL()
244 bool simplify(bool const_fold, bool at_zero, bool in_lvalue, int stage, int width_hint, bool sign_hint, bool in_param);
245 AstNode *readmem(bool is_readmemh, std::string mem_filename, AstNode *memory, int start_addr, int finish_addr, bool unconditional_init);
246 void expand_genblock(std::string index_var, std::string prefix, std::map<std::string, std::string> &name_map);
247 void replace_ids(const std::string &prefix, const std::map<std::string, std::string> &rules);
248 void mem2reg_as_needed_pass1(dict<AstNode*, pool<std::string>> &mem2reg_places,
249 dict<AstNode*, uint32_t> &mem2reg_flags, dict<AstNode*, uint32_t> &proc_flags, uint32_t &status_flags);
250 bool mem2reg_as_needed_pass2(pool<AstNode*> &mem2reg_set, AstNode *mod, AstNode *block, AstNode *&async_block);
251 bool mem2reg_check(pool<AstNode*> &mem2reg_set);
252 void mem2reg_remove(pool<AstNode*> &mem2reg_set, vector<AstNode*> &delnodes);
253 void meminfo(int &mem_width, int &mem_size, int &addr_bits);
254
255 // additional functionality for evaluating constant functions
256 struct varinfo_t { RTLIL::Const val; int offset; bool is_signed; };
257 bool has_const_only_constructs(bool &recommend_const_eval);
258 void replace_variables(std::map<std::string, varinfo_t> &variables, AstNode *fcall);
259 AstNode *eval_const_function(AstNode *fcall);
260 bool is_simple_const_expr();
261 std::string process_format_str(const std::string &sformat, int next_arg, int stage, int width_hint, bool sign_hint);
262
263 // create a human-readable text representation of the AST (for debugging)
264 void dumpAst(FILE *f, std::string indent) const;
265 void dumpVlog(FILE *f, std::string indent) const;
266
267 // used by genRTLIL() for detecting expression width and sign
268 void detectSignWidthWorker(int &width_hint, bool &sign_hint, bool *found_real = NULL);
269 void detectSignWidth(int &width_hint, bool &sign_hint, bool *found_real = NULL);
270
271 // create RTLIL code for this AST node
272 // for expressions the resulting signal vector is returned
273 // all generated cell instances, etc. are written to the RTLIL::Module pointed to by AST_INTERNAL::current_module
274 RTLIL::SigSpec genRTLIL(int width_hint = -1, bool sign_hint = false);
275 RTLIL::SigSpec genWidthRTLIL(int width, const dict<RTLIL::SigBit, RTLIL::SigBit> *new_subst_ptr = NULL);
276
277 // compare AST nodes
278 bool operator==(const AstNode &other) const;
279 bool operator!=(const AstNode &other) const;
280 bool contains(const AstNode *other) const;
281
282 // helper functions for creating AST nodes for constants
283 static AstNode *mkconst_int(uint32_t v, bool is_signed, int width = 32);
284 static AstNode *mkconst_bits(const std::vector<RTLIL::State> &v, bool is_signed, bool is_unsized);
285 static AstNode *mkconst_bits(const std::vector<RTLIL::State> &v, bool is_signed);
286 static AstNode *mkconst_str(const std::vector<RTLIL::State> &v);
287 static AstNode *mkconst_str(const std::string &str);
288
289 // helper function for creating sign-extended const objects
290 RTLIL::Const bitsAsConst(int width, bool is_signed);
291 RTLIL::Const bitsAsConst(int width = -1);
292 RTLIL::Const bitsAsUnsizedConst(int width);
293 RTLIL::Const asAttrConst();
294 RTLIL::Const asParaConst();
295 uint64_t asInt(bool is_signed);
296 bool bits_only_01() const;
297 bool asBool() const;
298
299 // helper functions for real valued const eval
300 int isConst() const; // return '1' for AST_CONSTANT and '2' for AST_REALVALUE
301 double asReal(bool is_signed);
302 RTLIL::Const realAsConst(int width);
303
304 // helpers for enum
305 void allocateDefaultEnumValues();
306 };
307
308 // process an AST tree (ast must point to an AST_DESIGN node) and generate RTLIL code
309 void process(RTLIL::Design *design, AstNode *ast, bool dump_ast1, bool dump_ast2, bool no_dump_ptr, bool dump_vlog1, bool dump_vlog2, bool dump_rtlil, bool nolatches, bool nomeminit,
310 bool nomem2reg, bool mem2reg, bool noblackbox, bool lib, bool nowb, bool noopt, bool icells, bool pwires, bool nooverwrite, bool overwrite, bool defer, bool autowire);
311
312 // parametric modules are supported directly by the AST library
313 // therefore we need our own derivate of RTLIL::Module with overloaded virtual functions
314 struct AstModule : RTLIL::Module {
315 AstNode *ast;
316 bool nolatches, nomeminit, nomem2reg, mem2reg, noblackbox, lib, nowb, noopt, icells, pwires, autowire;
317 ~AstModule() YS_OVERRIDE;
318 RTLIL::IdString derive(RTLIL::Design *design, const dict<RTLIL::IdString, RTLIL::Const> &parameters, bool mayfail) YS_OVERRIDE;
319 RTLIL::IdString derive(RTLIL::Design *design, const dict<RTLIL::IdString, RTLIL::Const> &parameters, const dict<RTLIL::IdString, RTLIL::Module*> &interfaces, const dict<RTLIL::IdString, RTLIL::IdString> &modports, bool mayfail) YS_OVERRIDE;
320 std::string derive_common(RTLIL::Design *design, const dict<RTLIL::IdString, RTLIL::Const> &parameters, AstNode **new_ast_out, bool quiet = false);
321 void reprocess_module(RTLIL::Design *design, const dict<RTLIL::IdString, RTLIL::Module *> &local_interfaces) YS_OVERRIDE;
322 RTLIL::Module *clone() const YS_OVERRIDE;
323 void loadconfig() const;
324 };
325
326 // this must be set by the language frontend before parsing the sources
327 // the AstNode constructor then uses current_filename and get_line_num()
328 // to initialize the filename and linenum properties of new nodes
329 extern std::string current_filename;
330 extern void (*set_line_num)(int);
331 extern int (*get_line_num)();
332
333 // set set_line_num and get_line_num to internal dummy functions (done by simplify() and AstModule::derive
334 // to control the filename and linenum properties of new nodes not generated by a frontend parser)
335 void use_internal_line_num();
336
337 // call a DPI function
338 AstNode *dpi_call(const std::string &rtype, const std::string &fname, const std::vector<std::string> &argtypes, const std::vector<AstNode*> &args);
339
340 // Helper functions related to handling SystemVerilog interfaces
341 std::pair<std::string,std::string> split_modport_from_type(std::string name_type);
342 AstNode * find_modport(AstNode *intf, std::string name);
343 void explode_interface_port(AstNode *module_ast, RTLIL::Module * intfmodule, std::string intfname, AstNode *modport);
344 }
345
346 namespace AST_INTERNAL
347 {
348 // internal state variables
349 extern bool flag_dump_ast1, flag_dump_ast2, flag_no_dump_ptr, flag_dump_rtlil, flag_nolatches, flag_nomeminit;
350 extern bool flag_nomem2reg, flag_mem2reg, flag_lib, flag_noopt, flag_icells, flag_pwires, flag_autowire;
351 extern AST::AstNode *current_ast, *current_ast_mod;
352 extern std::map<std::string, AST::AstNode*> current_scope;
353 extern const dict<RTLIL::SigBit, RTLIL::SigBit> *genRTLIL_subst_ptr;
354 extern RTLIL::SigSpec ignoreThisSignalsInInitial;
355 extern AST::AstNode *current_always, *current_top_block, *current_block, *current_block_child;
356 extern AST::AstModule *current_module;
357 extern bool current_always_clocked;
358 struct LookaheadRewriter;
359 struct ProcessGenerator;
360 }
361
362 YOSYS_NAMESPACE_END
363
364 #endif