forked from github/verilator
354 lines
12 KiB
C++
354 lines
12 KiB
C++
|
//*************************************************************************
|
|||
|
// DESCRIPTION: Verilator: Parse module/signal name references
|
|||
|
//
|
|||
|
// Code available from: http://www.veripool.org/verilator
|
|||
|
//
|
|||
|
// AUTHORS: Wilson Snyder with Paul Wasson, Duane Gabli
|
|||
|
//
|
|||
|
//*************************************************************************
|
|||
|
//
|
|||
|
// Copyright 2003-2010 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.
|
|||
|
//
|
|||
|
//*************************************************************************
|
|||
|
// Slice TRANSFORMATIONS:
|
|||
|
// Top-down traversal (SliceVisitor):
|
|||
|
// NODEASSIGN
|
|||
|
// ARRAYSEL
|
|||
|
// Compare the dimensions to the Var to check for implicit slices.
|
|||
|
// Using ->length() calculate the number of clones needed.
|
|||
|
// VARREF
|
|||
|
// Check the dimensions of the Var for an implicit slice.
|
|||
|
// Replace with ArraySel nodes if needed.
|
|||
|
// SEL, EXTEND
|
|||
|
// We might be assigning a 1-D packed array to a 2-D packed array,
|
|||
|
// this is unsupported.
|
|||
|
// SliceCloneVisitor (called if this node is a slice):
|
|||
|
// NODEASSIGN
|
|||
|
// Clone and iterate the clone:
|
|||
|
// ARRAYSEL
|
|||
|
// Modify bitp() for the new value and set ->length(1)
|
|||
|
//*************************************************************************
|
|||
|
|
|||
|
#include "config_build.h"
|
|||
|
#include "verilatedos.h"
|
|||
|
#include <cstdio>
|
|||
|
#include <cstdarg>
|
|||
|
#include <unistd.h>
|
|||
|
|
|||
|
#include "V3Global.h"
|
|||
|
#include "V3Slice.h"
|
|||
|
#include "V3Ast.h"
|
|||
|
#include <vector>
|
|||
|
|
|||
|
class SliceCloneVisitor : public AstNVisitor {
|
|||
|
// NODE STATE
|
|||
|
// Inputs:
|
|||
|
// AstArraySel::user1p() -> AstVarRef. The VarRef that the final ArraySel points to
|
|||
|
// AstNodeAssign::user2() -> int. The number of clones needed for this assign
|
|||
|
|
|||
|
// STATE
|
|||
|
vector<vector<unsigned> > m_selBits; // Indexes of the ArraySel we are expanding
|
|||
|
unsigned m_vecIdx; // Current vector index
|
|||
|
unsigned m_depth; // Number of ArraySel's from the VarRef
|
|||
|
AstVarRef* m_refp; // VarRef under this ArraySel
|
|||
|
|
|||
|
// METHODS
|
|||
|
static int debug() {
|
|||
|
static int level = -1;
|
|||
|
if (VL_UNLIKELY(level < 0)) level = v3Global.opt.debugSrcLevel(__FILE__);
|
|||
|
return level;
|
|||
|
}
|
|||
|
|
|||
|
// VISITORS
|
|||
|
virtual void visit(AstArraySel* nodep, AstNUser*) {
|
|||
|
if (!nodep->backp()->castArraySel()) {
|
|||
|
// This is the top of an ArraySel, setup
|
|||
|
m_refp = nodep->user1p()->castNode()->castVarRef();
|
|||
|
m_vecIdx += 1;
|
|||
|
if (m_vecIdx == m_selBits.size()) {
|
|||
|
m_selBits.push_back(vector<unsigned>());
|
|||
|
AstVar* varp = m_refp->varp();
|
|||
|
int dimensions = varp->dimensions();
|
|||
|
for (int i = 0; i < dimensions; ++i) {
|
|||
|
m_selBits[m_vecIdx].push_back(0);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
nodep->iterateChildren(*this);
|
|||
|
if (nodep->fromp()->castVarRef()) {
|
|||
|
m_depth = 0;
|
|||
|
} else {
|
|||
|
++m_depth;
|
|||
|
}
|
|||
|
// Check if m_selBits has overflowed
|
|||
|
if (m_selBits[m_vecIdx][m_depth] >= nodep->length()) {
|
|||
|
m_selBits[m_vecIdx][m_depth] = 0;
|
|||
|
if (m_depth + 1 < m_selBits[m_vecIdx].size())
|
|||
|
m_selBits[m_vecIdx][m_depth+1] += 1;
|
|||
|
}
|
|||
|
// Reassign the bitp()
|
|||
|
if (nodep->length() > 1) {
|
|||
|
if (AstConst* bitp = nodep->bitp()->castConst()) {
|
|||
|
unsigned idx = nodep->start() + m_selBits[m_vecIdx][m_depth];
|
|||
|
AstNode* constp = new AstConst(bitp->fileline(), V3Number(bitp->fileline(), bitp->castConst()->num().width(), idx));
|
|||
|
bitp->replaceWith(constp);
|
|||
|
} else {
|
|||
|
nodep->v3error("Unsupported: Only constants supported in slices");
|
|||
|
}
|
|||
|
}
|
|||
|
if (!nodep->backp()->castArraySel()) {
|
|||
|
// Top ArraySel, increment m_selBits
|
|||
|
m_selBits[m_vecIdx][0] += 1;
|
|||
|
}
|
|||
|
nodep->length(1);
|
|||
|
}
|
|||
|
|
|||
|
virtual void visit(AstNodeAssign* nodep, AstNUser*) {
|
|||
|
m_selBits.clear();
|
|||
|
UINFO(4, "Cloning "<<nodep->user2()<<" times: "<<nodep<<endl);
|
|||
|
for (int i = 0; i < nodep->user2(); ++i) {
|
|||
|
// Clone the node and iterate over the clone
|
|||
|
m_vecIdx = -1;
|
|||
|
AstNodeAssign* clonep = nodep->cloneTree(false)->castNodeAssign();
|
|||
|
clonep->iterateChildren(*this);
|
|||
|
nodep->addNextHere(clonep);
|
|||
|
}
|
|||
|
nodep->unlinkFrBack()->deleteTree(); nodep = NULL;
|
|||
|
}
|
|||
|
|
|||
|
virtual void visit(AstNode* nodep, AstNUser*) {
|
|||
|
// Default: Just iterate
|
|||
|
nodep->iterateChildren(*this);
|
|||
|
}
|
|||
|
public:
|
|||
|
// CONSTUCTORS
|
|||
|
SliceCloneVisitor(AstNodeAssign* assignp) {
|
|||
|
assignp->accept(*this);
|
|||
|
}
|
|||
|
virtual ~SliceCloneVisitor() {}
|
|||
|
};
|
|||
|
|
|||
|
//*************************************************************************
|
|||
|
|
|||
|
class SliceVisitor : public AstNVisitor {
|
|||
|
// NODE STATE
|
|||
|
// Cleared on netlist
|
|||
|
// AstNodeAssign::user1() -> bool. True if find is complete
|
|||
|
// AstNodeAssign::user2() -> int. The number of clones needed for this assign
|
|||
|
// AstArraySel::user1p() -> AstVarRef. The VarRef that the final ArraySel points to
|
|||
|
AstUser1InUse m_inuser1;
|
|||
|
AstUser2InUse m_inuser2;
|
|||
|
|
|||
|
// STATE
|
|||
|
AstNode* m_assignp; // Assignment we are under
|
|||
|
AstNodeVarRef* m_lhsVarRefp; // Var on the LHS
|
|||
|
bool m_extend; // We have found an extend node
|
|||
|
|
|||
|
// METHODS
|
|||
|
static int debug() {
|
|||
|
static int level = -1;
|
|||
|
if (VL_UNLIKELY(level < 0)) level = v3Global.opt.debugSrcLevel(__FILE__);
|
|||
|
return level;
|
|||
|
}
|
|||
|
|
|||
|
// Find out how many explicit dimensions are in a given ArraySel.
|
|||
|
unsigned explicitDimensions(AstArraySel* nodep) {
|
|||
|
unsigned dim = 0;
|
|||
|
AstNode* fromp = nodep;
|
|||
|
AstArraySel* selp;
|
|||
|
do {
|
|||
|
selp = fromp->castArraySel();
|
|||
|
if (!selp) {
|
|||
|
nodep->user1p(fromp->castVarRef());
|
|||
|
selp = NULL;
|
|||
|
} else {
|
|||
|
fromp = selp->fromp();
|
|||
|
if (fromp) ++dim;
|
|||
|
}
|
|||
|
} while (fromp && selp);
|
|||
|
if (!m_assignp->user1p()) nodep->v3fatalSrc("Couldn't find VarRef under the ArraySel");
|
|||
|
return dim;
|
|||
|
}
|
|||
|
|
|||
|
AstNode* insertImplicit(AstVarRef* nodep, unsigned start, unsigned count) {
|
|||
|
// Insert any implicit slices as explicit slices (ArraySel nodes).
|
|||
|
// Return a new pointer to replace fromp() in the ArraySel.
|
|||
|
AstVarRef* fromp = nodep;
|
|||
|
if (!fromp) nodep->v3fatalSrc("NULL VarRef passed to insertImplicit");
|
|||
|
AstVar* varp = fromp->varp();
|
|||
|
// Get the DType and insert a new ArraySel
|
|||
|
AstArraySel* topp = NULL;
|
|||
|
AstArraySel* bottomp = NULL;
|
|||
|
for (unsigned i = start; i < start + count; ++i) {
|
|||
|
AstNodeDType* dtypep = varp->dtypeDimensionp(i-1);
|
|||
|
AstArrayDType* adtypep = dtypep->castArrayDType();
|
|||
|
if (!adtypep) nodep->v3fatalSrc("insertImplicit tried to expand an array without an ArrayDType");
|
|||
|
vlsint32_t msb = adtypep->msb();
|
|||
|
vlsint32_t lsb = adtypep->lsb();
|
|||
|
if (lsb > msb) {
|
|||
|
// Below code assumes big bit endian; just works out if we swap
|
|||
|
int x = msb; msb = lsb; lsb = x;
|
|||
|
}
|
|||
|
AstArraySel* newp = new AstArraySel(nodep->fileline(), fromp, new AstConst(nodep->fileline(),lsb));
|
|||
|
newp->start(lsb);
|
|||
|
newp->length(msb - lsb + 1);
|
|||
|
if (!topp) topp = newp;
|
|||
|
fromp = newp->fromp()->unlinkFrBack()->castVarRef();
|
|||
|
|
|||
|
if (bottomp) bottomp->fromp(newp);
|
|||
|
bottomp = newp;
|
|||
|
}
|
|||
|
bottomp->fromp(fromp);
|
|||
|
return topp;
|
|||
|
}
|
|||
|
|
|||
|
int countClones(AstArraySel* nodep) {
|
|||
|
// Count how many clones we need to make from this ArraySel
|
|||
|
int clones = 1;
|
|||
|
AstNode* fromp = nodep;
|
|||
|
AstArraySel* selp;
|
|||
|
do {
|
|||
|
selp = fromp->castArraySel();
|
|||
|
fromp = (selp) ? selp->fromp() : NULL;
|
|||
|
if (fromp && selp) clones *= selp->length();
|
|||
|
} while (fromp && selp);
|
|||
|
return clones;
|
|||
|
}
|
|||
|
|
|||
|
// VISITORS
|
|||
|
virtual void visit(AstVarRef* nodep, AstNUser*) {
|
|||
|
// The LHS/RHS of an Assign may be to a Var that is an array. In this
|
|||
|
// case we need to create a slice accross the entire Var
|
|||
|
if (m_assignp && !nodep->backp()->castArraySel()) {
|
|||
|
uint32_t dimensions = nodep->varp()->dimensions();
|
|||
|
if (dimensions > 0) {
|
|||
|
AstNode* newp = insertImplicit(nodep->cloneTree(false), 1, dimensions);
|
|||
|
nodep->replaceWith(newp); nodep = NULL;
|
|||
|
newp->iterateChildren(*this);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
virtual void visit(AstExtend* nodep, AstNUser*) {
|
|||
|
m_extend = true;
|
|||
|
if (m_assignp && m_assignp->user2() > 1) {
|
|||
|
m_assignp->v3error("Unsupported: Assignment between packed arrays of different dimensions");
|
|||
|
}
|
|||
|
nodep->iterateChildren(*this);
|
|||
|
}
|
|||
|
|
|||
|
virtual void visit(AstArraySel* nodep, AstNUser*) {
|
|||
|
if (!m_assignp) return;
|
|||
|
unsigned dim = explicitDimensions(nodep);
|
|||
|
AstVarRef* refp = nodep->user1p()->castNode()->castVarRef();
|
|||
|
unsigned implicit = refp->varp()->dimensions() - dim;
|
|||
|
if (implicit > 0) {
|
|||
|
AstNode* backp = refp->backp();
|
|||
|
AstNode* newp = insertImplicit(refp->cloneTree(false), dim+1, implicit);
|
|||
|
backp->castArraySel()->fromp()->replaceWith(newp);
|
|||
|
}
|
|||
|
int clones = countClones(nodep);
|
|||
|
if (m_assignp->user2() > 0 && m_assignp->user2() != clones) {
|
|||
|
m_assignp->v3error("Slices of arrays in assignments must have the same unpacked dimensions");
|
|||
|
} else if (m_assignp->user2() == 0) {
|
|||
|
if (m_extend && clones > 1) {
|
|||
|
m_assignp->v3error("Unsupported: Assignment between packed arrays of different dimensions");
|
|||
|
}
|
|||
|
if (clones > 1 && !refp->lvalue() && refp->varp() == m_lhsVarRefp->varp() && !m_assignp->castAssignDly()) {
|
|||
|
// LHS Var != RHS Var for a non-delayed assignment
|
|||
|
m_assignp->v3error("Unsupported: Slices in a non-delayed assignment with the same Var on both sides");
|
|||
|
}
|
|||
|
m_assignp->user2(clones);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
virtual void visit(AstSel* nodep, AstNUser*) {
|
|||
|
m_extend = true;
|
|||
|
if (m_assignp && m_assignp->user2() > 1) {
|
|||
|
m_assignp->v3error("Unsupported: Assignment between packed arrays of different dimensions");
|
|||
|
}
|
|||
|
nodep->iterateChildren(*this);
|
|||
|
}
|
|||
|
|
|||
|
// Return the first AstVarRef under the node
|
|||
|
AstVarRef* findVarRefRecurse(AstNode* nodep) {
|
|||
|
AstVarRef* refp = nodep->castVarRef();
|
|||
|
if (refp) return refp;
|
|||
|
if (nodep->op1p()) {
|
|||
|
refp = findVarRefRecurse(nodep->op1p());
|
|||
|
if (refp) return refp;
|
|||
|
}
|
|||
|
if (nodep->op2p()) {
|
|||
|
refp = findVarRefRecurse(nodep->op2p());
|
|||
|
if (refp) return refp;
|
|||
|
}
|
|||
|
if (nodep->op3p()) {
|
|||
|
refp = findVarRefRecurse(nodep->op3p());
|
|||
|
if (refp) return refp;
|
|||
|
}
|
|||
|
if (nodep->op3p()) {
|
|||
|
refp = findVarRefRecurse(nodep->op3p());
|
|||
|
if (refp) return refp;
|
|||
|
}
|
|||
|
if (nodep->nextp()) {
|
|||
|
refp = findVarRefRecurse(nodep->nextp());
|
|||
|
if (refp) return refp;
|
|||
|
}
|
|||
|
return NULL;
|
|||
|
}
|
|||
|
|
|||
|
void findImplicit(AstNodeAssign* nodep) {
|
|||
|
if (m_assignp) nodep->v3fatalSrc("Found a NodeAssign under another NodeAssign");
|
|||
|
m_assignp = nodep;
|
|||
|
m_extend = false;
|
|||
|
nodep->user1(true);
|
|||
|
// Record the LHS Var so we can check if the Var on the RHS is the same
|
|||
|
m_lhsVarRefp = findVarRefRecurse(nodep->lhsp());
|
|||
|
if (!m_lhsVarRefp) nodep->v3fatalSrc("Couldn't find a VarRef on the LHSP of an Assign");
|
|||
|
// Iterate children looking for ArraySel nodes. From that we get the number of elements
|
|||
|
// in the array so we know how many times we need to clone this assignment.
|
|||
|
nodep->iterateChildren(*this);
|
|||
|
if (nodep->user2() > 1) {
|
|||
|
SliceCloneVisitor scv(nodep);
|
|||
|
}
|
|||
|
m_assignp = NULL;
|
|||
|
}
|
|||
|
|
|||
|
virtual void visit(AstNodeAssign* nodep, AstNUser*) {
|
|||
|
if (!nodep->user1()) {
|
|||
|
// Hasn't been searched for implicit slices yet
|
|||
|
findImplicit(nodep);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
virtual void visit(AstNode* nodep, AstNUser*) {
|
|||
|
// Default: Just iterate
|
|||
|
nodep->iterateChildren(*this);
|
|||
|
}
|
|||
|
|
|||
|
public:
|
|||
|
// CONSTUCTORS
|
|||
|
SliceVisitor(AstNetlist* rootp) {
|
|||
|
m_assignp = NULL;
|
|||
|
m_lhsVarRefp = NULL;
|
|||
|
rootp->accept(*this);
|
|||
|
}
|
|||
|
virtual ~SliceVisitor() {}
|
|||
|
};
|
|||
|
|
|||
|
//######################################################################
|
|||
|
// Link class functions
|
|||
|
|
|||
|
void V3Slice::sliceAll(AstNetlist* rootp) {
|
|||
|
UINFO(4,__FUNCTION__<<": "<<endl);
|
|||
|
SliceVisitor visitor(rootp);
|
|||
|
}
|