With Rust 2018 Edition, the `mod std` trick to alias `core` names to `std` no longer works, so switch to just having the code use `core` explicitly. So instead, switch to just using `core::*` for things that in core. This is more consistent with other Rust no_std code. And it allows us to enable `no_std` mode unconditionally in the crates that support it, which makes testing a little easier. There actually three cases: - For things in std and also in core, like `cmp`: Just use them via `core::*`. - For things in std and also in alloc, like `Vec`: Import alloc as std, as use them from std. This allows them to work on both stable (which doesn't provide alloc, but we don't support no_std mode anyway) and nightly. - For HashMap and similar which are not in core or alloc, import them in the top-level lib.rs files from either std or the third-party hashmap_core crate, and then have the code use super::hashmap_core. Also, no_std support continues to be "best effort" at this time and not something most people need to be testing.
53 lines
1.6 KiB
Rust
53 lines
1.6 KiB
Rust
//! x86 Settings.
|
|
|
|
use crate::settings::{self, detail, Builder};
|
|
use core::fmt;
|
|
|
|
// Include code generated by `lib/codegen/meta-python/gen_settings.py`. This file contains a public
|
|
// `Flags` struct with an impl for all of the settings defined in
|
|
// `lib/codegen/meta-python/isa/x86/settings.py`.
|
|
include!(concat!(env!("OUT_DIR"), "/settings-x86.rs"));
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::{builder, Flags};
|
|
use crate::settings::{self, Configurable};
|
|
|
|
#[test]
|
|
fn presets() {
|
|
let shared = settings::Flags::new(settings::builder());
|
|
|
|
// Nehalem has SSE4.1 but not BMI1.
|
|
let mut b0 = builder();
|
|
b0.enable("nehalem").unwrap();
|
|
let f0 = Flags::new(&shared, b0);
|
|
assert_eq!(f0.has_sse41(), true);
|
|
assert_eq!(f0.has_bmi1(), false);
|
|
|
|
let mut b1 = builder();
|
|
b1.enable("haswell").unwrap();
|
|
let f1 = Flags::new(&shared, b1);
|
|
assert_eq!(f1.has_sse41(), true);
|
|
assert_eq!(f1.has_bmi1(), true);
|
|
}
|
|
#[test]
|
|
fn display_presets() {
|
|
// Spot check that the flags Display impl does not cause a panic
|
|
let shared = settings::Flags::new(settings::builder());
|
|
|
|
let b0 = builder();
|
|
let f0 = Flags::new(&shared, b0);
|
|
let _ = format!("{}", f0);
|
|
|
|
let mut b1 = builder();
|
|
b1.enable("nehalem").unwrap();
|
|
let f1 = Flags::new(&shared, b1);
|
|
let _ = format!("{}", f1);
|
|
|
|
let mut b2 = builder();
|
|
b2.enable("haswell").unwrap();
|
|
let f2 = Flags::new(&shared, b2);
|
|
let _ = format!("{}", f2);
|
|
}
|
|
}
|