2020-01-20 19:21:45 -08:00
|
|
|
const std = @import("../std.zig");
|
2020-02-19 18:30:36 -08:00
|
|
|
const CpuFeature = std.Target.Cpu.Feature;
|
|
|
|
const CpuModel = std.Target.Cpu.Model;
|
2019-12-20 16:27:13 -08:00
|
|
|
|
2020-01-20 19:21:45 -08:00
|
|
|
pub const Feature = enum {
|
|
|
|
atomics,
|
|
|
|
bulk_memory,
|
|
|
|
exception_handling,
|
|
|
|
multivalue,
|
|
|
|
mutable_globals,
|
|
|
|
nontrapping_fptoint,
|
|
|
|
sign_ext,
|
|
|
|
simd128,
|
|
|
|
tail_call,
|
|
|
|
unimplemented_simd128,
|
2019-12-20 16:27:13 -08:00
|
|
|
};
|
|
|
|
|
2020-02-19 18:30:36 -08:00
|
|
|
pub usingnamespace CpuFeature.feature_set_fns(Feature);
|
2019-12-20 16:27:13 -08:00
|
|
|
|
2020-01-20 19:21:45 -08:00
|
|
|
pub const all_features = blk: {
|
|
|
|
const len = @typeInfo(Feature).Enum.fields.len;
|
2020-02-19 18:30:36 -08:00
|
|
|
std.debug.assert(len <= CpuFeature.Set.needed_bit_count);
|
|
|
|
var result: [len]CpuFeature = undefined;
|
2020-01-20 19:21:45 -08:00
|
|
|
result[@enumToInt(Feature.atomics)] = .{
|
|
|
|
.llvm_name = "atomics",
|
|
|
|
.description = "Enable Atomics",
|
2020-01-21 17:11:36 -08:00
|
|
|
.dependencies = featureSet(&[_]Feature{}),
|
2020-01-20 19:21:45 -08:00
|
|
|
};
|
|
|
|
result[@enumToInt(Feature.bulk_memory)] = .{
|
|
|
|
.llvm_name = "bulk-memory",
|
|
|
|
.description = "Enable bulk memory operations",
|
2020-01-21 17:11:36 -08:00
|
|
|
.dependencies = featureSet(&[_]Feature{}),
|
2020-01-20 19:21:45 -08:00
|
|
|
};
|
|
|
|
result[@enumToInt(Feature.exception_handling)] = .{
|
|
|
|
.llvm_name = "exception-handling",
|
|
|
|
.description = "Enable Wasm exception handling",
|
2020-01-21 17:11:36 -08:00
|
|
|
.dependencies = featureSet(&[_]Feature{}),
|
2020-01-20 19:21:45 -08:00
|
|
|
};
|
|
|
|
result[@enumToInt(Feature.multivalue)] = .{
|
|
|
|
.llvm_name = "multivalue",
|
|
|
|
.description = "Enable multivalue blocks, instructions, and functions",
|
2020-01-21 17:11:36 -08:00
|
|
|
.dependencies = featureSet(&[_]Feature{}),
|
2020-01-20 19:21:45 -08:00
|
|
|
};
|
|
|
|
result[@enumToInt(Feature.mutable_globals)] = .{
|
|
|
|
.llvm_name = "mutable-globals",
|
|
|
|
.description = "Enable mutable globals",
|
2020-01-21 17:11:36 -08:00
|
|
|
.dependencies = featureSet(&[_]Feature{}),
|
2020-01-20 19:21:45 -08:00
|
|
|
};
|
|
|
|
result[@enumToInt(Feature.nontrapping_fptoint)] = .{
|
|
|
|
.llvm_name = "nontrapping-fptoint",
|
|
|
|
.description = "Enable non-trapping float-to-int conversion operators",
|
2020-01-21 17:11:36 -08:00
|
|
|
.dependencies = featureSet(&[_]Feature{}),
|
2020-01-20 19:21:45 -08:00
|
|
|
};
|
|
|
|
result[@enumToInt(Feature.sign_ext)] = .{
|
|
|
|
.llvm_name = "sign-ext",
|
|
|
|
.description = "Enable sign extension operators",
|
2020-01-21 17:11:36 -08:00
|
|
|
.dependencies = featureSet(&[_]Feature{}),
|
2020-01-20 19:21:45 -08:00
|
|
|
};
|
|
|
|
result[@enumToInt(Feature.simd128)] = .{
|
|
|
|
.llvm_name = "simd128",
|
|
|
|
.description = "Enable 128-bit SIMD",
|
2020-01-21 17:11:36 -08:00
|
|
|
.dependencies = featureSet(&[_]Feature{}),
|
2020-01-20 19:21:45 -08:00
|
|
|
};
|
|
|
|
result[@enumToInt(Feature.tail_call)] = .{
|
|
|
|
.llvm_name = "tail-call",
|
|
|
|
.description = "Enable tail call instructions",
|
2020-01-21 17:11:36 -08:00
|
|
|
.dependencies = featureSet(&[_]Feature{}),
|
2020-01-20 19:21:45 -08:00
|
|
|
};
|
|
|
|
result[@enumToInt(Feature.unimplemented_simd128)] = .{
|
|
|
|
.llvm_name = "unimplemented-simd128",
|
|
|
|
.description = "Enable 128-bit SIMD not yet implemented in engines",
|
2020-01-21 17:11:36 -08:00
|
|
|
.dependencies = featureSet(&[_]Feature{
|
2020-01-20 19:21:45 -08:00
|
|
|
.simd128,
|
|
|
|
}),
|
|
|
|
};
|
2020-01-21 16:40:44 -08:00
|
|
|
const ti = @typeInfo(Feature);
|
|
|
|
for (result) |*elem, i| {
|
|
|
|
elem.index = i;
|
|
|
|
elem.name = ti.Enum.fields[i].name;
|
|
|
|
}
|
2020-01-20 19:21:45 -08:00
|
|
|
break :blk result;
|
2019-12-20 16:27:13 -08:00
|
|
|
};
|
|
|
|
|
2020-01-20 19:21:45 -08:00
|
|
|
pub const cpu = struct {
|
2020-02-19 18:30:36 -08:00
|
|
|
pub const bleeding_edge = CpuModel{
|
2020-01-20 19:21:45 -08:00
|
|
|
.name = "bleeding_edge",
|
|
|
|
.llvm_name = "bleeding-edge",
|
2020-01-21 17:11:36 -08:00
|
|
|
.features = featureSet(&[_]Feature{
|
2020-01-20 19:21:45 -08:00
|
|
|
.atomics,
|
|
|
|
.mutable_globals,
|
|
|
|
.nontrapping_fptoint,
|
|
|
|
.sign_ext,
|
|
|
|
.simd128,
|
|
|
|
}),
|
|
|
|
};
|
2020-02-19 18:30:36 -08:00
|
|
|
pub const generic = CpuModel{
|
2020-01-20 19:21:45 -08:00
|
|
|
.name = "generic",
|
|
|
|
.llvm_name = "generic",
|
2020-01-21 17:11:36 -08:00
|
|
|
.features = featureSet(&[_]Feature{}),
|
2020-01-20 19:21:45 -08:00
|
|
|
};
|
2020-02-19 18:30:36 -08:00
|
|
|
pub const mvp = CpuModel{
|
2020-01-20 19:21:45 -08:00
|
|
|
.name = "mvp",
|
|
|
|
.llvm_name = "mvp",
|
2020-01-21 17:11:36 -08:00
|
|
|
.features = featureSet(&[_]Feature{}),
|
2020-01-20 19:21:45 -08:00
|
|
|
};
|
2019-12-20 16:27:13 -08:00
|
|
|
};
|
|
|
|
|
2020-01-20 19:21:45 -08:00
|
|
|
/// 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.
|
2020-02-19 18:30:36 -08:00
|
|
|
pub const all_cpus = &[_]*const CpuModel{
|
2020-01-20 19:21:45 -08:00
|
|
|
&cpu.bleeding_edge,
|
|
|
|
&cpu.generic,
|
|
|
|
&cpu.mvp,
|
2019-12-20 16:27:13 -08:00
|
|
|
};
|