gaia-assembler 0.1.1

Universal assembler framework for Gaia project
Documentation
//! Mach-O (Mach Object) backend compiler

use crate::{config::GaiaConfig, program::GaiaModule, Backend, GeneratedFiles};
use gaia_types::{
    helpers::{AbiCompatible, ApiCompatible, Architecture, ArtifactType, CompilationTarget},
    Result,
};
use std::collections::HashMap;

/// Mach-O Backend implementation
#[derive(Default)]
pub struct MachoBackend {}

impl Backend for MachoBackend {
    fn name(&self) -> &'static str {
        "Mach-O"
    }

    fn primary_target(&self) -> CompilationTarget {
        CompilationTarget { build: Architecture::X86_64, host: AbiCompatible::MachO, target: ApiCompatible::Apple }
    }

    fn artifact_type(&self) -> ArtifactType {
        ArtifactType::Executable
    }

    fn match_score(&self, target: &CompilationTarget) -> f32 {
        if target.host == AbiCompatible::MachO {
            return 80.0;
        }
        0.0
    }

    fn generate(&self, _program: &GaiaModule, config: &GaiaConfig) -> Result<GeneratedFiles> {
        #[cfg(feature = "macho-assembler")]
        {
            Ok(GeneratedFiles { artifact_type: self.artifact_type(), files: HashMap::new(), custom: None, diagnostics: vec![] })
        }
        #[cfg(not(feature = "macho-assembler"))]
        {
            Err(gaia_types::GaiaError::custom_error("Mach-O feature is not enabled"))
        }
    }
}