diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-01-29 00:59:28 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-01-29 00:59:28 +0100 |
commit | 375c4dddc19c7029b82d9d4482f32938b7f6cd85 (patch) | |
tree | a4be8f310eb12acd4adffa4075ada6c3ff4d7c89 /frontends/ast/ast.h | |
parent | a86f33653d0b1b9ba09a118a29a2baf3bb0520a3 (diff) | |
download | yosys-375c4dddc19c7029b82d9d4482f32938b7f6cd85.tar.gz yosys-375c4dddc19c7029b82d9d4482f32938b7f6cd85.tar.bz2 yosys-375c4dddc19c7029b82d9d4482f32938b7f6cd85.zip |
Added read_verilog -icells option
Diffstat (limited to 'frontends/ast/ast.h')
-rw-r--r-- | frontends/ast/ast.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 14e7803bf..caae679a1 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -231,13 +231,13 @@ namespace AST }; // process an AST tree (ast must point to an AST_DESIGN node) and generate RTLIL code - void process(RTLIL::Design *design, AstNode *ast, bool dump_ast1 = false, bool dump_ast2 = false, bool dump_vlog = false, bool nolatches = false, bool nomem2reg = false, bool mem2reg = false, bool lib = false, bool noopt = false, bool ignore_redef = false); + void process(RTLIL::Design *design, AstNode *ast, bool dump_ast1 = false, bool dump_ast2 = false, bool dump_vlog = false, bool nolatches = false, bool nomem2reg = false, bool mem2reg = false, bool lib = false, bool noopt = false, bool icells = false, bool ignore_redef = false); // parametric modules are supported directly by the AST library // therfore we need our own derivate of RTLIL::Module with overloaded virtual functions struct AstModule : RTLIL::Module { AstNode *ast; - bool nolatches, nomem2reg, mem2reg, lib, noopt; + bool nolatches, nomem2reg, mem2reg, lib, noopt, icells; virtual ~AstModule(); virtual RTLIL::IdString derive(RTLIL::Design *design, std::map<RTLIL::IdString, RTLIL::Const> parameters); virtual RTLIL::Module *clone() const; @@ -258,7 +258,7 @@ namespace AST namespace AST_INTERNAL { // internal state variables - extern bool flag_dump_ast1, flag_dump_ast2, flag_nolatches, flag_nomem2reg, flag_mem2reg, flag_lib, flag_noopt; + extern bool flag_dump_ast1, flag_dump_ast2, flag_nolatches, flag_nomem2reg, flag_mem2reg, flag_lib, flag_noopt, flag_icells; extern AST::AstNode *current_ast, *current_ast_mod; extern std::map<std::string, AST::AstNode*> current_scope; extern RTLIL::SigSpec *genRTLIL_subst_from, *genRTLIL_subst_to, ignoreThisSignalsInInitial; |