We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 52a6a4d + 6dcbd85 commit 5a7b58fCopy full SHA for 5a7b58f
src/lib.rs
@@ -58,6 +58,9 @@ pub mod arm;
58
#[cfg(all(kernel_user_helpers, target_os = "linux", target_arch = "arm"))]
59
pub mod arm_linux;
60
61
+#[cfg(any(target_arch = "riscv32"))]
62
+pub mod riscv32;
63
+
64
#[cfg(target_arch = "x86")]
65
pub mod x86;
66
src/riscv32.rs
@@ -0,0 +1,17 @@
1
+intrinsics! {
2
+ // Implementation from gcc
3
+ // https://raw.githubusercontent.com/gcc-mirror/gcc/master/libgcc/config/epiphany/mulsi3.c
4
+ pub extern "C" fn __mulsi3(mut a: u32, mut b: u32) -> u32 {
5
+ let mut r: usize = 0;
6
7
+ while a > 0 {
8
+ if a & 1 > 0 {
9
+ r += b;
10
+ }
11
+ a >>= 1;
12
+ b <<= 1;
13
14
15
+ r
16
17
+}
0 commit comments