//! IBM Z 64-bit Instruction Set Architecture. use crate::dominator_tree::DominatorTree; use crate::ir::{Function, Type}; use crate::isa::s390x::settings as s390x_settings; #[cfg(feature = "unwind")] use crate::isa::unwind::systemv::RegisterMappingError; use crate::isa::{Builder as IsaBuilder, FunctionAlignment, TargetIsa}; use crate::machinst::{ compile, CompiledCode, CompiledCodeStencil, MachInst, MachTextSectionBuilder, Reg, SigSet, TextSectionBuilder, VCode, }; use crate::result::CodegenResult; use crate::settings as shared_settings; use alloc::{boxed::Box, vec::Vec}; use core::fmt; use cranelift_control::ControlPlane; use target_lexicon::{Architecture, Triple}; // New backend: mod abi; pub(crate) mod inst; mod lower; mod settings; use self::inst::EmitInfo; /// A IBM Z backend. pub struct S390xBackend { triple: Triple, flags: shared_settings::Flags, isa_flags: s390x_settings::Flags, } impl S390xBackend { /// Create a new IBM Z backend with the given (shared) flags. pub fn new_with_flags( triple: Triple, flags: shared_settings::Flags, isa_flags: s390x_settings::Flags, ) -> S390xBackend { S390xBackend { triple, flags, isa_flags, } } /// This performs lowering to VCode, register-allocates the code, computes block layout and /// finalizes branches. The result is ready for binary emission. fn compile_vcode( &self, func: &Function, domtree: &DominatorTree, ctrl_plane: &mut ControlPlane, ) -> CodegenResult<(VCode, regalloc2::Output)> { let emit_info = EmitInfo::new(self.isa_flags.clone()); let sigs = SigSet::new::(func, &self.flags)?; let abi = abi::S390xCallee::new(func, self, &self.isa_flags, &sigs)?; compile::compile::(func, domtree, self, abi, emit_info, sigs, ctrl_plane) } } impl TargetIsa for S390xBackend { fn compile_function( &self, func: &Function, domtree: &DominatorTree, want_disasm: bool, ctrl_plane: &mut ControlPlane, ) -> CodegenResult { let flags = self.flags(); let (vcode, regalloc_result) = self.compile_vcode(func, domtree, ctrl_plane)?; let emit_result = vcode.emit(®alloc_result, want_disasm, flags, ctrl_plane); let frame_size = emit_result.frame_size; let value_labels_ranges = emit_result.value_labels_ranges; let buffer = emit_result.buffer; let sized_stackslot_offsets = emit_result.sized_stackslot_offsets; let dynamic_stackslot_offsets = emit_result.dynamic_stackslot_offsets; if let Some(disasm) = emit_result.disasm.as_ref() { log::debug!("disassembly:\n{}", disasm); } Ok(CompiledCodeStencil { buffer, frame_size, vcode: emit_result.disasm, value_labels_ranges, sized_stackslot_offsets, dynamic_stackslot_offsets, bb_starts: emit_result.bb_offsets, bb_edges: emit_result.bb_edges, }) } fn name(&self) -> &'static str { "s390x" } fn triple(&self) -> &Triple { &self.triple } fn flags(&self) -> &shared_settings::Flags { &self.flags } fn isa_flags(&self) -> Vec { self.isa_flags.iter().collect() } fn dynamic_vector_bytes(&self, _dyn_ty: Type) -> u32 { 16 } #[cfg(feature = "unwind")] fn emit_unwind_info( &self, result: &CompiledCode, kind: crate::isa::unwind::UnwindInfoKind, ) -> CodegenResult> { use crate::isa::unwind::UnwindInfo; use crate::isa::unwind::UnwindInfoKind; Ok(match kind { UnwindInfoKind::SystemV => { let mapper = self::inst::unwind::systemv::RegisterMapper; Some(UnwindInfo::SystemV( crate::isa::unwind::systemv::create_unwind_info_from_insts( &result.buffer.unwind_info[..], result.buffer.data().len(), &mapper, )?, )) } _ => None, }) } #[cfg(feature = "unwind")] fn create_systemv_cie(&self) -> Option { Some(inst::unwind::systemv::create_cie()) } #[cfg(feature = "unwind")] fn map_regalloc_reg_to_dwarf(&self, reg: Reg) -> Result { inst::unwind::systemv::map_reg(reg).map(|reg| reg.0) } fn text_section_builder(&self, num_funcs: usize) -> Box { Box::new(MachTextSectionBuilder::::new(num_funcs)) } fn function_alignment(&self) -> FunctionAlignment { inst::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 { use capstone::prelude::*; let mut cs = Capstone::new() .sysz() .mode(arch::sysz::ArchMode::Default) .build()?; cs.set_skipdata(true)?; Ok(cs) } fn has_native_fma(&self) -> bool { true } fn has_x86_blendv_lowering(&self, _: Type) -> bool { false } fn has_x86_pshufb_lowering(&self) -> bool { false } fn has_x86_pmulhrsw_lowering(&self) -> bool { false } fn has_x86_pmaddubsw_lowering(&self) -> bool { false } } impl fmt::Display for S390xBackend { 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() } } /// Create a new `isa::Builder`. pub fn isa_builder(triple: Triple) -> IsaBuilder { assert!(triple.architecture == Architecture::S390x); IsaBuilder { triple, setup: s390x_settings::builder(), constructor: |triple, shared_flags, builder| { let isa_flags = s390x_settings::Flags::new(&shared_flags, builder); let backend = S390xBackend::new_with_flags(triple, shared_flags, isa_flags); Ok(backend.wrapped()) }, } }