mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
Fix error on enums with x/z using .name(), and internal refactoring
This commit is contained in:
parent
789698cb5c
commit
2fc94557a0
@ -31,6 +31,24 @@ VL_DEFINE_DEBUG_FUNCTIONS;
|
|||||||
//######################################################################
|
//######################################################################
|
||||||
// Common component builders
|
// Common component builders
|
||||||
|
|
||||||
|
string V3Common::makeToStringCall(AstNodeDType* nodep, const std::string& lhs) {
|
||||||
|
std::string stmt;
|
||||||
|
if (VN_IS(nodep->skipRefp(), BasicDType) && nodep->isWide()) {
|
||||||
|
stmt += "VL_TO_STRING_W(";
|
||||||
|
stmt += cvtToStr(nodep->widthWords());
|
||||||
|
stmt += ", ";
|
||||||
|
} else if (VN_IS(nodep->skipRefp(), BasicDType) && nodep->isWide()) {
|
||||||
|
stmt += "VL_TO_STRING_W(";
|
||||||
|
stmt += cvtToStr(nodep->widthWords());
|
||||||
|
stmt += ", ";
|
||||||
|
} else {
|
||||||
|
stmt += "VL_TO_STRING(";
|
||||||
|
}
|
||||||
|
stmt += lhs;
|
||||||
|
stmt += ")";
|
||||||
|
return stmt;
|
||||||
|
}
|
||||||
|
|
||||||
static void makeVlToString(AstClass* nodep) {
|
static void makeVlToString(AstClass* nodep) {
|
||||||
AstCFunc* const funcp
|
AstCFunc* const funcp
|
||||||
= new AstCFunc{nodep->fileline(), "VL_TO_STRING", nullptr, "std::string"};
|
= new AstCFunc{nodep->fileline(), "VL_TO_STRING", nullptr, "std::string"};
|
||||||
@ -78,14 +96,8 @@ static void makeVlToString(AstNodeUOrStructDType* nodep) {
|
|||||||
stmt += ", ";
|
stmt += ", ";
|
||||||
}
|
}
|
||||||
stmt += VIdProtect::protect(itemp->prettyName()) + ":\" + ";
|
stmt += VIdProtect::protect(itemp->prettyName()) + ":\" + ";
|
||||||
if (VN_IS(itemp->dtypep()->skipRefp(), BasicDType) && itemp->isWide()) {
|
stmt += V3Common::makeToStringCall(itemp->dtypep(), "obj."s + itemp->nameProtect());
|
||||||
stmt += "VL_TO_STRING_W(";
|
stmt += ";\n";
|
||||||
stmt += cvtToStr(itemp->widthWords());
|
|
||||||
stmt += ", ";
|
|
||||||
} else {
|
|
||||||
stmt += "VL_TO_STRING(";
|
|
||||||
}
|
|
||||||
stmt += "obj." + itemp->nameProtect() + ");\n";
|
|
||||||
funcp->addStmtsp(new AstCStmt{nodep->fileline(), stmt});
|
funcp->addStmtsp(new AstCStmt{nodep->fileline(), stmt});
|
||||||
}
|
}
|
||||||
funcp->addStmtsp(new AstCStmt{nodep->fileline(), "out += \"}\";\n"});
|
funcp->addStmtsp(new AstCStmt{nodep->fileline(), "out += \"}\";\n"});
|
||||||
@ -121,15 +133,8 @@ static void makeToStringMiddle(AstClass* nodep) {
|
|||||||
comma = ", ";
|
comma = ", ";
|
||||||
stmt += itemp->origNameProtect();
|
stmt += itemp->origNameProtect();
|
||||||
stmt += ":\" + ";
|
stmt += ":\" + ";
|
||||||
if (VN_IS(itemp->dtypep()->skipRefp(), BasicDType) && itemp->isWide()) {
|
stmt += V3Common::makeToStringCall(itemp->dtypep(), itemp->nameProtect());
|
||||||
stmt += "VL_TO_STRING_W(";
|
stmt += ";\n";
|
||||||
stmt += cvtToStr(itemp->widthWords());
|
|
||||||
stmt += ", ";
|
|
||||||
} else {
|
|
||||||
stmt += "VL_TO_STRING(";
|
|
||||||
}
|
|
||||||
stmt += itemp->nameProtect();
|
|
||||||
stmt += ");\n";
|
|
||||||
nodep->user1(true); // So what we extend dumps this
|
nodep->user1(true); // So what we extend dumps this
|
||||||
funcp->addStmtsp(new AstCStmt{nodep->fileline(), stmt});
|
funcp->addStmtsp(new AstCStmt{nodep->fileline(), stmt});
|
||||||
}
|
}
|
||||||
|
@ -20,11 +20,14 @@
|
|||||||
#include "config_build.h"
|
#include "config_build.h"
|
||||||
#include "verilatedos.h"
|
#include "verilatedos.h"
|
||||||
|
|
||||||
|
class AstNodeDType;
|
||||||
|
|
||||||
//============================================================================
|
//============================================================================
|
||||||
|
|
||||||
class V3Common final {
|
class V3Common final {
|
||||||
public:
|
public:
|
||||||
static void commonAll() VL_MT_DISABLED;
|
static void commonAll() VL_MT_DISABLED;
|
||||||
|
static string makeToStringCall(AstNodeDType* nodep, const std::string& lhs);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // Guard
|
#endif // Guard
|
||||||
|
125
src/V3Width.cpp
125
src/V3Width.cpp
@ -1921,32 +1921,12 @@ class WidthVisitor final : public VNVisitor {
|
|||||||
// elimination should do much the same
|
// elimination should do much the same
|
||||||
// Form: "( ((v > size) ? false : enum_valid[v[N:0]])
|
// Form: "( ((v > size) ? false : enum_valid[v[N:0]])
|
||||||
// ? ExprStmt(ExprAssign(out, Cast(v, type)), 1) : 0)"
|
// ? ExprStmt(ExprAssign(out, Cast(v, type)), 1) : 0)"
|
||||||
auto* const enumDtp = VN_AS(toDtp, EnumDType);
|
AstEnumDType* const enumDtp = VN_AS(toDtp, EnumDType);
|
||||||
UASSERT_OBJ(enumDtp, nodep, "$cast determined as enum, but not enum type");
|
UASSERT_OBJ(enumDtp, nodep, "$cast determined as enum, but not enum type");
|
||||||
const uint64_t maxval = enumMaxValue(nodep, enumDtp);
|
AstNodeExpr* const testp
|
||||||
const bool assoc = maxval > ENUM_LOOKUP_BITS;
|
= enumTestValid(nodep->fromp()->cloneTreePure(false), enumDtp);
|
||||||
AstNodeExpr* testp = nullptr;
|
|
||||||
FileLine* const fl_novalue = new FileLine{fl};
|
FileLine* const fl_novalue = new FileLine{fl};
|
||||||
fl_novalue->warnOff(V3ErrorCode::ENUMVALUE, true);
|
fl_novalue->warnOff(V3ErrorCode::ENUMVALUE, true);
|
||||||
if (assoc) {
|
|
||||||
AstVar* const varp = enumVarp(enumDtp, VAttrType::ENUM_VALID, true, 0);
|
|
||||||
testp = new AstAssocSel{fl_novalue, newVarRefDollarUnit(varp),
|
|
||||||
nodep->fromp()->cloneTreePure(false)};
|
|
||||||
} else {
|
|
||||||
const int selwidth = V3Number::log2b(maxval) + 1; // Width to address a bit
|
|
||||||
AstVar* const varp
|
|
||||||
= enumVarp(enumDtp, VAttrType::ENUM_VALID, false, (1ULL << selwidth) - 1);
|
|
||||||
FileLine* const fl_nowidth = new FileLine{fl};
|
|
||||||
fl_nowidth->warnOff(V3ErrorCode::WIDTH, true);
|
|
||||||
testp = new AstCond{
|
|
||||||
fl,
|
|
||||||
new AstGt{fl_nowidth, nodep->fromp()->cloneTreePure(false),
|
|
||||||
new AstConst{fl_nowidth, AstConst::Unsized64{}, maxval}},
|
|
||||||
new AstConst{fl, AstConst::BitFalse{}},
|
|
||||||
new AstArraySel{fl, newVarRefDollarUnit(varp),
|
|
||||||
new AstSel{fl_novalue, nodep->fromp()->cloneTreePure(false), 0,
|
|
||||||
selwidth}}};
|
|
||||||
}
|
|
||||||
newp = new AstCond{
|
newp = new AstCond{
|
||||||
fl, testp,
|
fl, testp,
|
||||||
new AstExprStmt{fl,
|
new AstExprStmt{fl,
|
||||||
@ -3778,10 +3758,10 @@ class WidthVisitor final : public VNVisitor {
|
|||||||
}
|
}
|
||||||
void methodCallIfaceRef(AstMethodCall* nodep, AstIfaceRefDType* adtypep) {
|
void methodCallIfaceRef(AstMethodCall* nodep, AstIfaceRefDType* adtypep) {
|
||||||
AstIface* const ifacep = adtypep->ifacep();
|
AstIface* const ifacep = adtypep->ifacep();
|
||||||
UINFO(1, __FUNCTION__ << ":" << nodep << endl);
|
UINFO(5, __FUNCTION__ << ":" << nodep << endl);
|
||||||
if (AstNodeFTask* const ftaskp
|
if (AstNodeFTask* const ftaskp
|
||||||
= VN_CAST(m_memberMap.findMember(ifacep, nodep->name()), NodeFTask)) {
|
= VN_CAST(m_memberMap.findMember(ifacep, nodep->name()), NodeFTask)) {
|
||||||
UINFO(1, __FUNCTION__ << "AstNodeFTask" << nodep << endl);
|
UINFO(5, __FUNCTION__ << "AstNodeFTask" << nodep << endl);
|
||||||
userIterate(ftaskp, nullptr);
|
userIterate(ftaskp, nullptr);
|
||||||
if (ftaskp->isStatic()) {
|
if (ftaskp->isStatic()) {
|
||||||
AstNodeExpr* argsp = nullptr;
|
AstNodeExpr* argsp = nullptr;
|
||||||
@ -5309,6 +5289,10 @@ class WidthVisitor final : public VNVisitor {
|
|||||||
nodep->text(newFormat);
|
nodep->text(newFormat);
|
||||||
UINFO(9, " Display out " << nodep->text() << endl);
|
UINFO(9, " Display out " << nodep->text() << endl);
|
||||||
}
|
}
|
||||||
|
void visit(AstCReturn* nodep) override {
|
||||||
|
assertAtStatement(nodep);
|
||||||
|
userIterateAndNext(nodep->lhsp(), WidthVP{SELF, BOTH}.p());
|
||||||
|
}
|
||||||
void visit(AstConstraintRef* nodep) override { userIterateChildren(nodep, nullptr); }
|
void visit(AstConstraintRef* nodep) override { userIterateChildren(nodep, nullptr); }
|
||||||
void visit(AstDisplay* nodep) override {
|
void visit(AstDisplay* nodep) override {
|
||||||
assertAtStatement(nodep);
|
assertAtStatement(nodep);
|
||||||
@ -7634,7 +7618,7 @@ class WidthVisitor final : public VNVisitor {
|
|||||||
}
|
}
|
||||||
return pair.first->second;
|
return pair.first->second;
|
||||||
}
|
}
|
||||||
uint64_t enumMaxValue(const AstNode* errNodep, const AstEnumDType* adtypep) {
|
static uint64_t enumMaxValue(const AstNode* errNodep, const AstEnumDType* adtypep) {
|
||||||
// Most enums unless overridden are 32 bits, so we size array
|
// Most enums unless overridden are 32 bits, so we size array
|
||||||
// based on max enum value used.
|
// based on max enum value used.
|
||||||
// Ideally we would have a fast algorithm when a number is
|
// Ideally we would have a fast algorithm when a number is
|
||||||
@ -7643,9 +7627,10 @@ class WidthVisitor final : public VNVisitor {
|
|||||||
uint64_t maxval = 0;
|
uint64_t maxval = 0;
|
||||||
for (const AstEnumItem* itemp = adtypep->itemsp(); itemp;
|
for (const AstEnumItem* itemp = adtypep->itemsp(); itemp;
|
||||||
itemp = VN_AS(itemp->nextp(), EnumItem)) {
|
itemp = VN_AS(itemp->nextp(), EnumItem)) {
|
||||||
const AstConst* const vconstp = VN_AS(itemp->valuep(), Const);
|
const AstConst* const vconstp = VN_CAST(itemp->valuep(), Const);
|
||||||
UASSERT_OBJ(vconstp, errNodep, "Enum item without constified value");
|
UASSERT_OBJ(vconstp, errNodep, "Enum item without constified value");
|
||||||
if (vconstp->toUQuad() >= maxval) maxval = vconstp->toUQuad();
|
if (!vconstp->num().isAnyXZ() && vconstp->toUQuad() >= maxval)
|
||||||
|
maxval = vconstp->toUQuad();
|
||||||
}
|
}
|
||||||
if (adtypep->itemsp()->width() > 64) {
|
if (adtypep->itemsp()->width() > 64) {
|
||||||
errNodep->v3warn(E_UNSUPPORTED,
|
errNodep->v3warn(E_UNSUPPORTED,
|
||||||
@ -7654,7 +7639,8 @@ class WidthVisitor final : public VNVisitor {
|
|||||||
}
|
}
|
||||||
return maxval;
|
return maxval;
|
||||||
}
|
}
|
||||||
AstVar* enumVarp(AstEnumDType* const nodep, VAttrType attrType, bool assoc, uint32_t msbdim) {
|
static AstVar* enumVarp(AstEnumDType* const nodep, VAttrType attrType, bool assoc,
|
||||||
|
uint32_t msbdim) {
|
||||||
// Return a variable table which has specified dimension properties for this variable
|
// Return a variable table which has specified dimension properties for this variable
|
||||||
const auto pair = nodep->tableMap().emplace(attrType, nullptr);
|
const auto pair = nodep->tableMap().emplace(attrType, nullptr);
|
||||||
if (pair.second) {
|
if (pair.second) {
|
||||||
@ -7683,7 +7669,7 @@ class WidthVisitor final : public VNVisitor {
|
|||||||
v3Global.rootp()->typeTablep()->addTypesp(vardtypep);
|
v3Global.rootp()->typeTablep()->addTypesp(vardtypep);
|
||||||
AstVar* const varp = new AstVar{nodep->fileline(), VVarType::MODULETEMP,
|
AstVar* const varp = new AstVar{nodep->fileline(), VVarType::MODULETEMP,
|
||||||
"__Venumtab_" + VString::downcase(attrType.ascii())
|
"__Venumtab_" + VString::downcase(attrType.ascii())
|
||||||
+ cvtToStr(m_dtTables++),
|
+ cvtToStr(nodep->uniqueNum()),
|
||||||
vardtypep};
|
vardtypep};
|
||||||
varp->lifetime(VLifetime::STATIC);
|
varp->lifetime(VLifetime::STATIC);
|
||||||
varp->isConst(true);
|
varp->isConst(true);
|
||||||
@ -7715,19 +7701,21 @@ class WidthVisitor final : public VNVisitor {
|
|||||||
AstEnumItem* const nextp = VN_AS(itemp->nextp(), EnumItem);
|
AstEnumItem* const nextp = VN_AS(itemp->nextp(), EnumItem);
|
||||||
const AstConst* const vconstp = VN_AS(itemp->valuep(), Const);
|
const AstConst* const vconstp = VN_AS(itemp->valuep(), Const);
|
||||||
UASSERT_OBJ(vconstp, nodep, "Enum item without constified value");
|
UASSERT_OBJ(vconstp, nodep, "Enum item without constified value");
|
||||||
const uint64_t i = vconstp->toUQuad();
|
if (!vconstp->num().isAnyXZ()) { // Can 2-state runtime decode
|
||||||
if (attrType == VAttrType::ENUM_NAME) {
|
const uint64_t i = vconstp->toUQuad();
|
||||||
values[i]
|
if (attrType == VAttrType::ENUM_NAME) {
|
||||||
= new AstConst{nodep->fileline(), AstConst::String{}, itemp->name()};
|
values[i] = new AstConst{nodep->fileline(), AstConst::String{},
|
||||||
} else if (attrType == VAttrType::ENUM_NEXT) {
|
itemp->name()};
|
||||||
values[i]
|
} else if (attrType == VAttrType::ENUM_NEXT) {
|
||||||
= (nextp ? nextp : firstp)->valuep()->cloneTree(false); // A const
|
values[i]
|
||||||
} else if (attrType == VAttrType::ENUM_PREV) {
|
= (nextp ? nextp : firstp)->valuep()->cloneTree(false); // A const
|
||||||
values[i] = prevp->valuep()->cloneTree(false); // A const
|
} else if (attrType == VAttrType::ENUM_PREV) {
|
||||||
} else if (attrType == VAttrType::ENUM_VALID) {
|
values[i] = prevp->valuep()->cloneTree(false); // A const
|
||||||
values[i] = new AstConst{nodep->fileline(), AstConst::BitTrue{}};
|
} else if (attrType == VAttrType::ENUM_VALID) {
|
||||||
} else {
|
values[i] = new AstConst{nodep->fileline(), AstConst::BitTrue{}};
|
||||||
nodep->v3fatalSrc("Bad case");
|
} else {
|
||||||
|
nodep->v3fatalSrc("Bad case");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
prevp = itemp;
|
prevp = itemp;
|
||||||
itemp = nextp;
|
itemp = nextp;
|
||||||
@ -7741,34 +7729,65 @@ class WidthVisitor final : public VNVisitor {
|
|||||||
if (values[i]) initp->addIndexValuep(i, values[i]);
|
if (values[i]) initp->addIndexValuep(i, values[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
userIterate(varp, nullptr); // May have already done $unit so must do this var
|
varp->didWidth(true); // May have already done $unit so must do this var
|
||||||
pair.first->second = varp;
|
pair.first->second = varp;
|
||||||
}
|
}
|
||||||
return pair.first->second;
|
return pair.first->second;
|
||||||
}
|
}
|
||||||
AstNodeExpr* enumSelect(AstNodeExpr* nodep, AstEnumDType* adtypep, VAttrType attrType) {
|
|
||||||
|
static AstNodeExpr* enumSelect(AstNodeExpr* nodep, AstEnumDType* adtypep, VAttrType attrType) {
|
||||||
// Return expression to get given attrType information from a enum's value (nodep)
|
// Return expression to get given attrType information from a enum's value (nodep)
|
||||||
// Need a runtime lookup table. Yuk.
|
// Need a runtime lookup table. Yuk.
|
||||||
const uint64_t msbdim = enumMaxValue(nodep, adtypep);
|
const uint64_t msbdim = enumMaxValue(nodep, adtypep);
|
||||||
const bool assoc = msbdim > ENUM_LOOKUP_BITS;
|
const bool assoc = msbdim > ENUM_LOOKUP_BITS;
|
||||||
|
AstNodeExpr* newp;
|
||||||
if (assoc) {
|
if (assoc) {
|
||||||
AstVar* const varp = enumVarp(adtypep, attrType, true, 0);
|
AstVar* const varp = enumVarp(adtypep, attrType, true, 0);
|
||||||
AstNodeExpr* const newp
|
newp = new AstAssocSel{nodep->fileline(), newVarRefDollarUnit(varp), nodep};
|
||||||
= new AstAssocSel{nodep->fileline(), newVarRefDollarUnit(varp), nodep};
|
|
||||||
newp->dtypeFrom(adtypep); // To prevent a later ENUMVALUE
|
|
||||||
return newp;
|
|
||||||
} else {
|
} else {
|
||||||
const int selwidth = V3Number::log2b(msbdim) + 1; // Width to address a bit
|
const int selwidth = V3Number::log2b(msbdim) + 1; // Width to address a bit
|
||||||
AstVar* const varp = enumVarp(adtypep, attrType, false, (1ULL << selwidth) - 1);
|
AstVar* const varp = enumVarp(adtypep, attrType, false, (1ULL << selwidth) - 1);
|
||||||
AstNodeExpr* const newp = new AstArraySel{
|
newp = new AstArraySel{
|
||||||
nodep->fileline(), newVarRefDollarUnit(varp),
|
nodep->fileline(), newVarRefDollarUnit(varp),
|
||||||
// Select in case widths are off due to msblen!=width
|
// Select in case widths are off due to msblen!=width
|
||||||
// We return "random" values if outside the range, which is fine
|
// We return "random" values if outside the range, which is fine
|
||||||
// as next/previous on illegal values just need something good out
|
// as next/previous on illegal values just need something good out
|
||||||
new AstSel{nodep->fileline(), nodep, 0, selwidth}};
|
new AstSel{nodep->fileline(), nodep, 0, selwidth}};
|
||||||
newp->dtypeFrom(adtypep); // To prevent a later ENUMVALUE
|
|
||||||
return newp;
|
|
||||||
}
|
}
|
||||||
|
if (attrType == VAttrType::ENUM_NAME) {
|
||||||
|
newp->dtypeSetString();
|
||||||
|
} else if (attrType == VAttrType::ENUM_VALID) {
|
||||||
|
newp->dtypeSetBit();
|
||||||
|
} else {
|
||||||
|
newp->dtypeFrom(adtypep); // To prevent a later ENUMVALUE
|
||||||
|
}
|
||||||
|
return newp;
|
||||||
|
}
|
||||||
|
static AstNodeExpr* enumTestValid(AstNodeExpr* valp, AstEnumDType* enumDtp) {
|
||||||
|
const uint64_t maxval = enumMaxValue(valp, enumDtp);
|
||||||
|
const bool assoc = maxval > ENUM_LOOKUP_BITS;
|
||||||
|
AstNodeExpr* testp = nullptr;
|
||||||
|
FileLine* const fl_novalue = new FileLine{valp->fileline()};
|
||||||
|
fl_novalue->warnOff(V3ErrorCode::ENUMVALUE, true);
|
||||||
|
fl_novalue->warnOff(V3ErrorCode::CMPCONST, true);
|
||||||
|
if (assoc) {
|
||||||
|
AstVar* const varp = enumVarp(enumDtp, VAttrType::ENUM_VALID, true, 0);
|
||||||
|
testp = new AstAssocSel{fl_novalue, newVarRefDollarUnit(varp), valp};
|
||||||
|
} else {
|
||||||
|
const int selwidth = V3Number::log2b(maxval) + 1; // Width to address a bit
|
||||||
|
AstVar* const varp
|
||||||
|
= enumVarp(enumDtp, VAttrType::ENUM_VALID, false, (1ULL << selwidth) - 1);
|
||||||
|
FileLine* const fl_nowidth = new FileLine{fl_novalue};
|
||||||
|
fl_nowidth->warnOff(V3ErrorCode::WIDTH, true);
|
||||||
|
testp = new AstCond{
|
||||||
|
fl_novalue,
|
||||||
|
new AstGt{fl_nowidth, valp->cloneTreePure(false),
|
||||||
|
new AstConst{fl_nowidth, AstConst::Unsized64{}, maxval}},
|
||||||
|
new AstConst{fl_novalue, AstConst::BitFalse{}},
|
||||||
|
new AstArraySel{fl_novalue, newVarRefDollarUnit(varp),
|
||||||
|
new AstSel{fl_novalue, valp->cloneTreePure(false), 0, selwidth}}};
|
||||||
|
}
|
||||||
|
return testp;
|
||||||
}
|
}
|
||||||
|
|
||||||
PatVecMap patVectorMap(AstPattern* nodep, const VNumRange& range) {
|
PatVecMap patVectorMap(AstPattern* nodep, const VNumRange& range) {
|
||||||
@ -7870,7 +7889,7 @@ class WidthVisitor final : public VNVisitor {
|
|||||||
VL_DO_DANGLING(pushDeletep(nodep), nodep);
|
VL_DO_DANGLING(pushDeletep(nodep), nodep);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
AstVarRef* newVarRefDollarUnit(AstVar* nodep) {
|
static AstVarRef* newVarRefDollarUnit(AstVar* nodep) {
|
||||||
AstVarRef* const varrefp = new AstVarRef{nodep->fileline(), nodep, VAccess::READ};
|
AstVarRef* const varrefp = new AstVarRef{nodep->fileline(), nodep, VAccess::READ};
|
||||||
varrefp->classOrPackagep(v3Global.rootp()->dollarUnitPkgAddp());
|
varrefp->classOrPackagep(v3Global.rootp()->dollarUnitPkgAddp());
|
||||||
return varrefp;
|
return varrefp;
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -70,7 +70,7 @@
|
|||||||
<neq loc="d,38,26,38,29" dtype_id="9">
|
<neq loc="d,38,26,38,29" dtype_id="9">
|
||||||
<const loc="d,38,31,38,34" name="4'h4" dtype_id="11"/>
|
<const loc="d,38,31,38,34" name="4'h4" dtype_id="11"/>
|
||||||
<arraysel loc="d,38,15,38,16" dtype_id="11">
|
<arraysel loc="d,38,15,38,16" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,38,15,38,16" dtype_id="13">
|
<and loc="d,38,15,38,16" dtype_id="13">
|
||||||
<const loc="d,38,15,38,16" name="32'h7" dtype_id="14"/>
|
<const loc="d,38,15,38,16" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,38,15,38,16" dtype_id="13">
|
<ccast loc="d,38,15,38,16" dtype_id="13">
|
||||||
@ -83,7 +83,7 @@
|
|||||||
<display loc="d,38,43,38,49" displaytype="$write">
|
<display loc="d,38,43,38,49" displaytype="$write">
|
||||||
<sformatf loc="d,38,43,38,49" name="%%Error: t/t_enum_type_methods.v:38: got='h%x exp='h4 " dtype_id="10">
|
<sformatf loc="d,38,43,38,49" name="%%Error: t/t_enum_type_methods.v:38: got='h%x exp='h4 " dtype_id="10">
|
||||||
<arraysel loc="d,38,122,38,123" dtype_id="11">
|
<arraysel loc="d,38,122,38,123" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,38,122,38,123" dtype_id="13">
|
<and loc="d,38,122,38,123" dtype_id="13">
|
||||||
<const loc="d,38,122,38,123" name="32'h7" dtype_id="14"/>
|
<const loc="d,38,122,38,123" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,38,122,38,123" dtype_id="13">
|
<ccast loc="d,38,122,38,123" dtype_id="13">
|
||||||
@ -100,11 +100,11 @@
|
|||||||
<neq loc="d,39,34,39,37" dtype_id="9">
|
<neq loc="d,39,34,39,37" dtype_id="9">
|
||||||
<const loc="d,39,39,39,42" name="4'h1" dtype_id="11"/>
|
<const loc="d,39,39,39,42" name="4'h1" dtype_id="11"/>
|
||||||
<arraysel loc="d,39,15,39,16" dtype_id="11">
|
<arraysel loc="d,39,15,39,16" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,39,15,39,16" dtype_id="13">
|
<and loc="d,39,15,39,16" dtype_id="13">
|
||||||
<const loc="d,39,15,39,16" name="32'h7" dtype_id="14"/>
|
<const loc="d,39,15,39,16" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,39,15,39,16" dtype_id="13">
|
<arraysel loc="d,39,15,39,16" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,39,15,39,16" dtype_id="13">
|
<and loc="d,39,15,39,16" dtype_id="13">
|
||||||
<const loc="d,39,15,39,16" name="32'h7" dtype_id="14"/>
|
<const loc="d,39,15,39,16" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,39,15,39,16" dtype_id="13">
|
<ccast loc="d,39,15,39,16" dtype_id="13">
|
||||||
@ -119,11 +119,11 @@
|
|||||||
<display loc="d,39,51,39,57" displaytype="$write">
|
<display loc="d,39,51,39,57" displaytype="$write">
|
||||||
<sformatf loc="d,39,51,39,57" name="%%Error: t/t_enum_type_methods.v:39: got='h%x exp='h1 " dtype_id="10">
|
<sformatf loc="d,39,51,39,57" name="%%Error: t/t_enum_type_methods.v:39: got='h%x exp='h1 " dtype_id="10">
|
||||||
<arraysel loc="d,39,130,39,131" dtype_id="11">
|
<arraysel loc="d,39,130,39,131" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,39,130,39,131" dtype_id="13">
|
<and loc="d,39,130,39,131" dtype_id="13">
|
||||||
<const loc="d,39,130,39,131" name="32'h7" dtype_id="14"/>
|
<const loc="d,39,130,39,131" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,39,130,39,131" dtype_id="13">
|
<arraysel loc="d,39,130,39,131" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,39,130,39,131" dtype_id="13">
|
<and loc="d,39,130,39,131" dtype_id="13">
|
||||||
<const loc="d,39,130,39,131" name="32'h7" dtype_id="14"/>
|
<const loc="d,39,130,39,131" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,39,130,39,131" dtype_id="13">
|
<ccast loc="d,39,130,39,131" dtype_id="13">
|
||||||
@ -142,11 +142,11 @@
|
|||||||
<neq loc="d,40,26,40,29" dtype_id="9">
|
<neq loc="d,40,26,40,29" dtype_id="9">
|
||||||
<const loc="d,40,31,40,34" name="4'h1" dtype_id="11"/>
|
<const loc="d,40,31,40,34" name="4'h1" dtype_id="11"/>
|
||||||
<arraysel loc="d,40,15,40,16" dtype_id="11">
|
<arraysel loc="d,40,15,40,16" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,40,15,40,16" dtype_id="13">
|
<and loc="d,40,15,40,16" dtype_id="13">
|
||||||
<const loc="d,40,15,40,16" name="32'h7" dtype_id="14"/>
|
<const loc="d,40,15,40,16" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,40,15,40,16" dtype_id="13">
|
<arraysel loc="d,40,15,40,16" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,40,15,40,16" dtype_id="13">
|
<and loc="d,40,15,40,16" dtype_id="13">
|
||||||
<const loc="d,40,15,40,16" name="32'h7" dtype_id="14"/>
|
<const loc="d,40,15,40,16" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,40,15,40,16" dtype_id="13">
|
<ccast loc="d,40,15,40,16" dtype_id="13">
|
||||||
@ -161,11 +161,11 @@
|
|||||||
<display loc="d,40,43,40,49" displaytype="$write">
|
<display loc="d,40,43,40,49" displaytype="$write">
|
||||||
<sformatf loc="d,40,43,40,49" name="%%Error: t/t_enum_type_methods.v:40: got='h%x exp='h1 " dtype_id="10">
|
<sformatf loc="d,40,43,40,49" name="%%Error: t/t_enum_type_methods.v:40: got='h%x exp='h1 " dtype_id="10">
|
||||||
<arraysel loc="d,40,122,40,123" dtype_id="11">
|
<arraysel loc="d,40,122,40,123" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,40,122,40,123" dtype_id="13">
|
<and loc="d,40,122,40,123" dtype_id="13">
|
||||||
<const loc="d,40,122,40,123" name="32'h7" dtype_id="14"/>
|
<const loc="d,40,122,40,123" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,40,122,40,123" dtype_id="13">
|
<arraysel loc="d,40,122,40,123" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,40,122,40,123" dtype_id="13">
|
<and loc="d,40,122,40,123" dtype_id="13">
|
||||||
<const loc="d,40,122,40,123" name="32'h7" dtype_id="14"/>
|
<const loc="d,40,122,40,123" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,40,122,40,123" dtype_id="13">
|
<ccast loc="d,40,122,40,123" dtype_id="13">
|
||||||
@ -184,15 +184,15 @@
|
|||||||
<neq loc="d,41,42,41,45" dtype_id="9">
|
<neq loc="d,41,42,41,45" dtype_id="9">
|
||||||
<const loc="d,41,47,41,50" name="4'h3" dtype_id="11"/>
|
<const loc="d,41,47,41,50" name="4'h3" dtype_id="11"/>
|
||||||
<arraysel loc="d,41,15,41,16" dtype_id="11">
|
<arraysel loc="d,41,15,41,16" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,41,15,41,16" dtype_id="13">
|
<and loc="d,41,15,41,16" dtype_id="13">
|
||||||
<const loc="d,41,15,41,16" name="32'h7" dtype_id="14"/>
|
<const loc="d,41,15,41,16" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,41,15,41,16" dtype_id="13">
|
<arraysel loc="d,41,15,41,16" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,41,15,41,16" dtype_id="13">
|
<and loc="d,41,15,41,16" dtype_id="13">
|
||||||
<const loc="d,41,15,41,16" name="32'h7" dtype_id="14"/>
|
<const loc="d,41,15,41,16" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,41,15,41,16" dtype_id="13">
|
<arraysel loc="d,41,15,41,16" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,41,15,41,16" dtype_id="13">
|
<and loc="d,41,15,41,16" dtype_id="13">
|
||||||
<const loc="d,41,15,41,16" name="32'h7" dtype_id="14"/>
|
<const loc="d,41,15,41,16" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,41,15,41,16" dtype_id="13">
|
<ccast loc="d,41,15,41,16" dtype_id="13">
|
||||||
@ -209,15 +209,15 @@
|
|||||||
<display loc="d,41,59,41,65" displaytype="$write">
|
<display loc="d,41,59,41,65" displaytype="$write">
|
||||||
<sformatf loc="d,41,59,41,65" name="%%Error: t/t_enum_type_methods.v:41: got='h%x exp='h3 " dtype_id="10">
|
<sformatf loc="d,41,59,41,65" name="%%Error: t/t_enum_type_methods.v:41: got='h%x exp='h3 " dtype_id="10">
|
||||||
<arraysel loc="d,41,138,41,139" dtype_id="11">
|
<arraysel loc="d,41,138,41,139" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,41,138,41,139" dtype_id="13">
|
<and loc="d,41,138,41,139" dtype_id="13">
|
||||||
<const loc="d,41,138,41,139" name="32'h7" dtype_id="14"/>
|
<const loc="d,41,138,41,139" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,41,138,41,139" dtype_id="13">
|
<arraysel loc="d,41,138,41,139" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,41,138,41,139" dtype_id="13">
|
<and loc="d,41,138,41,139" dtype_id="13">
|
||||||
<const loc="d,41,138,41,139" name="32'h7" dtype_id="14"/>
|
<const loc="d,41,138,41,139" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,41,138,41,139" dtype_id="13">
|
<arraysel loc="d,41,138,41,139" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,41,138,41,139" dtype_id="13">
|
<and loc="d,41,138,41,139" dtype_id="13">
|
||||||
<const loc="d,41,138,41,139" name="32'h7" dtype_id="14"/>
|
<const loc="d,41,138,41,139" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,41,138,41,139" dtype_id="13">
|
<ccast loc="d,41,138,41,139" dtype_id="13">
|
||||||
@ -238,15 +238,15 @@
|
|||||||
<neq loc="d,42,34,42,37" dtype_id="9">
|
<neq loc="d,42,34,42,37" dtype_id="9">
|
||||||
<const loc="d,42,39,42,42" name="4'h3" dtype_id="11"/>
|
<const loc="d,42,39,42,42" name="4'h3" dtype_id="11"/>
|
||||||
<arraysel loc="d,42,15,42,16" dtype_id="11">
|
<arraysel loc="d,42,15,42,16" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,42,15,42,16" dtype_id="13">
|
<and loc="d,42,15,42,16" dtype_id="13">
|
||||||
<const loc="d,42,15,42,16" name="32'h7" dtype_id="14"/>
|
<const loc="d,42,15,42,16" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,42,15,42,16" dtype_id="13">
|
<arraysel loc="d,42,15,42,16" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,42,15,42,16" dtype_id="13">
|
<and loc="d,42,15,42,16" dtype_id="13">
|
||||||
<const loc="d,42,15,42,16" name="32'h7" dtype_id="14"/>
|
<const loc="d,42,15,42,16" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,42,15,42,16" dtype_id="13">
|
<arraysel loc="d,42,15,42,16" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,42,15,42,16" dtype_id="13">
|
<and loc="d,42,15,42,16" dtype_id="13">
|
||||||
<const loc="d,42,15,42,16" name="32'h7" dtype_id="14"/>
|
<const loc="d,42,15,42,16" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,42,15,42,16" dtype_id="13">
|
<ccast loc="d,42,15,42,16" dtype_id="13">
|
||||||
@ -263,15 +263,15 @@
|
|||||||
<display loc="d,42,51,42,57" displaytype="$write">
|
<display loc="d,42,51,42,57" displaytype="$write">
|
||||||
<sformatf loc="d,42,51,42,57" name="%%Error: t/t_enum_type_methods.v:42: got='h%x exp='h3 " dtype_id="10">
|
<sformatf loc="d,42,51,42,57" name="%%Error: t/t_enum_type_methods.v:42: got='h%x exp='h3 " dtype_id="10">
|
||||||
<arraysel loc="d,42,130,42,131" dtype_id="11">
|
<arraysel loc="d,42,130,42,131" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,42,130,42,131" dtype_id="13">
|
<and loc="d,42,130,42,131" dtype_id="13">
|
||||||
<const loc="d,42,130,42,131" name="32'h7" dtype_id="14"/>
|
<const loc="d,42,130,42,131" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,42,130,42,131" dtype_id="13">
|
<arraysel loc="d,42,130,42,131" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,42,130,42,131" dtype_id="13">
|
<and loc="d,42,130,42,131" dtype_id="13">
|
||||||
<const loc="d,42,130,42,131" name="32'h7" dtype_id="14"/>
|
<const loc="d,42,130,42,131" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,42,130,42,131" dtype_id="13">
|
<arraysel loc="d,42,130,42,131" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,42,130,42,131" dtype_id="13">
|
<and loc="d,42,130,42,131" dtype_id="13">
|
||||||
<const loc="d,42,130,42,131" name="32'h7" dtype_id="14"/>
|
<const loc="d,42,130,42,131" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,42,130,42,131" dtype_id="13">
|
<ccast loc="d,42,130,42,131" dtype_id="13">
|
||||||
@ -292,15 +292,15 @@
|
|||||||
<neq loc="d,43,26,43,29" dtype_id="9">
|
<neq loc="d,43,26,43,29" dtype_id="9">
|
||||||
<const loc="d,43,31,43,34" name="4'h3" dtype_id="11"/>
|
<const loc="d,43,31,43,34" name="4'h3" dtype_id="11"/>
|
||||||
<arraysel loc="d,43,15,43,16" dtype_id="11">
|
<arraysel loc="d,43,15,43,16" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,43,15,43,16" dtype_id="13">
|
<and loc="d,43,15,43,16" dtype_id="13">
|
||||||
<const loc="d,43,15,43,16" name="32'h7" dtype_id="14"/>
|
<const loc="d,43,15,43,16" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,43,15,43,16" dtype_id="13">
|
<arraysel loc="d,43,15,43,16" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,43,15,43,16" dtype_id="13">
|
<and loc="d,43,15,43,16" dtype_id="13">
|
||||||
<const loc="d,43,15,43,16" name="32'h7" dtype_id="14"/>
|
<const loc="d,43,15,43,16" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,43,15,43,16" dtype_id="13">
|
<arraysel loc="d,43,15,43,16" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,43,15,43,16" dtype_id="13">
|
<and loc="d,43,15,43,16" dtype_id="13">
|
||||||
<const loc="d,43,15,43,16" name="32'h7" dtype_id="14"/>
|
<const loc="d,43,15,43,16" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,43,15,43,16" dtype_id="13">
|
<ccast loc="d,43,15,43,16" dtype_id="13">
|
||||||
@ -317,15 +317,15 @@
|
|||||||
<display loc="d,43,43,43,49" displaytype="$write">
|
<display loc="d,43,43,43,49" displaytype="$write">
|
||||||
<sformatf loc="d,43,43,43,49" name="%%Error: t/t_enum_type_methods.v:43: got='h%x exp='h3 " dtype_id="10">
|
<sformatf loc="d,43,43,43,49" name="%%Error: t/t_enum_type_methods.v:43: got='h%x exp='h3 " dtype_id="10">
|
||||||
<arraysel loc="d,43,122,43,123" dtype_id="11">
|
<arraysel loc="d,43,122,43,123" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,43,122,43,123" dtype_id="13">
|
<and loc="d,43,122,43,123" dtype_id="13">
|
||||||
<const loc="d,43,122,43,123" name="32'h7" dtype_id="14"/>
|
<const loc="d,43,122,43,123" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,43,122,43,123" dtype_id="13">
|
<arraysel loc="d,43,122,43,123" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,43,122,43,123" dtype_id="13">
|
<and loc="d,43,122,43,123" dtype_id="13">
|
||||||
<const loc="d,43,122,43,123" name="32'h7" dtype_id="14"/>
|
<const loc="d,43,122,43,123" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,43,122,43,123" dtype_id="13">
|
<arraysel loc="d,43,122,43,123" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,43,122,43,123" dtype_id="13">
|
<and loc="d,43,122,43,123" dtype_id="13">
|
||||||
<const loc="d,43,122,43,123" name="32'h7" dtype_id="14"/>
|
<const loc="d,43,122,43,123" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,43,122,43,123" dtype_id="13">
|
<ccast loc="d,43,122,43,123" dtype_id="13">
|
||||||
@ -490,7 +490,7 @@
|
|||||||
<neqn loc="d,49,23,49,25" dtype_id="9">
|
<neqn loc="d,49,23,49,25" dtype_id="9">
|
||||||
<const loc="d,49,27,49,32" name=""E03"" dtype_id="10"/>
|
<const loc="d,49,27,49,32" name=""E03"" dtype_id="10"/>
|
||||||
<arraysel loc="d,49,15,49,16" dtype_id="10">
|
<arraysel loc="d,49,15,49,16" dtype_id="10">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name2" dtype_id="16"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name1" dtype_id="16"/>
|
||||||
<and loc="d,49,15,49,16" dtype_id="13">
|
<and loc="d,49,15,49,16" dtype_id="13">
|
||||||
<const loc="d,49,15,49,16" name="32'h7" dtype_id="14"/>
|
<const loc="d,49,15,49,16" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,49,15,49,16" dtype_id="13">
|
<ccast loc="d,49,15,49,16" dtype_id="13">
|
||||||
@ -502,7 +502,7 @@
|
|||||||
<begin>
|
<begin>
|
||||||
<assign loc="d,49,120,49,121" dtype_id="10">
|
<assign loc="d,49,120,49,121" dtype_id="10">
|
||||||
<arraysel loc="d,49,120,49,121" dtype_id="10">
|
<arraysel loc="d,49,120,49,121" dtype_id="10">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name2" dtype_id="16"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name1" dtype_id="16"/>
|
||||||
<and loc="d,49,120,49,121" dtype_id="13">
|
<and loc="d,49,120,49,121" dtype_id="13">
|
||||||
<const loc="d,49,120,49,121" name="32'h7" dtype_id="14"/>
|
<const loc="d,49,120,49,121" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,49,120,49,121" dtype_id="13">
|
<ccast loc="d,49,120,49,121" dtype_id="13">
|
||||||
@ -543,17 +543,15 @@
|
|||||||
<assign loc="d,53,14,53,15" dtype_id="10">
|
<assign loc="d,53,14,53,15" dtype_id="10">
|
||||||
<concatn loc="d,53,20,53,21" dtype_id="10">
|
<concatn loc="d,53,20,53,21" dtype_id="10">
|
||||||
<varref loc="d,53,17,53,20" name="t.all" dtype_id="10"/>
|
<varref loc="d,53,17,53,20" name="t.all" dtype_id="10"/>
|
||||||
<cvtpackstring loc="d,53,22,53,23" dtype_id="10">
|
<arraysel loc="d,53,22,53,23" dtype_id="10">
|
||||||
<arraysel loc="d,53,22,53,23" dtype_id="10">
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name1" dtype_id="16"/>
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name2" dtype_id="16"/>
|
<and loc="d,53,22,53,23" dtype_id="13">
|
||||||
<and loc="d,53,22,53,23" dtype_id="13">
|
<const loc="d,53,22,53,23" name="32'h7" dtype_id="14"/>
|
||||||
<const loc="d,53,22,53,23" name="32'h7" dtype_id="14"/>
|
<ccast loc="d,53,22,53,23" dtype_id="13">
|
||||||
<ccast loc="d,53,22,53,23" dtype_id="13">
|
<varref loc="d,53,22,53,23" name="t.unnamedblk1.e" dtype_id="13"/>
|
||||||
<varref loc="d,53,22,53,23" name="t.unnamedblk1.e" dtype_id="13"/>
|
</ccast>
|
||||||
</ccast>
|
</and>
|
||||||
</and>
|
</arraysel>
|
||||||
</arraysel>
|
|
||||||
</cvtpackstring>
|
|
||||||
</concatn>
|
</concatn>
|
||||||
<varref loc="d,53,10,53,13" name="t.all" dtype_id="10"/>
|
<varref loc="d,53,10,53,13" name="t.all" dtype_id="10"/>
|
||||||
</assign>
|
</assign>
|
||||||
@ -561,7 +559,7 @@
|
|||||||
<begin>
|
<begin>
|
||||||
<assign loc="d,52,45,52,46" dtype_id="11">
|
<assign loc="d,52,45,52,46" dtype_id="11">
|
||||||
<arraysel loc="d,52,47,52,48" dtype_id="11">
|
<arraysel loc="d,52,47,52,48" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,52,47,52,48" dtype_id="13">
|
<and loc="d,52,47,52,48" dtype_id="13">
|
||||||
<const loc="d,52,47,52,48" name="32'h7" dtype_id="14"/>
|
<const loc="d,52,47,52,48" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,52,47,52,48" dtype_id="13">
|
<ccast loc="d,52,47,52,48" dtype_id="13">
|
||||||
@ -580,7 +578,7 @@
|
|||||||
<assign loc="d,56,11,56,12" dtype_id="10">
|
<assign loc="d,56,11,56,12" dtype_id="10">
|
||||||
<concatn loc="d,56,17,56,18" dtype_id="10">
|
<concatn loc="d,56,17,56,18" dtype_id="10">
|
||||||
<varref loc="d,56,14,56,17" name="t.all" dtype_id="10"/>
|
<varref loc="d,56,14,56,17" name="t.all" dtype_id="10"/>
|
||||||
<const loc="d,56,19,56,20" name=""E04"" dtype_id="10"/>
|
<const loc="d,17,12,17,16" name=""E04"" dtype_id="10"/>
|
||||||
</concatn>
|
</concatn>
|
||||||
<varref loc="d,56,7,56,10" name="t.all" dtype_id="10"/>
|
<varref loc="d,56,7,56,10" name="t.all" dtype_id="10"/>
|
||||||
</assign>
|
</assign>
|
||||||
@ -754,7 +752,7 @@
|
|||||||
<neqn loc="d,68,26,68,28" dtype_id="9">
|
<neqn loc="d,68,26,68,28" dtype_id="9">
|
||||||
<const loc="d,68,30,68,35" name=""E01"" dtype_id="10"/>
|
<const loc="d,68,30,68,35" name=""E01"" dtype_id="10"/>
|
||||||
<arraysel loc="d,68,18,68,19" dtype_id="10">
|
<arraysel loc="d,68,18,68,19" dtype_id="10">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name2" dtype_id="16"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name1" dtype_id="16"/>
|
||||||
<and loc="d,68,18,68,19" dtype_id="13">
|
<and loc="d,68,18,68,19" dtype_id="13">
|
||||||
<const loc="d,68,18,68,19" name="32'h7" dtype_id="14"/>
|
<const loc="d,68,18,68,19" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,68,18,68,19" dtype_id="13">
|
<ccast loc="d,68,18,68,19" dtype_id="13">
|
||||||
@ -766,7 +764,7 @@
|
|||||||
<begin>
|
<begin>
|
||||||
<assign loc="d,68,123,68,124" dtype_id="10">
|
<assign loc="d,68,123,68,124" dtype_id="10">
|
||||||
<arraysel loc="d,68,123,68,124" dtype_id="10">
|
<arraysel loc="d,68,123,68,124" dtype_id="10">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name2" dtype_id="16"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name1" dtype_id="16"/>
|
||||||
<and loc="d,68,123,68,124" dtype_id="13">
|
<and loc="d,68,123,68,124" dtype_id="13">
|
||||||
<const loc="d,68,123,68,124" name="32'h7" dtype_id="14"/>
|
<const loc="d,68,123,68,124" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,68,123,68,124" dtype_id="13">
|
<ccast loc="d,68,123,68,124" dtype_id="13">
|
||||||
@ -788,7 +786,7 @@
|
|||||||
<neq loc="d,69,26,69,29" dtype_id="9">
|
<neq loc="d,69,26,69,29" dtype_id="9">
|
||||||
<const loc="d,69,31,69,34" name="4'h3" dtype_id="11"/>
|
<const loc="d,69,31,69,34" name="4'h3" dtype_id="11"/>
|
||||||
<arraysel loc="d,69,18,69,19" dtype_id="11">
|
<arraysel loc="d,69,18,69,19" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,69,18,69,19" dtype_id="13">
|
<and loc="d,69,18,69,19" dtype_id="13">
|
||||||
<const loc="d,69,18,69,19" name="32'h7" dtype_id="14"/>
|
<const loc="d,69,18,69,19" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,69,18,69,19" dtype_id="13">
|
<ccast loc="d,69,18,69,19" dtype_id="13">
|
||||||
@ -801,7 +799,7 @@
|
|||||||
<display loc="d,69,43,69,49" displaytype="$write">
|
<display loc="d,69,43,69,49" displaytype="$write">
|
||||||
<sformatf loc="d,69,43,69,49" name="%%Error: t/t_enum_type_methods.v:69: got='h%x exp='h3 " dtype_id="10">
|
<sformatf loc="d,69,43,69,49" name="%%Error: t/t_enum_type_methods.v:69: got='h%x exp='h3 " dtype_id="10">
|
||||||
<arraysel loc="d,69,122,69,123" dtype_id="11">
|
<arraysel loc="d,69,122,69,123" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,69,122,69,123" dtype_id="13">
|
<and loc="d,69,122,69,123" dtype_id="13">
|
||||||
<const loc="d,69,122,69,123" name="32'h7" dtype_id="14"/>
|
<const loc="d,69,122,69,123" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,69,122,69,123" dtype_id="13">
|
<ccast loc="d,69,122,69,123" dtype_id="13">
|
||||||
@ -818,7 +816,7 @@
|
|||||||
<neq loc="d,70,29,70,32" dtype_id="9">
|
<neq loc="d,70,29,70,32" dtype_id="9">
|
||||||
<const loc="d,70,34,70,37" name="4'h3" dtype_id="11"/>
|
<const loc="d,70,34,70,37" name="4'h3" dtype_id="11"/>
|
||||||
<arraysel loc="d,70,18,70,19" dtype_id="11">
|
<arraysel loc="d,70,18,70,19" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,70,18,70,19" dtype_id="13">
|
<and loc="d,70,18,70,19" dtype_id="13">
|
||||||
<const loc="d,70,18,70,19" name="32'h7" dtype_id="14"/>
|
<const loc="d,70,18,70,19" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,70,18,70,19" dtype_id="13">
|
<ccast loc="d,70,18,70,19" dtype_id="13">
|
||||||
@ -831,7 +829,7 @@
|
|||||||
<display loc="d,70,46,70,52" displaytype="$write">
|
<display loc="d,70,46,70,52" displaytype="$write">
|
||||||
<sformatf loc="d,70,46,70,52" name="%%Error: t/t_enum_type_methods.v:70: got='h%x exp='h3 " dtype_id="10">
|
<sformatf loc="d,70,46,70,52" name="%%Error: t/t_enum_type_methods.v:70: got='h%x exp='h3 " dtype_id="10">
|
||||||
<arraysel loc="d,70,125,70,126" dtype_id="11">
|
<arraysel loc="d,70,125,70,126" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,70,125,70,126" dtype_id="13">
|
<and loc="d,70,125,70,126" dtype_id="13">
|
||||||
<const loc="d,70,125,70,126" name="32'h7" dtype_id="14"/>
|
<const loc="d,70,125,70,126" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,70,125,70,126" dtype_id="13">
|
<ccast loc="d,70,125,70,126" dtype_id="13">
|
||||||
@ -848,11 +846,11 @@
|
|||||||
<neq loc="d,71,29,71,32" dtype_id="9">
|
<neq loc="d,71,29,71,32" dtype_id="9">
|
||||||
<const loc="d,71,34,71,37" name="4'h4" dtype_id="11"/>
|
<const loc="d,71,34,71,37" name="4'h4" dtype_id="11"/>
|
||||||
<arraysel loc="d,71,18,71,19" dtype_id="11">
|
<arraysel loc="d,71,18,71,19" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,71,18,71,19" dtype_id="13">
|
<and loc="d,71,18,71,19" dtype_id="13">
|
||||||
<const loc="d,71,18,71,19" name="32'h7" dtype_id="14"/>
|
<const loc="d,71,18,71,19" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,71,18,71,19" dtype_id="13">
|
<arraysel loc="d,71,18,71,19" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,71,18,71,19" dtype_id="13">
|
<and loc="d,71,18,71,19" dtype_id="13">
|
||||||
<const loc="d,71,18,71,19" name="32'h7" dtype_id="14"/>
|
<const loc="d,71,18,71,19" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,71,18,71,19" dtype_id="13">
|
<ccast loc="d,71,18,71,19" dtype_id="13">
|
||||||
@ -867,11 +865,11 @@
|
|||||||
<display loc="d,71,46,71,52" displaytype="$write">
|
<display loc="d,71,46,71,52" displaytype="$write">
|
||||||
<sformatf loc="d,71,46,71,52" name="%%Error: t/t_enum_type_methods.v:71: got='h%x exp='h4 " dtype_id="10">
|
<sformatf loc="d,71,46,71,52" name="%%Error: t/t_enum_type_methods.v:71: got='h%x exp='h4 " dtype_id="10">
|
||||||
<arraysel loc="d,71,125,71,126" dtype_id="11">
|
<arraysel loc="d,71,125,71,126" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,71,125,71,126" dtype_id="13">
|
<and loc="d,71,125,71,126" dtype_id="13">
|
||||||
<const loc="d,71,125,71,126" name="32'h7" dtype_id="14"/>
|
<const loc="d,71,125,71,126" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,71,125,71,126" dtype_id="13">
|
<arraysel loc="d,71,125,71,126" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,71,125,71,126" dtype_id="13">
|
<and loc="d,71,125,71,126" dtype_id="13">
|
||||||
<const loc="d,71,125,71,126" name="32'h7" dtype_id="14"/>
|
<const loc="d,71,125,71,126" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,71,125,71,126" dtype_id="13">
|
<ccast loc="d,71,125,71,126" dtype_id="13">
|
||||||
@ -1004,7 +1002,7 @@
|
|||||||
<neqn loc="d,78,26,78,28" dtype_id="9">
|
<neqn loc="d,78,26,78,28" dtype_id="9">
|
||||||
<const loc="d,78,30,78,35" name=""E03"" dtype_id="10"/>
|
<const loc="d,78,30,78,35" name=""E03"" dtype_id="10"/>
|
||||||
<arraysel loc="d,78,18,78,19" dtype_id="10">
|
<arraysel loc="d,78,18,78,19" dtype_id="10">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name2" dtype_id="16"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name1" dtype_id="16"/>
|
||||||
<and loc="d,78,18,78,19" dtype_id="13">
|
<and loc="d,78,18,78,19" dtype_id="13">
|
||||||
<const loc="d,78,18,78,19" name="32'h7" dtype_id="14"/>
|
<const loc="d,78,18,78,19" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,78,18,78,19" dtype_id="13">
|
<ccast loc="d,78,18,78,19" dtype_id="13">
|
||||||
@ -1016,7 +1014,7 @@
|
|||||||
<begin>
|
<begin>
|
||||||
<assign loc="d,78,123,78,124" dtype_id="10">
|
<assign loc="d,78,123,78,124" dtype_id="10">
|
||||||
<arraysel loc="d,78,123,78,124" dtype_id="10">
|
<arraysel loc="d,78,123,78,124" dtype_id="10">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name2" dtype_id="16"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name1" dtype_id="16"/>
|
||||||
<and loc="d,78,123,78,124" dtype_id="13">
|
<and loc="d,78,123,78,124" dtype_id="13">
|
||||||
<const loc="d,78,123,78,124" name="32'h7" dtype_id="14"/>
|
<const loc="d,78,123,78,124" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,78,123,78,124" dtype_id="13">
|
<ccast loc="d,78,123,78,124" dtype_id="13">
|
||||||
@ -1038,7 +1036,7 @@
|
|||||||
<neq loc="d,79,26,79,29" dtype_id="9">
|
<neq loc="d,79,26,79,29" dtype_id="9">
|
||||||
<const loc="d,79,31,79,34" name="4'h4" dtype_id="11"/>
|
<const loc="d,79,31,79,34" name="4'h4" dtype_id="11"/>
|
||||||
<arraysel loc="d,79,18,79,19" dtype_id="11">
|
<arraysel loc="d,79,18,79,19" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,79,18,79,19" dtype_id="13">
|
<and loc="d,79,18,79,19" dtype_id="13">
|
||||||
<const loc="d,79,18,79,19" name="32'h7" dtype_id="14"/>
|
<const loc="d,79,18,79,19" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,79,18,79,19" dtype_id="13">
|
<ccast loc="d,79,18,79,19" dtype_id="13">
|
||||||
@ -1051,7 +1049,7 @@
|
|||||||
<display loc="d,79,43,79,49" displaytype="$write">
|
<display loc="d,79,43,79,49" displaytype="$write">
|
||||||
<sformatf loc="d,79,43,79,49" name="%%Error: t/t_enum_type_methods.v:79: got='h%x exp='h4 " dtype_id="10">
|
<sformatf loc="d,79,43,79,49" name="%%Error: t/t_enum_type_methods.v:79: got='h%x exp='h4 " dtype_id="10">
|
||||||
<arraysel loc="d,79,122,79,123" dtype_id="11">
|
<arraysel loc="d,79,122,79,123" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,79,122,79,123" dtype_id="13">
|
<and loc="d,79,122,79,123" dtype_id="13">
|
||||||
<const loc="d,79,122,79,123" name="32'h7" dtype_id="14"/>
|
<const loc="d,79,122,79,123" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,79,122,79,123" dtype_id="13">
|
<ccast loc="d,79,122,79,123" dtype_id="13">
|
||||||
@ -1068,7 +1066,7 @@
|
|||||||
<neq loc="d,80,29,80,32" dtype_id="9">
|
<neq loc="d,80,29,80,32" dtype_id="9">
|
||||||
<const loc="d,80,34,80,37" name="4'h4" dtype_id="11"/>
|
<const loc="d,80,34,80,37" name="4'h4" dtype_id="11"/>
|
||||||
<arraysel loc="d,80,18,80,19" dtype_id="11">
|
<arraysel loc="d,80,18,80,19" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,80,18,80,19" dtype_id="13">
|
<and loc="d,80,18,80,19" dtype_id="13">
|
||||||
<const loc="d,80,18,80,19" name="32'h7" dtype_id="14"/>
|
<const loc="d,80,18,80,19" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,80,18,80,19" dtype_id="13">
|
<ccast loc="d,80,18,80,19" dtype_id="13">
|
||||||
@ -1081,7 +1079,7 @@
|
|||||||
<display loc="d,80,46,80,52" displaytype="$write">
|
<display loc="d,80,46,80,52" displaytype="$write">
|
||||||
<sformatf loc="d,80,46,80,52" name="%%Error: t/t_enum_type_methods.v:80: got='h%x exp='h4 " dtype_id="10">
|
<sformatf loc="d,80,46,80,52" name="%%Error: t/t_enum_type_methods.v:80: got='h%x exp='h4 " dtype_id="10">
|
||||||
<arraysel loc="d,80,125,80,126" dtype_id="11">
|
<arraysel loc="d,80,125,80,126" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,80,125,80,126" dtype_id="13">
|
<and loc="d,80,125,80,126" dtype_id="13">
|
||||||
<const loc="d,80,125,80,126" name="32'h7" dtype_id="14"/>
|
<const loc="d,80,125,80,126" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,80,125,80,126" dtype_id="13">
|
<ccast loc="d,80,125,80,126" dtype_id="13">
|
||||||
@ -1098,11 +1096,11 @@
|
|||||||
<neq loc="d,81,29,81,32" dtype_id="9">
|
<neq loc="d,81,29,81,32" dtype_id="9">
|
||||||
<const loc="d,81,34,81,37" name="4'h1" dtype_id="11"/>
|
<const loc="d,81,34,81,37" name="4'h1" dtype_id="11"/>
|
||||||
<arraysel loc="d,81,18,81,19" dtype_id="11">
|
<arraysel loc="d,81,18,81,19" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,81,18,81,19" dtype_id="13">
|
<and loc="d,81,18,81,19" dtype_id="13">
|
||||||
<const loc="d,81,18,81,19" name="32'h7" dtype_id="14"/>
|
<const loc="d,81,18,81,19" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,81,18,81,19" dtype_id="13">
|
<arraysel loc="d,81,18,81,19" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,81,18,81,19" dtype_id="13">
|
<and loc="d,81,18,81,19" dtype_id="13">
|
||||||
<const loc="d,81,18,81,19" name="32'h7" dtype_id="14"/>
|
<const loc="d,81,18,81,19" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,81,18,81,19" dtype_id="13">
|
<ccast loc="d,81,18,81,19" dtype_id="13">
|
||||||
@ -1117,11 +1115,11 @@
|
|||||||
<display loc="d,81,46,81,52" displaytype="$write">
|
<display loc="d,81,46,81,52" displaytype="$write">
|
||||||
<sformatf loc="d,81,46,81,52" name="%%Error: t/t_enum_type_methods.v:81: got='h%x exp='h1 " dtype_id="10">
|
<sformatf loc="d,81,46,81,52" name="%%Error: t/t_enum_type_methods.v:81: got='h%x exp='h1 " dtype_id="10">
|
||||||
<arraysel loc="d,81,125,81,126" dtype_id="11">
|
<arraysel loc="d,81,125,81,126" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,81,125,81,126" dtype_id="13">
|
<and loc="d,81,125,81,126" dtype_id="13">
|
||||||
<const loc="d,81,125,81,126" name="32'h7" dtype_id="14"/>
|
<const loc="d,81,125,81,126" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,81,125,81,126" dtype_id="13">
|
<arraysel loc="d,81,125,81,126" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,81,125,81,126" dtype_id="13">
|
<and loc="d,81,125,81,126" dtype_id="13">
|
||||||
<const loc="d,81,125,81,126" name="32'h7" dtype_id="14"/>
|
<const loc="d,81,125,81,126" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,81,125,81,126" dtype_id="13">
|
<ccast loc="d,81,125,81,126" dtype_id="13">
|
||||||
@ -1254,7 +1252,7 @@
|
|||||||
<neqn loc="d,88,26,88,28" dtype_id="9">
|
<neqn loc="d,88,26,88,28" dtype_id="9">
|
||||||
<const loc="d,88,30,88,35" name=""E04"" dtype_id="10"/>
|
<const loc="d,88,30,88,35" name=""E04"" dtype_id="10"/>
|
||||||
<arraysel loc="d,88,18,88,19" dtype_id="10">
|
<arraysel loc="d,88,18,88,19" dtype_id="10">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name2" dtype_id="16"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name1" dtype_id="16"/>
|
||||||
<and loc="d,88,18,88,19" dtype_id="13">
|
<and loc="d,88,18,88,19" dtype_id="13">
|
||||||
<const loc="d,88,18,88,19" name="32'h7" dtype_id="14"/>
|
<const loc="d,88,18,88,19" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,88,18,88,19" dtype_id="13">
|
<ccast loc="d,88,18,88,19" dtype_id="13">
|
||||||
@ -1266,7 +1264,7 @@
|
|||||||
<begin>
|
<begin>
|
||||||
<assign loc="d,88,123,88,124" dtype_id="10">
|
<assign loc="d,88,123,88,124" dtype_id="10">
|
||||||
<arraysel loc="d,88,123,88,124" dtype_id="10">
|
<arraysel loc="d,88,123,88,124" dtype_id="10">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name2" dtype_id="16"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name1" dtype_id="16"/>
|
||||||
<and loc="d,88,123,88,124" dtype_id="13">
|
<and loc="d,88,123,88,124" dtype_id="13">
|
||||||
<const loc="d,88,123,88,124" name="32'h7" dtype_id="14"/>
|
<const loc="d,88,123,88,124" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,88,123,88,124" dtype_id="13">
|
<ccast loc="d,88,123,88,124" dtype_id="13">
|
||||||
@ -1288,7 +1286,7 @@
|
|||||||
<neq loc="d,89,26,89,29" dtype_id="9">
|
<neq loc="d,89,26,89,29" dtype_id="9">
|
||||||
<const loc="d,89,31,89,34" name="4'h1" dtype_id="11"/>
|
<const loc="d,89,31,89,34" name="4'h1" dtype_id="11"/>
|
||||||
<arraysel loc="d,89,18,89,19" dtype_id="11">
|
<arraysel loc="d,89,18,89,19" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,89,18,89,19" dtype_id="13">
|
<and loc="d,89,18,89,19" dtype_id="13">
|
||||||
<const loc="d,89,18,89,19" name="32'h7" dtype_id="14"/>
|
<const loc="d,89,18,89,19" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,89,18,89,19" dtype_id="13">
|
<ccast loc="d,89,18,89,19" dtype_id="13">
|
||||||
@ -1301,7 +1299,7 @@
|
|||||||
<display loc="d,89,43,89,49" displaytype="$write">
|
<display loc="d,89,43,89,49" displaytype="$write">
|
||||||
<sformatf loc="d,89,43,89,49" name="%%Error: t/t_enum_type_methods.v:89: got='h%x exp='h1 " dtype_id="10">
|
<sformatf loc="d,89,43,89,49" name="%%Error: t/t_enum_type_methods.v:89: got='h%x exp='h1 " dtype_id="10">
|
||||||
<arraysel loc="d,89,122,89,123" dtype_id="11">
|
<arraysel loc="d,89,122,89,123" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,89,122,89,123" dtype_id="13">
|
<and loc="d,89,122,89,123" dtype_id="13">
|
||||||
<const loc="d,89,122,89,123" name="32'h7" dtype_id="14"/>
|
<const loc="d,89,122,89,123" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,89,122,89,123" dtype_id="13">
|
<ccast loc="d,89,122,89,123" dtype_id="13">
|
||||||
@ -1318,7 +1316,7 @@
|
|||||||
<neq loc="d,90,29,90,32" dtype_id="9">
|
<neq loc="d,90,29,90,32" dtype_id="9">
|
||||||
<const loc="d,90,34,90,37" name="4'h1" dtype_id="11"/>
|
<const loc="d,90,34,90,37" name="4'h1" dtype_id="11"/>
|
||||||
<arraysel loc="d,90,18,90,19" dtype_id="11">
|
<arraysel loc="d,90,18,90,19" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,90,18,90,19" dtype_id="13">
|
<and loc="d,90,18,90,19" dtype_id="13">
|
||||||
<const loc="d,90,18,90,19" name="32'h7" dtype_id="14"/>
|
<const loc="d,90,18,90,19" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,90,18,90,19" dtype_id="13">
|
<ccast loc="d,90,18,90,19" dtype_id="13">
|
||||||
@ -1331,7 +1329,7 @@
|
|||||||
<display loc="d,90,46,90,52" displaytype="$write">
|
<display loc="d,90,46,90,52" displaytype="$write">
|
||||||
<sformatf loc="d,90,46,90,52" name="%%Error: t/t_enum_type_methods.v:90: got='h%x exp='h1 " dtype_id="10">
|
<sformatf loc="d,90,46,90,52" name="%%Error: t/t_enum_type_methods.v:90: got='h%x exp='h1 " dtype_id="10">
|
||||||
<arraysel loc="d,90,125,90,126" dtype_id="11">
|
<arraysel loc="d,90,125,90,126" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,90,125,90,126" dtype_id="13">
|
<and loc="d,90,125,90,126" dtype_id="13">
|
||||||
<const loc="d,90,125,90,126" name="32'h7" dtype_id="14"/>
|
<const loc="d,90,125,90,126" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,90,125,90,126" dtype_id="13">
|
<ccast loc="d,90,125,90,126" dtype_id="13">
|
||||||
@ -1348,11 +1346,11 @@
|
|||||||
<neq loc="d,91,29,91,32" dtype_id="9">
|
<neq loc="d,91,29,91,32" dtype_id="9">
|
||||||
<const loc="d,91,34,91,37" name="4'h3" dtype_id="11"/>
|
<const loc="d,91,34,91,37" name="4'h3" dtype_id="11"/>
|
||||||
<arraysel loc="d,91,18,91,19" dtype_id="11">
|
<arraysel loc="d,91,18,91,19" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,91,18,91,19" dtype_id="13">
|
<and loc="d,91,18,91,19" dtype_id="13">
|
||||||
<const loc="d,91,18,91,19" name="32'h7" dtype_id="14"/>
|
<const loc="d,91,18,91,19" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,91,18,91,19" dtype_id="13">
|
<arraysel loc="d,91,18,91,19" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,91,18,91,19" dtype_id="13">
|
<and loc="d,91,18,91,19" dtype_id="13">
|
||||||
<const loc="d,91,18,91,19" name="32'h7" dtype_id="14"/>
|
<const loc="d,91,18,91,19" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,91,18,91,19" dtype_id="13">
|
<ccast loc="d,91,18,91,19" dtype_id="13">
|
||||||
@ -1367,11 +1365,11 @@
|
|||||||
<display loc="d,91,46,91,52" displaytype="$write">
|
<display loc="d,91,46,91,52" displaytype="$write">
|
||||||
<sformatf loc="d,91,46,91,52" name="%%Error: t/t_enum_type_methods.v:91: got='h%x exp='h3 " dtype_id="10">
|
<sformatf loc="d,91,46,91,52" name="%%Error: t/t_enum_type_methods.v:91: got='h%x exp='h3 " dtype_id="10">
|
||||||
<arraysel loc="d,91,125,91,126" dtype_id="11">
|
<arraysel loc="d,91,125,91,126" dtype_id="11">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,91,125,91,126" dtype_id="13">
|
<and loc="d,91,125,91,126" dtype_id="13">
|
||||||
<const loc="d,91,125,91,126" name="32'h7" dtype_id="14"/>
|
<const loc="d,91,125,91,126" name="32'h7" dtype_id="14"/>
|
||||||
<arraysel loc="d,91,125,91,126" dtype_id="13">
|
<arraysel loc="d,91,125,91,126" dtype_id="13">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
<and loc="d,91,125,91,126" dtype_id="13">
|
<and loc="d,91,125,91,126" dtype_id="13">
|
||||||
<const loc="d,91,125,91,126" name="32'h7" dtype_id="14"/>
|
<const loc="d,91,125,91,126" name="32'h7" dtype_id="14"/>
|
||||||
<ccast loc="d,91,125,91,126" dtype_id="13">
|
<ccast loc="d,91,125,91,126" dtype_id="13">
|
||||||
@ -1731,7 +1729,7 @@
|
|||||||
<cuse loc="a,0,0,0,0" name="$unit"/>
|
<cuse loc="a,0,0,0,0" name="$unit"/>
|
||||||
</module>
|
</module>
|
||||||
<package loc="a,0,0,0,0" name="$unit" origName="__024unit">
|
<package loc="a,0,0,0,0" name="$unit" origName="__024unit">
|
||||||
<var loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12" vartype="" origName="__Venumtab_enum_next0">
|
<var loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12" vartype="" origName="__Venumtab_enum_next1">
|
||||||
<initarray>
|
<initarray>
|
||||||
<inititem index="1">
|
<inititem index="1">
|
||||||
<const loc="d,19,30,19,31" name="4'h3" dtype_id="11"/>
|
<const loc="d,19,30,19,31" name="4'h3" dtype_id="11"/>
|
||||||
@ -1757,7 +1755,7 @@
|
|||||||
</inititem>
|
</inititem>
|
||||||
</initarray>
|
</initarray>
|
||||||
</var>
|
</var>
|
||||||
<var loc="d,17,12,17,16" name="__Venumtab_enum_name2" dtype_id="16" vartype="" origName="__Venumtab_enum_name2">
|
<var loc="d,17,12,17,16" name="__Venumtab_enum_name1" dtype_id="16" vartype="" origName="__Venumtab_enum_name1">
|
||||||
<initarray>
|
<initarray>
|
||||||
<inititem index="1">
|
<inititem index="1">
|
||||||
<const loc="d,17,12,17,16" name=""E01"" dtype_id="10"/>
|
<const loc="d,17,12,17,16" name=""E01"" dtype_id="10"/>
|
||||||
@ -1773,13 +1771,13 @@
|
|||||||
<scope loc="a,0,0,0,0" name="$unit"/>
|
<scope loc="a,0,0,0,0" name="$unit"/>
|
||||||
<cfunc loc="a,0,0,0,0" name="_ctor_var_reset">
|
<cfunc loc="a,0,0,0,0" name="_ctor_var_reset">
|
||||||
<creset loc="d,17,12,17,16">
|
<creset loc="d,17,12,17,16">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next0" dtype_id="12"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_next1" dtype_id="12"/>
|
||||||
</creset>
|
</creset>
|
||||||
<creset loc="d,17,12,17,16">
|
<creset loc="d,17,12,17,16">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_prev1" dtype_id="15"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_prev1" dtype_id="15"/>
|
||||||
</creset>
|
</creset>
|
||||||
<creset loc="d,17,12,17,16">
|
<creset loc="d,17,12,17,16">
|
||||||
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name2" dtype_id="16"/>
|
<varref loc="d,17,12,17,16" name="__Venumtab_enum_name1" dtype_id="16"/>
|
||||||
</creset>
|
</creset>
|
||||||
</cfunc>
|
</cfunc>
|
||||||
</package>
|
</package>
|
||||||
|
Loading…
Reference in New Issue
Block a user