cpuid fixed

This commit is contained in:
Erin 2022-02-02 00:06:00 +01:00 committed by ondra05
parent 3b9a3ab18a
commit 7fa6a45247
2 changed files with 19 additions and 22 deletions

View file

@ -18,6 +18,7 @@
//! } //! }
//! ``` //! ```
use core::arch::asm;
use core::ops::Deref; use core::ops::Deref;
use core::{fmt, slice, str}; use core::{fmt, slice, str};
@ -39,28 +40,27 @@ pub enum RequestType {
} }
pub fn cpuid(code: RequestType) -> (u32, u32, u32, u32) { pub fn cpuid(code: RequestType) -> (u32, u32, u32, u32) {
let res1; let eax;
let res2; let ebx;
let res3; let ecx;
let res4; let edx;
unsafe { unsafe {
llvm_asm!("cpuid" asm!(
: // output operands "movq %rbx, {0:r}",
"={eax}"(res1), "cpuid",
"={ebx}"(res2), "xchgq %rbx, {0:r}",
"={ecx}"(res3), lateout(reg) ebx,
"={edx}"(res4) inlateout("eax") code as u32 => eax,
: // input operands inlateout("ecx") 0 => ecx,
"{eax}"(code as u32), lateout("edx") edx,
"{ecx}"(0 as u32) options(nostack, preserves_flags, att_syntax),
: // clobbers
: // options
); );
} }
(res1, res2, res3, res4) (eax, ebx, ecx, edx)
} }
/// The main entrypoint to the CPU information /// The main entrypoint to the CPU information
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
pub fn master() -> Option<Master> { pub fn master() -> Option<Master> {

View file

@ -6,17 +6,14 @@
#![no_std] #![no_std]
#![feature( #![feature(
abi_x86_interrupt, abi_x86_interrupt,
// asm,
asm_sym, asm_sym,
alloc_error_handler, alloc_error_handler,
core_intrinsics, core_intrinsics,
// global_asm, exclusive_range_pattern,
lang_items, lang_items,
llvm_asm, naked_functions,
naked_functions slice_pattern,
)] )]
#![feature(exclusive_range_pattern)]
#![feature(slice_pattern)]
/// Contains architecture specific code for aarch64. /// Contains architecture specific code for aarch64.
#[cfg(target_arch = "aarch64")] #[cfg(target_arch = "aarch64")]