38 #ifndef __CPU_INST_RES_HH__ 39 #define __CPU_INST_RES_HH__ 41 #include <type_traits> 80 static_assert(std::is_integral<T>::value ^
81 std::is_floating_point<T>::value,
82 "Parameter type is neither integral nor fp, or it is both");
83 if (std::is_integral<T>::value) {
85 }
else if (std::is_floating_point<T>::value) {
91 : type(t) { result.
vector =
v; }
94 : type(t) { result.
pred =
v; }
117 panic(
"Assigning result from unknown result type");
127 if (this->type != that.
type)
141 panic(
"Unknown type of result: %d\n", (
int)type);
197 panic_if(!
isPred(),
"Converting scalar (or invalid) to predicate!!");
204 #endif // __CPU_INST_RES_HH__ const uint64_t & asInteger() const
Explicit cast-like operations.
#define panic(...)
This implements a cprintf based panic() function.
const VecElem & asVectorElem() const
Vector Register Abstraction This generic class is the model in a particularization of MVC...
bool operator==(const InstResult &that) const
Result comparison Two invalid results always differ.
InstResult()
Default constructor creates an invalid result.
InstResult & operator=(const InstResult &that)
bool isVector() const
Is this a vector result?.
VecPredReg::Container VecPredRegContainer
bool isScalar() const
Checks.
InstResult(const VecPredRegContainer &v, const ResultType &t)
Predicate result.
const VecRegContainer & asVector() const
InstResult(const VecRegContainer &v, const ResultType &t)
Vector result.
VecReg::Container VecRegContainer
Vector Registers layout specification.
Generic predicate register container.
InstResult(T i, const ResultType &t)
Scalar result from scalar.
bool isVecElem() const
Is this a vector element result?.
bool isValid() const
Is this a valid result?.
const VecPredRegContainer & asPred() const
bool isPred() const
Is this a predicate result?.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
bool operator!=(const InstResult &that) const
const uint64_t & asIntegerNoAssert() const
Cast to integer without checking type.