Call external functions when inline-asm is not set

This commit is contained in:
Vadim Kaushan 2018-12-23 09:44:08 +01:00
parent 41378757c0
commit 061579f97e
25 changed files with 102 additions and 60 deletions

View File

@ -1,7 +1,7 @@
//! Assembly instructions //! Assembly instructions
macro_rules! instruction { macro_rules! instruction {
($fnname:ident, $asm:expr) => ( ($fnname:ident, $asm:expr, $asm_fn:ident) => (
#[inline] #[inline]
pub unsafe fn $fnname() { pub unsafe fn $fnname() {
match () { match () {
@ -9,7 +9,13 @@ macro_rules! instruction {
() => asm!($asm :::: "volatile"), () => asm!($asm :::: "volatile"),
#[cfg(all(riscv, not(feature = "inline-asm")))] #[cfg(all(riscv, not(feature = "inline-asm")))]
() => unimplemented!(), () => {
extern "C" {
fn $asm_fn();
}
$asm_fn();
}
#[cfg(not(riscv))] #[cfg(not(riscv))]
() => unimplemented!(), () => unimplemented!(),
@ -20,9 +26,9 @@ macro_rules! instruction {
/// Priviledged ISA Instructions /// Priviledged ISA Instructions
instruction!(ebreak, "ebreak"); instruction!(ebreak, "ebreak", __ebreak);
instruction!(wfi, "wfi"); instruction!(wfi, "wfi", __wfi);
instruction!(sfence_vma_all, "sfence.vma"); instruction!(sfence_vma_all, "sfence.vma", __sfence_vma_all);
#[inline] #[inline]
@ -33,7 +39,13 @@ pub unsafe fn sfence_vma(asid: usize, addr: usize) {
() => asm!("sfence.vma $0, $1" :: "r"(asid), "r"(addr) :: "volatile"), () => asm!("sfence.vma $0, $1" :: "r"(asid), "r"(addr) :: "volatile"),
#[cfg(all(riscv, not(feature = "inline-asm")))] #[cfg(all(riscv, not(feature = "inline-asm")))]
() => unimplemented!(), () => {
extern "C" {
fn __sfence_vma(asid: usize, addr: usize);
}
__sfence_vma(asid, addr);
}
#[cfg(not(riscv))] #[cfg(not(riscv))]
() => unimplemented!(), () => unimplemented!(),

View File

@ -1,5 +1,5 @@
macro_rules! read_csr { macro_rules! read_csr {
($csr_number:expr) => { ($csr_number:expr, $asm_fn: ident) => {
/// Reads the CSR /// Reads the CSR
#[inline] #[inline]
unsafe fn _read() -> usize { unsafe fn _read() -> usize {
@ -12,7 +12,13 @@ macro_rules! read_csr {
} }
#[cfg(all(riscv, not(feature = "inline-asm")))] #[cfg(all(riscv, not(feature = "inline-asm")))]
() => unimplemented!(), () => {
extern "C" {
fn $asm_fn() -> usize;
}
$asm_fn()
}
#[cfg(not(riscv))] #[cfg(not(riscv))]
() => unimplemented!(), () => unimplemented!(),
@ -22,7 +28,7 @@ macro_rules! read_csr {
} }
macro_rules! read_csr_rv32 { macro_rules! read_csr_rv32 {
($csr_number:expr) => { ($csr_number:expr, $asm_fn: ident) => {
/// Reads the CSR /// Reads the CSR
#[inline] #[inline]
unsafe fn _read() -> usize { unsafe fn _read() -> usize {
@ -35,7 +41,13 @@ macro_rules! read_csr_rv32 {
} }
#[cfg(all(riscv32, not(feature = "inline-asm")))] #[cfg(all(riscv32, not(feature = "inline-asm")))]
() => unimplemented!(), () => {
extern "C" {
fn $asm_fn() -> usize;
}
$asm_fn()
}
#[cfg(not(riscv32))] #[cfg(not(riscv32))]
() => unimplemented!(), () => unimplemented!(),
@ -45,8 +57,8 @@ macro_rules! read_csr_rv32 {
} }
macro_rules! read_csr_as { macro_rules! read_csr_as {
($register:ident, $csr_number:expr) => { ($register:ident, $csr_number:expr, $asm_fn: ident) => {
read_csr!($csr_number); read_csr!($csr_number, $asm_fn);
/// Reads the CSR /// Reads the CSR
#[inline] #[inline]
@ -57,8 +69,8 @@ macro_rules! read_csr_as {
} }
macro_rules! read_csr_as_usize { macro_rules! read_csr_as_usize {
($csr_number:expr) => { ($csr_number:expr, $asm_fn: ident) => {
read_csr!($csr_number); read_csr!($csr_number, $asm_fn);
/// Reads the CSR /// Reads the CSR
#[inline] #[inline]
@ -69,8 +81,8 @@ macro_rules! read_csr_as_usize {
} }
macro_rules! read_csr_as_usize_rv32 { macro_rules! read_csr_as_usize_rv32 {
($csr_number:expr) => { ($csr_number:expr, $asm_fn: ident) => {
read_csr_rv32!($csr_number); read_csr_rv32!($csr_number, $asm_fn);
/// Reads the CSR /// Reads the CSR
#[inline] #[inline]
@ -81,7 +93,7 @@ macro_rules! read_csr_as_usize_rv32 {
} }
macro_rules! write_csr { macro_rules! write_csr {
($csr_number:expr) => { ($csr_number:expr, $asm_fn: ident) => {
/// Writes the CSR /// Writes the CSR
#[inline] #[inline]
#[allow(unused_variables)] #[allow(unused_variables)]
@ -91,7 +103,13 @@ macro_rules! write_csr {
() => asm!("csrrw x0, $1, $0" :: "r"(bits), "i"($csr_number) :: "volatile"), () => asm!("csrrw x0, $1, $0" :: "r"(bits), "i"($csr_number) :: "volatile"),
#[cfg(all(riscv, not(feature = "inline-asm")))] #[cfg(all(riscv, not(feature = "inline-asm")))]
() => unimplemented!(), () => {
extern "C" {
fn $asm_fn(bits: usize);
}
$asm_fn(bits);
}
#[cfg(not(riscv))] #[cfg(not(riscv))]
() => unimplemented!(), () => unimplemented!(),
@ -101,8 +119,8 @@ macro_rules! write_csr {
} }
macro_rules! write_csr_as_usize { macro_rules! write_csr_as_usize {
($csr_number:expr) => { ($csr_number:expr, $asm_fn: ident) => {
write_csr!($csr_number); write_csr!($csr_number, $asm_fn);
/// Writes the CSR /// Writes the CSR
#[inline] #[inline]
@ -113,7 +131,7 @@ macro_rules! write_csr_as_usize {
} }
macro_rules! set { macro_rules! set {
($csr_number:expr) => { ($csr_number:expr, $asm_fn: ident) => {
/// Set the CSR /// Set the CSR
#[inline] #[inline]
#[allow(unused_variables)] #[allow(unused_variables)]
@ -123,7 +141,13 @@ macro_rules! set {
() => asm!("csrrs x0, $1, $0" :: "r"(bits), "i"($csr_number) :: "volatile"), () => asm!("csrrs x0, $1, $0" :: "r"(bits), "i"($csr_number) :: "volatile"),
#[cfg(all(riscv, not(feature = "inline-asm")))] #[cfg(all(riscv, not(feature = "inline-asm")))]
() => unimplemented!(), () => {
extern "C" {
fn $asm_fn(bits: usize);
}
$asm_fn(bits);
}
#[cfg(not(riscv))] #[cfg(not(riscv))]
() => unimplemented!(), () => unimplemented!(),
@ -133,7 +157,7 @@ macro_rules! set {
} }
macro_rules! clear { macro_rules! clear {
($csr_number:expr) => { ($csr_number:expr, $asm_fn: ident) => {
/// Clear the CSR /// Clear the CSR
#[inline] #[inline]
#[allow(unused_variables)] #[allow(unused_variables)]
@ -143,7 +167,13 @@ macro_rules! clear {
() => asm!("csrrc x0, $1, $0" :: "r"(bits), "i"($csr_number) :: "volatile"), () => asm!("csrrc x0, $1, $0" :: "r"(bits), "i"($csr_number) :: "volatile"),
#[cfg(all(riscv, not(feature = "inline-asm")))] #[cfg(all(riscv, not(feature = "inline-asm")))]
() => unimplemented!(), () => {
extern "C" {
fn $asm_fn(bits: usize);
}
$asm_fn(bits);
}
#[cfg(not(riscv))] #[cfg(not(riscv))]
() => unimplemented!(), () => unimplemented!(),

View File

@ -136,4 +136,4 @@ impl Mcause {
} }
} }
read_csr_as!(Mcause, 0x342); read_csr_as!(Mcause, 0x342, __read_mcause);

View File

@ -1,3 +1,3 @@
//! mcycle register //! mcycle register
read_csr_as_usize!(0xB00); read_csr_as_usize!(0xB00, __read_mcycle);

View File

@ -1,3 +1,3 @@
//! mcycleh register //! mcycleh register
read_csr_as_usize_rv32!(0xB80); read_csr_as_usize_rv32!(0xB80, __read_mcycleh);

View File

@ -1,3 +1,3 @@
//! mepc register //! mepc register
read_csr_as_usize!(0x341); read_csr_as_usize!(0x341, __read_mepc);

View File

@ -68,9 +68,9 @@ impl Mie {
} }
} }
read_csr_as!(Mie, 0x304); read_csr_as!(Mie, 0x304, __read_mie);
set!(0x304); set!(0x304, __set_mie);
clear!(0x304); clear!(0x304, __clear_mie);
/// User Software Interrupt Enable /// User Software Interrupt Enable
set_clear_csr!(set_usoft, clear_usoft, 1 << 0); set_clear_csr!(set_usoft, clear_usoft, 1 << 0);

View File

@ -1,3 +1,3 @@
//! minstret register //! minstret register
read_csr_as_usize!(0xB02); read_csr_as_usize!(0xB02, __read_minstret);

View File

@ -1,3 +1,3 @@
//! minstreth register //! minstreth register
read_csr_as_usize_rv32!(0xB82); read_csr_as_usize_rv32!(0xB82, __read_minstreth);

View File

@ -68,4 +68,4 @@ impl Mip {
} }
} }
read_csr_as!(Mip, 0x344); read_csr_as!(Mip, 0x344, __read_mip);

View File

@ -47,7 +47,7 @@ impl Misa {
} }
} }
read_csr!(0x301); read_csr!(0x301, __read_misa);
/// Reads the CSR /// Reads the CSR
#[inline] #[inline]

View File

@ -79,9 +79,9 @@ impl Mstatus {
} }
read_csr_as!(Mstatus, 0x300); read_csr_as!(Mstatus, 0x300, __read_mstatus);
set!(0x300); set!(0x300, __set_mstatus);
clear!(0x300); clear!(0x300, __clear_mstatus);
/// User Interrupt Enable /// User Interrupt Enable
set_clear_csr!(set_uie, clear_uie, 1 << 0); set_clear_csr!(set_uie, clear_uie, 1 << 0);

View File

@ -34,9 +34,9 @@ impl Mtvec {
} }
} }
read_csr_as!(Mtvec, 0x305); read_csr_as!(Mtvec, 0x305, __read_mtvec);
write_csr!(0x305); write_csr!(0x305, __write_mtvec);
/// Writes the CSR /// Writes the CSR
#[inline] #[inline]

View File

@ -20,7 +20,7 @@ impl Mvendorid {
} }
} }
read_csr!(0xF11); read_csr!(0xF11, __read_mvendorid);
/// Reads the CSR /// Reads the CSR
#[inline] #[inline]

View File

@ -84,8 +84,8 @@ pub enum Mode {
Sv64 = 11, Sv64 = 11,
} }
read_csr_as!(Satp, 0x180); read_csr_as!(Satp, 0x180, __read_satp);
write_csr!(0x180); write_csr!(0x180, __write_satp);
#[inline] #[inline]
#[cfg(riscv32)] #[cfg(riscv32)]

View File

@ -115,4 +115,4 @@ impl Scause {
} }
} }
read_csr_as!(Scause, 0x142); read_csr_as!(Scause, 0x142, __read_scause);

View File

@ -1,4 +1,4 @@
//! sepc register //! sepc register
read_csr_as_usize!(0x141); read_csr_as_usize!(0x141, __read_sepc);
write_csr_as_usize!(0x141); write_csr_as_usize!(0x141, __write_sepc);

View File

@ -52,9 +52,9 @@ impl Sie {
} }
} }
read_csr_as!(Sie, 0x104); read_csr_as!(Sie, 0x104, __read_sie);
set!(0x104); set!(0x104, __set_sie);
clear!(0x104); clear!(0x104, __clear_sie);
/// User Software Interrupt Enable /// User Software Interrupt Enable
set_clear_csr!(set_usoft, clear_usoft, 1 << 0); set_clear_csr!(set_usoft, clear_usoft, 1 << 0);

View File

@ -52,4 +52,4 @@ impl Sip {
} }
} }
read_csr_as!(Sip, 0x144); read_csr_as!(Sip, 0x144, __read_sip);

View File

@ -1,4 +1,4 @@
//! sscratch register //! sscratch register
read_csr_as_usize!(0x140); read_csr_as_usize!(0x140, __read_sscratch);
write_csr_as_usize!(0x140); write_csr_as_usize!(0x140, __write_sscratch);

View File

@ -104,9 +104,9 @@ impl Sstatus {
} }
} }
read_csr_as!(Sstatus, 0x100); read_csr_as!(Sstatus, 0x100, __read_sstatus);
set!(0x100); set!(0x100, __set_sstatus);
clear!(0x100); clear!(0x100, __clear_sstatus);
/// User Interrupt Enable /// User Interrupt Enable
set_clear_csr!(set_uie, clear_uie, 1 << 0); set_clear_csr!(set_uie, clear_uie, 1 << 0);

View File

@ -1,3 +1,3 @@
//! stval register //! stval register
read_csr_as_usize!(0x143); read_csr_as_usize!(0x143, __read_stval);

View File

@ -34,8 +34,8 @@ impl Stvec {
} }
} }
read_csr_as!(Stvec, 0x105); read_csr_as!(Stvec, 0x105, __read_stvec);
write_csr!(0x105); write_csr!(0x105, __write_stvec);
/// Writes the CSR /// Writes the CSR
#[inline] #[inline]

View File

@ -1,3 +1,3 @@
//! time register //! time register
read_csr_as_usize!(0xC01); read_csr_as_usize!(0xC01, __read_time);

View File

@ -1,3 +1,3 @@
//! timeh register //! timeh register
read_csr_as_usize_rv32!(0xC81); read_csr_as_usize_rv32!(0xC81, __read_timeh);