aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vror_vv.h
blob: c649c6d97f79fc7ab5fb95ba6a690c7f4a5d6f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// vror.vv vd, vs2, vs1, vm

#include "zvk_ext_macros.h"

require_zvbb;

// 'mask' selects the low log2(vsew) bits of the shift amount,
// to limit the maximum shift to "vsew - 1" bits.
const reg_t mask = P.VU.vsew - 1;

VI_VV_ULOOP
({
  // For .vv, the shift amount comes from the vs1 element.
  const reg_t rshift = vs1 & mask;
  const reg_t lshift = (-rshift) & mask;
  vd = (vs2 << lshift) | (vs2 >> rshift);
})