4
0
Эх сурвалжийг харах

Merge pull request #119 from ivq/single_hart

Add feature single-hart
Aleš Katona 1 жил өмнө
parent
commit
c4f05d224a

+ 1 - 0
riscv-rt/Cargo.toml

@@ -12,6 +12,7 @@ edition = "2018"
 
 [features]
 s-mode = []
+single-hart = []
 
 [dependencies]
 r0 = "1.0.0"

+ 11 - 11
riscv-rt/src/asm.rs

@@ -86,21 +86,21 @@ _abs_start:
     .option norelax
     la gp, __global_pointer$
     .option pop",
-    #[cfg(feature = "s-mode")]
+    #[cfg(all(not(feature = "single-hart"), feature = "s-mode"))]
     "mv t2, a0 // the hartid is passed as parameter by SMODE",
-    #[cfg(not(feature = "s-mode"))]
+    #[cfg(all(not(feature = "single-hart"), not(feature = "s-mode")))]
     "csrr t2, mhartid",
+    #[cfg(not(feature = "single-hart"))]
     "lui t0, %hi(_max_hart_id)
     add t0, t0, %lo(_max_hart_id)
-    bgtu t2, t0, abort
-
-    // Allocate stacks
+    bgtu t2, t0, abort",
+    "// Allocate stacks
     la sp, _stack_start
     lui t0, %hi(_hart_stack_size)
     add t0, t0, %lo(_hart_stack_size)",
-    #[cfg(riscvm)]
+    #[cfg(all(not(feature = "single-hart"), riscvm))]
     "mul t0, t2, t0",
-    #[cfg(not(riscvm))]
+    #[cfg(all(not(feature = "single-hart"), not(riscvm)))]
     "beqz t2, 2f  // Jump if single-hart
     mv t1, t2
     mv t3, t0
@@ -110,8 +110,8 @@ _abs_start:
     bnez t1, 1b
 2:  ",
     "sub sp, sp, t0
-    
-    // Set frame pointer 
+
+    // Set frame pointer
     add s0, sp, zero
 
     jal zero, _start_rust
@@ -121,9 +121,9 @@ _abs_start:
 
 /// Trap entry point (_start_trap). It saves caller saved registers, calls
 /// _start_trap_rust, restores caller saved registers and then returns.
-/// 
+///
 /// # Usage
-/// 
+///
 /// The macro takes 5 arguments:
 /// - `$STORE`: the instruction used to store a register in the stack (e.g. `sd` for riscv64)
 /// - `$LOAD`: the instruction used to load a register from the stack (e.g. `ld` for riscv64)

+ 4 - 0
riscv-rt/src/lib.rs

@@ -325,6 +325,10 @@
 //!
 //! # Features
 //!
+//! ## `single-hart`
+//!
+//! This feature saves a little code size by removing unnecessary stack space calculation if there is only one hart on the target.
+//!
 //! ## `s-mode`
 //!
 //! The supervisor mode feature (`s-mode`) can be activated via [Cargo features](https://doc.rust-lang.org/cargo/reference/features.html).