aboutsummaryrefslogtreecommitdiff
path: root/c_emulator/riscv_softfloat.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_emulator/riscv_softfloat.c')
-rw-r--r--c_emulator/riscv_softfloat.c169
1 files changed, 169 insertions, 0 deletions
diff --git a/c_emulator/riscv_softfloat.c b/c_emulator/riscv_softfloat.c
new file mode 100644
index 0000000..a926d42
--- /dev/null
+++ b/c_emulator/riscv_softfloat.c
@@ -0,0 +1,169 @@
+#include "sail.h"
+#include "rts.h"
+#include "riscv_sail.h"
+#include "riscv_softfloat.h"
+#include "softfloat.h"
+
+#define SOFTFLOAT_PRELUDE(rm) \
+ softfloat_exceptionFlags = 0; \
+ softfloat_roundingMode = (uint_fast8_t) rm
+
+#define SOFTFLOAT_POSTLUDE(res) \
+ zfloat_result = res.v; \
+ zfloat_fflags = (mach_bits) softfloat_exceptionFlags
+
+unit softfloat_f32add(mach_bits rm, mach_bits v1, mach_bits v2) {
+ SOFTFLOAT_PRELUDE(rm);
+
+ float32_t a, b, res;
+ a.v = v1;
+ b.v = v2;
+ res = f32_add(a, b);
+
+ SOFTFLOAT_POSTLUDE(res);
+
+ return UNIT;
+}
+
+unit softfloat_f32sub(mach_bits rm, mach_bits v1, mach_bits v2) {
+ SOFTFLOAT_PRELUDE(rm);
+
+ float32_t a, b, res;
+ a.v = v1;
+ b.v = v2;
+ res = f32_sub(a, b);
+
+ SOFTFLOAT_POSTLUDE(res);
+
+ return UNIT;
+}
+
+unit softfloat_f32mul(mach_bits rm, mach_bits v1, mach_bits v2) {
+ SOFTFLOAT_PRELUDE(rm);
+
+ float32_t a, b, res;
+ a.v = v1;
+ b.v = v2;
+ res = f32_mul(a, b);
+
+ SOFTFLOAT_POSTLUDE(res);
+
+ return UNIT;
+}
+
+unit softfloat_f32div(mach_bits rm, mach_bits v1, mach_bits v2) {
+ SOFTFLOAT_PRELUDE(rm);
+
+ float32_t a, b, res;
+ a.v = v1;
+ b.v = v2;
+ res = f32_div(a, b);
+
+ SOFTFLOAT_POSTLUDE(res);
+
+ return UNIT;
+}
+
+unit softfloat_f64add(mach_bits rm, mach_bits v1, mach_bits v2) {
+ SOFTFLOAT_PRELUDE(rm);
+
+ float64_t a, b, res;
+ a.v = v1;
+ b.v = v2;
+ res = f64_add(a, b);
+
+ SOFTFLOAT_POSTLUDE(res);
+
+ return UNIT;
+}
+
+unit softfloat_f64sub(mach_bits rm, mach_bits v1, mach_bits v2) {
+ SOFTFLOAT_PRELUDE(rm);
+
+ float64_t a, b, res;
+ a.v = v1;
+ b.v = v2;
+ res = f64_sub(a, b);
+
+ SOFTFLOAT_POSTLUDE(res);
+
+ return UNIT;
+}
+
+unit softfloat_f64mul(mach_bits rm, mach_bits v1, mach_bits v2) {
+ SOFTFLOAT_PRELUDE(rm);
+
+ float64_t a, b, res;
+ a.v = v1;
+ b.v = v2;
+ res = f64_mul(a, b);
+
+ SOFTFLOAT_POSTLUDE(res);
+
+ return UNIT;
+}
+
+unit softfloat_f64div(mach_bits rm, mach_bits v1, mach_bits v2) {
+ SOFTFLOAT_PRELUDE(rm);
+
+ float64_t a, b, res;
+ a.v = v1;
+ b.v = v2;
+ res = f64_div(a, b);
+
+ SOFTFLOAT_POSTLUDE(res);
+
+ return UNIT;
+}
+
+unit softfloat_f32muladd(mach_bits rm, mach_bits v1, mach_bits v2, mach_bits v3) {
+ SOFTFLOAT_PRELUDE(rm);
+
+ float32_t a, b, c, res;
+ a.v = v1;
+ b.v = v2;
+ c.v = v3;
+ res = f32_mulAdd(a, b, c);
+
+ SOFTFLOAT_POSTLUDE(res);
+
+ return UNIT;
+}
+
+unit softfloat_f64muladd(mach_bits rm, mach_bits v1, mach_bits v2, mach_bits v3) {
+ SOFTFLOAT_PRELUDE(rm);
+
+ float64_t a, b, c, res;
+ a.v = v1;
+ b.v = v2;
+ c.v = v3;
+ res = f64_mulAdd(a, b, c);
+
+ SOFTFLOAT_POSTLUDE(res);
+
+ return UNIT;
+}
+
+unit softfloat_f32sqrt(mach_bits rm, mach_bits v) {
+ SOFTFLOAT_PRELUDE(rm);
+
+ float32_t a, res;
+ a.v = v;
+ res = f32_sqrt(a);
+
+ SOFTFLOAT_POSTLUDE(res);
+
+ return UNIT;
+}
+
+unit softfloat_f64sqrt(mach_bits rm, mach_bits v) {
+ SOFTFLOAT_PRELUDE(rm);
+
+ float64_t a, res;
+ a.v = v;
+ res = f64_sqrt(a);
+
+ SOFTFLOAT_POSTLUDE(res);
+
+ return UNIT;
+}