aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/crc32_d.h
blob: 7fd7a38f2bde02379970298bb18604d24b2a2019 (plain)
1
2
3
4
5
6
require_rv64;
require_extension(EXT_XZBR);
reg_t x = zext_xlen(RS1);
for (int i = 0; i < 64; i++)
  x = (x >> 1) ^ (0xEDB88320 & ~((x&1)-1));
WRITE_RD(sext_xlen(x));