mirror of
https://github.com/NotAShelf/microfetch.git
synced 2026-04-27 19:05:21 +00:00
asm: extract per-arch syscall impls into separate modules
The monolithic lib.rs had grown to 2600+ lines of `#[cfg(target_arch)]` blocks interleaved inside every `sys_*` function. Reading or modifying one arch's syscalls meant scrolling past thirteen others. Pull each arch's asm into `<arch>.rs`, re-exported via a single `#[cfg] #[path] mod arch;` so `lib.rs` only contains wrappers, structs, and module dispatch. Adding a new architecture now touches one new file plus one three-line mod decl.
This commit is contained in:
parent
136d5bcb58
commit
e77976b94b
6 changed files with 587 additions and 460 deletions
164
crates/asm/src/aarch64.rs
Normal file
164
crates/asm/src/aarch64.rs
Normal file
|
|
@ -0,0 +1,164 @@
|
||||||
|
//! Syscall implementations for `aarch64`.
|
||||||
|
|
||||||
|
use super::{StatfsBuf, SysInfo, UtsNameBuf};
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_open(path: *const u8, flags: i32) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
let fd: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"svc #0",
|
||||||
|
in("x8") 56i64, // SYS_openat
|
||||||
|
in("x0") -100i32, // AT_FDCWD
|
||||||
|
in("x1") path,
|
||||||
|
in("x2") flags,
|
||||||
|
in("x3") 0i32, // mode
|
||||||
|
lateout("x0") fd,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
fd as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_read(fd: i32, buf: *mut u8, count: usize) -> isize {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"svc #0",
|
||||||
|
in("x8") 63i64, // SYS_read
|
||||||
|
in("x0") fd,
|
||||||
|
in("x1") buf,
|
||||||
|
in("x2") count,
|
||||||
|
lateout("x0") ret,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as isize
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_write(fd: i32, buf: *const u8, count: usize) -> isize {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"svc #0",
|
||||||
|
in("x8") 64i64, // SYS_write
|
||||||
|
in("x0") fd,
|
||||||
|
in("x1") buf,
|
||||||
|
in("x2") count,
|
||||||
|
lateout("x0") ret,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as isize
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_close(fd: i32) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"svc #0",
|
||||||
|
in("x8") 57i64, // SYS_close
|
||||||
|
in("x0") fd,
|
||||||
|
lateout("x0") ret,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_uname(buf: *mut UtsNameBuf) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"svc #0",
|
||||||
|
in("x8") 160i64, // SYS_uname
|
||||||
|
in("x0") buf,
|
||||||
|
lateout("x0") ret,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_statfs(path: *const u8, buf: *mut StatfsBuf) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"svc #0",
|
||||||
|
in("x8") 43i64, // SYS_statfs
|
||||||
|
in("x0") path,
|
||||||
|
in("x1") buf,
|
||||||
|
lateout("x0") ret,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_sysinfo(info: *mut SysInfo) -> i64 {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"svc #0",
|
||||||
|
in("x8") 179_i64, // __NR_sysinfo
|
||||||
|
in("x0") info,
|
||||||
|
lateout("x0") ret,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_sched_getaffinity(
|
||||||
|
pid: i32,
|
||||||
|
mask_size: usize,
|
||||||
|
mask: *mut u8,
|
||||||
|
) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"svc #0",
|
||||||
|
in("x8") 123i64, // __NR_sched_getaffinity
|
||||||
|
in("x0") pid,
|
||||||
|
in("x1") mask_size,
|
||||||
|
in("x2") mask,
|
||||||
|
lateout("x0") ret,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_exit(code: i32) -> ! {
|
||||||
|
unsafe {
|
||||||
|
core::arch::asm!(
|
||||||
|
"svc #0",
|
||||||
|
in("x8") 93i64, // SYS_exit
|
||||||
|
in("x0") code,
|
||||||
|
options(noreturn, nostack)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -19,6 +19,17 @@ compile_error!(
|
||||||
"Unsupported architecture: only x86_64, aarch64, and riscv64 are supported"
|
"Unsupported architecture: only x86_64, aarch64, and riscv64 are supported"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Per-arch syscall implementations live in their own module files.
|
||||||
|
#[cfg(target_arch = "x86_64")]
|
||||||
|
#[path = "x86_64.rs"]
|
||||||
|
mod arch;
|
||||||
|
#[cfg(target_arch = "aarch64")]
|
||||||
|
#[path = "aarch64.rs"]
|
||||||
|
mod arch;
|
||||||
|
#[cfg(target_arch = "riscv64")]
|
||||||
|
#[path = "riscv64.rs"]
|
||||||
|
mod arch;
|
||||||
|
|
||||||
/// Copies `n` bytes from `src` to `dest`.
|
/// Copies `n` bytes from `src` to `dest`.
|
||||||
///
|
///
|
||||||
/// # Safety
|
/// # Safety
|
||||||
|
|
@ -165,62 +176,7 @@ unsafe extern "C" {
|
||||||
#[inline]
|
#[inline]
|
||||||
#[must_use]
|
#[must_use]
|
||||||
pub unsafe fn sys_open(path: *const u8, flags: i32) -> i32 {
|
pub unsafe fn sys_open(path: *const u8, flags: i32) -> i32 {
|
||||||
#[cfg(target_arch = "x86_64")]
|
unsafe { arch::sys_open(path, flags) }
|
||||||
unsafe {
|
|
||||||
let fd: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"syscall",
|
|
||||||
in("rax") 2i64, // SYS_open
|
|
||||||
in("rdi") path,
|
|
||||||
in("rsi") flags,
|
|
||||||
in("rdx") 0i32, // mode (not used for reading)
|
|
||||||
lateout("rax") fd,
|
|
||||||
lateout("rcx") _,
|
|
||||||
lateout("r11") _,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
fd as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#[cfg(target_arch = "aarch64")]
|
|
||||||
unsafe {
|
|
||||||
let fd: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"svc #0",
|
|
||||||
in("x8") 56i64, // SYS_openat
|
|
||||||
in("x0") -100i32, // AT_FDCWD
|
|
||||||
in("x1") path,
|
|
||||||
in("x2") flags,
|
|
||||||
in("x3") 0i32, // mode
|
|
||||||
lateout("x0") fd,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
fd as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#[cfg(target_arch = "riscv64")]
|
|
||||||
unsafe {
|
|
||||||
let fd: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"ecall",
|
|
||||||
in("a7") 56i64, // SYS_openat
|
|
||||||
in("a0") -100i32, // AT_FDCWD
|
|
||||||
in("a1") path,
|
|
||||||
in("a2") flags,
|
|
||||||
in("a3") 0i32, // mode
|
|
||||||
lateout("a0") fd,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
fd as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Direct syscall to read from a file descriptor
|
/// Direct syscall to read from a file descriptor
|
||||||
|
|
@ -237,64 +193,7 @@ pub unsafe fn sys_open(path: *const u8, flags: i32) -> i32 {
|
||||||
/// - `fd` is a valid open file descriptor
|
/// - `fd` is a valid open file descriptor
|
||||||
#[inline]
|
#[inline]
|
||||||
pub unsafe fn sys_read(fd: i32, buf: *mut u8, count: usize) -> isize {
|
pub unsafe fn sys_read(fd: i32, buf: *mut u8, count: usize) -> isize {
|
||||||
#[cfg(target_arch = "x86_64")]
|
unsafe { arch::sys_read(fd, buf, count) }
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"syscall",
|
|
||||||
in("rax") 0i64, // SYS_read
|
|
||||||
in("rdi") fd,
|
|
||||||
in("rsi") buf,
|
|
||||||
in("rdx") count,
|
|
||||||
lateout("rax") ret,
|
|
||||||
lateout("rcx") _,
|
|
||||||
lateout("r11") _,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as isize
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "aarch64")]
|
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"svc #0",
|
|
||||||
in("x8") 63i64, // SYS_read
|
|
||||||
in("x0") fd,
|
|
||||||
in("x1") buf,
|
|
||||||
in("x2") count,
|
|
||||||
lateout("x0") ret,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as isize
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "riscv64")]
|
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"ecall",
|
|
||||||
in("a7") 63i64, // SYS_read
|
|
||||||
in("a0") fd,
|
|
||||||
in("a1") buf,
|
|
||||||
in("a2") count,
|
|
||||||
lateout("a0") ret,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as isize
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Direct syscall to write to a file descriptor
|
/// Direct syscall to write to a file descriptor
|
||||||
|
|
@ -312,64 +211,7 @@ pub unsafe fn sys_read(fd: i32, buf: *mut u8, count: usize) -> isize {
|
||||||
#[inline]
|
#[inline]
|
||||||
#[must_use]
|
#[must_use]
|
||||||
pub unsafe fn sys_write(fd: i32, buf: *const u8, count: usize) -> isize {
|
pub unsafe fn sys_write(fd: i32, buf: *const u8, count: usize) -> isize {
|
||||||
#[cfg(target_arch = "x86_64")]
|
unsafe { arch::sys_write(fd, buf, count) }
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"syscall",
|
|
||||||
in("rax") 1i64, // SYS_write
|
|
||||||
in("rdi") fd,
|
|
||||||
in("rsi") buf,
|
|
||||||
in("rdx") count,
|
|
||||||
lateout("rax") ret,
|
|
||||||
lateout("rcx") _,
|
|
||||||
lateout("r11") _,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as isize
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "aarch64")]
|
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"svc #0",
|
|
||||||
in("x8") 64i64, // SYS_write
|
|
||||||
in("x0") fd,
|
|
||||||
in("x1") buf,
|
|
||||||
in("x2") count,
|
|
||||||
lateout("x0") ret,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as isize
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "riscv64")]
|
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"ecall",
|
|
||||||
in("a7") 64i64, // SYS_write
|
|
||||||
in("a0") fd,
|
|
||||||
in("a1") buf,
|
|
||||||
in("a2") count,
|
|
||||||
lateout("a0") ret,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as isize
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Direct syscall to close a file descriptor
|
/// Direct syscall to close a file descriptor
|
||||||
|
|
@ -380,55 +222,7 @@ pub unsafe fn sys_write(fd: i32, buf: *const u8, count: usize) -> isize {
|
||||||
#[inline]
|
#[inline]
|
||||||
#[must_use]
|
#[must_use]
|
||||||
pub unsafe fn sys_close(fd: i32) -> i32 {
|
pub unsafe fn sys_close(fd: i32) -> i32 {
|
||||||
#[cfg(target_arch = "x86_64")]
|
unsafe { arch::sys_close(fd) }
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"syscall",
|
|
||||||
in("rax") 3i64, // SYS_close
|
|
||||||
in("rdi") fd,
|
|
||||||
lateout("rax") ret,
|
|
||||||
lateout("rcx") _,
|
|
||||||
lateout("r11") _,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "aarch64")]
|
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"svc #0",
|
|
||||||
in("x8") 57i64, // SYS_close
|
|
||||||
in("x0") fd,
|
|
||||||
lateout("x0") ret,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "riscv64")]
|
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"ecall",
|
|
||||||
in("a7") 57i64, // SYS_close
|
|
||||||
in("a0") fd,
|
|
||||||
lateout("a0") ret,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Raw buffer for the `uname(2)` syscall.
|
/// Raw buffer for the `uname(2)` syscall.
|
||||||
|
|
@ -459,57 +253,7 @@ pub struct UtsNameBuf {
|
||||||
#[inline]
|
#[inline]
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
||||||
pub unsafe fn sys_uname(buf: *mut UtsNameBuf) -> i32 {
|
pub unsafe fn sys_uname(buf: *mut UtsNameBuf) -> i32 {
|
||||||
#[cfg(target_arch = "x86_64")]
|
unsafe { arch::sys_uname(buf) }
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"syscall",
|
|
||||||
in("rax") 63i64, // SYS_uname
|
|
||||||
in("rdi") buf,
|
|
||||||
lateout("rax") ret,
|
|
||||||
lateout("rcx") _,
|
|
||||||
lateout("r11") _,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "aarch64")]
|
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"svc #0",
|
|
||||||
in("x8") 160i64, // SYS_uname
|
|
||||||
in("x0") buf,
|
|
||||||
lateout("x0") ret,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "riscv64")]
|
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"ecall",
|
|
||||||
in("a7") 160i64, // SYS_uname
|
|
||||||
in("a0") buf,
|
|
||||||
lateout("a0") ret,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Raw buffer for the `statfs(2)` syscall.
|
/// Raw buffer for the `statfs(2)` syscall.
|
||||||
|
|
@ -549,61 +293,7 @@ pub struct StatfsBuf {
|
||||||
/// - `buf` points to a valid `StatfsBuf`
|
/// - `buf` points to a valid `StatfsBuf`
|
||||||
#[inline]
|
#[inline]
|
||||||
pub unsafe fn sys_statfs(path: *const u8, buf: *mut StatfsBuf) -> i32 {
|
pub unsafe fn sys_statfs(path: *const u8, buf: *mut StatfsBuf) -> i32 {
|
||||||
#[cfg(target_arch = "x86_64")]
|
unsafe { arch::sys_statfs(path, buf) }
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"syscall",
|
|
||||||
in("rax") 137i64, // SYS_statfs
|
|
||||||
in("rdi") path,
|
|
||||||
in("rsi") buf,
|
|
||||||
lateout("rax") ret,
|
|
||||||
lateout("rcx") _,
|
|
||||||
lateout("r11") _,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "aarch64")]
|
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"svc #0",
|
|
||||||
in("x8") 43i64, // SYS_statfs
|
|
||||||
in("x0") path,
|
|
||||||
in("x1") buf,
|
|
||||||
lateout("x0") ret,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "riscv64")]
|
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"ecall",
|
|
||||||
in("a7") 43i64, // SYS_statfs
|
|
||||||
in("a0") path,
|
|
||||||
in("a1") buf,
|
|
||||||
lateout("a0") ret,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Read entire file using direct syscalls. This avoids libc overhead and can be
|
/// Read entire file using direct syscalls. This avoids libc overhead and can be
|
||||||
|
|
@ -689,46 +379,7 @@ pub struct SysInfo {
|
||||||
/// The caller must ensure that `info` points to a valid `SysInfo` buffer.
|
/// The caller must ensure that `info` points to a valid `SysInfo` buffer.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub unsafe fn sys_sysinfo(info: *mut SysInfo) -> i64 {
|
pub unsafe fn sys_sysinfo(info: *mut SysInfo) -> i64 {
|
||||||
#[cfg(target_arch = "x86_64")]
|
unsafe { arch::sys_sysinfo(info) }
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"syscall",
|
|
||||||
in("rax") 99_i64, // __NR_sysinfo
|
|
||||||
in("rdi") info,
|
|
||||||
out("rcx") _,
|
|
||||||
out("r11") _,
|
|
||||||
lateout("rax") ret,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
ret
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "aarch64")]
|
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"svc #0",
|
|
||||||
in("x8") 179_i64, // __NR_sysinfo
|
|
||||||
in("x0") info,
|
|
||||||
lateout("x0") ret,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
ret
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "riscv64")]
|
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"ecall",
|
|
||||||
in("a7") 179_i64, // __NR_sysinfo
|
|
||||||
in("a0") info,
|
|
||||||
lateout("a0") ret,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
ret
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Direct `sched_getaffinity(2)` syscall
|
/// Direct `sched_getaffinity(2)` syscall
|
||||||
|
|
@ -748,61 +399,7 @@ pub unsafe fn sys_sched_getaffinity(
|
||||||
mask_size: usize,
|
mask_size: usize,
|
||||||
mask: *mut u8,
|
mask: *mut u8,
|
||||||
) -> i32 {
|
) -> i32 {
|
||||||
#[cfg(target_arch = "x86_64")]
|
unsafe { arch::sys_sched_getaffinity(pid, mask_size, mask) }
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"syscall",
|
|
||||||
in("rax") 204i64, // __NR_sched_getaffinity
|
|
||||||
in("rdi") pid,
|
|
||||||
in("rsi") mask_size,
|
|
||||||
in("rdx") mask,
|
|
||||||
lateout("rax") ret,
|
|
||||||
lateout("rcx") _,
|
|
||||||
lateout("r11") _,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "aarch64")]
|
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"svc #0",
|
|
||||||
in("x8") 123i64, // __NR_sched_getaffinity
|
|
||||||
in("x0") pid,
|
|
||||||
in("x1") mask_size,
|
|
||||||
in("x2") mask,
|
|
||||||
lateout("x0") ret,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "riscv64")]
|
|
||||||
unsafe {
|
|
||||||
let ret: i64;
|
|
||||||
core::arch::asm!(
|
|
||||||
"ecall",
|
|
||||||
in("a7") 123i64, // __NR_sched_getaffinity
|
|
||||||
in("a0") pid,
|
|
||||||
in("a1") mask_size,
|
|
||||||
in("a2") mask,
|
|
||||||
lateout("a0") ret,
|
|
||||||
options(nostack)
|
|
||||||
);
|
|
||||||
#[allow(clippy::cast_possible_truncation)]
|
|
||||||
{
|
|
||||||
ret as i32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Direct syscall to exit the process
|
/// Direct syscall to exit the process
|
||||||
|
|
@ -812,33 +409,5 @@ pub unsafe fn sys_sched_getaffinity(
|
||||||
/// This syscall never returns. The process will terminate immediately.
|
/// This syscall never returns. The process will terminate immediately.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub unsafe fn sys_exit(code: i32) -> ! {
|
pub unsafe fn sys_exit(code: i32) -> ! {
|
||||||
#[cfg(target_arch = "x86_64")]
|
unsafe { arch::sys_exit(code) }
|
||||||
unsafe {
|
|
||||||
core::arch::asm!(
|
|
||||||
"syscall",
|
|
||||||
in("rax") 60i64, // SYS_exit
|
|
||||||
in("rdi") code,
|
|
||||||
options(noreturn, nostack)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "aarch64")]
|
|
||||||
unsafe {
|
|
||||||
core::arch::asm!(
|
|
||||||
"svc #0",
|
|
||||||
in("x8") 93i64, // SYS_exit
|
|
||||||
in("x0") code,
|
|
||||||
options(noreturn, nostack)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "riscv64")]
|
|
||||||
unsafe {
|
|
||||||
core::arch::asm!(
|
|
||||||
"ecall",
|
|
||||||
in("a7") 93i64, // SYS_exit
|
|
||||||
in("a0") code,
|
|
||||||
options(noreturn, nostack)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
166
crates/asm/src/riscv64.rs
Normal file
166
crates/asm/src/riscv64.rs
Normal file
|
|
@ -0,0 +1,166 @@
|
||||||
|
//! Syscall implementations for `riscv64`.
|
||||||
|
|
||||||
|
use super::{StatfsBuf, SysInfo, UtsNameBuf};
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_open(path: *const u8, flags: i32) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
let fd: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"ecall",
|
||||||
|
in("a7") 56i64, // SYS_openat
|
||||||
|
in("a0") -100i32, // AT_FDCWD
|
||||||
|
in("a1") path,
|
||||||
|
in("a2") flags,
|
||||||
|
in("a3") 0i32, // mode
|
||||||
|
lateout("a0") fd,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
fd as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_read(fd: i32, buf: *mut u8, count: usize) -> isize {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"ecall",
|
||||||
|
in("a7") 63i64, // SYS_read
|
||||||
|
in("a0") fd,
|
||||||
|
in("a1") buf,
|
||||||
|
in("a2") count,
|
||||||
|
lateout("a0") ret,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as isize
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_write(fd: i32, buf: *const u8, count: usize) -> isize {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"ecall",
|
||||||
|
in("a7") 64i64, // SYS_write
|
||||||
|
in("a0") fd,
|
||||||
|
in("a1") buf,
|
||||||
|
in("a2") count,
|
||||||
|
lateout("a0") ret,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as isize
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_close(fd: i32) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"ecall",
|
||||||
|
in("a7") 57i64, // SYS_close
|
||||||
|
in("a0") fd,
|
||||||
|
lateout("a0") ret,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_uname(buf: *mut UtsNameBuf) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"ecall",
|
||||||
|
in("a7") 160i64, // SYS_uname
|
||||||
|
in("a0") buf,
|
||||||
|
lateout("a0") ret,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_statfs(path: *const u8, buf: *mut StatfsBuf) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"ecall",
|
||||||
|
in("a7") 43i64, // SYS_statfs
|
||||||
|
in("a0") path,
|
||||||
|
in("a1") buf,
|
||||||
|
lateout("a0") ret,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_sysinfo(info: *mut SysInfo) -> i64 {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"ecall",
|
||||||
|
in("a7") 179_i64, // __NR_sysinfo
|
||||||
|
in("a0") info,
|
||||||
|
lateout("a0") ret,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_sched_getaffinity(
|
||||||
|
pid: i32,
|
||||||
|
mask_size: usize,
|
||||||
|
mask: *mut u8,
|
||||||
|
) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"ecall",
|
||||||
|
in("a7") 123i64, // __NR_sched_getaffinity
|
||||||
|
in("a0") pid,
|
||||||
|
in("a1") mask_size,
|
||||||
|
in("a2") mask,
|
||||||
|
lateout("a0") ret,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_exit(code: i32) -> ! {
|
||||||
|
unsafe {
|
||||||
|
core::arch::asm!(
|
||||||
|
"ecall",
|
||||||
|
in("a7") 93i64, // SYS_exit
|
||||||
|
in("a0") code,
|
||||||
|
options(noreturn, nostack)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
180
crates/asm/src/x86_64.rs
Normal file
180
crates/asm/src/x86_64.rs
Normal file
|
|
@ -0,0 +1,180 @@
|
||||||
|
//! Syscall implementations for `x86_64`.
|
||||||
|
|
||||||
|
use super::{StatfsBuf, SysInfo, UtsNameBuf};
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_open(path: *const u8, flags: i32) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
let fd: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"syscall",
|
||||||
|
in("rax") 2i64, // SYS_open
|
||||||
|
in("rdi") path,
|
||||||
|
in("rsi") flags,
|
||||||
|
in("rdx") 0i32, // mode (not used for reading)
|
||||||
|
lateout("rax") fd,
|
||||||
|
lateout("rcx") _,
|
||||||
|
lateout("r11") _,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
fd as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_read(fd: i32, buf: *mut u8, count: usize) -> isize {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"syscall",
|
||||||
|
in("rax") 0i64, // SYS_read
|
||||||
|
in("rdi") fd,
|
||||||
|
in("rsi") buf,
|
||||||
|
in("rdx") count,
|
||||||
|
lateout("rax") ret,
|
||||||
|
lateout("rcx") _,
|
||||||
|
lateout("r11") _,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as isize
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_write(fd: i32, buf: *const u8, count: usize) -> isize {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"syscall",
|
||||||
|
in("rax") 1i64, // SYS_write
|
||||||
|
in("rdi") fd,
|
||||||
|
in("rsi") buf,
|
||||||
|
in("rdx") count,
|
||||||
|
lateout("rax") ret,
|
||||||
|
lateout("rcx") _,
|
||||||
|
lateout("r11") _,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as isize
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_close(fd: i32) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"syscall",
|
||||||
|
in("rax") 3i64, // SYS_close
|
||||||
|
in("rdi") fd,
|
||||||
|
lateout("rax") ret,
|
||||||
|
lateout("rcx") _,
|
||||||
|
lateout("r11") _,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_uname(buf: *mut UtsNameBuf) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"syscall",
|
||||||
|
in("rax") 63i64, // SYS_uname
|
||||||
|
in("rdi") buf,
|
||||||
|
lateout("rax") ret,
|
||||||
|
lateout("rcx") _,
|
||||||
|
lateout("r11") _,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_statfs(path: *const u8, buf: *mut StatfsBuf) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"syscall",
|
||||||
|
in("rax") 137i64, // SYS_statfs
|
||||||
|
in("rdi") path,
|
||||||
|
in("rsi") buf,
|
||||||
|
lateout("rax") ret,
|
||||||
|
lateout("rcx") _,
|
||||||
|
lateout("r11") _,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_sysinfo(info: *mut SysInfo) -> i64 {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"syscall",
|
||||||
|
in("rax") 99_i64, // __NR_sysinfo
|
||||||
|
in("rdi") info,
|
||||||
|
out("rcx") _,
|
||||||
|
out("r11") _,
|
||||||
|
lateout("rax") ret,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_sched_getaffinity(
|
||||||
|
pid: i32,
|
||||||
|
mask_size: usize,
|
||||||
|
mask: *mut u8,
|
||||||
|
) -> i32 {
|
||||||
|
unsafe {
|
||||||
|
let ret: i64;
|
||||||
|
core::arch::asm!(
|
||||||
|
"syscall",
|
||||||
|
in("rax") 204i64, // __NR_sched_getaffinity
|
||||||
|
in("rdi") pid,
|
||||||
|
in("rsi") mask_size,
|
||||||
|
in("rdx") mask,
|
||||||
|
lateout("rax") ret,
|
||||||
|
lateout("rcx") _,
|
||||||
|
lateout("r11") _,
|
||||||
|
options(nostack)
|
||||||
|
);
|
||||||
|
#[allow(clippy::cast_possible_truncation)]
|
||||||
|
{
|
||||||
|
ret as i32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) unsafe fn sys_exit(code: i32) -> ! {
|
||||||
|
unsafe {
|
||||||
|
core::arch::asm!(
|
||||||
|
"syscall",
|
||||||
|
in("rax") 60i64, // SYS_exit
|
||||||
|
in("rdi") code,
|
||||||
|
options(noreturn, nostack)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -401,7 +401,13 @@ fn print_system_info(fields: &Fields) -> Result<(), Error> {
|
||||||
// Row format mirrors the default logo path exactly.
|
// Row format mirrors the default logo path exactly.
|
||||||
let rows: [(&str, &str, &str, &str, &str); 11] = [
|
let rows: [(&str, &str, &str, &str, &str); 11] = [
|
||||||
("", "", user_info.as_str(), " ", " ~"),
|
("", "", user_info.as_str(), " ", " ~"),
|
||||||
("\u{F313} ", "System", os_name.as_str(), " \u{E621} ", ""),
|
(
|
||||||
|
"\u{F313} ",
|
||||||
|
"System",
|
||||||
|
os_name.as_str(),
|
||||||
|
" \u{E621} ",
|
||||||
|
"",
|
||||||
|
),
|
||||||
(
|
(
|
||||||
"\u{E712} ",
|
"\u{E712} ",
|
||||||
"Kernel",
|
"Kernel",
|
||||||
|
|
@ -409,11 +415,41 @@ fn print_system_info(fields: &Fields) -> Result<(), Error> {
|
||||||
" \u{E621} ",
|
" \u{E621} ",
|
||||||
"",
|
"",
|
||||||
),
|
),
|
||||||
("\u{F2DB} ", "CPU", cpu_name.as_str(), " \u{E621} ", ""),
|
(
|
||||||
("\u{F4BC} ", "Topology", cpu_cores.as_str(), " \u{E621} ", ""),
|
"\u{F2DB} ",
|
||||||
("\u{E795} ", "Shell", shell.as_str(), " \u{E621} ", ""),
|
"CPU",
|
||||||
("\u{F017} ", "Uptime", uptime.as_str(), " \u{E621} ", ""),
|
cpu_name.as_str(),
|
||||||
("\u{F2D2} ", "Desktop", desktop.as_str(), " \u{E621} ", ""),
|
" \u{E621} ",
|
||||||
|
"",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"\u{F4BC} ",
|
||||||
|
"Topology",
|
||||||
|
cpu_cores.as_str(),
|
||||||
|
" \u{E621} ",
|
||||||
|
"",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"\u{E795} ",
|
||||||
|
"Shell",
|
||||||
|
shell.as_str(),
|
||||||
|
" \u{E621} ",
|
||||||
|
"",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"\u{F017} ",
|
||||||
|
"Uptime",
|
||||||
|
uptime.as_str(),
|
||||||
|
" \u{E621} ",
|
||||||
|
"",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"\u{F2D2} ",
|
||||||
|
"Desktop",
|
||||||
|
desktop.as_str(),
|
||||||
|
" \u{E621} ",
|
||||||
|
"",
|
||||||
|
),
|
||||||
(
|
(
|
||||||
"\u{F035B} ",
|
"\u{F035B} ",
|
||||||
"Memory",
|
"Memory",
|
||||||
|
|
@ -421,8 +457,20 @@ fn print_system_info(fields: &Fields) -> Result<(), Error> {
|
||||||
" \u{E621} ",
|
" \u{E621} ",
|
||||||
"",
|
"",
|
||||||
),
|
),
|
||||||
("\u{F194E} ", "Storage (/)", storage.as_str(), " \u{E621} ", ""),
|
(
|
||||||
("\u{E22B} ", "Colors", colors.as_str(), " \u{E621} ", ""),
|
"\u{F194E} ",
|
||||||
|
"Storage (/)",
|
||||||
|
storage.as_str(),
|
||||||
|
" \u{E621} ",
|
||||||
|
"",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"\u{E22B} ",
|
||||||
|
"Colors",
|
||||||
|
colors.as_str(),
|
||||||
|
" \u{E621} ",
|
||||||
|
"",
|
||||||
|
),
|
||||||
];
|
];
|
||||||
|
|
||||||
core::fmt::write(&mut w, format_args!("\n")).ok();
|
core::fmt::write(&mut w, format_args!("\n")).ok();
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,9 @@ extern crate alloc;
|
||||||
use core::{arch::naked_asm, panic::PanicInfo};
|
use core::{arch::naked_asm, panic::PanicInfo};
|
||||||
|
|
||||||
use microfetch_alloc::BumpAllocator;
|
use microfetch_alloc::BumpAllocator;
|
||||||
|
use microfetch_asm::{entry_rust, sys_exit, sys_write};
|
||||||
// Re-export libc replacement functions from asm crate
|
// Re-export libc replacement functions from asm crate
|
||||||
pub use microfetch_asm::{memcpy, memset, strlen};
|
pub use microfetch_asm::{memcpy, memset, strlen};
|
||||||
use microfetch_asm::{entry_rust, sys_exit, sys_write};
|
|
||||||
|
|
||||||
#[cfg(target_arch = "x86_64")]
|
#[cfg(target_arch = "x86_64")]
|
||||||
#[unsafe(no_mangle)]
|
#[unsafe(no_mangle)]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue