pub use self::inst::{AtomicRmwSeqOp, EmitInfo, EmitState, Inst, args, external};
use super::{OwnedTargetIsa, TargetIsa};
use crate::dominator_tree::DominatorTree;
use crate::ir::{self, Function, Type, types};
#[cfg(feature = "unwind")]
use crate::isa::unwind::systemv;
use crate::isa::x64::settings as x64_settings;
use crate::isa::{Builder as IsaBuilder, FunctionAlignment, IsaFlagsHashKey};
use crate::machinst::{
CompiledCodeStencil, MachInst, MachTextSectionBuilder, Reg, SigSet, TextSectionBuilder, VCode,
compile,
};
use crate::result::{CodegenError, CodegenResult};
use crate::settings::{self as shared_settings, Flags};
use crate::{Final, MachBufferFinalized};
use alloc::string::String;
use alloc::{borrow::ToOwned, boxed::Box, vec::Vec};
use core::fmt;
use cranelift_control::ControlPlane;
use target_lexicon::Triple;
mod abi;
mod inst;
mod lower;
mod pcc;
pub mod settings;
#[cfg(feature = "unwind")]
pub use inst::unwind::systemv::create_cie;
pub(crate) struct X64Backend {
triple: Triple,
flags: Flags,
x64_flags: x64_settings::Flags,
}
impl X64Backend {
fn new_with_flags(
triple: Triple,
flags: Flags,
x64_flags: x64_settings::Flags,
) -> CodegenResult<Self> {
if triple.pointer_width().unwrap() != target_lexicon::PointerWidth::U64 {
return Err(CodegenError::Unsupported(
"the x32 ABI is not supported".to_owned(),
));
}
Ok(Self {
triple,
flags,
x64_flags,
})
}
fn compile_vcode(
&self,
func: &Function,
domtree: &DominatorTree,
ctrl_plane: &mut ControlPlane,
) -> CodegenResult<(VCode<inst::Inst>, regalloc2::Output)> {
let emit_info = EmitInfo::new(self.flags.clone(), self.x64_flags.clone());
let sigs = SigSet::new::<abi::X64ABIMachineSpec>(func, &self.flags)?;
let abi = abi::X64Callee::new(func, self, &self.x64_flags, &sigs)?;
compile::compile::<Self>(func, domtree, self, abi, emit_info, sigs, ctrl_plane)
}
}
impl TargetIsa for X64Backend {
fn compile_function(
&self,
func: &Function,
domtree: &DominatorTree,
want_disasm: bool,
ctrl_plane: &mut ControlPlane,
) -> CodegenResult<CompiledCodeStencil> {
let (vcode, regalloc_result) = self.compile_vcode(func, domtree, ctrl_plane)?;
let emit_result = vcode.emit(®alloc_result, want_disasm, &self.flags, ctrl_plane);
let value_labels_ranges = emit_result.value_labels_ranges;
let buffer = emit_result.buffer;
if let Some(disasm) = emit_result.disasm.as_ref() {
crate::trace!("disassembly:\n{}", disasm);
}
Ok(CompiledCodeStencil {
buffer,
vcode: emit_result.disasm,
value_labels_ranges,
bb_starts: emit_result.bb_offsets,
bb_edges: emit_result.bb_edges,
})
}
fn flags(&self) -> &Flags {
&self.flags
}
fn isa_flags(&self) -> Vec<shared_settings::Value> {
self.x64_flags.iter().collect()
}
fn isa_flags_hash_key(&self) -> IsaFlagsHashKey<'_> {
IsaFlagsHashKey(self.x64_flags.hash_key())
}
fn dynamic_vector_bytes(&self, _dyn_ty: Type) -> u32 {
16
}
fn name(&self) -> &'static str {
"x64"
}
fn triple(&self) -> &Triple {
&self.triple
}
#[cfg(feature = "unwind")]
fn emit_unwind_info(
&self,
result: &crate::machinst::CompiledCode,
kind: crate::isa::unwind::UnwindInfoKind,
) -> CodegenResult<Option<crate::isa::unwind::UnwindInfo>> {
emit_unwind_info(&result.buffer, kind)
}
#[cfg(feature = "unwind")]
fn create_systemv_cie(&self) -> Option<gimli::write::CommonInformationEntry> {
Some(inst::unwind::systemv::create_cie())
}
#[cfg(feature = "unwind")]
fn map_regalloc_reg_to_dwarf(&self, reg: Reg) -> Result<u16, systemv::RegisterMappingError> {
inst::unwind::systemv::map_reg(reg).map(|reg| reg.0)
}
fn text_section_builder(&self, num_funcs: usize) -> Box<dyn TextSectionBuilder> {
Box::new(MachTextSectionBuilder::<inst::Inst>::new(num_funcs))
}
fn function_alignment(&self) -> FunctionAlignment {
Inst::function_alignment()
}
fn page_size_align_log2(&self) -> u8 {
debug_assert_eq!(1 << 12, 0x1000);
12
}
#[cfg(feature = "disas")]
fn to_capstone(&self) -> Result<capstone::Capstone, capstone::Error> {
use capstone::prelude::*;
Capstone::new()
.x86()
.mode(arch::x86::ArchMode::Mode64)
.syntax(arch::x86::ArchSyntax::Att)
.detail(true)
.build()
}
fn pretty_print_reg(&self, reg: Reg, size: u8) -> String {
inst::regs::pretty_print_reg(reg, size)
}
fn has_native_fma(&self) -> bool {
self.x64_flags.has_avx() && self.x64_flags.has_fma()
}
fn has_round(&self) -> bool {
self.x64_flags.has_sse41()
}
fn has_blendv_lowering(&self, ty: Type) -> bool {
self.x64_flags.has_sse41() && ty != types::I16X8
}
fn has_x86_pshufb_lowering(&self) -> bool {
self.x64_flags.has_ssse3()
}
fn has_x86_pmulhrsw_lowering(&self) -> bool {
self.x64_flags.has_ssse3()
}
fn has_x86_pmaddubsw_lowering(&self) -> bool {
self.x64_flags.has_ssse3()
}
fn default_argument_extension(&self) -> ir::ArgumentExtension {
ir::ArgumentExtension::Uext
}
}
pub fn emit_unwind_info(
buffer: &MachBufferFinalized<Final>,
kind: crate::isa::unwind::UnwindInfoKind,
) -> CodegenResult<Option<crate::isa::unwind::UnwindInfo>> {
#[cfg(feature = "unwind")]
use crate::isa::unwind::{UnwindInfo, UnwindInfoKind};
#[cfg(not(feature = "unwind"))]
let _ = buffer;
Ok(match kind {
#[cfg(feature = "unwind")]
UnwindInfoKind::SystemV => {
let mapper = self::inst::unwind::systemv::RegisterMapper;
Some(UnwindInfo::SystemV(
crate::isa::unwind::systemv::create_unwind_info_from_insts(
&buffer.unwind_info[..],
buffer.data().len(),
&mapper,
)?,
))
}
#[cfg(feature = "unwind")]
UnwindInfoKind::Windows => Some(UnwindInfo::WindowsX64(
crate::isa::unwind::winx64::create_unwind_info_from_insts::<
self::inst::unwind::winx64::RegisterMapper,
>(&buffer.unwind_info[..])?,
)),
_ => None,
})
}
impl fmt::Display for X64Backend {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("MachBackend")
.field("name", &self.name())
.field("triple", &self.triple())
.field("flags", &format!("{}", self.flags()))
.finish()
}
}
pub(crate) fn isa_builder(triple: Triple) -> IsaBuilder {
IsaBuilder {
triple,
setup: x64_settings::builder(),
constructor: isa_constructor,
}
}
fn isa_constructor(
triple: Triple,
shared_flags: Flags,
builder: &shared_settings::Builder,
) -> CodegenResult<OwnedTargetIsa> {
let isa_flags = x64_settings::Flags::new(&shared_flags, builder);
let backend = X64Backend::new_with_flags(triple, shared_flags, isa_flags)?;
Ok(backend.wrapped())
}