aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/khmtt.h
blob: dcd450304f040f2e148306d93360ada19669926c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require_vector_vs;
require_extension(EXT_ZPN);
sreg_t res;
sreg_t aop = P_SH(RS1, 1);
sreg_t bop = P_SH(RS2, 1);
if ((INT16_MIN != aop) | (INT16_MIN != bop)) {
  res = aop * bop;
  res >>= 15;
} else {
  res = INT16_MAX;
  P_SET_OV(1);
}
WRITE_RD(sext_xlen((int16_t)res));