mirror of
https://github.com/verilator/verilator.git
synced 2025-01-11 17:17:36 +00:00
Internals: Determine emit forward declaraions in new pass, towards classes.
This commit is contained in:
parent
80d94891e1
commit
119162912a
@ -166,6 +166,7 @@ RAW_OBJS = \
|
||||
V3Branch.o \
|
||||
V3Broken.o \
|
||||
V3CCtors.o \
|
||||
V3CUse.o \
|
||||
V3Case.o \
|
||||
V3Cast.o \
|
||||
V3Cdc.o \
|
||||
|
30
src/V3Ast.h
30
src/V3Ast.h
@ -852,6 +852,36 @@ inline std::ostream& operator<<(std::ostream& os, const VNumRange& rhs) { rhs.du
|
||||
|
||||
//######################################################################
|
||||
|
||||
class VUseType {
|
||||
public:
|
||||
enum en {
|
||||
IMP_INCLUDE, // Implementation (.cpp) needs an include
|
||||
INT_INCLUDE, // Interface (.h) needs an include
|
||||
IMP_FWD_CLASS, // Implementation (.cpp) needs a forward class declaration
|
||||
INT_FWD_CLASS, // Interface (.h) needs a forward class declaration
|
||||
};
|
||||
enum en m_e;
|
||||
inline VUseType() : m_e(IMP_FWD_CLASS) {}
|
||||
// cppcheck-suppress noExplicitConstructor
|
||||
inline VUseType(en _e) : m_e(_e) {}
|
||||
explicit inline VUseType(int _e) : m_e(static_cast<en>(_e)) {}
|
||||
bool isInclude() const { return m_e == IMP_INCLUDE || m_e == INT_INCLUDE; }
|
||||
bool isFwdClass() const { return m_e == IMP_FWD_CLASS || m_e == INT_FWD_CLASS; }
|
||||
operator en() const { return m_e; }
|
||||
const char* ascii() const {
|
||||
static const char* const names[] = {"IMP_INC", "INT_INC", "IMP_FWD", "INT_FWD"};
|
||||
return names[m_e];
|
||||
}
|
||||
};
|
||||
inline bool operator==(VUseType lhs, VUseType rhs) { return (lhs.m_e == rhs.m_e); }
|
||||
inline bool operator==(VUseType lhs, VUseType::en rhs) { return (lhs.m_e == rhs); }
|
||||
inline bool operator==(VUseType::en lhs, VUseType rhs) { return (lhs == rhs.m_e); }
|
||||
inline std::ostream& operator<<(std::ostream& os, const VUseType& rhs) {
|
||||
return os << rhs.ascii();
|
||||
}
|
||||
|
||||
//######################################################################
|
||||
|
||||
class VBasicTypeKey {
|
||||
public:
|
||||
int m_width; // From AstNodeDType: Bit width of operation
|
||||
|
@ -1341,3 +1341,7 @@ void AstCFunc::dump(std::ostream& str) const {
|
||||
if (dpiExport()) str<<" [DPIX]";
|
||||
if (dpiExportWrapper()) str<<" [DPIXWR]";
|
||||
}
|
||||
void AstCUse::dump(std::ostream& str) const {
|
||||
this->AstNode::dump(str);
|
||||
str << " [" << useType() << "]";
|
||||
}
|
||||
|
@ -6881,6 +6881,24 @@ public:
|
||||
AstNode* bodysp() const { return op1p(); } // op1 = expressions to print
|
||||
};
|
||||
|
||||
class AstCUse : public AstNode {
|
||||
// C++ use of a class or #include; indicates need of forward declaration
|
||||
// Parents: NODEMODULE
|
||||
private:
|
||||
VUseType m_useType; // What sort of use this is
|
||||
string m_name;
|
||||
public:
|
||||
AstCUse(FileLine* fl, VUseType useType, const string& name)
|
||||
: ASTGEN_SUPER(fl)
|
||||
, m_useType(useType)
|
||||
, m_name(name) {}
|
||||
ASTNODE_NODE_FUNCS(CUse)
|
||||
virtual string name() const { return m_name; }
|
||||
virtual void dump(std::ostream& str = std::cout) const;
|
||||
VUseType useType() const { return m_useType; }
|
||||
void useType(VUseType useType) { m_useType = useType; }
|
||||
};
|
||||
|
||||
class AstMTaskBody : public AstNode {
|
||||
// Hold statements for each MTask
|
||||
private:
|
||||
|
109
src/V3CUse.cpp
Normal file
109
src/V3CUse.cpp
Normal file
@ -0,0 +1,109 @@
|
||||
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
||||
//*************************************************************************
|
||||
// DESCRIPTION: Verilator: Handle SV classes
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
//*************************************************************************
|
||||
// V3Class's Transformations:
|
||||
//
|
||||
// Each class:
|
||||
// Create string access functions
|
||||
//
|
||||
//*************************************************************************
|
||||
|
||||
#include "config_build.h"
|
||||
#include "verilatedos.h"
|
||||
|
||||
#include "V3Global.h"
|
||||
#include "V3CUse.h"
|
||||
#include "V3Ast.h"
|
||||
#include "V3EmitCBase.h"
|
||||
|
||||
#include VL_INCLUDE_UNORDERED_MAP
|
||||
|
||||
//######################################################################
|
||||
|
||||
class CUseVisitor : public AstNVisitor {
|
||||
private:
|
||||
// MEMBERS
|
||||
AstNodeModule* m_modInsertp; // Current module to insert AstCUse under
|
||||
typedef std::pair<VUseType, string> UseString;
|
||||
std::map<UseString, AstCUse*> m_didUse; // What we already used
|
||||
|
||||
// NODE STATE
|
||||
// Entire netlist:
|
||||
// AstClass::user() -> bool. True if class needs to_string dumper
|
||||
AstUser1InUse m_inuser1;
|
||||
|
||||
// METHODS
|
||||
VL_DEBUG_FUNC; // Declare debug()
|
||||
|
||||
AstCUse* newUse(AstNode* nodep, VUseType useType, const string& name) {
|
||||
UseString key(useType, name);
|
||||
if (m_didUse.find(key) == m_didUse.end()) {
|
||||
AstCUse* newp = new AstCUse(nodep->fileline(), useType, name);
|
||||
m_modInsertp->addStmtp(newp);
|
||||
UINFO(8, "Insert " << newp << endl);
|
||||
m_didUse[key] = newp;
|
||||
}
|
||||
return m_didUse[key];
|
||||
}
|
||||
void makeUseCells(AstNodeModule* nodep) {
|
||||
for (AstNode* itemp = nodep->stmtsp(); itemp; itemp = itemp->nextp()) {
|
||||
if (AstCell* cellp = VN_CAST(itemp, Cell)) {
|
||||
// Currently no include because we include __Syms which has them all
|
||||
AstCUse* usep = newUse(nodep, VUseType::INT_FWD_CLASS, cellp->modp()->name());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
virtual void visit(AstNodeModule* nodep) VL_OVERRIDE {
|
||||
if (v3Global.opt.trace()) {
|
||||
AstCUse* usep = newUse(nodep, VUseType::INT_FWD_CLASS, v3Global.opt.traceClassBase());
|
||||
usep->protect(false);
|
||||
}
|
||||
makeUseCells(nodep);
|
||||
}
|
||||
virtual void visit(AstNodeMath* nodep) VL_OVERRIDE {} // Short circuit
|
||||
virtual void visit(AstNodeStmt* nodep) VL_OVERRIDE {} // Short circuit
|
||||
virtual void visit(AstNode* nodep) VL_OVERRIDE { iterateChildren(nodep); }
|
||||
|
||||
public:
|
||||
// CONSTRUCTORS
|
||||
explicit CUseVisitor(AstNetlist* nodep)
|
||||
: m_modInsertp(NULL) {
|
||||
for (AstNodeModule* nodep = v3Global.rootp()->modulesp(); nodep;
|
||||
nodep = VN_CAST(nodep->nextp(), NodeModule)) {
|
||||
// Insert under this module; someday we should e.g. make Ast
|
||||
// for each output file and put under that
|
||||
m_modInsertp = nodep;
|
||||
m_didUse.clear();
|
||||
iterate(nodep);
|
||||
m_modInsertp = NULL;
|
||||
}
|
||||
}
|
||||
virtual ~CUseVisitor() {}
|
||||
VL_UNCOPYABLE(CUseVisitor);
|
||||
};
|
||||
|
||||
//######################################################################
|
||||
// Class class functions
|
||||
|
||||
void V3CUse::cUseAll(AstNetlist* nodep) {
|
||||
UINFO(2, __FUNCTION__ << ": " << endl);
|
||||
{ CUseVisitor visitor(nodep); } // Destruct before checking
|
||||
V3Global::dumpCheckGlobalTree("cuse", 0, v3Global.opt.dumpTreeLevel(__FILE__) >= 3);
|
||||
}
|
37
src/V3CUse.h
Normal file
37
src/V3CUse.h
Normal file
@ -0,0 +1,37 @@
|
||||
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
||||
//*************************************************************************
|
||||
// DESCRIPTION: Verilator: Pre C-Emit stage changes
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// 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 _V3CUSE_H_
|
||||
#define _V3CUSE_H_ 1
|
||||
|
||||
#include "config_build.h"
|
||||
#include "verilatedos.h"
|
||||
|
||||
#include "V3Error.h"
|
||||
#include "V3Ast.h"
|
||||
|
||||
//============================================================================
|
||||
|
||||
class V3CUse {
|
||||
public:
|
||||
static void cUseAll(AstNetlist* nodep);
|
||||
};
|
||||
|
||||
#endif // Guard
|
@ -984,6 +984,7 @@ public:
|
||||
virtual void visit(AstTraceInc*) VL_OVERRIDE {} // Handled outside the Visit class
|
||||
virtual void visit(AstCFile*) VL_OVERRIDE {} // Handled outside the Visit class
|
||||
virtual void visit(AstCellInline*) VL_OVERRIDE {} // Handled outside the Visit class (EmitCSyms)
|
||||
virtual void visit(AstCUse*) VL_OVERRIDE {} // Handled outside the Visit class
|
||||
// Default
|
||||
virtual void visit(AstNode* nodep) VL_OVERRIDE {
|
||||
puts(string("\n???? // ")+nodep->prettyTypeName()+"\n");
|
||||
@ -1384,6 +1385,24 @@ class EmitCImp : EmitCStmts {
|
||||
|
||||
// METHODS
|
||||
// Low level
|
||||
void emitModCUse(AstNodeModule* modp, VUseType useType) {
|
||||
string nl;
|
||||
for (AstNode* itemp = modp->stmtsp(); itemp; itemp = itemp->nextp()) {
|
||||
if (AstCUse* usep = VN_CAST(itemp, CUse)) {
|
||||
if (usep->useType() == useType) {
|
||||
if (usep->useType().isInclude()) {
|
||||
puts("#include \"" + prefixNameProtect(usep) + ".h\"\n");
|
||||
}
|
||||
if (usep->useType().isFwdClass()) {
|
||||
puts("class " + prefixNameProtect(usep) + ";\n");
|
||||
}
|
||||
nl = "\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
puts(nl);
|
||||
}
|
||||
|
||||
void emitVarReset(AstVar* varp) {
|
||||
AstNodeDType* dtypep = varp->dtypep()->skipRefp();
|
||||
if (varp->isIO() && m_modp->isTop() && optSystemC()) {
|
||||
@ -2583,21 +2602,11 @@ void EmitCImp::emitInt(AstNodeModule* modp) {
|
||||
}
|
||||
puts("\n");
|
||||
|
||||
emitModCUse(modp, VUseType::INT_INCLUDE);
|
||||
|
||||
// Declare foreign instances up front to make C++ happy
|
||||
puts("class "+symClassName()+";\n");
|
||||
vl_unordered_set<string> didClassName;
|
||||
for (AstNode* nodep = modp->stmtsp(); nodep; nodep = nodep->nextp()) {
|
||||
if (AstCell* cellp = VN_CAST(nodep, Cell)) {
|
||||
string className = prefixNameProtect(cellp->modp());
|
||||
if (didClassName.find(className) == didClassName.end()) {
|
||||
puts("class " + className + ";\n");
|
||||
didClassName.insert(className);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (v3Global.opt.trace()) {
|
||||
puts("class "+v3Global.opt.traceClassBase()+";\n");
|
||||
}
|
||||
puts("class " + symClassName() + ";\n");
|
||||
emitModCUse(modp, VUseType::INT_FWD_CLASS);
|
||||
|
||||
puts("\n//----------\n\n");
|
||||
emitTextSection(AstType::atScHdr);
|
||||
@ -2794,6 +2803,9 @@ void EmitCImp::emitImpTop(AstNodeModule* fileModp) {
|
||||
puts("#include \"verilated_dpi.h\"\n");
|
||||
}
|
||||
|
||||
emitModCUse(fileModp, VUseType::IMP_INCLUDE);
|
||||
emitModCUse(fileModp, VUseType::IMP_FWD_CLASS);
|
||||
|
||||
puts("\n");
|
||||
emitTextSection(AstType::atScImpHdr);
|
||||
}
|
||||
|
@ -37,6 +37,7 @@
|
||||
#include "V3Coverage.h"
|
||||
#include "V3CoverageJoin.h"
|
||||
#include "V3CCtors.h"
|
||||
#include "V3CUse.h"
|
||||
#include "V3Dead.h"
|
||||
#include "V3Delayed.h"
|
||||
#include "V3Depth.h"
|
||||
@ -373,6 +374,9 @@ static void process() {
|
||||
//--MODULE OPTIMIZATIONS--------------
|
||||
|
||||
if (!v3Global.opt.xmlOnly()) {
|
||||
// Create AstCUse to determine what class forward declarations/#includes needed in C
|
||||
V3CUse::cUseAll(v3Global.rootp());
|
||||
|
||||
// Split deep blocks to appease MSVC++. Must be before Localize.
|
||||
if (!v3Global.opt.lintOnly() && v3Global.opt.compLimitBlocks()) {
|
||||
V3DepthBlock::depthBlockAll(v3Global.rootp());
|
||||
|
Loading…
Reference in New Issue
Block a user