2012-04-13 03:08:20 +02:00
|
|
|
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
2006-08-26 13:35:28 +02:00
|
|
|
//*************************************************************************
|
|
|
|
|
// DESCRIPTION: Verilator: Collect and print statistics
|
|
|
|
|
//
|
2019-11-08 04:33:59 +01:00
|
|
|
// Code available from: https://verilator.org
|
2006-08-26 13:35:28 +02:00
|
|
|
//
|
|
|
|
|
//*************************************************************************
|
|
|
|
|
//
|
2024-01-01 09:19:59 +01:00
|
|
|
// Copyright 2005-2024 by Wilson Snyder. This program is free software; you
|
2020-03-21 16:24:24 +01:00
|
|
|
// can redistribute it and/or modify it under the terms of either the GNU
|
2009-05-04 23:07:57 +02:00
|
|
|
// Lesser General Public License Version 3 or the Perl Artistic License
|
|
|
|
|
// Version 2.0.
|
2020-03-21 16:24:24 +01:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
2006-08-26 13:35:28 +02:00
|
|
|
//
|
|
|
|
|
//*************************************************************************
|
|
|
|
|
// Pre steps:
|
2019-05-19 22:13:13 +02:00
|
|
|
// Attach clocks to each assertion
|
2023-10-20 01:26:36 +02:00
|
|
|
// Substitute property references by property body (IEEE 1800-2012 16.12.1).
|
2022-12-23 13:34:49 +01:00
|
|
|
// Transform clocking blocks into imperative logic
|
2006-08-26 13:35:28 +02:00
|
|
|
//*************************************************************************
|
2019-10-05 02:17:11 +02:00
|
|
|
|
2023-10-18 12:37:46 +02:00
|
|
|
#include "V3PchAstNoMT.h" // VL_MT_DISABLED_CODE_UNIT
|
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
#include "V3AssertPre.h"
|
2022-08-05 11:56:57 +02:00
|
|
|
|
2022-12-23 13:34:49 +01:00
|
|
|
#include "V3Const.h"
|
2022-11-01 23:53:47 +01:00
|
|
|
#include "V3Task.h"
|
2022-12-23 13:34:49 +01:00
|
|
|
#include "V3UniqueNames.h"
|
2018-10-14 19:43:24 +02:00
|
|
|
|
2022-09-18 21:53:42 +02:00
|
|
|
VL_DEFINE_DEBUG_FUNCTIONS;
|
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
//######################################################################
|
|
|
|
|
// Assert class functions
|
|
|
|
|
|
2022-01-02 19:56:40 +01:00
|
|
|
class AssertPreVisitor final : public VNVisitor {
|
2006-08-26 13:35:28 +02:00
|
|
|
// Removes clocks and other pre-optimizations
|
|
|
|
|
// Eventually inlines calls to sequences, properties, etc.
|
|
|
|
|
// We're not parsing the tree, or anything more complicated.
|
|
|
|
|
private:
|
2022-12-23 13:34:49 +01:00
|
|
|
// NODE STATE
|
|
|
|
|
const VNUser1InUse m_inuser1;
|
2006-08-26 13:35:28 +02:00
|
|
|
// STATE
|
2022-12-23 13:34:49 +01:00
|
|
|
// Current context:
|
|
|
|
|
AstNetlist* const m_netlistp = nullptr; // Current netlist
|
|
|
|
|
AstNodeModule* m_modp = nullptr; // Current module
|
|
|
|
|
AstClocking* m_clockingp = nullptr; // Current clocking block
|
2006-08-26 13:35:28 +02:00
|
|
|
// Reset each module:
|
2022-12-23 13:34:49 +01:00
|
|
|
AstClocking* m_defaultClockingp = nullptr; // Default clocking for the current module
|
2006-08-26 13:35:28 +02:00
|
|
|
// Reset each assertion:
|
2020-08-16 15:55:36 +02:00
|
|
|
AstSenItem* m_senip = nullptr; // Last sensitivity
|
2018-09-23 21:09:47 +02:00
|
|
|
// Reset each always:
|
2020-08-16 15:55:36 +02:00
|
|
|
AstSenItem* m_seniAlwaysp = nullptr; // Last sensitivity in always
|
2020-09-10 12:49:04 +02:00
|
|
|
// Reset each assertion:
|
2022-11-13 21:33:11 +01:00
|
|
|
AstNodeExpr* m_disablep = nullptr; // Last disable
|
2022-12-23 13:34:49 +01:00
|
|
|
// Other:
|
|
|
|
|
V3UniqueNames m_cycleDlyNames{"__VcycleDly"}; // Cycle delay counter name generator
|
|
|
|
|
bool m_inAssign = false; // True if in an AssignNode
|
|
|
|
|
bool m_inAssignDlyLhs = false; // True if in AssignDly's LHS
|
|
|
|
|
bool m_inSynchDrive = false; // True if in synchronous drive
|
2006-08-26 13:35:28 +02:00
|
|
|
|
|
|
|
|
// METHODS
|
2009-01-21 22:56:50 +01:00
|
|
|
|
2023-01-28 20:05:26 +01:00
|
|
|
AstSenTree* newSenTree(AstNode* nodep, AstSenTree* useTreep = nullptr) {
|
2019-05-19 22:13:13 +02:00
|
|
|
// Create sentree based on clocked or default clock
|
2020-08-15 16:12:55 +02:00
|
|
|
// Return nullptr for always
|
2023-01-28 20:05:26 +01:00
|
|
|
if (useTreep) return useTreep;
|
2020-08-15 16:12:55 +02:00
|
|
|
AstSenTree* newp = nullptr;
|
2020-07-05 19:13:03 +02:00
|
|
|
AstSenItem* senip = m_senip;
|
2022-12-23 13:34:49 +01:00
|
|
|
if (!senip && m_defaultClockingp) senip = m_defaultClockingp->sensesp();
|
2018-09-23 21:09:47 +02:00
|
|
|
if (!senip) senip = m_seniAlwaysp;
|
2019-05-19 22:13:13 +02:00
|
|
|
if (!senip) {
|
2020-06-10 01:20:16 +02:00
|
|
|
nodep->v3warn(E_UNSUPPORTED, "Unsupported: Unclocked assertion");
|
2022-11-20 21:06:49 +01:00
|
|
|
newp = new AstSenTree{nodep->fileline(), nullptr};
|
2019-05-19 22:13:13 +02:00
|
|
|
} else {
|
2022-11-20 21:06:49 +01:00
|
|
|
newp = new AstSenTree{nodep->fileline(), senip->cloneTree(true)};
|
2019-05-19 22:13:13 +02:00
|
|
|
}
|
|
|
|
|
return newp;
|
2006-08-26 13:35:28 +02:00
|
|
|
}
|
2020-09-10 12:49:04 +02:00
|
|
|
void clearAssertInfo() {
|
|
|
|
|
m_senip = nullptr;
|
|
|
|
|
m_disablep = nullptr;
|
|
|
|
|
}
|
2022-11-01 23:53:47 +01:00
|
|
|
AstPropSpec* getPropertyExprp(const AstProperty* const propp) {
|
|
|
|
|
// The only statements possible in AstProperty are AstPropSpec (body)
|
|
|
|
|
// and AstVar (arguments).
|
|
|
|
|
AstNode* propExprp = propp->stmtsp();
|
|
|
|
|
while (VN_IS(propExprp, Var)) propExprp = propExprp->nextp();
|
|
|
|
|
return VN_CAST(propExprp, PropSpec);
|
|
|
|
|
}
|
|
|
|
|
void replaceVarRefsWithExprRecurse(AstNode* const nodep, const AstVar* varp,
|
|
|
|
|
AstNode* const exprp) {
|
|
|
|
|
if (!nodep) return;
|
|
|
|
|
if (const AstVarRef* varrefp = VN_CAST(nodep, VarRef)) {
|
|
|
|
|
if (varp == varrefp->varp()) nodep->replaceWith(exprp->cloneTree(false));
|
|
|
|
|
}
|
|
|
|
|
replaceVarRefsWithExprRecurse(nodep->op1p(), varp, exprp);
|
|
|
|
|
replaceVarRefsWithExprRecurse(nodep->op2p(), varp, exprp);
|
|
|
|
|
replaceVarRefsWithExprRecurse(nodep->op3p(), varp, exprp);
|
|
|
|
|
replaceVarRefsWithExprRecurse(nodep->op4p(), varp, exprp);
|
|
|
|
|
}
|
|
|
|
|
AstPropSpec* substitutePropertyCall(AstPropSpec* nodep) {
|
|
|
|
|
if (AstFuncRef* const funcrefp = VN_CAST(nodep->propp(), FuncRef)) {
|
|
|
|
|
if (AstProperty* const propp = VN_CAST(funcrefp->taskp(), Property)) {
|
|
|
|
|
AstPropSpec* propExprp = getPropertyExprp(propp);
|
2022-12-03 00:46:38 +01:00
|
|
|
// Substitute inner property call before copying in order to not doing the same for
|
2022-11-01 23:53:47 +01:00
|
|
|
// each call of outer property call.
|
|
|
|
|
propExprp = substitutePropertyCall(propExprp);
|
|
|
|
|
// Clone subtree after substitution. It is needed, because property might be called
|
|
|
|
|
// multiple times with different arguments.
|
|
|
|
|
propExprp = propExprp->cloneTree(false);
|
|
|
|
|
// Substitute formal arguments with actual arguments
|
|
|
|
|
const V3TaskConnects tconnects = V3Task::taskConnects(funcrefp, propp->stmtsp());
|
|
|
|
|
for (const auto& tconnect : tconnects) {
|
|
|
|
|
const AstVar* const portp = tconnect.first;
|
|
|
|
|
AstArg* const argp = tconnect.second;
|
|
|
|
|
AstNode* const pinp = argp->exprp()->unlinkFrBack();
|
|
|
|
|
replaceVarRefsWithExprRecurse(propExprp, portp, pinp);
|
|
|
|
|
}
|
|
|
|
|
// Handle case with 2 disable iff statement (IEEE 1800-2017 16.12.1)
|
|
|
|
|
if (nodep->disablep() && propExprp->disablep()) {
|
|
|
|
|
nodep->v3error("disable iff expression before property call and in its "
|
|
|
|
|
"body is not legal");
|
2022-11-11 04:09:24 +01:00
|
|
|
pushDeletep(propExprp->disablep()->unlinkFrBack());
|
2022-11-01 23:53:47 +01:00
|
|
|
}
|
|
|
|
|
// If disable iff is in outer property, move it to inner
|
|
|
|
|
if (nodep->disablep()) {
|
2022-11-13 21:33:11 +01:00
|
|
|
AstNodeExpr* const disablep = nodep->disablep()->unlinkFrBack();
|
2022-11-01 23:53:47 +01:00
|
|
|
propExprp->disablep(disablep);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (nodep->sensesp() && propExprp->sensesp()) {
|
|
|
|
|
nodep->v3warn(E_UNSUPPORTED,
|
|
|
|
|
"Unsupported: Clock event before property call and in its body");
|
|
|
|
|
pushDeletep(propExprp->sensesp()->unlinkFrBack());
|
|
|
|
|
}
|
|
|
|
|
// If clock event is in outer property, move it to inner
|
|
|
|
|
if (nodep->sensesp()) {
|
|
|
|
|
AstSenItem* const sensesp = nodep->sensesp();
|
|
|
|
|
sensesp->unlinkFrBack();
|
|
|
|
|
propExprp->sensesp(sensesp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Now substitute property reference with property body
|
|
|
|
|
nodep->replaceWith(propExprp);
|
|
|
|
|
return propExprp;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return nodep;
|
|
|
|
|
}
|
2006-08-26 13:35:28 +02:00
|
|
|
|
2018-09-23 21:09:47 +02:00
|
|
|
// VISITORS
|
|
|
|
|
//========== Statements
|
2022-12-23 13:34:49 +01:00
|
|
|
void visit(AstClocking* const nodep) override {
|
|
|
|
|
VL_RESTORER(m_clockingp);
|
|
|
|
|
m_clockingp = nodep;
|
2020-04-14 04:51:35 +02:00
|
|
|
UINFO(8, " CLOCKING" << nodep << endl);
|
2022-12-23 13:34:49 +01:00
|
|
|
iterateChildren(nodep);
|
|
|
|
|
}
|
|
|
|
|
void visit(AstClockingItem* const nodep) override {
|
|
|
|
|
FileLine* const flp = nodep->fileline();
|
|
|
|
|
V3Const::constifyEdit(nodep->skewp());
|
|
|
|
|
if (!VN_IS(nodep->skewp(), Const)) {
|
|
|
|
|
nodep->skewp()->v3error("Skew must be constant (IEEE 1800-2017 14.4)");
|
|
|
|
|
VL_DO_DANGLING(nodep->unlinkFrBack()->deleteTree(), nodep);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
AstConst* const skewp = VN_AS(nodep->skewp(), Const);
|
|
|
|
|
if (skewp->num().isNegative()) skewp->v3error("Skew cannot be negative");
|
|
|
|
|
AstNodeExpr* const exprp = nodep->exprp();
|
|
|
|
|
// Get a ref to the sampled/driven variable
|
|
|
|
|
AstVar* const varp = nodep->varp()->unlinkFrBack();
|
|
|
|
|
m_clockingp->addVarsp(varp);
|
|
|
|
|
varp->user1p(nodep);
|
|
|
|
|
if (nodep->direction() == VDirection::OUTPUT) {
|
|
|
|
|
AstVarRef* const skewedRefp = new AstVarRef{flp, varp, VAccess::READ};
|
|
|
|
|
skewedRefp->user1(true);
|
2023-09-17 04:50:54 +02:00
|
|
|
AstAssign* const assignp = new AstAssign{flp, exprp->cloneTreePure(false), skewedRefp};
|
2022-12-23 13:34:49 +01:00
|
|
|
if (skewp->isZero()) {
|
|
|
|
|
// Drive the var in Re-NBA (IEEE 1800-2017 14.16)
|
|
|
|
|
m_clockingp->addNextHere(new AstAlwaysReactive{
|
|
|
|
|
flp, new AstSenTree{flp, m_clockingp->sensesp()->cloneTree(false)}, assignp});
|
|
|
|
|
} else if (skewp->fileline()->timingOn()) {
|
|
|
|
|
// Create a fork so that this AlwaysObserved can be retriggered before the
|
|
|
|
|
// assignment happens. Also then it can be combo, avoiding the need for creating
|
|
|
|
|
// new triggers.
|
|
|
|
|
AstFork* const forkp = new AstFork{flp, "", assignp};
|
|
|
|
|
forkp->joinType(VJoinType::JOIN_NONE);
|
|
|
|
|
// Use Observed for this to make sure we do not miss the event
|
|
|
|
|
m_clockingp->addNextHere(new AstAlwaysObserved{
|
|
|
|
|
flp, new AstSenTree{flp, m_clockingp->sensesp()->cloneTree(false)}, forkp});
|
|
|
|
|
if (v3Global.opt.timing().isSetTrue()) {
|
|
|
|
|
assignp->timingControlp(new AstDelay{flp, skewp->unlinkFrBack(), false});
|
|
|
|
|
} else if (v3Global.opt.timing().isSetFalse()) {
|
|
|
|
|
nodep->v3warn(E_NOTIMING,
|
|
|
|
|
"Clocking output skew greater than #0 requires --timing");
|
|
|
|
|
} else {
|
|
|
|
|
nodep->v3warn(E_NEEDTIMINGOPT,
|
|
|
|
|
"Use --timing or --no-timing to specify how "
|
|
|
|
|
"clocking output skew greater than #0 should be handled");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else if (nodep->direction() == VDirection::INPUT) {
|
|
|
|
|
// Ref to the clockvar
|
|
|
|
|
AstVarRef* const refp = new AstVarRef{flp, varp, VAccess::WRITE};
|
|
|
|
|
refp->user1(true);
|
|
|
|
|
if (skewp->num().is1Step()) {
|
|
|
|
|
// Assign the sampled expression to the clockvar (IEEE 1800-2017 14.13)
|
2023-09-17 04:50:54 +02:00
|
|
|
AstSampled* const sampledp = new AstSampled{flp, exprp->cloneTreePure(false)};
|
2022-12-23 13:34:49 +01:00
|
|
|
sampledp->dtypeFrom(exprp);
|
|
|
|
|
m_clockingp->addNextHere(new AstAssignW{flp, refp, sampledp});
|
|
|
|
|
} else if (skewp->isZero()) {
|
|
|
|
|
// #0 means the var has to be sampled in Observed (IEEE 1800-2017 14.13)
|
2023-09-17 04:50:54 +02:00
|
|
|
AstAssign* const assignp = new AstAssign{flp, refp, exprp->cloneTreePure(false)};
|
2022-12-23 13:34:49 +01:00
|
|
|
m_clockingp->addNextHere(new AstAlwaysObserved{
|
|
|
|
|
flp, new AstSenTree{flp, m_clockingp->sensesp()->cloneTree(false)}, assignp});
|
|
|
|
|
} else {
|
|
|
|
|
// Create a queue where we'll store sampled values with timestamps
|
|
|
|
|
AstSampleQueueDType* const queueDtp
|
|
|
|
|
= new AstSampleQueueDType{flp, exprp->dtypep()};
|
|
|
|
|
m_netlistp->typeTablep()->addTypesp(queueDtp);
|
|
|
|
|
AstVar* const queueVarp = new AstVar{
|
|
|
|
|
flp, VVarType::MODULETEMP,
|
|
|
|
|
"__Vqueue__" + m_clockingp->name() + "__DOT__" + varp->name(), queueDtp};
|
|
|
|
|
m_clockingp->addNextHere(queueVarp);
|
|
|
|
|
// Create a process like this:
|
|
|
|
|
// always queue.push(<sampled var>);
|
|
|
|
|
AstCMethodHard* const pushp = new AstCMethodHard{
|
|
|
|
|
flp, new AstVarRef{flp, queueVarp, VAccess::WRITE}, "push",
|
2023-04-07 03:00:10 +02:00
|
|
|
new AstTime{nodep->fileline(), m_modp->timeunit()}};
|
2023-09-17 04:50:54 +02:00
|
|
|
pushp->addPinsp(exprp->cloneTreePure(false));
|
2022-12-23 13:34:49 +01:00
|
|
|
pushp->dtypeSetVoid();
|
|
|
|
|
m_clockingp->addNextHere(
|
|
|
|
|
new AstAlways{flp, VAlwaysKwd::ALWAYS, nullptr, pushp->makeStmt()});
|
|
|
|
|
// Create a process like this:
|
|
|
|
|
// always @<clocking event> queue.pop(<skew>, /*out*/<skewed var>});
|
|
|
|
|
AstCMethodHard* const popp = new AstCMethodHard{
|
|
|
|
|
flp, new AstVarRef{flp, queueVarp, VAccess::READWRITE}, "pop",
|
2023-04-07 03:00:10 +02:00
|
|
|
new AstTime{nodep->fileline(), m_modp->timeunit()}};
|
2022-12-23 13:34:49 +01:00
|
|
|
popp->addPinsp(skewp->unlinkFrBack());
|
|
|
|
|
popp->addPinsp(refp);
|
|
|
|
|
popp->dtypeSetVoid();
|
|
|
|
|
m_clockingp->addNextHere(
|
|
|
|
|
new AstAlways{flp, VAlwaysKwd::ALWAYS,
|
|
|
|
|
new AstSenTree{flp, m_clockingp->sensesp()->cloneTree(false)},
|
|
|
|
|
popp->makeStmt()});
|
|
|
|
|
}
|
2019-05-19 22:13:13 +02:00
|
|
|
} else {
|
2022-12-23 13:34:49 +01:00
|
|
|
nodep->v3fatal("Invalid direction");
|
|
|
|
|
}
|
|
|
|
|
pushDeletep(nodep->unlinkFrBack());
|
|
|
|
|
}
|
|
|
|
|
void visit(AstDelay* nodep) override {
|
|
|
|
|
// Only cycle delays are relevant in this stage; also only process once
|
|
|
|
|
if (!nodep->isCycleDelay()) {
|
|
|
|
|
if (m_inSynchDrive) {
|
|
|
|
|
nodep->v3error("Only cycle delays can be used in synchronous drives"
|
|
|
|
|
" (IEEE 1800-2017 14.16)");
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (m_inAssign && !m_inSynchDrive) {
|
|
|
|
|
nodep->v3error("Cycle delays not allowed as intra-assignment delays"
|
|
|
|
|
" (IEEE 1800-2017 14.11)");
|
|
|
|
|
VL_DO_DANGLING(nodep->unlinkFrBack()->deleteTree(), nodep);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (nodep->stmtsp()) nodep->addNextHere(nodep->stmtsp()->unlinkFrBackWithNext());
|
|
|
|
|
FileLine* const flp = nodep->fileline();
|
|
|
|
|
AstNodeExpr* valuep = V3Const::constifyEdit(nodep->lhsp()->unlinkFrBack());
|
|
|
|
|
AstConst* const constp = VN_CAST(valuep, Const);
|
|
|
|
|
if (constp->isZero()) {
|
|
|
|
|
nodep->v3warn(E_UNSUPPORTED, "Unsupported: ##0 delays");
|
|
|
|
|
VL_DO_DANGLING(nodep->unlinkFrBack()->deleteTree(), nodep);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (!m_defaultClockingp) {
|
|
|
|
|
nodep->v3error("Usage of cycle delays requires default clocking"
|
|
|
|
|
" (IEEE 1800-2017 14.11)");
|
|
|
|
|
VL_DO_DANGLING(nodep->unlinkFrBack()->deleteTree(), nodep);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
AstEventControl* const controlp = new AstEventControl{
|
|
|
|
|
nodep->fileline(),
|
|
|
|
|
new AstSenTree{flp, m_defaultClockingp->sensesp()->cloneTree(false)}, nullptr};
|
|
|
|
|
const std::string delayName = m_cycleDlyNames.get(nodep);
|
|
|
|
|
AstVar* const cntVarp = new AstVar{flp, VVarType::BLOCKTEMP, delayName + "__counter",
|
|
|
|
|
nodep->findBasicDType(VBasicDTypeKwd::UINT32)};
|
|
|
|
|
AstBegin* const beginp = new AstBegin{flp, delayName + "__block", cntVarp, false, true};
|
|
|
|
|
beginp->addStmtsp(new AstAssign{flp, new AstVarRef{flp, cntVarp, VAccess::WRITE}, valuep});
|
|
|
|
|
beginp->addStmtsp(new AstWhile{
|
|
|
|
|
nodep->fileline(),
|
|
|
|
|
new AstGt{flp, new AstVarRef{flp, cntVarp, VAccess::READ}, new AstConst{flp, 0}},
|
|
|
|
|
controlp,
|
|
|
|
|
new AstAssign{flp, new AstVarRef{flp, cntVarp, VAccess::WRITE},
|
|
|
|
|
new AstSub{flp, new AstVarRef{flp, cntVarp, VAccess::READ},
|
|
|
|
|
new AstConst{flp, 1}}}});
|
|
|
|
|
nodep->replaceWith(beginp);
|
|
|
|
|
VL_DO_DANGLING(nodep->deleteTree(), nodep);
|
|
|
|
|
}
|
|
|
|
|
void visit(AstSenTree* nodep) override {
|
|
|
|
|
if (m_inSynchDrive) {
|
|
|
|
|
nodep->v3error("Event controls cannot be used in "
|
|
|
|
|
"synchronous drives (IEEE 1800-2017 14.16)");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
void visit(AstNodeVarRef* nodep) override {
|
|
|
|
|
if (AstClockingItem* const itemp = VN_CAST(nodep->varp()->user1p(), ClockingItem)) {
|
|
|
|
|
if (nodep->access().isReadOrRW() && !nodep->user1()
|
|
|
|
|
&& itemp->direction() == VDirection::OUTPUT) {
|
|
|
|
|
nodep->v3error("Cannot read from output clockvar (IEEE 1800-2017 14.3)");
|
|
|
|
|
}
|
|
|
|
|
if (nodep->access().isWriteOrRW()) {
|
|
|
|
|
if (itemp->direction() == VDirection::OUTPUT) {
|
|
|
|
|
if (!m_inAssignDlyLhs) {
|
|
|
|
|
nodep->v3error("Only non-blocking assignments can write "
|
|
|
|
|
"to clockvars (IEEE 1800-2017 14.16)");
|
|
|
|
|
}
|
|
|
|
|
if (m_inAssign) m_inSynchDrive = true;
|
|
|
|
|
} else if (!nodep->user1() && itemp->direction() == VDirection::INPUT) {
|
|
|
|
|
nodep->v3error("Cannot write to input clockvar (IEEE 1800-2017 14.3)");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
void visit(AstNodeAssign* nodep) override {
|
|
|
|
|
if (nodep->user1()) return;
|
|
|
|
|
VL_RESTORER(m_inAssign);
|
|
|
|
|
VL_RESTORER(m_inSynchDrive);
|
|
|
|
|
m_inAssign = true;
|
|
|
|
|
m_inSynchDrive = false;
|
|
|
|
|
{
|
|
|
|
|
VL_RESTORER(m_inAssignDlyLhs);
|
|
|
|
|
m_inAssignDlyLhs = VN_IS(nodep, AssignDly);
|
|
|
|
|
iterate(nodep->lhsp());
|
|
|
|
|
}
|
|
|
|
|
iterate(nodep->rhsp());
|
|
|
|
|
if (nodep->timingControlp()) {
|
|
|
|
|
iterate(nodep->timingControlp());
|
|
|
|
|
} else if (m_inSynchDrive) {
|
|
|
|
|
AstAssign* const assignp = new AstAssign{
|
|
|
|
|
nodep->fileline(), nodep->lhsp()->unlinkFrBack(), nodep->rhsp()->unlinkFrBack()};
|
|
|
|
|
assignp->user1(true);
|
|
|
|
|
nodep->replaceWith(assignp);
|
|
|
|
|
VL_DO_DANGLING(nodep->deleteTree(), nodep);
|
2019-05-19 22:13:13 +02:00
|
|
|
}
|
2008-08-06 18:52:39 +02:00
|
|
|
}
|
2022-09-16 12:22:11 +02:00
|
|
|
void visit(AstAlways* nodep) override {
|
2018-09-23 21:09:47 +02:00
|
|
|
iterateAndNextNull(nodep->sensesp());
|
2020-04-14 04:51:35 +02:00
|
|
|
if (nodep->sensesp()) m_seniAlwaysp = nodep->sensesp()->sensesp();
|
2022-09-15 20:43:56 +02:00
|
|
|
iterateAndNextNull(nodep->stmtsp());
|
2020-08-15 16:12:55 +02:00
|
|
|
m_seniAlwaysp = nullptr;
|
2018-09-23 21:09:47 +02:00
|
|
|
}
|
2006-08-26 13:35:28 +02:00
|
|
|
|
2022-09-16 12:22:11 +02:00
|
|
|
void visit(AstNodeCoverOrAssert* nodep) override {
|
2019-05-19 22:13:13 +02:00
|
|
|
if (nodep->sentreep()) return; // Already processed
|
|
|
|
|
clearAssertInfo();
|
2019-12-17 03:43:52 +01:00
|
|
|
// Find Clocking's buried under nodep->exprsp
|
2018-05-11 02:55:37 +02:00
|
|
|
iterateChildren(nodep);
|
2020-04-14 04:51:35 +02:00
|
|
|
if (!nodep->immediate()) nodep->sentreep(newSenTree(nodep));
|
2019-05-19 22:13:13 +02:00
|
|
|
clearAssertInfo();
|
2006-08-26 13:35:28 +02:00
|
|
|
}
|
2022-09-16 12:22:11 +02:00
|
|
|
void visit(AstFell* nodep) override {
|
2023-01-28 20:05:26 +01:00
|
|
|
if (nodep->user1SetOnce()) return;
|
2020-08-14 13:37:10 +02:00
|
|
|
iterateChildren(nodep);
|
2021-11-13 19:50:44 +01:00
|
|
|
FileLine* const fl = nodep->fileline();
|
2022-11-13 21:33:11 +01:00
|
|
|
AstNodeExpr* exprp = nodep->exprp()->unlinkFrBack();
|
2022-11-20 21:06:49 +01:00
|
|
|
if (exprp->width() > 1) exprp = new AstSel{fl, exprp, 0, 1};
|
2023-01-28 20:05:26 +01:00
|
|
|
AstSenTree* sentreep = nodep->sentreep();
|
|
|
|
|
if (sentreep) sentreep->unlinkFrBack();
|
2022-11-20 21:06:49 +01:00
|
|
|
AstNodeExpr* const past = new AstPast{fl, exprp, nullptr};
|
2020-08-14 13:37:10 +02:00
|
|
|
past->dtypeFrom(exprp);
|
2023-09-17 04:50:54 +02:00
|
|
|
exprp = new AstAnd{fl, past, new AstNot{fl, exprp->cloneTreePure(false)}};
|
2020-11-29 14:23:36 +01:00
|
|
|
exprp->dtypeSetBit();
|
2020-08-14 13:37:10 +02:00
|
|
|
nodep->replaceWith(exprp);
|
2023-01-28 20:05:26 +01:00
|
|
|
nodep->sentreep(newSenTree(nodep, sentreep));
|
2020-08-14 13:37:10 +02:00
|
|
|
VL_DO_DANGLING(pushDeletep(nodep), nodep);
|
|
|
|
|
}
|
2022-09-16 12:22:11 +02:00
|
|
|
void visit(AstPast* nodep) override {
|
2018-09-23 21:09:47 +02:00
|
|
|
if (nodep->sentreep()) return; // Already processed
|
2018-05-11 02:55:37 +02:00
|
|
|
iterateChildren(nodep);
|
2018-09-23 21:09:47 +02:00
|
|
|
nodep->sentreep(newSenTree(nodep));
|
|
|
|
|
}
|
2022-09-16 12:22:11 +02:00
|
|
|
void visit(AstRose* nodep) override {
|
2023-01-28 20:05:26 +01:00
|
|
|
if (nodep->user1SetOnce()) return;
|
2020-08-14 13:37:10 +02:00
|
|
|
iterateChildren(nodep);
|
2021-11-13 19:50:44 +01:00
|
|
|
FileLine* const fl = nodep->fileline();
|
2022-11-13 21:33:11 +01:00
|
|
|
AstNodeExpr* exprp = nodep->exprp()->unlinkFrBack();
|
2022-11-20 21:06:49 +01:00
|
|
|
if (exprp->width() > 1) exprp = new AstSel{fl, exprp, 0, 1};
|
2023-01-28 20:05:26 +01:00
|
|
|
AstSenTree* sentreep = nodep->sentreep();
|
|
|
|
|
if (sentreep) sentreep->unlinkFrBack();
|
2022-11-20 21:06:49 +01:00
|
|
|
AstNodeExpr* const past = new AstPast{fl, exprp, nullptr};
|
2020-08-14 13:37:10 +02:00
|
|
|
past->dtypeFrom(exprp);
|
2023-09-17 04:50:54 +02:00
|
|
|
exprp = new AstAnd{fl, new AstNot{fl, past}, exprp->cloneTreePure(false)};
|
2020-11-29 14:23:36 +01:00
|
|
|
exprp->dtypeSetBit();
|
2020-08-14 13:37:10 +02:00
|
|
|
nodep->replaceWith(exprp);
|
2023-01-28 20:05:26 +01:00
|
|
|
nodep->sentreep(newSenTree(nodep, sentreep));
|
2020-08-14 13:37:10 +02:00
|
|
|
VL_DO_DANGLING(pushDeletep(nodep), nodep);
|
|
|
|
|
}
|
2022-09-16 12:22:11 +02:00
|
|
|
void visit(AstStable* nodep) override {
|
2023-01-28 20:05:26 +01:00
|
|
|
if (nodep->user1SetOnce()) return;
|
2020-07-29 00:26:24 +02:00
|
|
|
iterateChildren(nodep);
|
2021-11-13 19:50:44 +01:00
|
|
|
FileLine* const fl = nodep->fileline();
|
2022-11-13 21:33:11 +01:00
|
|
|
AstNodeExpr* exprp = nodep->exprp()->unlinkFrBack();
|
2023-01-28 20:05:26 +01:00
|
|
|
AstSenTree* sentreep = nodep->sentreep();
|
|
|
|
|
if (sentreep) sentreep->unlinkFrBack();
|
2022-11-20 21:06:49 +01:00
|
|
|
AstNodeExpr* const past = new AstPast{fl, exprp, nullptr};
|
2020-07-29 00:26:24 +02:00
|
|
|
past->dtypeFrom(exprp);
|
2023-09-17 04:50:54 +02:00
|
|
|
exprp = new AstEq{fl, past, exprp->cloneTreePure(false)};
|
2020-11-29 14:23:36 +01:00
|
|
|
exprp->dtypeSetBit();
|
2020-09-10 12:49:04 +02:00
|
|
|
nodep->replaceWith(exprp);
|
2023-01-28 20:05:26 +01:00
|
|
|
nodep->sentreep(newSenTree(nodep, sentreep));
|
2020-09-10 12:49:04 +02:00
|
|
|
VL_DO_DANGLING(pushDeletep(nodep), nodep);
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-16 12:22:11 +02:00
|
|
|
void visit(AstImplication* nodep) override {
|
2020-09-10 12:49:04 +02:00
|
|
|
if (nodep->sentreep()) return; // Already processed
|
|
|
|
|
|
2021-11-13 19:50:44 +01:00
|
|
|
FileLine* const fl = nodep->fileline();
|
2022-11-13 21:33:11 +01:00
|
|
|
AstNodeExpr* const rhsp = nodep->rhsp()->unlinkFrBack();
|
|
|
|
|
AstNodeExpr* lhsp = nodep->lhsp()->unlinkFrBack();
|
2020-09-10 12:49:04 +02:00
|
|
|
|
2022-11-20 21:06:49 +01:00
|
|
|
if (m_disablep) lhsp = new AstAnd{fl, new AstNot{fl, m_disablep}, lhsp};
|
2020-09-10 12:49:04 +02:00
|
|
|
|
2022-11-20 21:06:49 +01:00
|
|
|
AstNodeExpr* const past = new AstPast{fl, lhsp, nullptr};
|
2020-09-10 12:49:04 +02:00
|
|
|
past->dtypeFrom(lhsp);
|
2022-11-20 21:06:49 +01:00
|
|
|
AstNodeExpr* const exprp = new AstOr{fl, new AstNot{fl, past}, rhsp};
|
2020-11-29 14:23:36 +01:00
|
|
|
exprp->dtypeSetBit();
|
2020-07-29 00:26:24 +02:00
|
|
|
nodep->replaceWith(exprp);
|
|
|
|
|
nodep->sentreep(newSenTree(nodep));
|
|
|
|
|
VL_DO_DANGLING(pushDeletep(nodep), nodep);
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-01 23:53:47 +01:00
|
|
|
void visit(AstPropSpec* nodep) override {
|
|
|
|
|
nodep = substitutePropertyCall(nodep);
|
2018-09-23 21:09:47 +02:00
|
|
|
// No need to iterate the body, once replace will get iterated
|
|
|
|
|
iterateAndNextNull(nodep->sensesp());
|
2020-06-10 01:20:16 +02:00
|
|
|
if (m_senip)
|
|
|
|
|
nodep->v3warn(E_UNSUPPORTED, "Unsupported: Only one PSL clock allowed per assertion");
|
2019-05-19 22:13:13 +02:00
|
|
|
// Block is the new expression to evaluate
|
2022-11-13 21:33:11 +01:00
|
|
|
AstNodeExpr* blockp = VN_AS(nodep->propp()->unlinkFrBack(), NodeExpr);
|
|
|
|
|
if (AstNodeExpr* const disablep = nodep->disablep()) {
|
2023-09-17 04:50:54 +02:00
|
|
|
m_disablep = disablep->cloneTreePure(false);
|
2019-12-22 21:49:10 +01:00
|
|
|
if (VN_IS(nodep->backp(), Cover)) {
|
2022-11-20 21:06:49 +01:00
|
|
|
blockp = new AstAnd{disablep->fileline(),
|
|
|
|
|
new AstNot{disablep->fileline(), disablep->unlinkFrBack()},
|
|
|
|
|
blockp};
|
2019-12-22 21:49:10 +01:00
|
|
|
} else {
|
2022-11-20 21:06:49 +01:00
|
|
|
blockp = new AstOr{disablep->fileline(), disablep->unlinkFrBack(), blockp};
|
2019-12-22 21:49:10 +01:00
|
|
|
}
|
2019-05-19 22:13:13 +02:00
|
|
|
}
|
|
|
|
|
// Unlink and just keep a pointer to it, convert to sentree as needed
|
|
|
|
|
m_senip = nodep->sensesp();
|
|
|
|
|
nodep->replaceWith(blockp);
|
2020-01-17 02:17:11 +01:00
|
|
|
VL_DO_DANGLING(pushDeletep(nodep), nodep);
|
2006-08-26 13:35:28 +02:00
|
|
|
}
|
2022-09-16 12:22:11 +02:00
|
|
|
void visit(AstNodeModule* nodep) override {
|
2022-12-23 13:34:49 +01:00
|
|
|
VL_RESTORER(m_defaultClockingp);
|
|
|
|
|
VL_RESTORER(m_modp);
|
|
|
|
|
m_defaultClockingp = nullptr;
|
|
|
|
|
nodep->foreach([&](AstClocking* const clockingp) {
|
|
|
|
|
if (clockingp->isDefault()) {
|
|
|
|
|
if (m_defaultClockingp) {
|
|
|
|
|
clockingp->v3error("Only one default clocking block allowed per module"
|
|
|
|
|
" (IEEE 1800-2017 14.12)");
|
|
|
|
|
}
|
|
|
|
|
m_defaultClockingp = clockingp;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
m_modp = nodep;
|
2018-05-11 02:55:37 +02:00
|
|
|
iterateChildren(nodep);
|
2006-08-26 13:35:28 +02:00
|
|
|
}
|
2022-11-01 23:53:47 +01:00
|
|
|
void visit(AstProperty* nodep) override {
|
|
|
|
|
// The body will be visited when will be substituted in place of property reference
|
|
|
|
|
// (AstFuncRef)
|
|
|
|
|
VL_DO_DANGLING(pushDeletep(nodep->unlinkFrBack()), nodep);
|
|
|
|
|
}
|
2022-09-16 12:22:11 +02:00
|
|
|
void visit(AstNode* nodep) override { iterateChildren(nodep); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
// CONSTRUCTORS
|
2022-12-23 13:34:49 +01:00
|
|
|
explicit AssertPreVisitor(AstNetlist* nodep)
|
|
|
|
|
: m_netlistp{nodep} {
|
2019-05-19 22:13:13 +02:00
|
|
|
clearAssertInfo();
|
|
|
|
|
// Process
|
2018-05-11 02:55:37 +02:00
|
|
|
iterate(nodep);
|
2006-08-26 13:35:28 +02:00
|
|
|
}
|
2022-09-16 12:22:11 +02:00
|
|
|
~AssertPreVisitor() override = default;
|
2006-08-26 13:35:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//######################################################################
|
|
|
|
|
// Top Assert class
|
|
|
|
|
|
|
|
|
|
void V3AssertPre::assertPreAll(AstNetlist* nodep) {
|
2020-04-14 04:51:35 +02:00
|
|
|
UINFO(2, __FUNCTION__ << ": " << endl);
|
2021-11-26 16:52:36 +01:00
|
|
|
{ AssertPreVisitor{nodep}; } // Destruct before checking
|
2023-05-04 00:04:10 +02:00
|
|
|
V3Global::dumpCheckGlobalTree("assertpre", 0, dumpTreeLevel() >= 3);
|
2006-08-26 13:35:28 +02:00
|
|
|
}
|