2012-04-13 01:08:20 +00:00
|
|
|
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
2006-08-26 11:35:28 +00:00
|
|
|
//*************************************************************************
|
|
|
|
// DESCRIPTION: Verilator: Prevent very deep expressions
|
|
|
|
//
|
2019-11-08 03:33:59 +00:00
|
|
|
// Code available from: https://verilator.org
|
2006-08-26 11:35:28 +00:00
|
|
|
//
|
|
|
|
//*************************************************************************
|
|
|
|
//
|
2021-01-01 15:29:54 +00:00
|
|
|
// Copyright 2003-2021 by Wilson Snyder. This program is free software; you
|
2020-03-21 15:24:24 +00:00
|
|
|
// can 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.
|
2020-03-21 15:24:24 +00:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
2006-08-26 11:35:28 +00:00
|
|
|
//
|
|
|
|
//*************************************************************************
|
|
|
|
// V3Depth's Transformations:
|
2008-06-10 01:25:10 +00:00
|
|
|
//
|
2006-08-26 11:35:28 +00:00
|
|
|
// Each module:
|
2019-05-19 20:13:13 +00:00
|
|
|
// For each wide OP, assign a temporary variable.
|
|
|
|
// For each deep expression, assign expression to temporary.
|
2006-08-30 22:00:55 +00:00
|
|
|
// Each CFunc:
|
2019-05-19 20:13:13 +00:00
|
|
|
// Any statements that need "this" are marked non-static
|
2006-08-26 11:35:28 +00:00
|
|
|
//
|
|
|
|
//*************************************************************************
|
2019-10-05 00:17:11 +00:00
|
|
|
|
2006-12-18 19:20:45 +00:00
|
|
|
#include "config_build.h"
|
|
|
|
#include "verilatedos.h"
|
2006-08-26 11:35:28 +00:00
|
|
|
|
|
|
|
#include "V3Global.h"
|
|
|
|
#include "V3Depth.h"
|
|
|
|
#include "V3Ast.h"
|
|
|
|
|
2018-10-14 17:43:24 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
2006-08-26 11:35:28 +00:00
|
|
|
//######################################################################
|
|
|
|
|
2020-11-19 02:32:16 +00:00
|
|
|
class DepthVisitor final : public AstNVisitor {
|
2006-08-26 11:35:28 +00:00
|
|
|
private:
|
|
|
|
// NODE STATE
|
|
|
|
|
|
|
|
// STATE
|
2020-08-16 13:55:36 +00:00
|
|
|
AstNodeModule* m_modp = nullptr; // Current module
|
2020-10-31 12:59:35 +00:00
|
|
|
AstCFunc* m_cfuncp = nullptr; // Current block
|
2020-08-16 13:55:36 +00:00
|
|
|
AstNode* m_stmtp = nullptr; // Current statement
|
|
|
|
int m_depth = 0; // How deep in an expression
|
|
|
|
int m_maxdepth = 0; // Maximum depth in an expression
|
2006-08-26 11:35:28 +00:00
|
|
|
|
|
|
|
// METHODS
|
2018-05-14 10:50:47 +00:00
|
|
|
VL_DEBUG_FUNC; // Declare debug()
|
2009-01-21 21:56:50 +00:00
|
|
|
|
2006-08-26 11:35:28 +00:00
|
|
|
void createDeepTemp(AstNode* nodep) {
|
2020-04-14 02:51:35 +00:00
|
|
|
UINFO(6, " Deep " << nodep << endl);
|
2020-04-15 11:58:34 +00:00
|
|
|
// if (debug() >= 9) nodep->dumpTree(cout, "deep:");
|
2006-08-26 11:35:28 +00:00
|
|
|
|
2020-04-14 02:51:35 +00:00
|
|
|
string newvarname = (string("__Vdeeptemp") + cvtToStr(m_modp->varNumGetInc()));
|
2021-03-29 00:18:18 +00:00
|
|
|
AstVar* varp
|
|
|
|
= new AstVar(nodep->fileline(), AstVarType::STMTTEMP, newvarname, nodep->dtypep());
|
2020-10-31 12:59:35 +00:00
|
|
|
UASSERT_OBJ(m_cfuncp, nodep, "Deep expression not under a function");
|
|
|
|
m_cfuncp->addInitsp(varp);
|
2019-05-19 20:13:13 +00:00
|
|
|
// Replace node tree with reference to var
|
2020-09-07 21:09:25 +00:00
|
|
|
AstVarRef* newp = new AstVarRef(nodep->fileline(), varp, VAccess::READ);
|
2019-05-19 20:13:13 +00:00
|
|
|
nodep->replaceWith(newp);
|
|
|
|
// Put assignment before the referencing statement
|
2020-09-07 21:09:25 +00:00
|
|
|
AstAssign* assp = new AstAssign(
|
|
|
|
nodep->fileline(), new AstVarRef(nodep->fileline(), varp, VAccess::WRITE), nodep);
|
2019-05-19 20:13:13 +00:00
|
|
|
AstNRelinker linker2;
|
|
|
|
m_stmtp->unlinkFrBack(&linker2);
|
|
|
|
assp->addNext(m_stmtp);
|
|
|
|
linker2.relink(assp);
|
2006-08-26 11:35:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// VISITORS
|
2020-08-15 14:03:34 +00:00
|
|
|
virtual void visit(AstNodeModule* nodep) override {
|
2020-04-14 02:51:35 +00:00
|
|
|
UINFO(4, " MOD " << nodep << endl);
|
2020-08-25 01:10:43 +00:00
|
|
|
VL_RESTORER(m_modp);
|
2020-01-20 18:27:27 +00:00
|
|
|
{
|
|
|
|
m_modp = nodep;
|
2020-10-31 12:59:35 +00:00
|
|
|
m_cfuncp = nullptr;
|
2020-01-20 18:27:27 +00:00
|
|
|
iterateChildren(nodep);
|
|
|
|
}
|
2006-08-26 11:35:28 +00:00
|
|
|
}
|
2020-08-15 14:03:34 +00:00
|
|
|
virtual void visit(AstCFunc* nodep) override {
|
2020-10-31 12:59:35 +00:00
|
|
|
VL_RESTORER(m_cfuncp);
|
|
|
|
{
|
|
|
|
m_cfuncp = nodep;
|
|
|
|
m_depth = 0;
|
|
|
|
m_maxdepth = 0;
|
|
|
|
iterateChildren(nodep);
|
|
|
|
}
|
2006-08-26 11:35:28 +00:00
|
|
|
}
|
2006-08-30 22:00:55 +00:00
|
|
|
void visitStmt(AstNodeStmt* nodep) {
|
2020-10-31 12:59:35 +00:00
|
|
|
VL_RESTORER(m_stmtp);
|
|
|
|
{
|
|
|
|
m_stmtp = nodep;
|
|
|
|
m_depth = 0;
|
|
|
|
m_maxdepth = 0;
|
|
|
|
iterateChildren(nodep);
|
|
|
|
}
|
2006-08-26 11:35:28 +00:00
|
|
|
}
|
2020-08-15 14:03:34 +00:00
|
|
|
virtual void visit(AstNodeStmt* nodep) override {
|
2019-01-06 22:38:27 +00:00
|
|
|
if (!nodep->isStatement()) {
|
|
|
|
iterateChildren(nodep);
|
|
|
|
} else {
|
|
|
|
visitStmt(nodep);
|
|
|
|
}
|
2006-08-30 22:00:55 +00:00
|
|
|
}
|
2006-08-26 11:35:28 +00:00
|
|
|
// Operators
|
2020-08-15 14:03:34 +00:00
|
|
|
virtual void visit(AstNodeTermop* nodep) override {}
|
|
|
|
virtual void visit(AstNodeMath* nodep) override {
|
2019-05-19 20:13:13 +00:00
|
|
|
// We have some operator defines that use 2 parens, so += 2.
|
2020-12-06 18:49:44 +00:00
|
|
|
{
|
|
|
|
VL_RESTORER(m_depth);
|
|
|
|
m_depth += 2;
|
|
|
|
if (m_depth > m_maxdepth) m_maxdepth = m_depth;
|
|
|
|
iterateChildren(nodep);
|
|
|
|
}
|
2020-04-14 02:51:35 +00:00
|
|
|
if (m_stmtp && (v3Global.opt.compLimitParens() >= 1) // Else compiler doesn't need it
|
|
|
|
&& (m_maxdepth - m_depth) > v3Global.opt.compLimitParens()
|
2018-02-02 02:32:58 +00:00
|
|
|
&& !VN_IS(nodep->backp(), NodeStmt) // Not much point if we're about to use it
|
2020-04-14 02:51:35 +00:00
|
|
|
) {
|
2019-05-19 20:13:13 +00:00
|
|
|
m_maxdepth = m_depth;
|
|
|
|
createDeepTemp(nodep);
|
|
|
|
}
|
2006-08-26 11:35:28 +00:00
|
|
|
}
|
|
|
|
|
2006-08-30 22:00:55 +00:00
|
|
|
//--------------------
|
|
|
|
// Marking of non-static functions (because they might need "this")
|
2019-09-09 11:50:21 +00:00
|
|
|
// (Here instead of new visitor after V3Descope just to avoid another visitor)
|
2006-08-30 22:00:55 +00:00
|
|
|
void needNonStaticFunc(AstNode* nodep) {
|
2020-10-31 12:59:35 +00:00
|
|
|
UASSERT_OBJ(m_cfuncp, nodep, "Non-static accessor not under a function");
|
|
|
|
if (m_cfuncp->isStatic().trueUnknown()) {
|
2020-04-14 02:51:35 +00:00
|
|
|
UINFO(5, "Mark non-public due to " << nodep << endl);
|
2020-10-31 12:59:35 +00:00
|
|
|
m_cfuncp->isStatic(false);
|
2019-05-19 20:13:13 +00:00
|
|
|
}
|
2006-08-30 22:00:55 +00:00
|
|
|
}
|
2020-08-15 14:03:34 +00:00
|
|
|
virtual void visit(AstUCFunc* nodep) override {
|
2019-05-19 20:13:13 +00:00
|
|
|
needNonStaticFunc(nodep);
|
2018-05-11 00:55:37 +00:00
|
|
|
iterateChildren(nodep);
|
2006-08-30 22:00:55 +00:00
|
|
|
}
|
2020-08-15 14:03:34 +00:00
|
|
|
virtual void visit(AstUCStmt* nodep) override {
|
2019-05-19 20:13:13 +00:00
|
|
|
needNonStaticFunc(nodep);
|
|
|
|
visitStmt(nodep);
|
2006-08-30 22:00:55 +00:00
|
|
|
}
|
|
|
|
|
2006-08-26 11:35:28 +00:00
|
|
|
//--------------------
|
|
|
|
// Default: Just iterate
|
2020-08-15 14:03:34 +00:00
|
|
|
virtual void visit(AstVar*) override {} // Don't hit varrefs under vars
|
|
|
|
virtual void visit(AstNode* nodep) override { iterateChildren(nodep); }
|
2006-08-26 11:35:28 +00:00
|
|
|
|
|
|
|
public:
|
2019-09-12 11:22:22 +00:00
|
|
|
// CONSTRUCTORS
|
2020-08-16 13:55:36 +00:00
|
|
|
explicit DepthVisitor(AstNetlist* nodep) { iterate(nodep); }
|
2020-11-17 00:56:16 +00:00
|
|
|
virtual ~DepthVisitor() override = default;
|
2006-08-26 11:35:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//######################################################################
|
|
|
|
// Depth class functions
|
|
|
|
|
|
|
|
void V3Depth::depthAll(AstNetlist* nodep) {
|
2020-04-14 02:51:35 +00:00
|
|
|
UINFO(2, __FUNCTION__ << ": " << endl);
|
|
|
|
{ DepthVisitor visitor(nodep); } // Destruct before checking
|
2017-09-18 02:52:57 +00:00
|
|
|
V3Global::dumpCheckGlobalTree("depth", 0, v3Global.opt.dumpTreeLevel(__FILE__) >= 6);
|
2006-08-26 11:35:28 +00:00
|
|
|
}
|