Minor clean up of initialization

This commit is contained in:
Geza Lore 2022-07-13 18:24:48 +01:00
parent f4efcbde5c
commit 3bd830eacf
5 changed files with 10 additions and 12 deletions

View File

@ -27,9 +27,12 @@
#include "V3Stats.h"
//######################################################################
// V3 Class -- top level
// V3Global
AstNetlist* V3Global::makeNetlist() { return new AstNetlist(); }
void V3Global::boot() {
UASSERT(!m_rootp, "call once");
m_rootp = new AstNetlist();
}
void V3Global::clear() {
#ifdef VL_LEAK_CHECK

View File

@ -119,11 +119,7 @@ public:
// CONSTRUCTORS
V3Global() {}
AstNetlist* makeNetlist();
void boot() {
UASSERT(!m_rootp, "call once");
m_rootp = makeNetlist();
}
void boot();
void clear();
void shutdown(); // Release allocated resorces
// ACCESSORS (general)

View File

@ -49,9 +49,8 @@ protected:
return level;
}
void boot(char** env) {
void boot() {
// Create the implementation pointer
if (env) {}
if (!s_preprocp) {
FileLine* const cmdfl = new FileLine(FileLine::commandLineFilename());
s_preprocp = V3PreProc::createPreProc(cmdfl);
@ -162,7 +161,7 @@ VInFilter* V3PreShellImp::s_filterp = nullptr;
//######################################################################
// V3PreShell
void V3PreShell::boot(char** env) { V3PreShellImp::s_preImp.boot(env); }
void V3PreShell::boot() { V3PreShellImp::s_preImp.boot(); }
bool V3PreShell::preproc(FileLine* fl, const string& modname, VInFilter* filterp,
V3ParseImp* parsep, const string& errmsg) {
return V3PreShellImp::s_preImp.preproc(fl, modname, filterp, parsep, errmsg);

View File

@ -32,7 +32,7 @@ class VSpellCheck;
class V3PreShell final {
// Static class for calling preprocessor
public:
static void boot(char** env);
static void boot();
static bool preproc(FileLine* fl, const string& modname, VInFilter* filterp,
V3ParseImp* parsep, const string& errmsg);
static void preprocInclude(FileLine* fl, const string& modname);

View File

@ -716,7 +716,7 @@ int main(int argc, char** argv, char** env) {
// Preprocessor
// Before command parsing so we can handle -Ds on command line.
V3PreShell::boot(env);
V3PreShell::boot();
// Command option parsing
v3Global.opt.bin(argv[0]);