blob: a4809a96460a802c6a6460cca704b8dc1b2ebe90 [file] [log] [blame]
#ifndef SOFTRVV_VSLL_H
#define SOFTRVV_VSLL_H
#include <stddef.h>
#include <type_traits>
namespace softrvv {
template <typename T>
void vsll_vx(T *dest, T *src1, const T *src2, int32_t avl) {
// Only low lg2(SEW) bits are used for shift
const T low_bits_mask = sizeof(T) * 8 - 1;
const T shift = *src2 & low_bits_mask;
for (int32_t idx = 0; idx < avl; idx++) {
dest[idx] = static_cast<T>(
static_cast<typename std::make_unsigned<T>::type>(src1[idx]) << shift);
}
}
template <typename T>
void vsll_vv(T *dest, T *src1, T *src2, int32_t avl) {
// Only low lg2(SEW) bits are used for shift
const T low_bits_mask = sizeof(T) * 8 - 1;
for (int32_t idx = 0; idx < avl; idx++) {
dest[idx] = static_cast<T>(
static_cast<typename std::make_unsigned<T>::type>(src1[idx])
<< (src2[idx] & low_bits_mask));
}
}
} // namespace softrvv
#endif // SOFTRVV_VSLL_H