2008-06-10 01:25:10 +00:00
|
|
|
|
// -*- C++ -*-
|
2006-08-26 11:35:28 +00:00
|
|
|
|
//*************************************************************************
|
|
|
|
|
// DESCRIPTION: Verilator: Emit C++ for tree
|
|
|
|
|
//
|
2008-04-25 12:14:27 +00:00
|
|
|
|
// Code available from: http://www.veripool.org/verilator
|
2006-08-26 11:35:28 +00:00
|
|
|
|
//
|
|
|
|
|
// AUTHORS: Wilson Snyder with Paul Wasson, Duane Gabli
|
|
|
|
|
//
|
|
|
|
|
//*************************************************************************
|
|
|
|
|
//
|
2009-01-02 16:47:39 +00:00
|
|
|
|
// Copyright 2003-2009 by Wilson Snyder. This program is free software; you can
|
2006-08-26 11:35:28 +00:00
|
|
|
|
// redistribute it and/or modify it under the terms of either the GNU
|
2009-05-04 21:07:57 +00:00
|
|
|
|
// Lesser General Public License Version 3 or the Perl Artistic License
|
|
|
|
|
// Version 2.0.
|
2006-08-26 11:35:28 +00:00
|
|
|
|
//
|
|
|
|
|
// Verilator is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
//*************************************************************************
|
|
|
|
|
|
|
|
|
|
#ifndef _V3EMITCBASE_H_
|
|
|
|
|
#define _V3EMITCBASE_H_ 1
|
|
|
|
|
|
2006-12-18 19:20:45 +00:00
|
|
|
|
#include "config_build.h"
|
|
|
|
|
#include "verilatedos.h"
|
2008-06-30 17:11:25 +00:00
|
|
|
|
#include <cstdio>
|
|
|
|
|
#include <cstdarg>
|
2006-08-26 11:35:28 +00:00
|
|
|
|
#include <unistd.h>
|
2008-06-30 17:11:25 +00:00
|
|
|
|
#include <cmath>
|
2006-08-26 11:35:28 +00:00
|
|
|
|
|
|
|
|
|
#include "V3Global.h"
|
|
|
|
|
#include "V3File.h"
|
|
|
|
|
#include "V3Ast.h"
|
|
|
|
|
|
|
|
|
|
//######################################################################
|
|
|
|
|
// V3OutCFile: A class for abstracting out SystemC/C++ details
|
|
|
|
|
|
|
|
|
|
class V3OutCFile : public V3OutFile {
|
|
|
|
|
int m_private;
|
|
|
|
|
public:
|
|
|
|
|
V3OutCFile(const string& filename) : V3OutFile(filename) {
|
|
|
|
|
resetPrivate();
|
|
|
|
|
}
|
2009-07-22 18:38:20 +00:00
|
|
|
|
virtual ~V3OutCFile() {}
|
2006-08-26 11:35:28 +00:00
|
|
|
|
virtual void putsCellDecl(const string& classname, const string& cellname) {
|
|
|
|
|
this->printf("%-19s\t%s;\n",
|
|
|
|
|
(classname + "*").c_str(),cellname.c_str());
|
|
|
|
|
}
|
|
|
|
|
virtual void putsHeader() { puts("// Verilated -*- C++ -*-\n"); }
|
|
|
|
|
virtual void putsIntTopInclude() { }
|
|
|
|
|
// Print out public/privates
|
|
|
|
|
void resetPrivate() { m_private = 0; }
|
|
|
|
|
void putsPrivate(bool setPrivate) {
|
|
|
|
|
if (setPrivate && m_private!=1) {
|
|
|
|
|
puts("private:\n");
|
|
|
|
|
m_private = 1;
|
|
|
|
|
} else if (!setPrivate && m_private!=2) {
|
|
|
|
|
puts("public:\n");
|
|
|
|
|
m_private = 2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class V3OutScFile : public V3OutCFile {
|
|
|
|
|
public:
|
|
|
|
|
V3OutScFile(const string& filename) : V3OutCFile(filename) {}
|
2009-07-22 18:38:20 +00:00
|
|
|
|
virtual ~V3OutScFile() {}
|
2006-08-26 11:35:28 +00:00
|
|
|
|
virtual void putsHeader() { puts("// Verilated -*- SystemC -*-\n"); }
|
2009-07-07 21:51:00 +00:00
|
|
|
|
virtual void putsIntTopInclude() {
|
|
|
|
|
puts("#include \"systemc.h\"\n");
|
|
|
|
|
puts("#include \"verilatedsc.h\"\n");
|
|
|
|
|
}
|
2006-08-26 11:35:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class V3OutSpFile : public V3OutCFile {
|
|
|
|
|
public:
|
|
|
|
|
V3OutSpFile(const string& filename) : V3OutCFile(filename) {}
|
2009-07-22 18:38:20 +00:00
|
|
|
|
virtual ~V3OutSpFile() {}
|
2006-08-26 11:35:28 +00:00
|
|
|
|
virtual void putsHeader() { puts("// Verilated -*- SystemC -*-\n"); }
|
2009-07-07 21:51:00 +00:00
|
|
|
|
virtual void putsIntTopInclude() {
|
|
|
|
|
puts("#include \"systemperl.h\"\n");
|
|
|
|
|
puts("#include \"verilatedsc.h\"\n");
|
|
|
|
|
}
|
2006-08-26 11:35:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
2008-11-20 12:55:54 +00:00
|
|
|
|
class V3OutVFile : public V3OutFile {
|
2006-08-26 11:35:28 +00:00
|
|
|
|
public:
|
2008-11-20 12:55:54 +00:00
|
|
|
|
V3OutVFile(const string& filename) : V3OutFile(filename) {}
|
2009-07-22 18:38:20 +00:00
|
|
|
|
virtual ~V3OutVFile() {}
|
2006-08-26 11:35:28 +00:00
|
|
|
|
virtual void putsHeader() { puts("// Verilated -*- Verilog -*-\n"); }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class V3OutMkFile : public V3OutFile {
|
|
|
|
|
public:
|
|
|
|
|
V3OutMkFile(const string& filename) : V3OutFile(filename) {}
|
2009-07-22 18:38:20 +00:00
|
|
|
|
virtual ~V3OutMkFile() {}
|
2006-08-26 11:35:28 +00:00
|
|
|
|
virtual void putsHeader() { puts("# Verilated -*- Makefile -*-\n"); }
|
|
|
|
|
// No automatic indentation yet.
|
|
|
|
|
void puts(const char* strg) { putsNoTracking(strg); }
|
|
|
|
|
void puts(const string& strg) { putsNoTracking(strg); }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//######################################################################
|
|
|
|
|
// Base Visitor class -- holds output file pointer
|
|
|
|
|
|
|
|
|
|
class EmitCBaseVisitor : public AstNVisitor {
|
|
|
|
|
public:
|
|
|
|
|
// STATE
|
|
|
|
|
V3OutCFile* m_ofp;
|
|
|
|
|
// METHODS
|
2009-07-22 18:38:20 +00:00
|
|
|
|
V3OutCFile* ofp() const { return m_ofp; }
|
2006-08-26 11:35:28 +00:00
|
|
|
|
void puts(const string& str) { ofp()->puts(str); }
|
|
|
|
|
void putbs(const string& str) { ofp()->putbs(str); }
|
2009-05-08 17:16:19 +00:00
|
|
|
|
void putsQuoted(const string& str) { ofp()->putsQuoted(str); }
|
2006-08-26 11:35:28 +00:00
|
|
|
|
bool optSystemC() { return v3Global.opt.systemC(); }
|
|
|
|
|
bool optSystemPerl() { return v3Global.opt.systemPerl(); }
|
|
|
|
|
static string symClassName() { return v3Global.opt.prefix()+"__Syms"; }
|
2006-08-30 21:07:55 +00:00
|
|
|
|
static string symClassVar() { return symClassName()+"* __restrict vlSymsp"; }
|
2006-10-18 12:59:30 +00:00
|
|
|
|
static string symTopAssign() { return v3Global.opt.prefix()+"* __restrict vlTOPp VL_ATTR_UNUSED = vlSymsp->TOPp;"; }
|
2009-11-07 11:20:20 +00:00
|
|
|
|
static string modClassName(AstNodeModule* modp) { // Return name of current module being processed
|
2006-08-26 11:35:28 +00:00
|
|
|
|
if (modp->isTop()) {
|
|
|
|
|
return v3Global.opt.prefix();
|
|
|
|
|
} else {
|
|
|
|
|
return v3Global.opt.modPrefix() + "_" + modp->name();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
static string topClassName() { // Return name of top wrapper module
|
|
|
|
|
return v3Global.opt.prefix();
|
|
|
|
|
}
|
|
|
|
|
AstCFile* newCFile(const string& filename, bool slow, bool source) {
|
|
|
|
|
AstCFile* cfilep = new AstCFile(v3Global.rootp()->fileline(), filename);
|
|
|
|
|
cfilep->slow(slow);
|
|
|
|
|
cfilep->source(source);
|
|
|
|
|
v3Global.rootp()->addFilesp(cfilep);
|
|
|
|
|
return cfilep;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// CONSTRUCTORS
|
|
|
|
|
EmitCBaseVisitor() {
|
|
|
|
|
m_ofp = NULL;
|
|
|
|
|
}
|
|
|
|
|
virtual ~EmitCBaseVisitor() {}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//######################################################################
|
2008-11-17 22:13:57 +00:00
|
|
|
|
// Count operations under the given node, as a visitor of each AstNode
|
2006-08-26 11:35:28 +00:00
|
|
|
|
|
|
|
|
|
class EmitCBaseCounterVisitor : public AstNVisitor {
|
|
|
|
|
private:
|
|
|
|
|
// STATE
|
|
|
|
|
int m_count; // Number of statements
|
|
|
|
|
// VISITORS
|
|
|
|
|
virtual void visit(AstNode* nodep, AstNUser*) {
|
|
|
|
|
m_count++;
|
|
|
|
|
nodep->iterateChildren(*this);
|
|
|
|
|
}
|
|
|
|
|
public:
|
|
|
|
|
// CONSTUCTORS
|
|
|
|
|
EmitCBaseCounterVisitor(AstNode* nodep) {
|
|
|
|
|
m_count = 0;
|
|
|
|
|
nodep->accept(*this);
|
|
|
|
|
}
|
|
|
|
|
virtual ~EmitCBaseCounterVisitor() {}
|
|
|
|
|
int count() const { return m_count; }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // guard
|