mirror of
https://github.com/verilator/verilator.git
synced 2025-02-01 11:14:03 +00:00
141 lines
5.5 KiB
C++
141 lines
5.5 KiB
C++
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
//*************************************************************************
|
|
// DESCRIPTION: Verilator: Passes over DfgGraph
|
|
//
|
|
// 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
|
|
//
|
|
//*************************************************************************
|
|
|
|
#ifndef VERILATOR_V3DFGPASSES_H_
|
|
#define VERILATOR_V3DFGPASSES_H_
|
|
|
|
#include "config_build.h"
|
|
#include "verilatedos.h"
|
|
|
|
#include "V3DfgPatternStats.h"
|
|
#include "V3DfgPeephole.h"
|
|
|
|
class AstModule;
|
|
class DfgGraph;
|
|
|
|
//===========================================================================
|
|
// Various context objects hold data that need to persist across invocations
|
|
// of a DFG pass.
|
|
|
|
class V3DfgCseContext final {
|
|
const std::string m_label; // Label to apply to stats
|
|
|
|
public:
|
|
VDouble0 m_eliminated; // Number of common sub-expressions eliminated
|
|
explicit V3DfgCseContext(const std::string& label)
|
|
: m_label{label} {}
|
|
~V3DfgCseContext() VL_MT_DISABLED;
|
|
};
|
|
|
|
class V3DfgRegularizeContext final {
|
|
const std::string m_label; // Label to apply to stats
|
|
|
|
// Used to generate unique names for different DFGs within the same hashed name
|
|
std::unordered_map<std::string, uint32_t> m_multiplicity;
|
|
|
|
public:
|
|
VDouble0 m_temporariesIntroduced; // Number of temporaries introduced
|
|
|
|
std::string tmpNamePrefix(const DfgGraph&); // Return prefix to use for given graph
|
|
|
|
explicit V3DfgRegularizeContext(const std::string& label)
|
|
: m_label{label} {}
|
|
~V3DfgRegularizeContext() VL_MT_DISABLED;
|
|
};
|
|
|
|
class V3DfgEliminateVarsContext final {
|
|
const std::string m_label; // Label to apply to stats
|
|
|
|
public:
|
|
VDouble0 m_varsReplaced; // Number of variables replaced
|
|
VDouble0 m_varsRemoved; // Number of variables removed
|
|
|
|
explicit V3DfgEliminateVarsContext(const std::string& label)
|
|
: m_label{label} {}
|
|
~V3DfgEliminateVarsContext() VL_MT_DISABLED;
|
|
};
|
|
|
|
class V3DfgOptimizationContext final {
|
|
const std::string m_label; // Label to add to stats, etc.
|
|
const std::string m_prefix; // Prefix to add to file dumps (derived from label)
|
|
|
|
public:
|
|
VDouble0 m_modules; // Number of modules optimized
|
|
VDouble0 m_coalescedAssignments; // Number of partial assignments coalesced
|
|
VDouble0 m_inputEquations; // Number of input combinational equations
|
|
VDouble0 m_representable; // Number of combinational equations representable
|
|
VDouble0 m_nonRepDType; // Equations non-representable due to data type
|
|
VDouble0 m_nonRepImpure; // Equations non-representable due to impure node
|
|
VDouble0 m_nonRepTiming; // Equations non-representable due to timing control
|
|
VDouble0 m_nonRepLhs; // Equations non-representable due to lhs
|
|
VDouble0 m_nonRepNode; // Equations non-representable due to node type
|
|
VDouble0 m_nonRepUnknown; // Equations non-representable due to unknown node
|
|
VDouble0 m_nonRepVarRef; // Equations non-representable due to variable reference
|
|
VDouble0 m_nonRepWidth; // Equations non-representable due to width mismatch
|
|
VDouble0 m_resultEquations; // Number of result combinational equations
|
|
|
|
V3DfgCseContext m_cseContext0{m_label + " 1st"};
|
|
V3DfgCseContext m_cseContext1{m_label + " 2nd"};
|
|
V3DfgPeepholeContext m_peepholeContext{m_label};
|
|
V3DfgRegularizeContext m_regularizeContext{m_label};
|
|
V3DfgEliminateVarsContext m_eliminateVarsContext{m_label};
|
|
|
|
V3DfgPatternStats m_patternStats;
|
|
|
|
explicit V3DfgOptimizationContext(const std::string& label) VL_MT_DISABLED;
|
|
~V3DfgOptimizationContext() VL_MT_DISABLED;
|
|
|
|
const std::string& prefix() const { return m_prefix; }
|
|
};
|
|
|
|
namespace V3DfgPasses {
|
|
//===========================================================================
|
|
// Top level entry points
|
|
//===========================================================================
|
|
|
|
// Construct a DfGGraph representing the combinational logic in the given AstModule. The logic
|
|
// that is represented by the graph is removed from the given AstModule. Returns the
|
|
// constructed DfgGraph.
|
|
DfgGraph* astToDfg(AstModule&, V3DfgOptimizationContext&) VL_MT_DISABLED;
|
|
|
|
// Optimize the given DfgGraph
|
|
void optimize(DfgGraph&, V3DfgOptimizationContext&) VL_MT_DISABLED;
|
|
|
|
// Convert DfgGraph back into Ast, and insert converted graph back into its parent module.
|
|
// Returns the parent module.
|
|
AstModule* dfgToAst(DfgGraph&, V3DfgOptimizationContext&) VL_MT_DISABLED;
|
|
|
|
//===========================================================================
|
|
// Intermediate/internal operations
|
|
//===========================================================================
|
|
|
|
// Common subexpression elimination
|
|
void cse(DfgGraph&, V3DfgCseContext&) VL_MT_DISABLED;
|
|
// Inline fully driven variables
|
|
void inlineVars(DfgGraph&) VL_MT_DISABLED;
|
|
// Peephole optimizations
|
|
void peephole(DfgGraph&, V3DfgPeepholeContext&) VL_MT_DISABLED;
|
|
// Regularize graph. This must be run before converting back to Ast.
|
|
void regularize(DfgGraph&, V3DfgRegularizeContext&) VL_MT_DISABLED;
|
|
// Remove unused nodes
|
|
void removeUnused(DfgGraph&) VL_MT_DISABLED;
|
|
// Eliminate (remove or replace) redundant variables. Also removes resulting unused logic.
|
|
void eliminateVars(DfgGraph&, V3DfgEliminateVarsContext&) VL_MT_DISABLED;
|
|
|
|
} // namespace V3DfgPasses
|
|
|
|
#endif
|