44 #ifndef __ARCH_RISCV_UTILITY_HH__
45 #define __ARCH_RISCV_UTILITY_HH__
58 #include "enums/RiscvType.hh"
67 template<
typename T>
inline bool
73 template<>
inline bool
76 return std::isnan(
val)
77 && (
reinterpret_cast<uint32_t&
>(
val)&0x00400000);
80 template<>
inline bool
83 return std::isnan(
val)
84 && (
reinterpret_cast<uint64_t&
>(
val)&0x0008000000000000ULL);
87 template<
typename T>
inline bool
93 template<>
inline bool
96 return std::isnan(
val)
97 && (
reinterpret_cast<uint32_t&
>(
val)&0x00200000);
100 template<>
inline bool
103 return std::isnan(
val)
104 && (
reinterpret_cast<uint64_t&
>(
val)&0x0004000000000000ULL);
121 std::stringstream str;
122 str <<
"?? (x" <<
reg.index() <<
')';
128 std::stringstream str;
129 str <<
"?? (f" <<
reg.index() <<
')';
144 return ((uint64_t)
rs1 *
rs2) >> 32;
150 uint64_t rs1_lo = (uint32_t)
rs1;
151 uint64_t rs1_hi =
rs1 >> 32;
152 uint64_t rs2_lo = (uint32_t)
rs2;
153 uint64_t rs2_hi =
rs2 >> 32;
155 uint64_t hi = rs1_hi * rs2_hi;
156 uint64_t mid1 = rs1_hi * rs2_lo;
157 uint64_t mid2 = rs1_lo * rs2_hi;
158 uint64_t
lo = rs1_lo * rs2_lo;
159 uint64_t carry = ((uint64_t)(uint32_t)mid1
160 + (uint64_t)(uint32_t)mid2
163 return hi + (mid1 >> 32) + (mid2 >> 32) + carry;
169 return ((int64_t)
rs1 *
rs2) >> 32;
175 bool negate = (
rs1 < 0) != (
rs2 < 0);
177 return negate ? ~res + (
rs1 *
rs2 == 0 ? 1 : 0) : res;
183 return ((int64_t)
rs1 *
rs2) >> 32;
189 bool negate =
rs1 < 0;
191 return negate ? ~res + (
rs1 *
rs2 == 0 ? 1 : 0) : res;
194 template<
typename T>
inline T
197 constexpr T kRsMin = std::numeric_limits<T>::min();
200 }
else if (
rs1 == kRsMin &&
rs2 == -1) {
207 template<
typename T>
inline T
211 return std::numeric_limits<T>::max();
217 template<
typename T>
inline T
220 constexpr T kRsMin = std::numeric_limits<T>::min();
223 }
else if (
rs1 == kRsMin &&
rs2 == -1) {
230 template<
typename T>
inline T
239 #endif // __ARCH_RISCV_UTILITY_HH__