mirror of https://github.com/YosysHQ/picorv32.git
87 lines
1.6 KiB
C
87 lines
1.6 KiB
C
// This is free and unencumbered software released into the public domain.
|
|
//
|
|
// Anyone is free to copy, modify, publish, use, compile, sell, or
|
|
// distribute this software, either in source code form or as a compiled
|
|
// binary, for any purpose, commercial or non-commercial, and by any
|
|
// means.
|
|
|
|
#include "firmware.h"
|
|
|
|
uint32_t xorshift32() {
|
|
static uint32_t x = 314159265;
|
|
x ^= x << 13;
|
|
x ^= x >> 17;
|
|
x ^= x << 5;
|
|
return x;
|
|
}
|
|
|
|
void multest()
|
|
{
|
|
int i;
|
|
for (i = 0; i < 10; i++)
|
|
{
|
|
uint32_t a = xorshift32();
|
|
uint32_t b = xorshift32();
|
|
|
|
uint64_t au = a, bu = b;
|
|
int64_t as = (int32_t)a, bs = (int32_t)b;
|
|
|
|
print_str("input [");
|
|
print_hex(as >> 32);
|
|
print_str("] ");
|
|
print_hex(a);
|
|
print_str(" [");
|
|
print_hex(bs >> 32);
|
|
print_str("] ");
|
|
print_hex(b);
|
|
print_chr('\n');
|
|
|
|
uint32_t h_mul, h_mulh, h_mulhsu, h_mulhu;
|
|
print_str("hard ");
|
|
|
|
h_mul = hard_mul(a, b);
|
|
print_hex(h_mul);
|
|
print_str(" ");
|
|
|
|
h_mulh = hard_mulh(a, b);
|
|
print_hex(h_mulh);
|
|
print_str(" ");
|
|
|
|
h_mulhsu = hard_mulhsu(a, b);
|
|
print_hex(h_mulhsu);
|
|
print_str(" ");
|
|
|
|
h_mulhu = hard_mulhu(a, b);
|
|
print_hex(h_mulhu);
|
|
print_chr('\n');
|
|
|
|
uint32_t s_mul, s_mulh, s_mulhsu, s_mulhu;
|
|
print_str("soft ");
|
|
|
|
s_mul = a * b;
|
|
print_hex(s_mul);
|
|
print_str(" ");
|
|
|
|
s_mulh = (as * bs) >> 32;
|
|
print_hex(s_mulh);
|
|
print_str(" ");
|
|
|
|
s_mulhsu = (as * bu) >> 32;
|
|
print_hex(s_mulhsu);
|
|
print_str(" ");
|
|
|
|
s_mulhu = (au * bu) >> 32;
|
|
print_hex(s_mulhu);
|
|
print_str(" ");
|
|
|
|
if (s_mul != h_mul || s_mulh != h_mulh || s_mulhsu != h_mulhsu || s_mulhu != h_mulhu) {
|
|
print_str("ERROR!\n");
|
|
asm volatile ("sbreak");
|
|
return;
|
|
}
|
|
|
|
print_str(" OK\n");
|
|
}
|
|
}
|
|
|