Go to the documentation of this file.
96 #ifndef __ARCH_GENERIC_VEC_REG_HH__
97 #define __ARCH_GENERIC_VEC_REG_HH__
120 template <
size_t SIZE>
124 static_assert(
SIZE > 0,
125 "Cannot create Vector Register Container of zero size");
127 "Vector Register size limit exceeded");
129 static constexpr
inline size_t size() {
return SIZE; };
185 template <
typename VecElem>
190 "VecElem does not evenly divide the register size");
194 template <
typename VecElem>
199 "VecElem does not evenly divide the register size");
209 for (
auto&
b:
v.container) {
237 "Vector register value overflow at unserialize");
239 for (
int i = 0;
i < Sz;
i++) {
241 if (2 *
i < str.size())
242 b = stoul(str.substr(
i * 2, 2),
nullptr, 16);
243 value.template as<uint8_t>()[
i] =
b;
uint32_t DummyVecElem
Dummy type aliases and constants for architectures that do not implement vector registers.
static constexpr size_t size()
friend std::ostream & operator<<(std::ostream &os, const VecRegContainer< SIZE > &v)
static bool parse(const std::string &str, VecRegContainer< Sz > &value)
void ccprintf(cp::Print &print)
Vector Register Abstraction This generic class is the model in a particularization of MVC,...
VecElem * as()
View interposers.
constexpr unsigned MaxVecRegLenInBytes
static void show(std::ostream &os, const VecRegContainer< Sz > &value)
std::array< uint8_t, SIZE > Container
bool operator!=(const VecRegContainer< S2 > &that) const
Inequality operator.
void zero()
Zero the container.
const VecElem * as() const
constexpr unsigned DummyNumVecElemPerVecReg
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
VecRegContainer< SIZE > & operator=(const VecRegContainer< SIZE > &that)
Assignment operators.
bool operator==(const VecRegContainer< S2 > &that) const
Equality operator.
Generated on Tue Dec 21 2021 11:34:22 for gem5 by doxygen 1.8.17