mirror of
https://github.com/verilator/verilator.git
synced 2025-02-01 19:24:05 +00:00
134 lines
4.9 KiB
C++
134 lines
4.9 KiB
C++
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
//*************************************************************************
|
|
// DESCRIPTION: Verilator: Emit C++ for tree
|
|
//
|
|
// Code available from: https://verilator.org
|
|
//
|
|
//*************************************************************************
|
|
//
|
|
// Copyright 2003-2020 by Wilson Snyder. This program is free software; you
|
|
// can redistribute it and/or modify it under the terms of either the GNU
|
|
// Lesser General Public License Version 3 or the Perl Artistic License
|
|
// Version 2.0.
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
|
//
|
|
//*************************************************************************
|
|
|
|
#ifndef _V3EMITCBASE_H_
|
|
#define _V3EMITCBASE_H_ 1
|
|
|
|
#include "config_build.h"
|
|
#include "verilatedos.h"
|
|
|
|
#include "V3Global.h"
|
|
#include "V3File.h"
|
|
#include "V3Ast.h"
|
|
|
|
#include <cstdarg>
|
|
#include <cmath>
|
|
|
|
//######################################################################
|
|
// Base Visitor class -- holds output file pointer
|
|
|
|
class EmitCBaseVisitor VL_NOT_FINAL : public AstNVisitor {
|
|
public:
|
|
// STATE
|
|
V3OutCFile* m_ofp = nullptr;
|
|
bool m_trackText = false; // Always track AstText nodes
|
|
// METHODS
|
|
V3OutCFile* ofp() const { return m_ofp; }
|
|
void puts(const string& str) { ofp()->puts(str); }
|
|
void putbs(const string& str) { ofp()->putbs(str); }
|
|
void putsDecoration(const string& str) {
|
|
if (v3Global.opt.decoration()) puts(str);
|
|
}
|
|
void putsQuoted(const string& str) { ofp()->putsQuoted(str); }
|
|
bool optSystemC() { return v3Global.opt.systemC(); }
|
|
static string protect(const string& name) { return VIdProtect::protectIf(name, true); }
|
|
static string protectIf(const string& name, bool doIt) {
|
|
return VIdProtect::protectIf(name, doIt);
|
|
}
|
|
static string protectWordsIf(const string& name, bool doIt) {
|
|
return VIdProtect::protectWordsIf(name, doIt);
|
|
}
|
|
static string ifNoProtect(const string& in) { return v3Global.opt.protectIds() ? "" : in; }
|
|
static string symClassName() { return v3Global.opt.prefix() + "_" + protect("_Syms"); }
|
|
static string symClassVar() { return symClassName() + "* __restrict vlSymsp"; }
|
|
static string symTopAssign() {
|
|
return v3Global.opt.prefix() + "* const __restrict vlTOPp VL_ATTR_UNUSED = vlSymsp->TOPp;";
|
|
}
|
|
static string funcNameProtect(const AstCFunc* nodep, const AstNodeModule* modp) {
|
|
if (nodep->isConstructor()) {
|
|
return prefixNameProtect(modp);
|
|
} else if (nodep->isDestructor()) {
|
|
return string("~") + prefixNameProtect(modp);
|
|
} else {
|
|
return nodep->nameProtect();
|
|
}
|
|
}
|
|
static string prefixNameProtect(const AstNode* nodep) { // C++ name with prefix
|
|
const AstNodeModule* modp = VN_CAST_CONST(nodep, NodeModule);
|
|
if (modp && modp->isTop()) {
|
|
return v3Global.opt.prefix();
|
|
} else {
|
|
return v3Global.opt.modPrefix() + "_" + protect(nodep->name());
|
|
}
|
|
}
|
|
static string topClassName() { // Return name of top wrapper module
|
|
return v3Global.opt.prefix();
|
|
}
|
|
static 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;
|
|
}
|
|
string cFuncArgs(const AstCFunc* nodep) {
|
|
// Return argument list for given C function
|
|
string args = nodep->argTypes();
|
|
// Might be a user function with argument list.
|
|
for (const AstNode* stmtp = nodep->argsp(); stmtp; stmtp = stmtp->nextp()) {
|
|
if (const AstVar* portp = VN_CAST_CONST(stmtp, Var)) {
|
|
if (portp->isIO() && !portp->isFuncReturn()) {
|
|
if (args != "") args += ", ";
|
|
if (nodep->dpiImport() || nodep->dpiExportWrapper()) {
|
|
args += portp->dpiArgType(true, false);
|
|
} else if (nodep->funcPublic()) {
|
|
args += portp->cPubArgType(true, false);
|
|
} else {
|
|
args += portp->vlArgType(true, false, true);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return args;
|
|
}
|
|
|
|
// CONSTRUCTORS
|
|
EmitCBaseVisitor() = default;
|
|
virtual ~EmitCBaseVisitor() override = default;
|
|
};
|
|
|
|
//######################################################################
|
|
// Count operations under the given node, as a visitor of each AstNode
|
|
|
|
class EmitCBaseCounterVisitor final : public AstNVisitor {
|
|
private:
|
|
// MEMBERS
|
|
int m_count = 0; // Number of statements
|
|
// VISITORS
|
|
virtual void visit(AstNode* nodep) override {
|
|
m_count++;
|
|
iterateChildren(nodep);
|
|
}
|
|
|
|
public:
|
|
// CONSTRUCTORS
|
|
explicit EmitCBaseCounterVisitor(AstNode* nodep) { iterate(nodep); }
|
|
virtual ~EmitCBaseCounterVisitor() override = default;
|
|
int count() const { return m_count; }
|
|
};
|
|
|
|
#endif // guard
|