|
1 | 1 | # The functions in this file may not be used anywhere in this package but may
|
2 | 2 | # needed by different modules of BinaryBuilder.jl
|
3 | 3 |
|
| 4 | +using Base.BinaryPlatforms: arch_march_isa_mapping, set_compare_strategy! |
| 5 | +using Base.BinaryPlatforms.CPUID |
| 6 | + |
4 | 7 | with_logfile(f::Function, prefix::Prefix, name::String; subdir="") = with_logfile(f, joinpath(logdir(prefix; subdir), name))
|
5 | 8 | function with_logfile(f::Function, logfile::String)
|
6 | 9 | mkpath(dirname(logfile))
|
|
60 | 63 | # We want the AnyPlatform to look like `default_host_platform`,
|
61 | 64 | get_concrete_platform(::AnyPlatform, shards::Vector{CompilerShard}) =
|
62 | 65 | get_concrete_platform(default_host_platform, shards)
|
| 66 | + |
| 67 | +function march_comparison_strategy(a::String, b::String, a_requested::Bool, b_requested::Bool) |
| 68 | + # If both b and a requested, then we fall back to equality: |
| 69 | + if a_requested && b_requested |
| 70 | + return a == b |
| 71 | + end |
| 72 | + |
| 73 | + function get_arch_isa(isa_name::String) |
| 74 | + for (arch, isas) in arch_march_isa_mapping |
| 75 | + for (name, isa) in isas |
| 76 | + name == isa_name && return arch, isa |
| 77 | + end |
| 78 | + end |
| 79 | + return nothing, nothing |
| 80 | + end |
| 81 | + |
| 82 | + a_arch, a_isa = get_arch_isa(a) |
| 83 | + b_arch, b_isa = get_arch_isa(b) |
| 84 | + if any(isnothing, (a_arch, b_arch)) || a_arch != b_arch |
| 85 | + # Architectures are definitely not compatible, exit early |
| 86 | + return false |
| 87 | + end |
| 88 | + |
| 89 | + if a_requested |
| 90 | + # ISA `b` is compatible with ISA `a` only if it's a subset of `a` |
| 91 | + return b_isa ≤ a_isa |
| 92 | + else |
| 93 | + # ISA `a` is compatible with ISA `b` only if it's a subset of `b` |
| 94 | + return a_isa ≤ b_isa |
| 95 | + end |
| 96 | +end |
| 97 | + |
| 98 | +function augment_microarchitecture!(platform::Platform) |
| 99 | + haskey(platform, "march") && return platform |
| 100 | + |
| 101 | + host_arch = arch(HostPlatform()) |
| 102 | + host_isas = arch_march_isa_mapping[host_arch] |
| 103 | + idx = findlast(((name, isa),) -> isa <= CPUID.cpu_isa(), host_isas) |
| 104 | + platform["march"] = first(host_isas[idx]) |
| 105 | + set_compare_strategy!(platform, "march", march_comparison_strategy) |
| 106 | + return platform |
| 107 | +end |
0 commit comments