C++11: Use sized enums (+4% performance).

This commit is contained in:
Wilson Snyder 2020-08-16 12:05:35 -04:00
parent ee9d6dd63f
commit 78aee6f4e7
32 changed files with 93 additions and 70 deletions

View File

@ -94,7 +94,7 @@ class VerilatedVcdSc;
class VerilatedFst; class VerilatedFst;
class VerilatedFstC; class VerilatedFstC;
enum VerilatedVarType { enum VerilatedVarType : vluint8_t {
VLVT_UNKNOWN = 0, VLVT_UNKNOWN = 0,
VLVT_PTR, // Pointer to something VLVT_PTR, // Pointer to something
VLVT_UINT8, // AKA CData VLVT_UINT8, // AKA CData
@ -313,7 +313,7 @@ public: // But for internal use only
class VerilatedScope { class VerilatedScope {
public: public:
typedef enum { typedef enum : vluint8_t {
SCOPE_MODULE, SCOPE_MODULE,
SCOPE_OTHER SCOPE_OTHER
} Type; // Type of a scope, currently module is only interesting } Type; // Type of a scope, currently module is only interesting

View File

@ -87,7 +87,7 @@ class VerilatedTraceCommand {
public: public:
// These must all fit in 4 bit at the moment, as the tracing routines // These must all fit in 4 bit at the moment, as the tracing routines
// pack parameters in the top bits. // pack parameters in the top bits.
enum { enum : vluint8_t {
CHG_BIT_0 = 0x0, CHG_BIT_0 = 0x0,
CHG_BIT_1 = 0x1, CHG_BIT_1 = 0x1,
CHG_CDATA = 0x2, CHG_CDATA = 0x2,

View File

@ -965,10 +965,10 @@ const char* VerilatedVpiError::strFromVpiProp(PLI_INT32 vpiVal) VL_MT_SAFE {
VL_FATAL_MT(__FILE__, __LINE__, "", msg.c_str()); \ VL_FATAL_MT(__FILE__, __LINE__, "", msg.c_str()); \
} }
#define SELF_CHECK_ENUM_STR(fn, enum) \ #define SELF_CHECK_ENUM_STR(fn, enumn) \
do { \ do { \
const char* strVal = VerilatedVpiError::fn(enum); \ const char* strVal = VerilatedVpiError::fn(enumn); \
SELF_CHECK_RESULT_CSTR(strVal, #enum); \ SELF_CHECK_RESULT_CSTR(strVal, #enumn); \
} while (0) } while (0)
void VerilatedVpi::selfTest() VL_MT_UNSAFE_ONE { VerilatedVpiError::selfTest(); } void VerilatedVpi::selfTest() VL_MT_UNSAFE_ONE { VerilatedVpiError::selfTest(); }

View File

@ -141,7 +141,7 @@ public:
class ActiveDlyVisitor : public ActiveBaseVisitor { class ActiveDlyVisitor : public ActiveBaseVisitor {
public: public:
enum CheckType { CT_SEQ, CT_COMBO, CT_INITIAL, CT_LATCH }; enum CheckType : uint8_t { CT_SEQ, CT_COMBO, CT_INITIAL, CT_LATCH };
private: private:
CheckType m_check; // Combo logic or other CheckType m_check; // Combo logic or other

View File

@ -96,7 +96,7 @@ inline std::ostream& operator<<(std::ostream& os, const AstType& rhs) { return o
class VLifetime { class VLifetime {
public: public:
enum en { NONE, AUTOMATIC, STATIC }; enum en : uint8_t { NONE, AUTOMATIC, STATIC };
enum en m_e; enum en m_e;
const char* ascii() const { const char* ascii() const {
static const char* const names[] = {"NONE", "VAUTOM", "VSTATIC"}; static const char* const names[] = {"NONE", "VAUTOM", "VSTATIC"};
@ -125,7 +125,7 @@ inline std::ostream& operator<<(std::ostream& os, const VLifetime& rhs) {
class VSigning { class VSigning {
public: public:
enum en { enum en : uint8_t {
UNSIGNED, UNSIGNED,
SIGNED, SIGNED,
NOSIGN, NOSIGN,
@ -162,7 +162,7 @@ inline std::ostream& operator<<(std::ostream& os, const VSigning& rhs) {
class AstPragmaType { class AstPragmaType {
public: public:
enum en { enum en : uint8_t {
ILLEGAL, ILLEGAL,
COVERAGE_BLOCK_OFF, COVERAGE_BLOCK_OFF,
HIER_BLOCK, HIER_BLOCK,
@ -195,7 +195,7 @@ inline bool operator==(AstPragmaType::en lhs, const AstPragmaType& rhs) { return
class AstCFuncType { class AstCFuncType {
public: public:
enum en { enum en : uint8_t {
FT_NORMAL, FT_NORMAL,
TRACE_REGISTER, TRACE_REGISTER,
TRACE_INIT, TRACE_INIT,
@ -229,7 +229,7 @@ inline bool operator==(AstCFuncType::en lhs, const AstCFuncType& rhs) { return l
class VEdgeType { class VEdgeType {
public: public:
// REMEMBER to edit the strings below too // REMEMBER to edit the strings below too
enum en { enum en : uint8_t {
// These must be in general -> most specific order, as we sort by it // These must be in general -> most specific order, as we sort by it
// in V3Const::visit AstSenTree // in V3Const::visit AstSenTree
ET_ILLEGAL, ET_ILLEGAL,
@ -315,7 +315,7 @@ inline bool operator==(VEdgeType::en lhs, const VEdgeType& rhs) { return lhs ==
class AstAttrType { class AstAttrType {
public: public:
// clang-format off // clang-format off
enum en { enum en: uint8_t {
ILLEGAL, ILLEGAL,
// //
DIM_BITS, // V3Const converts to constant DIM_BITS, // V3Const converts to constant
@ -396,7 +396,7 @@ inline bool operator==(AstAttrType::en lhs, const AstAttrType& rhs) { return lhs
class AstBasicDTypeKwd { class AstBasicDTypeKwd {
public: public:
enum en { enum en : uint8_t {
UNKNOWN, UNKNOWN,
BIT, BIT,
BYTE, BYTE,
@ -532,7 +532,7 @@ inline bool operator==(AstBasicDTypeKwd::en lhs, const AstBasicDTypeKwd& rhs) {
class VDirection { class VDirection {
public: public:
enum en { NONE, INPUT, OUTPUT, INOUT, REF, CONSTREF }; enum en : uint8_t { NONE, INPUT, OUTPUT, INOUT, REF, CONSTREF };
enum en m_e; enum en m_e;
inline VDirection() inline VDirection()
: m_e{NONE} {} : m_e{NONE} {}
@ -577,7 +577,7 @@ inline std::ostream& operator<<(std::ostream& os, const VDirection& rhs) {
/// Boolean or unknown /// Boolean or unknown
class VBoolOrUnknown { class VBoolOrUnknown {
public: public:
enum en { BU_FALSE = 0, BU_TRUE = 1, BU_UNKNOWN = 2, _ENUM_END }; enum en : uint8_t { BU_FALSE = 0, BU_TRUE = 1, BU_UNKNOWN = 2, _ENUM_END };
enum en m_e; enum en m_e;
// CONSTRUCTOR - note defaults to *UNKNOWN* // CONSTRUCTOR - note defaults to *UNKNOWN*
inline VBoolOrUnknown() inline VBoolOrUnknown()
@ -616,7 +616,7 @@ inline std::ostream& operator<<(std::ostream& os, const VBoolOrUnknown& rhs) {
/// Join type /// Join type
class VJoinType { class VJoinType {
public: public:
enum en { JOIN = 0, JOIN_ANY = 1, JOIN_NONE = 2 }; enum en : uint8_t { JOIN = 0, JOIN_ANY = 1, JOIN_NONE = 2 };
enum en m_e; enum en m_e;
// CONSTRUCTOR - note defaults to *UNKNOWN* // CONSTRUCTOR - note defaults to *UNKNOWN*
inline VJoinType() inline VJoinType()
@ -649,7 +649,7 @@ inline std::ostream& operator<<(std::ostream& os, const VJoinType& rhs) {
class AstVarType { class AstVarType {
public: public:
enum en { enum en : uint8_t {
UNKNOWN, UNKNOWN,
GPARAM, GPARAM,
LPARAM, LPARAM,
@ -717,7 +717,7 @@ inline std::ostream& operator<<(std::ostream& os, const AstVarType& rhs) {
class VBranchPred { class VBranchPred {
public: public:
enum en { BP_UNKNOWN = 0, BP_LIKELY, BP_UNLIKELY, _ENUM_END }; enum en : uint8_t { BP_UNKNOWN = 0, BP_LIKELY, BP_UNLIKELY, _ENUM_END };
enum en m_e; enum en m_e;
// CONSTRUCTOR - note defaults to *UNKNOWN* // CONSTRUCTOR - note defaults to *UNKNOWN*
inline VBranchPred() inline VBranchPred()
@ -758,7 +758,7 @@ inline std::ostream& operator<<(std::ostream& os, const VBranchPred& rhs) {
class VVarAttrClocker { class VVarAttrClocker {
public: public:
enum en { CLOCKER_UNKNOWN = 0, CLOCKER_YES, CLOCKER_NO, _ENUM_END }; enum en : uint8_t { CLOCKER_UNKNOWN = 0, CLOCKER_YES, CLOCKER_NO, _ENUM_END };
enum en m_e; enum en m_e;
// CONSTRUCTOR - note defaults to *UNKNOWN* // CONSTRUCTOR - note defaults to *UNKNOWN*
inline VVarAttrClocker() inline VVarAttrClocker()
@ -801,7 +801,7 @@ inline std::ostream& operator<<(std::ostream& os, const VVarAttrClocker& rhs) {
class VAlwaysKwd { class VAlwaysKwd {
public: public:
enum en { ALWAYS, ALWAYS_FF, ALWAYS_LATCH, ALWAYS_COMB }; enum en : uint8_t { ALWAYS, ALWAYS_FF, ALWAYS_LATCH, ALWAYS_COMB };
enum en m_e; enum en m_e;
inline VAlwaysKwd() inline VAlwaysKwd()
: m_e{ALWAYS} {} : m_e{ALWAYS} {}
@ -824,7 +824,7 @@ inline bool operator==(VAlwaysKwd::en lhs, const VAlwaysKwd& rhs) { return lhs =
class VCaseType { class VCaseType {
public: public:
enum en { CT_CASE, CT_CASEX, CT_CASEZ, CT_CASEINSIDE }; enum en : uint8_t { CT_CASE, CT_CASEX, CT_CASEZ, CT_CASEINSIDE };
enum en m_e; enum en m_e;
inline VCaseType() inline VCaseType()
: m_e{CT_CASE} {} : m_e{CT_CASE} {}
@ -843,7 +843,7 @@ inline bool operator==(VCaseType::en lhs, const VCaseType& rhs) { return lhs ==
class AstDisplayType { class AstDisplayType {
public: public:
enum en { DT_DISPLAY, DT_WRITE, DT_INFO, DT_ERROR, DT_WARNING, DT_FATAL }; enum en : uint8_t { DT_DISPLAY, DT_WRITE, DT_INFO, DT_ERROR, DT_WARNING, DT_FATAL };
enum en m_e; enum en m_e;
inline AstDisplayType() inline AstDisplayType()
: m_e{DT_DISPLAY} {} : m_e{DT_DISPLAY} {}
@ -875,7 +875,7 @@ inline bool operator==(AstDisplayType::en lhs, const AstDisplayType& rhs) {
class VDumpCtlType { class VDumpCtlType {
public: public:
enum en { FILE, VARS, ALL, FLUSH, LIMIT, OFF, ON }; enum en : uint8_t { FILE, VARS, ALL, FLUSH, LIMIT, OFF, ON };
enum en m_e; enum en m_e;
inline VDumpCtlType() inline VDumpCtlType()
: m_e{ON} {} : m_e{ON} {}
@ -901,7 +901,7 @@ inline bool operator==(VDumpCtlType::en lhs, const VDumpCtlType& rhs) { return l
class VParseRefExp { class VParseRefExp {
public: public:
enum en { enum en : uint8_t {
PX_NONE, // Used in V3LinkParse only PX_NONE, // Used in V3LinkParse only
PX_ROOT, PX_ROOT,
PX_TEXT // Unknown ID component PX_TEXT // Unknown ID component
@ -1014,7 +1014,7 @@ inline std::ostream& operator<<(std::ostream& os, const VNumRange& rhs) {
class VUseType { class VUseType {
public: public:
enum en { enum en : uint8_t {
IMP_INCLUDE, // Implementation (.cpp) needs an include IMP_INCLUDE, // Implementation (.cpp) needs an include
INT_INCLUDE, // Interface (.h) needs an include INT_INCLUDE, // Interface (.h) needs an include
IMP_FWD_CLASS, // Implementation (.cpp) needs a forward class declaration IMP_FWD_CLASS, // Implementation (.cpp) needs a forward class declaration
@ -1262,7 +1262,14 @@ public:
class AstNRelinker { class AstNRelinker {
protected: protected:
friend class AstNode; friend class AstNode;
enum RelinkWhatEn { RELINK_BAD, RELINK_NEXT, RELINK_OP1, RELINK_OP2, RELINK_OP3, RELINK_OP4 }; enum RelinkWhatEn : uint8_t {
RELINK_BAD,
RELINK_NEXT,
RELINK_OP1,
RELINK_OP2,
RELINK_OP3,
RELINK_OP4
};
AstNode* m_oldp = nullptr; // The old node that was linked to this point in the tree AstNode* m_oldp = nullptr; // The old node that was linked to this point in the tree
AstNode* m_backp = nullptr; AstNode* m_backp = nullptr;
RelinkWhatEn m_chg = RELINK_BAD; RelinkWhatEn m_chg = RELINK_BAD;

View File

@ -47,7 +47,7 @@ private:
AstUser3InUse m_inuser3; AstUser3InUse m_inuser3;
// TYPES // TYPES
enum CleanState { CS_UNKNOWN, CS_CLEAN, CS_DIRTY }; enum CleanState : uint8_t { CS_UNKNOWN, CS_CLEAN, CS_DIRTY };
// STATE // STATE
AstNodeModule* m_modp = nullptr; AstNodeModule* m_modp = nullptr;

View File

@ -171,7 +171,7 @@ private:
// AstUser4InUse part of V3Hashed // AstUser4InUse part of V3Hashed
// STATE // STATE
typedef enum { STATE_IDLE, STATE_HASH, STATE_DUP } CombineState; typedef enum : uint8_t { STATE_IDLE, STATE_HASH, STATE_DUP } CombineState;
VDouble0 m_statCombs; // Statistic tracking VDouble0 m_statCombs; // Statistic tracking
CombineState m_state = STATE_IDLE; // Major state CombineState m_state = STATE_IDLE; // Major state
AstNodeModule* m_modp = nullptr; // Current module AstNodeModule* m_modp = nullptr; // Current module

View File

@ -2528,7 +2528,7 @@ private:
public: public:
// Processing Mode Enum // Processing Mode Enum
enum ProcMode { enum ProcMode : uint8_t {
PROC_PARAMS, PROC_PARAMS,
PROC_GENERATE, PROC_GENERATE,
PROC_LIVE, PROC_LIVE,

View File

@ -86,7 +86,7 @@ private:
AstUser4InUse m_inuser4; AstUser4InUse m_inuser4;
AstUser5InUse m_inuser5; AstUser5InUse m_inuser5;
enum VarUsage { VU_NONE = 0, VU_DLY = 1, VU_NONDLY = 2 }; enum VarUsage : uint8_t { VU_NONE = 0, VU_DLY = 1, VU_NONDLY = 2 };
// STATE // STATE
AstActive* m_activep = nullptr; // Current activate AstActive* m_activep = nullptr; // Current activate

View File

@ -75,7 +75,7 @@ public:
char fmtLetter); char fmtLetter);
void emitVarDecl(const AstVar* nodep, const string& prefixIfImp); void emitVarDecl(const AstVar* nodep, const string& prefixIfImp);
typedef enum { typedef enum : uint8_t {
EVL_CLASS_IO, EVL_CLASS_IO,
EVL_CLASS_SIG, EVL_CLASS_SIG,
EVL_CLASS_TEMP, EVL_CLASS_TEMP,

View File

@ -35,7 +35,7 @@
class V3ErrorCode { class V3ErrorCode {
public: public:
// clang-format off // clang-format off
enum en { enum en: uint8_t {
EC_MIN=0, // Keep first EC_MIN=0, // Keep first
// //
EC_INFO, // General information out EC_INFO, // General information out

View File

@ -103,8 +103,8 @@ class V3OutFormatter {
// TYPES // TYPES
enum MiscConsts { MAXSPACE = 80 }; // After this indent, stop indenting more enum MiscConsts { MAXSPACE = 80 }; // After this indent, stop indenting more
public: public:
enum AlignClass { AL_AUTO = 0, AL_STATIC = 1 }; enum AlignClass : uint8_t { AL_AUTO = 0, AL_STATIC = 1 };
enum Language { enum Language : uint8_t {
LA_C = 0, LA_C = 0,
LA_VERILOG = 1, LA_VERILOG = 1,
LA_MK = 2, LA_MK = 2,

View File

@ -43,7 +43,7 @@ class V3HierBlockPlan;
class VWidthMinUsage { class VWidthMinUsage {
public: public:
enum en { LINT_WIDTH, MATCHES_WIDTH, VERILOG_WIDTH }; enum en : uint8_t { LINT_WIDTH, MATCHES_WIDTH, VERILOG_WIDTH };
enum en m_e; enum en m_e;
inline VWidthMinUsage() inline VWidthMinUsage()
: m_e{LINT_WIDTH} {} : m_e{LINT_WIDTH} {}

View File

@ -47,7 +47,7 @@ typedef bool (*V3EdgeFuncP)(const V3GraphEdge* edgep);
class GraphWay { class GraphWay {
public: public:
enum en { enum en : uint8_t {
FORWARD = 0, FORWARD = 0,
REVERSE = 1, REVERSE = 1,
NUM_WAYS = 2 // NUM_WAYS is not an actual way, it's typically NUM_WAYS = 2 // NUM_WAYS is not an actual way, it's typically
@ -277,7 +277,7 @@ class V3GraphEdge {
// Wires/variables aren't edges. Edges have only a single to/from vertex // Wires/variables aren't edges. Edges have only a single to/from vertex
public: public:
// ENUMS // ENUMS
enum Cutable { NOT_CUTABLE = false, CUTABLE = true }; // For passing to V3GraphEdge enum Cutable : uint8_t { NOT_CUTABLE = false, CUTABLE = true }; // For passing to V3GraphEdge
protected: protected:
friend class V3Graph; friend class V3Graph;
friend class V3GraphVertex; friend class V3GraphVertex;

View File

@ -58,7 +58,7 @@ private:
AstUser4InUse m_inuser4; AstUser4InUse m_inuser4;
// For the user2 field: // For the user2 field:
enum { enum : uint8_t {
CIL_NOTHARD = 0, // Inline not supported CIL_NOTHARD = 0, // Inline not supported
CIL_NOTSOFT, // Don't inline unless user overrides CIL_NOTSOFT, // Don't inline unless user overrides
CIL_MAYBE, // Might inline CIL_MAYBE, // Might inline

View File

@ -30,7 +30,7 @@
//! file). //! file).
class V3LangCode { class V3LangCode {
public: public:
enum en { enum en : uint8_t {
L_ERROR, // Must be first. L_ERROR, // Must be first.
L1364_1995, L1364_1995,
L1364_2001, L1364_2001,

View File

@ -134,7 +134,7 @@ private:
public: public:
// ENUMS // ENUMS
// In order of priority, compute first ... compute last // In order of priority, compute first ... compute last
enum SAMNum { SAMN_MODPORT, SAMN_IFTOP, SAMN__MAX }; // Values for m_scopeAliasMap enum SAMNum : uint8_t { SAMN_MODPORT, SAMN_IFTOP, SAMN__MAX }; // Values for m_scopeAliasMap
private: private:
// TYPES // TYPES
@ -1687,7 +1687,7 @@ private:
AstUser5InUse m_inuser5; AstUser5InUse m_inuser5;
// TYPES // TYPES
enum DotPosition { enum DotPosition : uint8_t {
DP_NONE = 0, // Not under a DOT DP_NONE = 0, // Not under a DOT
DP_PACKAGE, // {package}:: DOT DP_PACKAGE, // {package}:: DOT
DP_SCOPE, // [DOT...] {scope-or-var} DOT DP_SCOPE, // [DOT...] {scope-or-var} DOT

View File

@ -25,7 +25,7 @@
//============================================================================ //============================================================================
enum VLinkDotStep { LDS_PRIMARY, LDS_PARAMED, LDS_ARRAYED, LDS_SCOPED }; enum VLinkDotStep : uint8_t { LDS_PRIMARY, LDS_PARAMED, LDS_ARRAYED, LDS_SCOPED };
class V3LinkDot { class V3LinkDot {
private: private:

View File

@ -50,7 +50,7 @@
class LinkIncVisitor : public AstNVisitor { class LinkIncVisitor : public AstNVisitor {
private: private:
// TYPES // TYPES
enum InsertMode { enum InsertMode : uint8_t {
IM_BEFORE, // Pointing at statement ref is in, insert before this IM_BEFORE, // Pointing at statement ref is in, insert before this
IM_AFTER, // Pointing at last inserted stmt, insert after IM_AFTER, // Pointing at last inserted stmt, insert after
IM_WHILE_PRECOND // Pointing to for loop, add to body end IM_WHILE_PRECOND // Pointing to for loop, add to body end

View File

@ -1625,7 +1625,12 @@ void V3Options::parseOptsFile(FileLine* fl, const string& filename, bool rel) {
std::vector<string> args; std::vector<string> args;
// Parse file using a state machine, taking into account quoted strings and escaped chars // Parse file using a state machine, taking into account quoted strings and escaped chars
enum state { ST_IN_OPTION, ST_ESCAPED_CHAR, ST_IN_QUOTED_STR, ST_IN_DOUBLE_QUOTED_STR }; enum state : uint8_t {
ST_IN_OPTION,
ST_ESCAPED_CHAR,
ST_IN_QUOTED_STR,
ST_IN_DOUBLE_QUOTED_STR
};
state st = ST_IN_OPTION; state st = ST_IN_OPTION;
state last_st = ST_IN_OPTION; state last_st = ST_IN_OPTION;

View File

@ -37,7 +37,7 @@ class VOptionBool {
// Class to track options that are either not specified (and default // Class to track options that are either not specified (and default
// true/false), versus user setting the option to true or false // true/false), versus user setting the option to true or false
public: public:
enum en { OPT_DEFAULT_FALSE = 0, OPT_DEFAULT_TRUE, OPT_TRUE, OPT_FALSE, _ENUM_END }; enum en : uint8_t { OPT_DEFAULT_FALSE = 0, OPT_DEFAULT_TRUE, OPT_TRUE, OPT_FALSE, _ENUM_END };
enum en m_e; enum en m_e;
inline VOptionBool() inline VOptionBool()
: m_e{OPT_DEFAULT_FALSE} {} : m_e{OPT_DEFAULT_FALSE} {}
@ -71,7 +71,7 @@ inline std::ostream& operator<<(std::ostream& os, const VOptionBool& rhs) {
class VTimescale { class VTimescale {
public: public:
enum en { enum en : uint8_t {
// clang-format off // clang-format off
TS_100S = 0, TS_10S = 1, TS_1S = 2, TS_100S = 0, TS_10S = 1, TS_1S = 2,
TS_100MS = 3, TS_10MS = 4, TS_1MS = 5, TS_100MS = 3, TS_10MS = 4, TS_1MS = 5,
@ -83,7 +83,7 @@ public:
NONE = 18, NONE = 18,
_ENUM_END _ENUM_END
}; };
enum { TS_DEFAULT = TS_1PS }; enum : uint8_t { TS_DEFAULT = TS_1PS };
enum en m_e; enum en m_e;
// CONSTRUCTOR // CONSTRUCTOR
inline VTimescale() inline VTimescale()
@ -169,7 +169,7 @@ inline std::ostream& operator<<(std::ostream& os, const VTimescale& rhs) {
class TraceFormat { class TraceFormat {
public: public:
enum en { VCD = 0, FST } m_e; enum en : uint8_t { VCD = 0, FST } m_e;
// cppcheck-suppress noExplicitConstructor // cppcheck-suppress noExplicitConstructor
inline TraceFormat(en _e = VCD) inline TraceFormat(en _e = VCD)
: m_e{_e} {} : m_e{_e} {}

View File

@ -182,7 +182,7 @@ inline std::ostream& operator<<(std::ostream& lhs, const OrderMoveDomScope& rhs)
// Order information stored under each AstNode::user1p()... // Order information stored under each AstNode::user1p()...
// Types of vertex we can create // Types of vertex we can create
enum WhichVertex { WV_STD, WV_PRE, WV_PORD, WV_POST, WV_SETL, WV_MAX }; enum WhichVertex : uint8_t { WV_STD, WV_PRE, WV_PORD, WV_POST, WV_SETL, WV_MAX };
class OrderUser { class OrderUser {
// Stored in AstVarScope::user1p, a list of all the various vertices // Stored in AstVarScope::user1p, a list of all the various vertices
@ -683,7 +683,7 @@ private:
VDouble0 m_statCut[OrderVEdgeType::_ENUM_END]; // Count of each edge type cut VDouble0 m_statCut[OrderVEdgeType::_ENUM_END]; // Count of each edge type cut
// TYPES // TYPES
enum VarUsage { VU_NONE = 0, VU_CON = 1, VU_GEN = 2 }; enum VarUsage : uint8_t { VU_NONE = 0, VU_CON = 1, VU_GEN = 2 };
// METHODS // METHODS
VL_DEBUG_FUNC; // Declare debug() VL_DEBUG_FUNC; // Declare debug()
@ -752,7 +752,7 @@ private:
MTaskState() {} MTaskState() {}
}; };
void processMTasks(); void processMTasks();
typedef enum { LOGIC_INITIAL, LOGIC_SETTLE } InitialLogicE; typedef enum : uint8_t { LOGIC_INITIAL, LOGIC_SETTLE } InitialLogicE;
void processMTasksInitial(InitialLogicE logic_type); void processMTasksInitial(InitialLogicE logic_type);
string cfuncName(AstNodeModule* modp, AstSenTree* domainp, AstScope* scopep, string cfuncName(AstNodeModule* modp, AstSenTree* domainp, AstScope* scopep,

View File

@ -53,7 +53,7 @@ class OrderMoveDomScope;
//###################################################################### //######################################################################
enum OrderWeights { enum OrderWeights : uint8_t {
WEIGHT_INPUT = 1, // Low weight just so dot graph looks nice WEIGHT_INPUT = 1, // Low weight just so dot graph looks nice
WEIGHT_COMBO = 1, // Breakable combo logic WEIGHT_COMBO = 1, // Breakable combo logic
WEIGHT_POST = 2, // Post-delayed used var WEIGHT_POST = 2, // Post-delayed used var
@ -63,7 +63,7 @@ enum OrderWeights {
}; // High weight just so dot graph looks nice }; // High weight just so dot graph looks nice
struct OrderVEdgeType { struct OrderVEdgeType {
enum en { enum en : uint8_t {
VERTEX_UNKNOWN = 0, VERTEX_UNKNOWN = 0,
VERTEX_INPUTS, VERTEX_INPUTS,
VERTEX_LOGIC, VERTEX_LOGIC,
@ -322,7 +322,7 @@ public:
//--- Following only under the move graph, not the main graph //--- Following only under the move graph, not the main graph
class OrderMoveVertex : public V3GraphVertex { class OrderMoveVertex : public V3GraphVertex {
typedef enum { POM_WAIT, POM_READY, POM_MOVED } OrderMState; typedef enum : uint8_t { POM_WAIT, POM_READY, POM_MOVED } OrderMState;
OrderLogicVertex* m_logicp; OrderLogicVertex* m_logicp;
OrderMState m_state; // Movement state OrderMState m_state; // Movement state

View File

@ -137,7 +137,7 @@ string V3Os::filenameNonExt(const string& filename) {
string V3Os::filenameSubstitute(const string& filename) { string V3Os::filenameSubstitute(const string& filename) {
string out; string out;
enum { NONE, PAREN, CURLY } brackets = NONE; enum : uint8_t { NONE, PAREN, CURLY } brackets = NONE;
for (string::size_type pos = 0; pos < filename.length(); ++pos) { for (string::size_type pos = 0; pos < filename.length(); ++pos) {
if ((filename[pos] == '$') && (pos + 1 < filename.length())) { if ((filename[pos] == '$') && (pos + 1 < filename.length())) {
switch (filename[pos + 1]) { switch (filename[pos + 1]) {

View File

@ -37,9 +37,9 @@ class V3Lexer;
//====================================================================== //======================================================================
// Types (between parser & lexer) // Types (between parser & lexer)
typedef enum { uniq_NONE, uniq_UNIQUE, uniq_UNIQUE0, uniq_PRIORITY } V3UniqState; typedef enum : uint8_t { uniq_NONE, uniq_UNIQUE, uniq_UNIQUE0, uniq_PRIORITY } V3UniqState;
typedef enum { iprop_NONE, iprop_CONTEXT, iprop_PURE } V3ImportProperty; typedef enum : uint8_t { iprop_NONE, iprop_CONTEXT, iprop_PURE } V3ImportProperty;
//============================================================================ //============================================================================
// Member qualifiers // Member qualifiers

View File

@ -122,7 +122,7 @@ public:
int m_lastLineno = 0; // Last line number (stall detection) int m_lastLineno = 0; // Last line number (stall detection)
int m_tokensOnLine = 0; // Number of tokens on line (stall detection) int m_tokensOnLine = 0; // Number of tokens on line (stall detection)
enum ProcState { enum ProcState : uint8_t {
ps_TOP, ps_TOP,
ps_DEFNAME_UNDEF, ps_DEFNAME_UNDEF,
ps_DEFNAME_DEFINE, ps_DEFNAME_DEFINE,

View File

@ -85,7 +85,7 @@ private:
// (and output for non-delayed assignments) // (and output for non-delayed assignments)
// AstVar(Scope)::user2() -> AstCont*. Output value of variable (delayed assignments) // AstVar(Scope)::user2() -> AstCont*. Output value of variable (delayed assignments)
enum VarUsage { VU_NONE = 0, VU_LV = 1, VU_RV = 2, VU_LVDLY = 4 }; enum VarUsage : uint8_t { VU_NONE = 0, VU_LV = 1, VU_RV = 2, VU_LVDLY = 4 };
// STATE // STATE
// Major mode // Major mode

View File

@ -321,7 +321,7 @@ private:
AstUser2InUse m_inuser2; AstUser2InUse m_inuser2;
// TYPES // TYPES
enum InsertMode { enum InsertMode : uint8_t {
IM_BEFORE, // Pointing at statement ref is in, insert before this IM_BEFORE, // Pointing at statement ref is in, insert before this
IM_AFTER, // Pointing at last inserted stmt, insert after IM_AFTER, // Pointing at last inserted stmt, insert after
IM_WHILE_PRECOND // Pointing to for loop, add to body end IM_WHILE_PRECOND // Pointing to for loop, add to body end

View File

@ -329,7 +329,7 @@ class TristateVisitor : public TristateBaseVisitor {
// TYPES // TYPES
typedef std::vector<AstVarRef*> RefVec; typedef std::vector<AstVarRef*> RefVec;
typedef std::map<AstVar*, RefVec*> VarMap; typedef std::map<AstVar*, RefVec*> VarMap;
enum { enum : uint8_t {
U2_GRAPHING = 1, // bit[0] if did m_graphing visit U2_GRAPHING = 1, // bit[0] if did m_graphing visit
U2_NONGRAPH = 2, // bit[1] if did !m_graphing visit U2_NONGRAPH = 2, // bit[1] if did !m_graphing visit
U2_BOTH = 3 U2_BOTH = 3

View File

@ -43,7 +43,7 @@ class UndrivenVarEntry {
std::vector<bool> m_wholeFlags; // Used/Driven on whole vector std::vector<bool> m_wholeFlags; // Used/Driven on whole vector
std::vector<bool> m_bitFlags; // Used/Driven on each subbit std::vector<bool> m_bitFlags; // Used/Driven on each subbit
enum { FLAG_USED = 0, FLAG_DRIVEN = 1, FLAGS_PER_BIT = 2 }; enum : uint8_t { FLAG_USED = 0, FLAG_DRIVEN = 1, FLAGS_PER_BIT = 2 };
VL_DEBUG_FUNC; // Declare debug() VL_DEBUG_FUNC; // Declare debug()
@ -70,7 +70,7 @@ private:
bool drivenFlag(int bit) const { bool drivenFlag(int bit) const {
return m_wholeFlags[FLAG_DRIVEN] || m_bitFlags[bit * FLAGS_PER_BIT + FLAG_DRIVEN]; return m_wholeFlags[FLAG_DRIVEN] || m_bitFlags[bit * FLAGS_PER_BIT + FLAG_DRIVEN];
} }
enum BitNamesWhich { BN_UNUSED, BN_UNDRIVEN, BN_BOTH }; enum BitNamesWhich : uint8_t { BN_UNUSED, BN_UNDRIVEN, BN_BOTH };
string bitNames(BitNamesWhich which) { string bitNames(BitNamesWhich which) {
string bits; string bits;
bool prev = false; bool prev = false;

View File

@ -81,12 +81,16 @@
//###################################################################### //######################################################################
enum Stage { PRELIM = 1, FINAL = 2, BOTH = 3 }; // Numbers are a bitmask <0>=prelim, <1>=final enum Stage : uint8_t {
PRELIM = 1,
FINAL = 2,
BOTH = 3
}; // Numbers are a bitmask <0>=prelim, <1>=final
std::ostream& operator<<(std::ostream& str, const Stage& rhs) { std::ostream& operator<<(std::ostream& str, const Stage& rhs) {
return str << ("-PFB"[static_cast<int>(rhs)]); return str << ("-PFB"[static_cast<int>(rhs)]);
} }
enum Determ { enum Determ : uint8_t {
SELF, // Self-determined SELF, // Self-determined
CONTEXT, // Context-determined CONTEXT, // Context-determined
ASSIGN // Assignment-like where sign comes from RHS only ASSIGN // Assignment-like where sign comes from RHS only
@ -197,7 +201,7 @@ private:
TableMap m_tableMap; // Created tables so can remove duplicates TableMap m_tableMap; // Created tables so can remove duplicates
// ENUMS // ENUMS
enum ExtendRule { enum ExtendRule : uint8_t {
EXTEND_EXP, // Extend if expect sign and node signed, e.g. node=y in ADD(x,y), "x + y" EXTEND_EXP, // Extend if expect sign and node signed, e.g. node=y in ADD(x,y), "x + y"
EXTEND_ZERO, // Extend with zeros. e.g. node=y in EQ(x,y), "x == y" EXTEND_ZERO, // Extend with zeros. e.g. node=y in EQ(x,y), "x == y"
EXTEND_LHS, // Extend with sign if node signed. e.g. node=y in ASSIGN(y,x), "x = y" EXTEND_LHS, // Extend with sign if node signed. e.g. node=y in ASSIGN(y,x), "x = y"
@ -2526,7 +2530,14 @@ private:
nodep->dtypeSetSigned32(); // Guess on error nodep->dtypeSetSigned32(); // Guess on error
} }
void methodCallUnpack(AstMethodCall* nodep, AstUnpackArrayDType* adtypep) { void methodCallUnpack(AstMethodCall* nodep, AstUnpackArrayDType* adtypep) {
enum { UNKNOWN = 0, ARRAY_OR, ARRAY_AND, ARRAY_XOR, ARRAY_SUM, ARRAY_PRODUCT } methodId; enum : uint8_t {
UNKNOWN = 0,
ARRAY_OR,
ARRAY_AND,
ARRAY_XOR,
ARRAY_SUM,
ARRAY_PRODUCT
} methodId;
methodId = UNKNOWN; methodId = UNKNOWN;
if (nodep->name() == "or") { if (nodep->name() == "or") {

View File

@ -340,12 +340,12 @@ sub write_type_enum {
sub write_types { sub write_types {
my $fh = open_file(@_); my $fh = open_file(@_);
printf $fh " enum en {\n"; printf $fh " enum en : uint16_t {\n";
(my $final, undef) = write_type_enum($fh, "Node", 0, {}, "concrete-enum", 2); (my $final, undef) = write_type_enum($fh, "Node", 0, {}, "concrete-enum", 2);
printf $fh " _ENUM_END = $final\n"; printf $fh " _ENUM_END = $final\n";
printf $fh " };\n"; printf $fh " };\n";
printf $fh " enum bounds {\n"; printf $fh " enum bounds : uint16_t {\n";
write_type_enum($fh, "Node", 0, {}, "abstract-enum", 2); write_type_enum($fh, "Node", 0, {}, "abstract-enum", 2);
printf $fh " _BOUNDS_END\n"; printf $fh " _BOUNDS_END\n";
printf $fh " };\n"; printf $fh " };\n";