summaryrefslogtreecommitdiff
path: root/code/fe310/include/sifive/bits.h
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2019-12-04 06:11:35 +0100
committerUros Majstorovic <majstor@majstor.org>2019-12-04 06:11:35 +0100
commit31578e285a21a749a49e3ac146feb8b02fcc7b52 (patch)
treee67f619360352a87fb6e0f410f5246468fbc1073 /code/fe310/include/sifive/bits.h
parent2c981aec5e5c10f9fd036dfb48105b16f16e4233 (diff)
added new metal sdk
Diffstat (limited to 'code/fe310/include/sifive/bits.h')
-rw-r--r--code/fe310/include/sifive/bits.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/code/fe310/include/sifive/bits.h b/code/fe310/include/sifive/bits.h
new file mode 100644
index 0000000..bfe656f
--- /dev/null
+++ b/code/fe310/include/sifive/bits.h
@@ -0,0 +1,36 @@
+// See LICENSE for license details.
+#ifndef _RISCV_BITS_H
+#define _RISCV_BITS_H
+
+#define likely(x) __builtin_expect((x), 1)
+#define unlikely(x) __builtin_expect((x), 0)
+
+#define ROUNDUP(a, b) ((((a)-1)/(b)+1)*(b))
+#define ROUNDDOWN(a, b) ((a)/(b)*(b))
+
+#define MAX(a, b) ((a) > (b) ? (a) : (b))
+#define MIN(a, b) ((a) < (b) ? (a) : (b))
+#define CLAMP(a, lo, hi) MIN(MAX(a, lo), hi)
+
+#define EXTRACT_FIELD(val, which) (((val) & (which)) / ((which) & ~((which)-1)))
+#define INSERT_FIELD(val, which, fieldval) (((val) & ~(which)) | ((fieldval) * ((which) & ~((which)-1))))
+
+#define STR(x) XSTR(x)
+#define XSTR(x) #x
+
+#if __riscv_xlen == 64
+# define SLL32 sllw
+# define STORE sd
+# define LOAD ld
+# define LWU lwu
+# define LOG_REGBYTES 3
+#else
+# define SLL32 sll
+# define STORE sw
+# define LOAD lw
+# define LWU lw
+# define LOG_REGBYTES 2
+#endif
+#define REGBYTES (1 << LOG_REGBYTES)
+
+#endif