cranelift_codegen_meta/isa/
mod.rsuse crate::cdsl::isa::TargetIsa;
use std::fmt;
mod arm64;
mod pulley;
mod riscv64;
mod s390x;
pub(crate) mod x86;
#[derive(PartialEq, Copy, Clone)]
pub enum Isa {
X86,
Arm64,
S390x,
Riscv64,
Pulley32,
Pulley64,
}
impl Isa {
pub fn from_name(name: &str) -> Option<Self> {
Isa::all()
.iter()
.cloned()
.find(|isa| isa.to_string() == name)
}
pub fn from_arch(arch: &str) -> Option<Self> {
match arch {
"aarch64" => Some(Isa::Arm64),
"s390x" => Some(Isa::S390x),
x if ["x86_64", "i386", "i586", "i686"].contains(&x) => Some(Isa::X86),
"riscv64" | "riscv64gc" | "riscv64imac" => Some(Isa::Riscv64),
"pulley32" => Some(Isa::Pulley32),
"pulley64" => Some(Isa::Pulley64),
_ => None,
}
}
pub fn all() -> &'static [Isa] {
&[
Isa::X86,
Isa::Arm64,
Isa::S390x,
Isa::Riscv64,
Isa::Pulley32,
Isa::Pulley64,
]
}
}
impl fmt::Display for Isa {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
Isa::X86 => write!(f, "x86"),
Isa::Arm64 => write!(f, "arm64"),
Isa::S390x => write!(f, "s390x"),
Isa::Riscv64 => write!(f, "riscv64"),
Isa::Pulley32 => write!(f, "pulley32"),
Isa::Pulley64 => write!(f, "pulley64"),
}
}
}
pub(crate) fn define(isas: &[Isa]) -> Vec<TargetIsa> {
isas.iter()
.map(|isa| match isa {
Isa::X86 => x86::define(),
Isa::Arm64 => arm64::define(),
Isa::S390x => s390x::define(),
Isa::Riscv64 => riscv64::define(),
Isa::Pulley32 | Isa::Pulley64 => pulley::define(),
})
.collect()
}