mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
in favor of CPU features. Also rearrange the `std.Target`
data structure.
* note: `@import("builtin")` was already deprecated in favor of
`@import("std").builtin`.
* `std.builtin.arch` is now deprecated in favor of
`std.builtin.cpu.arch`.
* `std.Target.CpuFeatures.Cpu` is now `std.Target.Cpu.Model`.
* `std.Target.CpuFeatures` is now `std.Target.Cpu`.
* `std.Target` no longer has an `arch` field. Instead it has a
`cpu` field, which has `arch`, `model`, and `features`.
* `std.Target` no longer has a `cpu_features` field.
* `std.Target.Arch` is moved to `std.Target.Cpu.Arch` and
it is an enum instead of a tagged union.
* `std.Target.parseOs` is moved to `std.Target.Os.parse`.
* `std.Target.parseAbi` is moved to `std.Target.Abi.parse`.
* `std.Target.parseArchSub` is only for arch now and moved
to `std.Target.Cpu.Arch.parse`.
* `std.Target.parse` is improved to accept CPU name and features.
* `std.Target.Arch.getBaselineCpuFeatures` is moved to
`std.Target.Cpu.baseline`.
* `std.Target.allCpus` is renamed to `std.Target.allCpuModels`.
* `std.Target.defaultAbi` is moved to `std.Target.Abi.default`.
* Significant cleanup of aarch64 and arm CPU features, resulting in
the needed bit count for cpu feature set going from 174 to 138.
* Add `std.Target.Cpu.Feature.Set.addFeatureSet` for merging
feature sets together.
`-target-feature` and `-target-cpu` are removed in favor of
`-mcpu`, to conform to established conventions, and it gains
additional power to support cpu features. The syntax is:
-mcpu=name+on1+on2-off1-off2
closes #4261
116 lines
3.7 KiB
Zig
116 lines
3.7 KiB
Zig
const std = @import("../std.zig");
|
|
const CpuFeature = std.Target.Cpu.Feature;
|
|
const CpuModel = std.Target.Cpu.Model;
|
|
|
|
pub const Feature = enum {
|
|
atomics,
|
|
bulk_memory,
|
|
exception_handling,
|
|
multivalue,
|
|
mutable_globals,
|
|
nontrapping_fptoint,
|
|
sign_ext,
|
|
simd128,
|
|
tail_call,
|
|
unimplemented_simd128,
|
|
};
|
|
|
|
pub usingnamespace CpuFeature.feature_set_fns(Feature);
|
|
|
|
pub const all_features = blk: {
|
|
const len = @typeInfo(Feature).Enum.fields.len;
|
|
std.debug.assert(len <= CpuFeature.Set.needed_bit_count);
|
|
var result: [len]CpuFeature = undefined;
|
|
result[@enumToInt(Feature.atomics)] = .{
|
|
.llvm_name = "atomics",
|
|
.description = "Enable Atomics",
|
|
.dependencies = featureSet(&[_]Feature{}),
|
|
};
|
|
result[@enumToInt(Feature.bulk_memory)] = .{
|
|
.llvm_name = "bulk-memory",
|
|
.description = "Enable bulk memory operations",
|
|
.dependencies = featureSet(&[_]Feature{}),
|
|
};
|
|
result[@enumToInt(Feature.exception_handling)] = .{
|
|
.llvm_name = "exception-handling",
|
|
.description = "Enable Wasm exception handling",
|
|
.dependencies = featureSet(&[_]Feature{}),
|
|
};
|
|
result[@enumToInt(Feature.multivalue)] = .{
|
|
.llvm_name = "multivalue",
|
|
.description = "Enable multivalue blocks, instructions, and functions",
|
|
.dependencies = featureSet(&[_]Feature{}),
|
|
};
|
|
result[@enumToInt(Feature.mutable_globals)] = .{
|
|
.llvm_name = "mutable-globals",
|
|
.description = "Enable mutable globals",
|
|
.dependencies = featureSet(&[_]Feature{}),
|
|
};
|
|
result[@enumToInt(Feature.nontrapping_fptoint)] = .{
|
|
.llvm_name = "nontrapping-fptoint",
|
|
.description = "Enable non-trapping float-to-int conversion operators",
|
|
.dependencies = featureSet(&[_]Feature{}),
|
|
};
|
|
result[@enumToInt(Feature.sign_ext)] = .{
|
|
.llvm_name = "sign-ext",
|
|
.description = "Enable sign extension operators",
|
|
.dependencies = featureSet(&[_]Feature{}),
|
|
};
|
|
result[@enumToInt(Feature.simd128)] = .{
|
|
.llvm_name = "simd128",
|
|
.description = "Enable 128-bit SIMD",
|
|
.dependencies = featureSet(&[_]Feature{}),
|
|
};
|
|
result[@enumToInt(Feature.tail_call)] = .{
|
|
.llvm_name = "tail-call",
|
|
.description = "Enable tail call instructions",
|
|
.dependencies = featureSet(&[_]Feature{}),
|
|
};
|
|
result[@enumToInt(Feature.unimplemented_simd128)] = .{
|
|
.llvm_name = "unimplemented-simd128",
|
|
.description = "Enable 128-bit SIMD not yet implemented in engines",
|
|
.dependencies = featureSet(&[_]Feature{
|
|
.simd128,
|
|
}),
|
|
};
|
|
const ti = @typeInfo(Feature);
|
|
for (result) |*elem, i| {
|
|
elem.index = i;
|
|
elem.name = ti.Enum.fields[i].name;
|
|
}
|
|
break :blk result;
|
|
};
|
|
|
|
pub const cpu = struct {
|
|
pub const bleeding_edge = CpuModel{
|
|
.name = "bleeding_edge",
|
|
.llvm_name = "bleeding-edge",
|
|
.features = featureSet(&[_]Feature{
|
|
.atomics,
|
|
.mutable_globals,
|
|
.nontrapping_fptoint,
|
|
.sign_ext,
|
|
.simd128,
|
|
}),
|
|
};
|
|
pub const generic = CpuModel{
|
|
.name = "generic",
|
|
.llvm_name = "generic",
|
|
.features = featureSet(&[_]Feature{}),
|
|
};
|
|
pub const mvp = CpuModel{
|
|
.name = "mvp",
|
|
.llvm_name = "mvp",
|
|
.features = featureSet(&[_]Feature{}),
|
|
};
|
|
};
|
|
|
|
/// All wasm CPUs, sorted alphabetically by name.
|
|
/// TODO: Replace this with usage of `std.meta.declList`. It does work, but stage1
|
|
/// compiler has inefficient memory and CPU usage, affecting build times.
|
|
pub const all_cpus = &[_]*const CpuModel{
|
|
&cpu.bleeding_edge,
|
|
&cpu.generic,
|
|
&cpu.mvp,
|
|
};
|