spirv: require int8/int16 capabilities

This commit is contained in:
Ali Cheraghi
2025-03-13 03:01:19 +03:30
parent d18eaf8586
commit ee06b2ce76
4 changed files with 9 additions and 20 deletions

View File

@@ -10,8 +10,6 @@ pub const Feature = enum {
v1_4, v1_4,
v1_5, v1_5,
v1_6, v1_6,
int8,
int16,
int64, int64,
float16, float16,
float64, float64,
@@ -71,16 +69,6 @@ pub const all_features = blk: {
.description = "Enable version 1.6", .description = "Enable version 1.6",
.dependencies = featureSet(&[_]Feature{.v1_5}), .dependencies = featureSet(&[_]Feature{.v1_5}),
}; };
result[@intFromEnum(Feature.int8)] = .{
.llvm_name = null,
.description = "Enable Int8 capability",
.dependencies = featureSet(&[_]Feature{.v1_0}),
};
result[@intFromEnum(Feature.int16)] = .{
.llvm_name = null,
.description = "Enable Int16 capability",
.dependencies = featureSet(&[_]Feature{.v1_0}),
};
result[@intFromEnum(Feature.int64)] = .{ result[@intFromEnum(Feature.int64)] = .{
.llvm_name = null, .llvm_name = null,
.description = "Enable Int64 capability", .description = "Enable Int64 capability",
@@ -109,7 +97,7 @@ pub const all_features = blk: {
result[@intFromEnum(Feature.arbitrary_precision_integers)] = .{ result[@intFromEnum(Feature.arbitrary_precision_integers)] = .{
.llvm_name = null, .llvm_name = null,
.description = "Enable SPV_INTEL_arbitrary_precision_integers extension and the ArbitraryPrecisionIntegersINTEL capability", .description = "Enable SPV_INTEL_arbitrary_precision_integers extension and the ArbitraryPrecisionIntegersINTEL capability",
.dependencies = featureSet(&[_]Feature{ .v1_5, .int8, .int16 }), .dependencies = featureSet(&[_]Feature{.v1_5}),
}; };
result[@intFromEnum(Feature.kernel)] = .{ result[@intFromEnum(Feature.kernel)] = .{
.llvm_name = null, .llvm_name = null,

View File

@@ -588,11 +588,11 @@ const NavGen = struct {
if (self.spv.hasFeature(.arbitrary_precision_integers) and bits <= 32) return bits; if (self.spv.hasFeature(.arbitrary_precision_integers) and bits <= 32) return bits;
// 8, 16 and 64-bit integers require the Int8, Int16 and Inr64 capabilities respectively. // We require Int8 and Int16 capabilities and benefit Int64 when available.
// 32-bit integers are always supported (see spec, 2.16.1, Data rules). // 32-bit integers are always supported (see spec, 2.16.1, Data rules).
const ints = [_]struct { bits: u16, feature: ?Target.spirv.Feature }{ const ints = [_]struct { bits: u16, feature: ?Target.spirv.Feature }{
.{ .bits = 8, .feature = .int8 }, .{ .bits = 8, .feature = null },
.{ .bits = 16, .feature = .int16 }, .{ .bits = 16, .feature = null },
.{ .bits = 32, .feature = null }, .{ .bits = 32, .feature = null },
.{ .bits = 64, .feature = .int64 }, .{ .bits = 64, .feature = .int64 },
}; };
@@ -1373,7 +1373,7 @@ const NavGen = struct {
var member_types: [4]IdRef = undefined; var member_types: [4]IdRef = undefined;
var member_names: [4][]const u8 = undefined; var member_names: [4][]const u8 = undefined;
const u8_ty_id = try self.resolveType(Type.u8, .direct); // TODO: What if Int8Type is not enabled? const u8_ty_id = try self.resolveType(Type.u8, .direct);
if (layout.tag_size != 0) { if (layout.tag_size != 0) {
const tag_ty_id = try self.resolveType(Type.fromInterned(union_obj.enum_tag_ty), .indirect); const tag_ty_id = try self.resolveType(Type.fromInterned(union_obj.enum_tag_ty), .indirect);

View File

@@ -333,8 +333,6 @@ pub fn finalize(self: *Module, a: Allocator) ![]Word {
// Versions // Versions
.v1_0, .v1_1, .v1_2, .v1_3, .v1_4, .v1_5, .v1_6 => {}, .v1_0, .v1_1, .v1_2, .v1_3, .v1_4, .v1_5, .v1_6 => {},
// Features with no dependencies // Features with no dependencies
.int8 => try self.addCapability(.Int8),
.int16 => try self.addCapability(.Int16),
.int64 => try self.addCapability(.Int64), .int64 => try self.addCapability(.Int64),
.float16 => try self.addCapability(.Float16), .float16 => try self.addCapability(.Float16),
.float64 => try self.addCapability(.Float64), .float64 => try self.addCapability(.Float64),
@@ -361,6 +359,9 @@ pub fn finalize(self: *Module, a: Allocator) ![]Word {
} }
} }
} }
// These are well supported
try self.addCapability(.Int8);
try self.addCapability(.Int16);
// Emit memory model // Emit memory model
const addressing_model: spec.AddressingModel = blk: { const addressing_model: spec.AddressingModel = blk: {

View File

@@ -143,7 +143,7 @@ const test_targets = blk: {
.{ .{
.target = std.Target.Query.parse(.{ .target = std.Target.Query.parse(.{
.arch_os_abi = "spirv64-vulkan", .arch_os_abi = "spirv64-vulkan",
.cpu_features = "vulkan_v1_2+int8+int16+int64+float16+float64", .cpu_features = "vulkan_v1_2+int64+float16+float64",
}) catch unreachable, }) catch unreachable,
.use_llvm = false, .use_llvm = false,
.use_lld = false, .use_lld = false,