// -*- mode: C++; c-file-style: "cc-mode" -*- //************************************************************************* // // Code available from: https://verilator.org // // Copyright 2024 by Wilson Snyder. This program is free software; you can // redistribute it and/or modify it under the terms of either the GNU Lesser // General Public License Version 3 or the Perl Artistic License Version 2.0. // SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0 // //************************************************************************* /// /// \file /// \brief Verilated randomization header /// /// This file is included automatically by Verilator in some of the C++ files /// it generates if randomization features are used. /// /// This file is not part of the Verilated public-facing API. /// It is only for internal use. /// /// See the internals documentation docs/internals.rst for details. /// //************************************************************************* #ifndef VERILATOR_VERILATED_RANDOM_H_ #define VERILATOR_VERILATED_RANDOM_H_ #include "verilated.h" #include #include //============================================================================= // VlRandomExpr and subclasses represent expressions for the constraint solver. class ArrayInfo final { public: const std::string m_name; // Name of the array variable, including index notation (e.g., arr[2][1]) void* const m_datap; // Reference to the array variable data const int m_index; // Flattened (1D) index of the array element const std::vector m_indices; // Multi-dimensional indices of the array element const std::vector m_idxWidths; // Multi-dimensional indices' bit widths ArrayInfo(const std::string& name, void* datap, int index, const std::vector& indices, const std::vector& idxWidths) : m_name(name) , m_datap(datap) , m_index(index) , m_indices(indices) , m_idxWidths(idxWidths) {} }; using ArrayInfoMap = std::map>; class VlRandomVar VL_NOT_FINAL { const char* const m_name; // Variable name void* const m_datap; // Reference to variable data const int m_width; // Variable width in bits const int m_dimension; //Variable dimension, default is 0 const std::uint32_t m_randModeIdx; // rand_mode index public: VlRandomVar(const char* name, int width, void* datap, int dimension, std::uint32_t randModeIdx) : m_name{name} , m_datap{datap} , m_width{width} , m_dimension{dimension} , m_randModeIdx{randModeIdx} {} virtual ~VlRandomVar() = default; const char* name() const { return m_name; } int width() const { return m_width; } int dimension() const { return m_dimension; } virtual void* datap(int idx) const { return m_datap; } std::uint32_t randModeIdx() const { return m_randModeIdx; } bool randModeIdxNone() const { return randModeIdx() == std::numeric_limits::max(); } bool set(const std::string& idx, const std::string& val) const; virtual void emitGetValue(std::ostream& s) const; virtual void emitExtract(std::ostream& s, int i) const; virtual void emitType(std::ostream& s) const; virtual int totalWidth() const; mutable std::shared_ptr m_arrVarsRefp; void setArrayInfo(const std::shared_ptr& arrVarsRefp) const { m_arrVarsRefp = arrVarsRefp; } mutable std::map count_cache; int countMatchingElements(const ArrayInfoMap& arr_vars, const std::string& base_name) const { if (VL_LIKELY(count_cache.find(base_name) != count_cache.end())) return count_cache[base_name]; int count = 0; for (int index = 0; arr_vars.find(base_name + std::to_string(index)) != arr_vars.end(); ++index) { ++count; } count_cache[base_name] = count; return count; } }; template class VlRandomArrayVarTemplate final : public VlRandomVar { public: VlRandomArrayVarTemplate(const char* name, int width, void* datap, int dimension, std::uint32_t randModeIdx) : VlRandomVar{name, width, datap, dimension, randModeIdx} {} void* datap(int idx) const override { const std::string indexed_name = name() + std::to_string(idx); const auto it = m_arrVarsRefp->find(indexed_name); if (it != m_arrVarsRefp->end()) { return it->second->m_datap; } else { VL_FATAL_MT(__FILE__, __LINE__, "randomize", "indexed_name not found in m_arr_vars"); return nullptr; } } void emitSelect(std::ostream& s, const std::vector& indices, const std::vector& idxWidths) const { for (size_t idx = 0; idx < indices.size(); ++idx) s << "(select "; s << name(); for (size_t idx = 0; idx < indices.size(); ++idx) { s << " #x"; const size_t bit_width = idxWidths[idx]; for (int j = bit_width - 4; j >= 0; j -= 4) { s << "0123456789abcdef"[(indices[idx] >> j) & 0xf]; } s << ")"; } } void emitGetValue(std::ostream& s) const override { const int elementCounts = countMatchingElements(*m_arrVarsRefp, name()); for (int i = 0; i < elementCounts; i++) { const std::string indexed_name = name() + std::to_string(i); const auto it = m_arrVarsRefp->find(indexed_name); if (it != m_arrVarsRefp->end()) { const std::vector& indices = it->second->m_indices; const std::vector& idxWidths = it->second->m_idxWidths; emitSelect(s, indices, idxWidths); } else { VL_FATAL_MT(__FILE__, __LINE__, "randomize", "indexed_name not found in m_arr_vars"); } } } void emitType(std::ostream& s) const override { const std::string indexed_name = name() + std::to_string(0); const auto it = m_arrVarsRefp->find(indexed_name); if (it != m_arrVarsRefp->end()) { const std::vector& idxWidths = it->second->m_idxWidths; if (dimension() > 0) { for (int i = 0; i < dimension(); ++i) { s << "(Array (_ BitVec " << idxWidths[i] << ") "; } s << "(_ BitVec " << width() << ")"; for (int i = 0; i < dimension(); ++i) { s << ")"; } } } else { VL_FATAL_MT(__FILE__, __LINE__, "randomize", "indexed_name not found in m_arr_vars"); } } int totalWidth() const override { const int elementCounts = countMatchingElements(*m_arrVarsRefp, name()); return width() * elementCounts; } void emitExtract(std::ostream& s, int i) const override { const int j = i / width(); i = i % width(); s << " ((_ extract " << i << ' ' << i << ')'; const std::string indexed_name = name() + std::to_string(j); const auto it = m_arrVarsRefp->find(indexed_name); if (it != m_arrVarsRefp->end()) { const std::vector& indices = it->second->m_indices; const std::vector& idxWidths = it->second->m_idxWidths; emitSelect(s, indices, idxWidths); } else { VL_FATAL_MT(__FILE__, __LINE__, "randomize", "indexed_name not found in m_arr_vars"); } s << ')'; } }; //============================================================================= // VlRandomizer is the object holding constraints and variable references. class VlRandomizer final { // MEMBERS std::vector m_constraints; // Solver-dependent constraints std::map> m_vars; // Solver-dependent // variables ArrayInfoMap m_arr_vars; // Tracks each element in array structures for iteration std::map seen_values; // Record String Index to avoid conflicts const VlQueue* m_randmode; // rand_mode state; // PRIVATE METHODS void randomConstraint(std::ostream& os, VlRNG& rngr, int bits); bool parseSolution(std::iostream& file); public: // CONSTRUCTORS VlRandomizer() = default; ~VlRandomizer() = default; // METHODS // Finds the next solution satisfying the constraints bool next(VlRNG& rngr); template typename std::enable_if::value>::type process_key(const T_Key& key, std::string& indexed_name, size_t& integral_index, const std::string& base_name, size_t& idx_width) { integral_index = static_cast(key); indexed_name = base_name + "[" + std::to_string(integral_index) + "]"; idx_width = sizeof(T_Key) * 8; } template typename std::enable_if::value>::type process_key(const T_Key& key, std::string& indexed_name, size_t& integral_index, const std::string& base_name, size_t& idx_width) { integral_index = string_to_integral(key); indexed_name = base_name + "[" + std::to_string(integral_index) + "]"; idx_width = 64; // 64-bit mask } template typename std::enable_if::value && !std::is_same::value>::type process_key(const T_Key& key, std::string& indexed_name, size_t& integral_index, const std::string& base_name, size_t& idx_width) { VL_FATAL_MT(__FILE__, __LINE__, "randomize", "Unsupported: Only integral and string index of associative array is " "supported currently."); } uint64_t string_to_integral(const std::string& str) { uint64_t result = 0; for (char c : str) { result = (result << 8) | static_cast(c); } #ifdef VL_DEBUG if (seen_values.count(result) > 0 && seen_values[result] != str) VL_WARN_MT(__FILE__, __LINE__, "randomize", "Conflict detected: Different strings mapped to the same 64-bit index."); seen_values[result] = str; #endif return result; } template void write_var(T& var, int width, const char* name, int dimension, std::uint32_t randmodeIdx = std::numeric_limits::max()) { if (m_vars.find(name) != m_vars.end()) return; // TODO: make_unique once VlRandomizer is per-instance not per-ref m_vars[name] = std::make_shared(name, width, &var, dimension, randmodeIdx); } template void write_var(VlQueue& var, int width, const char* name, int dimension, std::uint32_t randmodeIdx = std::numeric_limits::max()) { if (m_vars.find(name) != m_vars.end()) return; m_vars[name] = std::make_shared>>( name, width, &var, dimension, randmodeIdx); if (dimension > 0) { idx = 0; record_arr_table(var, name, dimension, {}, {}); } } template void write_var(VlUnpacked& var, int width, const char* name, int dimension, std::uint32_t randmodeIdx = std::numeric_limits::max()) { if (m_vars.find(name) != m_vars.end()) return; m_vars[name] = std::make_shared>>( name, width, &var, dimension, randmodeIdx); if (dimension > 0) { idx = 0; record_arr_table(var, name, dimension, {}, {}); } } template void write_var(VlAssocArray& var, int width, const char* name, int dimension, std::uint32_t randmodeIdx = std::numeric_limits::max()) { if (m_vars.find(name) != m_vars.end()) return; m_vars[name] = std::make_shared>>( name, width, &var, dimension, randmodeIdx); if (dimension > 0) { idx = 0; record_arr_table(var, name, dimension, {}, {}); } } int idx; std::string generateKey(const std::string& name, int idx) { if (!name.empty() && name[0] == '\\') { const size_t space_pos = name.find(' '); return (space_pos != std::string::npos ? name.substr(0, space_pos) : name) + std::to_string(idx); } const size_t bracket_pos = name.find('['); return (bracket_pos != std::string::npos ? name.substr(0, bracket_pos) : name) + std::to_string(idx); } template void record_arr_table(T& var, const std::string name, int dimension, std::vector indices, std::vector idxWidths) { const std::string key = generateKey(name, idx); m_arr_vars[key] = std::make_shared(name, &var, idx, indices, idxWidths); ++idx; } template void record_arr_table(VlQueue& var, const std::string name, int dimension, std::vector indices, std::vector idxWidths) { if ((dimension > 0) && (var.size() != 0)) { idxWidths.push_back(32); for (size_t i = 0; i < var.size(); ++i) { const std::string indexed_name = name + "[" + std::to_string(i) + "]"; indices.push_back(i); record_arr_table(var.atWrite(i), indexed_name, dimension - 1, indices, idxWidths); indices.pop_back(); } } } template void record_arr_table(VlUnpacked& var, const std::string name, int dimension, std::vector indices, std::vector idxWidths) { if ((dimension > 0) && (N_Depth != 0)) { idxWidths.push_back(32); for (size_t i = 0; i < N_Depth; ++i) { const std::string indexed_name = name + "[" + std::to_string(i) + "]"; indices.push_back(i); record_arr_table(var.operator[](i), indexed_name, dimension - 1, indices, idxWidths); indices.pop_back(); } } } template void record_arr_table(VlAssocArray& var, const std::string name, int dimension, std::vector indices, std::vector idxWidths) { if ((dimension > 0) && (var.size() != 0)) { for (auto it = var.begin(); it != var.end(); ++it) { const T_Key& key = it->first; const T_Value& value = it->second; std::string indexed_name; size_t integral_index; size_t idx_width; process_key(key, indexed_name, integral_index, name, idx_width); idxWidths.push_back(idx_width); indices.push_back(integral_index); record_arr_table(var.at(key), indexed_name, dimension - 1, indices, idxWidths); idxWidths.pop_back(); indices.pop_back(); } } } void hard(std::string&& constraint); void clear(); void set_randmode(const VlQueue& randmode) { m_randmode = &randmode; } #ifdef VL_DEBUG void dump() const; #endif }; #endif // Guard