Add "read_ilang -lib"
authorClifford Wolf <clifford@clifford.at>
Fri, 5 Apr 2019 15:31:49 +0000 (17:31 +0200)
committerClifford Wolf <clifford@clifford.at>
Fri, 5 Apr 2019 15:31:49 +0000 (17:31 +0200)
Signed-off-by: Clifford Wolf <clifford@clifford.at>
frontends/ilang/ilang_frontend.cc
frontends/ilang/ilang_frontend.h
frontends/ilang/ilang_parser.y
kernel/rtlil.cc
kernel/rtlil.h

index 6b302a79626676f3a5ae0c8a08630bfd766585cb..30d9ff79d9ef6f01f15a276ca69125c29e45234d 100644 (file)
@@ -47,16 +47,20 @@ struct IlangFrontend : public Frontend {
                log("    -nooverwrite\n");
                log("        ignore re-definitions of modules. (the default behavior is to\n");
                log("        create an error message if the existing module is not a blackbox\n");
-               log("        module, and overwrite the existing module if it is  a blackbox module.)\n");
+               log("        module, and overwrite the existing module if it is a blackbox module.)\n");
                log("\n");
                log("    -overwrite\n");
                log("        overwrite existing modules with the same name\n");
                log("\n");
+               log("    -lib\n");
+               log("        only create empty blackbox modules\n");
+               log("\n");
        }
        void execute(std::istream *&f, std::string filename, std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
        {
                ILANG_FRONTEND::flag_nooverwrite = false;
                ILANG_FRONTEND::flag_overwrite = false;
+               ILANG_FRONTEND::flag_lib = false;
 
                log_header(design, "Executing ILANG frontend.\n");
 
@@ -73,6 +77,10 @@ struct IlangFrontend : public Frontend {
                                ILANG_FRONTEND::flag_overwrite = true;
                                continue;
                        }
+                       if (arg == "-lib") {
+                               ILANG_FRONTEND::flag_lib = true;
+                               continue;
+                       }
                        break;
                }
                extra_args(f, filename, args, argidx);
index 052dd4cb28dbcd14f41a7c1d00b6702bf1ecc43d..f8a152841568923e26356c444a83dfcac5ca3e6d 100644 (file)
@@ -34,6 +34,7 @@ namespace ILANG_FRONTEND {
        extern RTLIL::Design *current_design;
        extern bool flag_nooverwrite;
        extern bool flag_overwrite;
+       extern bool flag_lib;
 }
 
 YOSYS_NAMESPACE_END
index 5bcc01f42ee64d1f9d173954404ee70b88b23cc8..f83824088157a775926c03da7a375945157eb5f1 100644 (file)
@@ -37,7 +37,7 @@ namespace ILANG_FRONTEND {
        std::vector<std::vector<RTLIL::SwitchRule*>*> switch_stack;
        std::vector<RTLIL::CaseRule*> case_stack;
        dict<RTLIL::IdString, RTLIL::Const> attrbuf;
-       bool flag_nooverwrite, flag_overwrite;
+       bool flag_nooverwrite, flag_overwrite, flag_lib;
        bool delete_current_module;
 }
 using namespace ILANG_FRONTEND;
@@ -98,7 +98,7 @@ module:
                delete_current_module = false;
                if (current_design->has($2)) {
                        RTLIL::Module *existing_mod = current_design->module($2);
-                       if (!flag_overwrite && attrbuf.count("\\blackbox") && attrbuf.at("\\blackbox").as_bool()) {
+                       if (!flag_overwrite && (flag_lib || (attrbuf.count("\\blackbox") && attrbuf.at("\\blackbox").as_bool()))) {
                                log("Ignoring blackbox re-definition of module %s.\n", $2);
                                delete_current_module = true;
                        } else if (!flag_nooverwrite && !flag_overwrite && !existing_mod->get_bool_attribute("\\blackbox")) {
@@ -124,6 +124,8 @@ module:
                current_module->fixup_ports();
                if (delete_current_module)
                        delete current_module;
+               else if (flag_lib)
+                       current_module->makeblackbox();
                current_module = nullptr;
        } EOL;
 
index b3214579dbfff260f5b329ce0c8eaa56bde7d494..9ae20a317451922b28865393caf158a25bbec37e 100644 (file)
@@ -641,6 +641,30 @@ RTLIL::Module::~Module()
                delete it->second;
 }
 
+void RTLIL::Module::makeblackbox()
+{
+       pool<RTLIL::Wire*> delwires;
+
+       for (auto it = wires_.begin(); it != wires_.end(); ++it)
+               if (!it->second->port_input && !it->second->port_output)
+                       delwires.insert(it->second);
+
+       for (auto it = memories.begin(); it != memories.end(); ++it)
+               delete it->second;
+       memories.clear();
+
+       for (auto it = cells_.begin(); it != cells_.end(); ++it)
+               delete it->second;
+       cells_.clear();
+
+       for (auto it = processes.begin(); it != processes.end(); ++it)
+               delete it->second;
+       processes.clear();
+
+       remove(delwires);
+       set_bool_attribute("\\blackbox");
+}
+
 void RTLIL::Module::reprocess_module(RTLIL::Design *, dict<RTLIL::IdString, RTLIL::Module *>)
 {
        log_error("Cannot reprocess_module module `%s' !\n", id2cstr(name));
index 52496e70214b5e6ecc942e59cbd1b2dc07f5da61..fb045bc7213ffda120c87c3d88b89f55b51a056c 100644 (file)
@@ -976,6 +976,7 @@ public:
        virtual void sort();
        virtual void check();
        virtual void optimize();
+       virtual void makeblackbox();
 
        void connect(const RTLIL::SigSig &conn);
        void connect(const RTLIL::SigSpec &lhs, const RTLIL::SigSpec &rhs);