// -*- mode: C++; c-file-style: "cc-mode" -*- //************************************************************************* // DESCRIPTION: Verilator: Convert DfgGraph to AstModule // // Code available from: https://verilator.org // //************************************************************************* // // Copyright 2003-2025 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 // //************************************************************************* // // Convert DfgGraph back to AstModule. We recursively construct AstNodeExpr expressions for each // DfgVertex which represents a storage location (e.g.: DfgVarPacked), or has multiple sinks // without driving a storage location (and hence needs a temporary variable to duplication). The // recursion stops when we reach a DfgVertex representing a storage location (e.g.: DfgVarPacked), // or a vertex that that has multiple sinks (as these nodes will have a [potentially new temporary] // corresponding// storage location). Redundant variables (those whose source vertex drives // multiple variables) are eliminated when possible. Vertices driving multiple variables are // rendered once, driving an arbitrarily (but deterministically) chosen canonical variable, and the // corresponding redundant variables are assigned from the canonical variable. // //************************************************************************* #include "V3PchAstNoMT.h" // VL_MT_DISABLED_CODE_UNIT #include "V3Dfg.h" #include "V3DfgPasses.h" #include "V3UniqueNames.h" #include VL_DEFINE_DEBUG_FUNCTIONS; namespace { // Create an AstNodeExpr out of a DfgVertex. For most AstNodeExpr subtypes, this can be done // automatically. For the few special cases, we provide specializations below template T_Node* makeNode(const T_Vertex* vtxp, Ops... ops) { T_Node* const nodep = new T_Node{vtxp->fileline(), ops...}; UASSERT_OBJ(nodep->width() == static_cast(vtxp->width()), vtxp, "Incorrect width in AstNode created from DfgVertex " << vtxp->typeName() << ": " << nodep->width() << " vs " << vtxp->width()); return nodep; } //====================================================================== // Vertices needing special conversion template <> AstCountOnes* makeNode( // const DfgCountOnes* vtxp, AstNodeExpr* op1) { AstCountOnes* const nodep = new AstCountOnes{vtxp->fileline(), op1}; // Set dtype same as V3Width nodep->dtypeSetLogicSized(32, VSigning::UNSIGNED); return nodep; } template <> AstExtend* makeNode( // const DfgExtend* vtxp, AstNodeExpr* op1) { return new AstExtend{vtxp->fileline(), op1, static_cast(vtxp->width())}; } template <> AstExtendS* makeNode( // const DfgExtendS* vtxp, AstNodeExpr* op1) { return new AstExtendS{vtxp->fileline(), op1, static_cast(vtxp->width())}; } template <> AstShiftL* makeNode( // const DfgShiftL* vtxp, AstNodeExpr* op1, AstNodeExpr* op2) { return new AstShiftL{vtxp->fileline(), op1, op2, static_cast(vtxp->width())}; } template <> AstShiftR* makeNode( // const DfgShiftR* vtxp, AstNodeExpr* op1, AstNodeExpr* op2) { return new AstShiftR{vtxp->fileline(), op1, op2, static_cast(vtxp->width())}; } template <> AstShiftRS* makeNode( // const DfgShiftRS* vtxp, AstNodeExpr* op1, AstNodeExpr* op2) { return new AstShiftRS{vtxp->fileline(), op1, op2, static_cast(vtxp->width())}; } //====================================================================== // Currently unhandled nodes - see corresponding AstToDfg functions // LCOV_EXCL_START template <> AstCCast* makeNode(const DfgCCast* vtxp, AstNodeExpr*) { vtxp->v3fatalSrc("not implemented"); VL_UNREACHABLE; return nullptr; // LCOV_EXCL_LINE } template <> AstAtoN* makeNode(const DfgAtoN* vtxp, AstNodeExpr*) { vtxp->v3fatalSrc("not implemented"); VL_UNREACHABLE; return nullptr; // LCOV_EXCL_LINE } template <> AstCompareNN* makeNode(const DfgCompareNN* vtxp, AstNodeExpr*, AstNodeExpr*) { vtxp->v3fatalSrc("not implemented"); VL_UNREACHABLE; return nullptr; // LCOV_EXCL_LINE } template <> AstSliceSel* makeNode( const DfgSliceSel* vtxp, AstNodeExpr*, AstNodeExpr*, AstNodeExpr*) { vtxp->v3fatalSrc("not implemented"); VL_UNREACHABLE; return nullptr; // LCOV_EXCL_LINE } // LCOV_EXCL_STOP } // namespace template class DfgToAstVisitor final : DfgVisitor { // NODE STATE // AstScope::user2p // The combinational AstActive under this scope const VNUser2InUse m_user2InUse; // TYPES using VariableType = std::conditional_t; // STATE AstModule* const m_modp; // The parent/result module - This is nullptr when T_Scoped V3DfgDfgToAstContext& m_ctx; // The context for stats AstNodeExpr* m_resultp = nullptr; // The result node of the current traversal // METHODS static VariableType* getNode(const DfgVertexVar* vtxp) { if VL_CONSTEXPR_CXX17 (T_Scoped) { return reinterpret_cast(vtxp->varScopep()); } else { return reinterpret_cast(vtxp->varp()); } } static AstActive* getCombActive(AstScope* scopep) { if (!scopep->user2p()) { // Try to find the existing combinational AstActive for (AstNode* nodep = scopep->blocksp(); nodep; nodep = nodep->nextp()) { AstActive* const activep = VN_CAST(nodep, Active); if (!activep) continue; if (activep->hasCombo()) { scopep->user2p(activep); break; } } // If there isn't one, create a new one if (!scopep->user2p()) { FileLine* const flp = scopep->fileline(); AstSenTree* const senTreep = new AstSenTree{flp, new AstSenItem{flp, AstSenItem::Combo{}}}; AstActive* const activep = new AstActive{flp, "", senTreep}; activep->sensesStorep(senTreep); scopep->addBlocksp(activep); scopep->user2p(activep); } } return VN_AS(scopep->user2p(), Active); } AstNodeExpr* convertDfgVertexToAstNodeExpr(DfgVertex* vtxp) { UASSERT_OBJ(!m_resultp, vtxp, "Result already computed"); UASSERT_OBJ(!vtxp->hasMultipleSinks() || vtxp->is() || vtxp->is() || vtxp->is(), vtxp, "Intermediate DFG value with multiple uses"); iterate(vtxp); UASSERT_OBJ(m_resultp, vtxp, "Missing result"); AstNodeExpr* const resultp = m_resultp; m_resultp = nullptr; return resultp; } void convertDriver(AstScope* scopep, FileLine* flp, AstNodeExpr* lhsp, DfgVertex* driverp) { if (!driverp->is()) { // Base case: assign vertex to current lhs AstNodeExpr* const rhsp = convertDfgVertexToAstNodeExpr(driverp); AstAssignW* const assignp = new AstAssignW{flp, lhsp, rhsp}; lhsp->foreach([flp](AstNode* nodep) { nodep->fileline(flp); }); if VL_CONSTEXPR_CXX17 (T_Scoped) { // Add it to the scope holding the target variable getCombActive(scopep)->addStmtsp(assignp); } else { // Add it to the parend module of the DfgGraph m_modp->addStmtsp(assignp); } ++m_ctx.m_resultEquations; return; } if (DfgSplicePacked* const sPackedp = driverp->cast()) { // Partial assignment of packed value sPackedp->forEachSourceEdge([&](const DfgEdge& edge, size_t i) { UASSERT_OBJ(edge.sourcep(), sPackedp, "Should have removed undriven sources"); // Create Sel FileLine* const dflp = sPackedp->driverFileLine(i); AstConst* const lsbp = new AstConst{dflp, sPackedp->driverLsb(i)}; const int width = static_cast(edge.sourcep()->width()); AstSel* const nLhsp = new AstSel{dflp, lhsp->cloneTreePure(false), lsbp, width}; // Convert source convertDriver(scopep, dflp, nLhsp, edge.sourcep()); // Delete Sel if not consumed if (!nLhsp->backp()) VL_DO_DANGLING(nLhsp->deleteTree(), nLhsp); }); return; } if (DfgSpliceArray* const sArrayp = driverp->cast()) { // Partial assignment of array variable sArrayp->forEachSourceEdge([&](const DfgEdge& edge, size_t i) { UASSERT_OBJ(edge.sourcep(), sArrayp, "Should have removed undriven sources"); // Create ArraySel FileLine* const dflp = sArrayp->driverFileLine(i); AstConst* const idxp = new AstConst{dflp, sArrayp->driverIndex(i)}; AstArraySel* const nLhsp = new AstArraySel{dflp, lhsp->cloneTreePure(false), idxp}; // Convert source convertDriver(scopep, dflp, nLhsp, edge.sourcep()); // Delete ArraySel if not consumed if (!nLhsp->backp()) VL_DO_DANGLING(nLhsp->deleteTree(), nLhsp); }); return; } driverp->v3fatalSrc("Unhandled DfgVertexSplice sub-type"); // LCOV_EXCL_LINE } // VISITORS void visit(DfgVertex* vtxp) override { // LCOV_EXCL_START vtxp->v3fatalSrc("Unhandled DfgVertex: " << vtxp->typeName()); } // LCOV_EXCL_STOP void visit(DfgVarPacked* vtxp) override { m_resultp = new AstVarRef{vtxp->fileline(), getNode(vtxp), VAccess::READ}; } void visit(DfgVarArray* vtxp) override { m_resultp = new AstVarRef{vtxp->fileline(), getNode(vtxp), VAccess::READ}; } void visit(DfgConst* vtxp) override { // m_resultp = new AstConst{vtxp->fileline(), vtxp->num()}; } void visit(DfgSel* vtxp) override { FileLine* const flp = vtxp->fileline(); AstNodeExpr* const fromp = convertDfgVertexToAstNodeExpr(vtxp->fromp()); AstConst* const lsbp = new AstConst{flp, vtxp->lsb()}; m_resultp = new AstSel{flp, fromp, lsbp, static_cast(vtxp->width())}; } void visit(DfgMux* vtxp) override { FileLine* const flp = vtxp->fileline(); AstNodeExpr* const fromp = convertDfgVertexToAstNodeExpr(vtxp->fromp()); AstNodeExpr* const lsbp = convertDfgVertexToAstNodeExpr(vtxp->lsbp()); m_resultp = new AstSel{flp, fromp, lsbp, static_cast(vtxp->width())}; } // The rest of the 'visit' methods are generated by 'astgen' #include "V3Dfg__gen_dfg_to_ast.h" // Constructor explicit DfgToAstVisitor(DfgGraph& dfg, V3DfgDfgToAstContext& ctx) : m_modp{dfg.modulep()} , m_ctx{ctx} { // Convert the graph back to combinational assignments // The graph must have been regularized, so we only need to render assignments for (DfgVertexVar& vtx : dfg.varVertices()) { // If there is no driver (this vertex is an input to the graph), then nothing to do. if (!vtx.srcp()) continue; // Render variable assignments FileLine* const flp = vtx.driverFileLine() ? vtx.driverFileLine() : vtx.fileline(); AstScope* const scopep = T_Scoped ? vtx.varScopep()->scopep() : nullptr; AstVarRef* const lhsp = new AstVarRef{flp, getNode(&vtx), VAccess::WRITE}; convertDriver(scopep, flp, lhsp, vtx.srcp()); // convetDriver clones and might not use up the original lhsp if (!lhsp->backp()) VL_DO_DANGLING(lhsp->deleteTree(), lhsp); } } public: static void apply(DfgGraph& dfg, V3DfgDfgToAstContext& ctx) { DfgToAstVisitor{dfg, ctx}; } }; void V3DfgPasses::dfgToAst(DfgGraph& dfg, V3DfgContext& ctx) { if (dfg.modulep()) { DfgToAstVisitor::apply(dfg, ctx.m_dfg2AstContext); } else { DfgToAstVisitor::apply(dfg, ctx.m_dfg2AstContext); } }