Skip to content

Commit 7e892cc

Browse files
committed
riscv: P extension intrinsics for packed SIMD (part 1)
implement by inline assembly for now, uses `pure, nomem, nostack` for all packed simd arithmetic instructions. Uses `inlateout` when it requires using the same register for input and output.
1 parent 3fd17e4 commit 7e892cc

File tree

2 files changed

+1064
-0
lines changed

2 files changed

+1064
-0
lines changed

crates/core_arch/src/riscv_shared/mod.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
//! Shared RISC-V intrinsics
2+
mod p;
3+
4+
pub use p::*;
25

36
use crate::arch::asm;
47

0 commit comments

Comments
 (0)