97#ifndef __ARCH_GENERIC_VEC_REG_HH__
98#define __ARCH_GENERIC_VEC_REG_HH__
122template <
size_t SIZE>
126 static_assert(
SIZE > 0,
127 "Cannot create Vector Register Container of zero size");
129 "Vector Register size limit exceeded");
131 static constexpr inline size_t size() {
return SIZE; };
187 template <
typename VecElem>
192 "VecElem does not evenly divide the register size");
196 template <
typename VecElem>
201 "VecElem does not evenly divide the register size");
211 for (
auto&
b:
v.container) {
239 "Vector register value overflow at unserialize");
241 for (
int i = 0;
i < Sz;
i++) {
243 if (2 *
i < str.size())
244 b = stoul(str.substr(
i * 2, 2),
nullptr, 16);
245 value.template as<uint8_t>()[
i] =
b;
273 template <
typename VecElem>
285static_assert(
sizeof(DummyVecRegContainer) ==
sizeof(
RegVal));
286static inline std::ostream &
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,...
Vector Register Abstraction This generic class is the model in a particularization of MVC,...
const VecElem * as() const
bool operator==(const VecRegContainer< S2 > &that) const
Equality operator.
friend std::ostream & operator<<(std::ostream &os, const VecRegContainer< SIZE > &v)
static constexpr size_t size()
VecRegContainer(const VecRegContainer &)=default
VecElem * as()
View interposers.
VecRegContainer< SIZE > & operator=(const VecRegContainer< SIZE > &that)
Assignment operators.
void zero()
Zero the container.
bool operator!=(const VecRegContainer< S2 > &that) const
Inequality operator.
std::array< uint8_t, SIZE > Container
#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....
std::ostream & operator<<(std::ostream &os, const ArmSemihosting::InPlaceArg &ipa)
constexpr unsigned MaxVecRegLenInBytes
void ccprintf(cp::Print &print)
Dummy type aliases and constants for architectures that do not implement vector registers.
bool operator==(const DummyVecRegContainer &d) const
bool operator!=(const DummyVecRegContainer &d) const
static bool parse(const std::string &s, DummyVecRegContainer &value)
static bool parse(const std::string &str, VecRegContainer< Sz > &value)
static void show(std::ostream &os, const VecRegContainer< Sz > &value)