cbe: fix optional codegen

Also reduce ctype pool string memory usage, remove self assignments, and
enable more warnings.
This commit is contained in:
Jacob Young 2024-04-11 23:40:15 -04:00
parent 05d9755766
commit f1c0f42cdd
17 changed files with 1118 additions and 850 deletions

View file

@ -839,7 +839,7 @@ test "sigaction" {
const S = struct { const S = struct {
var handler_called_count: u32 = 0; var handler_called_count: u32 = 0;
fn handler(sig: i32, info: *const posix.siginfo_t, ctx_ptr: ?*const anyopaque) callconv(.C) void { fn handler(sig: i32, info: *const posix.siginfo_t, ctx_ptr: ?*anyopaque) callconv(.C) void {
_ = ctx_ptr; _ = ctx_ptr;
// Check that we received the correct signal. // Check that we received the correct signal.
switch (native_os) { switch (native_os) {

File diff suppressed because it is too large Load diff

View file

@ -1,13 +1,33 @@
index: CType.Index, index: CType.Index,
pub const @"void": CType = .{ .index = .void };
pub const @"bool": CType = .{ .index = .bool };
pub const @"i8": CType = .{ .index = .int8_t };
pub const @"u8": CType = .{ .index = .uint8_t };
pub const @"i16": CType = .{ .index = .int16_t };
pub const @"u16": CType = .{ .index = .uint16_t };
pub const @"i32": CType = .{ .index = .int32_t };
pub const @"u32": CType = .{ .index = .uint32_t };
pub const @"i64": CType = .{ .index = .int64_t };
pub const @"u64": CType = .{ .index = .uint64_t };
pub const @"i128": CType = .{ .index = .zig_i128 };
pub const @"u128": CType = .{ .index = .zig_u128 };
pub const @"isize": CType = .{ .index = .intptr_t };
pub const @"usize": CType = .{ .index = .uintptr_t };
pub const @"f16": CType = .{ .index = .zig_f16 };
pub const @"f32": CType = .{ .index = .zig_f32 };
pub const @"f64": CType = .{ .index = .zig_f64 };
pub const @"f80": CType = .{ .index = .zig_f80 };
pub const @"f128": CType = .{ .index = .zig_f128 };
pub fn fromPoolIndex(pool_index: usize) CType { pub fn fromPoolIndex(pool_index: usize) CType {
return .{ .index = @enumFromInt(CType.Index.first_pool_index + pool_index) }; return .{ .index = @enumFromInt(CType.Index.first_pool_index + pool_index) };
} }
pub fn toPoolIndex(ctype: CType) ?u32 { pub fn toPoolIndex(ctype: CType) ?u32 {
const pool_index, const is_basic = const pool_index, const is_null =
@subWithOverflow(@intFromEnum(ctype.index), CType.Index.first_pool_index); @subWithOverflow(@intFromEnum(ctype.index), CType.Index.first_pool_index);
return switch (is_basic) { return switch (is_null) {
0 => pool_index, 0 => pool_index,
1 => null, 1 => null,
}; };
@ -710,20 +730,6 @@ pub const Kind = enum {
} }
}; };
pub const String = struct {
index: String.Index,
const Index = enum(u32) {
_,
};
pub fn slice(string: String, pool: *const Pool) []const u8 {
const start = pool.string_indices.items[@intFromEnum(string.index)];
const end = pool.string_indices.items[@intFromEnum(string.index) + 1];
return pool.string_bytes.items[start..end];
}
};
pub const Info = union(enum) { pub const Info = union(enum) {
basic: CType.Index, basic: CType.Index,
pointer: Pointer, pointer: Pointer,
@ -766,7 +772,7 @@ pub const Info = union(enum) {
pub const AggregateTag = enum { @"enum", @"struct", @"union" }; pub const AggregateTag = enum { @"enum", @"struct", @"union" };
pub const Field = struct { pub const Field = struct {
name: String, name: Pool.String,
ctype: CType, ctype: CType,
alignas: AlignAs, alignas: AlignAs,
@ -812,12 +818,15 @@ pub const Info = union(enum) {
rhs_pool: *const Pool, rhs_pool: *const Pool,
pool_adapter: anytype, pool_adapter: anytype,
) bool { ) bool {
return std.meta.eql(lhs_field.alignas, rhs_field.alignas) and if (!std.meta.eql(lhs_field.alignas, rhs_field.alignas)) return false;
pool_adapter.eql(lhs_field.ctype, rhs_field.ctype) and std.mem.eql( if (!pool_adapter.eql(lhs_field.ctype, rhs_field.ctype)) return false;
u8, return if (lhs_field.name.toPoolSlice(lhs_pool)) |lhs_name|
lhs_field.name.slice(lhs_pool), if (rhs_field.name.toPoolSlice(rhs_pool)) |rhs_name|
rhs_field.name.slice(rhs_pool), std.mem.eql(u8, lhs_name, rhs_name)
); else
false
else
lhs_field.name.index == rhs_field.name.index;
} }
}; };
@ -918,6 +927,86 @@ pub const Pool = struct {
const Map = std.AutoArrayHashMapUnmanaged(void, void); const Map = std.AutoArrayHashMapUnmanaged(void, void);
pub const String = struct {
index: String.Index,
const FormatData = struct { string: String, pool: *const Pool };
fn format(
data: FormatData,
comptime fmt_str: []const u8,
_: std.fmt.FormatOptions,
writer: anytype,
) @TypeOf(writer).Error!void {
if (fmt_str.len > 0) @compileError("invalid format string '" ++ fmt_str ++ "'");
if (data.string.toSlice(data.pool)) |slice|
try writer.writeAll(slice)
else
try writer.print("f{d}", .{@intFromEnum(data.string.index)});
}
pub fn fmt(str: String, pool: *const Pool) std.fmt.Formatter(format) {
return .{ .data = .{ .string = str, .pool = pool } };
}
fn fromUnnamed(index: u31) String {
return .{ .index = @enumFromInt(index) };
}
fn isNamed(str: String) bool {
return @intFromEnum(str.index) >= String.Index.first_named_index;
}
pub fn toSlice(str: String, pool: *const Pool) ?[]const u8 {
return str.toPoolSlice(pool) orelse if (str.isNamed()) @tagName(str.index) else null;
}
fn toPoolSlice(str: String, pool: *const Pool) ?[]const u8 {
if (str.toPoolIndex()) |pool_index| {
const start = pool.string_indices.items[pool_index + 0];
const end = pool.string_indices.items[pool_index + 1];
return pool.string_bytes.items[start..end];
} else return null;
}
fn fromPoolIndex(pool_index: usize) String {
return .{ .index = @enumFromInt(String.Index.first_pool_index + pool_index) };
}
fn toPoolIndex(str: String) ?u32 {
const pool_index, const is_null =
@subWithOverflow(@intFromEnum(str.index), String.Index.first_pool_index);
return switch (is_null) {
0 => pool_index,
1 => null,
};
}
const Index = enum(u32) {
array = first_named_index,
@"error",
is_null,
len,
payload,
ptr,
tag,
_,
const first_named_index: u32 = 1 << 31;
const first_pool_index: u32 = first_named_index + @typeInfo(String.Index).Enum.fields.len;
};
const Adapter = struct {
pool: *const Pool,
pub fn hash(_: @This(), slice: []const u8) Map.Hash {
return @truncate(Hasher.Impl.hash(1, slice));
}
pub fn eql(string_adapter: @This(), lhs_slice: []const u8, _: void, rhs_index: usize) bool {
const rhs_string = String.fromPoolIndex(rhs_index);
const rhs_slice = rhs_string.toPoolSlice(string_adapter.pool).?;
return std.mem.eql(u8, lhs_slice, rhs_slice);
}
};
};
pub const empty: Pool = .{ pub const empty: Pool = .{
.map = .{}, .map = .{},
.items = .{}, .items = .{},
@ -1200,26 +1289,26 @@ pub const Pool = struct {
kind: Kind, kind: Kind,
) !CType { ) !CType {
switch (int_info.bits) { switch (int_info.bits) {
0 => return .{ .index = .void }, 0 => return CType.void,
1...8 => switch (int_info.signedness) { 1...8 => switch (int_info.signedness) {
.unsigned => return .{ .index = .uint8_t }, .signed => return CType.i8,
.signed => return .{ .index = .int8_t }, .unsigned => return CType.u8,
}, },
9...16 => switch (int_info.signedness) { 9...16 => switch (int_info.signedness) {
.unsigned => return .{ .index = .uint16_t }, .signed => return CType.i16,
.signed => return .{ .index = .int16_t }, .unsigned => return CType.u16,
}, },
17...32 => switch (int_info.signedness) { 17...32 => switch (int_info.signedness) {
.unsigned => return .{ .index = .uint32_t }, .signed => return CType.i32,
.signed => return .{ .index = .int32_t }, .unsigned => return CType.u32,
}, },
33...64 => switch (int_info.signedness) { 33...64 => switch (int_info.signedness) {
.unsigned => return .{ .index = .uint64_t }, .signed => return CType.i64,
.signed => return .{ .index = .int64_t }, .unsigned => return CType.u64,
}, },
65...128 => switch (int_info.signedness) { 65...128 => switch (int_info.signedness) {
.unsigned => return .{ .index = .zig_u128 }, .signed => return CType.i128,
.signed => return .{ .index = .zig_i128 }, .unsigned => return CType.u128,
}, },
else => { else => {
const target = &mod.resolved_target.result; const target = &mod.resolved_target.result;
@ -1235,7 +1324,7 @@ pub const Pool = struct {
if (!kind.isParameter()) return array_ctype; if (!kind.isParameter()) return array_ctype;
var fields = [_]Info.Field{ var fields = [_]Info.Field{
.{ .{
.name = try pool.string(allocator, "array"), .name = .{ .index = .array },
.ctype = array_ctype, .ctype = array_ctype,
.alignas = AlignAs.fromAbiAlignment(abi_align), .alignas = AlignAs.fromAbiAlignment(abi_align),
}, },
@ -1267,19 +1356,19 @@ pub const Pool = struct {
.null_type, .null_type,
.undefined_type, .undefined_type,
.enum_literal_type, .enum_literal_type,
=> return .{ .index = .void }, => return CType.void,
.u1_type, .u8_type => return .{ .index = .uint8_t }, .u1_type, .u8_type => return CType.u8,
.i8_type => return .{ .index = .int8_t }, .i8_type => return CType.i8,
.u16_type => return .{ .index = .uint16_t }, .u16_type => return CType.u16,
.i16_type => return .{ .index = .int16_t }, .i16_type => return CType.i16,
.u29_type, .u32_type => return .{ .index = .uint32_t }, .u29_type, .u32_type => return CType.u32,
.i32_type => return .{ .index = .int32_t }, .i32_type => return CType.i32,
.u64_type => return .{ .index = .uint64_t }, .u64_type => return CType.u64,
.i64_type => return .{ .index = .int64_t }, .i64_type => return CType.i64,
.u80_type, .u128_type => return .{ .index = .zig_u128 }, .u80_type, .u128_type => return CType.u128,
.i128_type => return .{ .index = .zig_i128 }, .i128_type => return CType.i128,
.usize_type => return .{ .index = .uintptr_t }, .usize_type => return CType.usize,
.isize_type => return .{ .index = .intptr_t }, .isize_type => return CType.isize,
.c_char_type => return .{ .index = .char }, .c_char_type => return .{ .index = .char },
.c_short_type => return .{ .index = .short }, .c_short_type => return .{ .index = .short },
.c_ushort_type => return .{ .index = .@"unsigned short" }, .c_ushort_type => return .{ .index = .@"unsigned short" },
@ -1290,12 +1379,12 @@ pub const Pool = struct {
.c_longlong_type => return .{ .index = .@"long long" }, .c_longlong_type => return .{ .index = .@"long long" },
.c_ulonglong_type => return .{ .index = .@"unsigned long long" }, .c_ulonglong_type => return .{ .index = .@"unsigned long long" },
.c_longdouble_type => return .{ .index = .@"long double" }, .c_longdouble_type => return .{ .index = .@"long double" },
.f16_type => return .{ .index = .zig_f16 }, .f16_type => return CType.f16,
.f32_type => return .{ .index = .zig_f32 }, .f32_type => return CType.f32,
.f64_type => return .{ .index = .zig_f64 }, .f64_type => return CType.f64,
.f80_type => return .{ .index = .zig_f80 }, .f80_type => return CType.f80,
.f128_type => return .{ .index = .zig_f128 }, .f128_type => return CType.f128,
.bool_type, .optional_noreturn_type => return .{ .index = .bool }, .bool_type, .optional_noreturn_type => return CType.bool,
.noreturn_type, .noreturn_type,
.anyframe_type, .anyframe_type,
.generic_poison_type, .generic_poison_type,
@ -1324,17 +1413,17 @@ pub const Pool = struct {
}, mod, kind), }, mod, kind),
.manyptr_u8_type, .manyptr_u8_type,
=> return pool.getPointer(allocator, .{ => return pool.getPointer(allocator, .{
.elem_ctype = .{ .index = .uint8_t }, .elem_ctype = CType.u8,
}), }),
.manyptr_const_u8_type, .manyptr_const_u8_type,
.manyptr_const_u8_sentinel_0_type, .manyptr_const_u8_sentinel_0_type,
=> return pool.getPointer(allocator, .{ => return pool.getPointer(allocator, .{
.elem_ctype = .{ .index = .uint8_t }, .elem_ctype = CType.u8,
.@"const" = true, .@"const" = true,
}), }),
.single_const_pointer_to_comptime_int_type, .single_const_pointer_to_comptime_int_type,
=> return pool.getPointer(allocator, .{ => return pool.getPointer(allocator, .{
.elem_ctype = .{ .index = .void }, .elem_ctype = CType.void,
.@"const" = true, .@"const" = true,
}), }),
.slice_const_u8_type, .slice_const_u8_type,
@ -1343,16 +1432,16 @@ pub const Pool = struct {
const target = &mod.resolved_target.result; const target = &mod.resolved_target.result;
var fields = [_]Info.Field{ var fields = [_]Info.Field{
.{ .{
.name = try pool.string(allocator, "ptr"), .name = .{ .index = .ptr },
.ctype = try pool.getPointer(allocator, .{ .ctype = try pool.getPointer(allocator, .{
.elem_ctype = .{ .index = .uint8_t }, .elem_ctype = CType.u8,
.@"const" = true, .@"const" = true,
}), }),
.alignas = AlignAs.fromAbiAlignment(Type.ptrAbiAlignment(target.*)), .alignas = AlignAs.fromAbiAlignment(Type.ptrAbiAlignment(target.*)),
}, },
.{ .{
.name = try pool.string(allocator, "len"), .name = .{ .index = .len },
.ctype = .{ .index = .uintptr_t }, .ctype = CType.usize,
.alignas = AlignAs.fromAbiAlignment( .alignas = AlignAs.fromAbiAlignment(
Type.intAbiAlignment(target.ptrBitWidth(), target.*), Type.intAbiAlignment(target.ptrBitWidth(), target.*),
), ),
@ -1442,7 +1531,7 @@ pub const Pool = struct {
const target = &mod.resolved_target.result; const target = &mod.resolved_target.result;
var fields = [_]Info.Field{ var fields = [_]Info.Field{
.{ .{
.name = try pool.string(allocator, "ptr"), .name = .{ .index = .ptr },
.ctype = try pool.fromType( .ctype = try pool.fromType(
allocator, allocator,
scratch, scratch,
@ -1454,8 +1543,8 @@ pub const Pool = struct {
.alignas = AlignAs.fromAbiAlignment(Type.ptrAbiAlignment(target.*)), .alignas = AlignAs.fromAbiAlignment(Type.ptrAbiAlignment(target.*)),
}, },
.{ .{
.name = try pool.string(allocator, "len"), .name = .{ .index = .len },
.ctype = .{ .index = .uintptr_t }, .ctype = CType.usize,
.alignas = AlignAs.fromAbiAlignment( .alignas = AlignAs.fromAbiAlignment(
Type.intAbiAlignment(target.ptrBitWidth(), target.*), Type.intAbiAlignment(target.ptrBitWidth(), target.*),
), ),
@ -1466,7 +1555,7 @@ pub const Pool = struct {
}, },
.array_type => |array_info| { .array_type => |array_info| {
const len = array_info.lenIncludingSentinel(); const len = array_info.lenIncludingSentinel();
if (len == 0) return .{ .index = .void }; if (len == 0) return CType.void;
const elem_type = Type.fromInterned(array_info.child); const elem_type = Type.fromInterned(array_info.child);
const elem_ctype = try pool.fromType( const elem_ctype = try pool.fromType(
allocator, allocator,
@ -1476,7 +1565,7 @@ pub const Pool = struct {
mod, mod,
kind.noParameter(), kind.noParameter(),
); );
if (elem_ctype.index == .void) return .{ .index = .void }; if (elem_ctype.index == .void) return CType.void;
const array_ctype = try pool.getArray(allocator, .{ const array_ctype = try pool.getArray(allocator, .{
.elem_ctype = elem_ctype, .elem_ctype = elem_ctype,
.len = len, .len = len,
@ -1484,7 +1573,7 @@ pub const Pool = struct {
if (!kind.isParameter()) return array_ctype; if (!kind.isParameter()) return array_ctype;
var fields = [_]Info.Field{ var fields = [_]Info.Field{
.{ .{
.name = try pool.string(allocator, "array"), .name = .{ .index = .array },
.ctype = array_ctype, .ctype = array_ctype,
.alignas = AlignAs.fromAbiAlignment(elem_type.abiAlignment(zcu)), .alignas = AlignAs.fromAbiAlignment(elem_type.abiAlignment(zcu)),
}, },
@ -1492,7 +1581,7 @@ pub const Pool = struct {
return pool.fromFields(allocator, .@"struct", &fields, kind); return pool.fromFields(allocator, .@"struct", &fields, kind);
}, },
.vector_type => |vector_info| { .vector_type => |vector_info| {
if (vector_info.len == 0) return .{ .index = .void }; if (vector_info.len == 0) return CType.void;
const elem_type = Type.fromInterned(vector_info.child); const elem_type = Type.fromInterned(vector_info.child);
const elem_ctype = try pool.fromType( const elem_ctype = try pool.fromType(
allocator, allocator,
@ -1502,7 +1591,7 @@ pub const Pool = struct {
mod, mod,
kind.noParameter(), kind.noParameter(),
); );
if (elem_ctype.index == .void) return .{ .index = .void }; if (elem_ctype.index == .void) return CType.void;
const vector_ctype = try pool.getVector(allocator, .{ const vector_ctype = try pool.getVector(allocator, .{
.elem_ctype = elem_ctype, .elem_ctype = elem_ctype,
.len = vector_info.len, .len = vector_info.len,
@ -1510,7 +1599,7 @@ pub const Pool = struct {
if (!kind.isParameter()) return vector_ctype; if (!kind.isParameter()) return vector_ctype;
var fields = [_]Info.Field{ var fields = [_]Info.Field{
.{ .{
.name = try pool.string(allocator, "array"), .name = .{ .index = .array },
.ctype = vector_ctype, .ctype = vector_ctype,
.alignas = AlignAs.fromAbiAlignment(elem_type.abiAlignment(zcu)), .alignas = AlignAs.fromAbiAlignment(elem_type.abiAlignment(zcu)),
}, },
@ -1518,7 +1607,7 @@ pub const Pool = struct {
return pool.fromFields(allocator, .@"struct", &fields, kind); return pool.fromFields(allocator, .@"struct", &fields, kind);
}, },
.opt_type => |payload_type| { .opt_type => |payload_type| {
if (ip.isNoReturn(payload_type)) return .{ .index = .void }; if (ip.isNoReturn(payload_type)) return CType.void;
const payload_ctype = try pool.fromType( const payload_ctype = try pool.fromType(
allocator, allocator,
scratch, scratch,
@ -1527,7 +1616,7 @@ pub const Pool = struct {
mod, mod,
kind.noParameter(), kind.noParameter(),
); );
if (payload_ctype.index == .void) return .{ .index = .bool }; if (payload_ctype.index == .void) return CType.bool;
switch (payload_type) { switch (payload_type) {
.anyerror_type => return payload_ctype, .anyerror_type => return payload_ctype,
else => switch (ip.indexToKey(payload_type)) { else => switch (ip.indexToKey(payload_type)) {
@ -1539,12 +1628,12 @@ pub const Pool = struct {
} }
var fields = [_]Info.Field{ var fields = [_]Info.Field{
.{ .{
.name = try pool.string(allocator, "is_null"), .name = .{ .index = .is_null },
.ctype = .{ .index = .bool }, .ctype = CType.bool,
.alignas = AlignAs.fromAbiAlignment(.@"1"), .alignas = AlignAs.fromAbiAlignment(.@"1"),
}, },
.{ .{
.name = try pool.string(allocator, "payload"), .name = .{ .index = .payload },
.ctype = payload_ctype, .ctype = payload_ctype,
.alignas = AlignAs.fromAbiAlignment( .alignas = AlignAs.fromAbiAlignment(
Type.fromInterned(payload_type).abiAlignment(zcu), Type.fromInterned(payload_type).abiAlignment(zcu),
@ -1574,14 +1663,14 @@ pub const Pool = struct {
const target = &mod.resolved_target.result; const target = &mod.resolved_target.result;
var fields = [_]Info.Field{ var fields = [_]Info.Field{
.{ .{
.name = try pool.string(allocator, "error"), .name = .{ .index = .@"error" },
.ctype = error_set_ctype, .ctype = error_set_ctype,
.alignas = AlignAs.fromAbiAlignment( .alignas = AlignAs.fromAbiAlignment(
Type.intAbiAlignment(error_set_bits, target.*), Type.intAbiAlignment(error_set_bits, target.*),
), ),
}, },
.{ .{
.name = try pool.string(allocator, "payload"), .name = .{ .index = .payload },
.ctype = payload_ctype, .ctype = payload_ctype,
.alignas = AlignAs.fromAbiAlignment(payload_type.abiAlignment(zcu)), .alignas = AlignAs.fromAbiAlignment(payload_type.abiAlignment(zcu)),
}, },
@ -1600,7 +1689,7 @@ pub const Pool = struct {
if (kind.isForward()) return if (ty.hasRuntimeBitsIgnoreComptime(zcu)) if (kind.isForward()) return if (ty.hasRuntimeBitsIgnoreComptime(zcu))
fwd_decl fwd_decl
else else
.{ .index = .void }; CType.void;
const scratch_top = scratch.items.len; const scratch_top = scratch.items.len;
defer scratch.shrinkRetainingCapacity(scratch_top); defer scratch.shrinkRetainingCapacity(scratch_top);
try scratch.ensureUnusedCapacity( try scratch.ensureUnusedCapacity(
@ -1627,7 +1716,7 @@ pub const Pool = struct {
.unwrap()) |field_name| .unwrap()) |field_name|
try pool.string(allocator, field_name.toSlice(ip)) try pool.string(allocator, field_name.toSlice(ip))
else else
try pool.fmt(allocator, "f{d}", .{field_index}); String.fromUnnamed(@intCast(field_index));
const field_alignas = AlignAs.fromAlignment(.{ const field_alignas = AlignAs.fromAlignment(.{
.@"align" = loaded_struct.fieldAlign(ip, field_index), .@"align" = loaded_struct.fieldAlign(ip, field_index),
.abi = field_type.abiAlignment(zcu), .abi = field_type.abiAlignment(zcu),
@ -1644,7 +1733,7 @@ pub const Pool = struct {
scratch.items.len - scratch_top, scratch.items.len - scratch_top,
@typeInfo(Field).Struct.fields.len, @typeInfo(Field).Struct.fields.len,
)); ));
if (fields_len == 0) return .{ .index = .void }; if (fields_len == 0) return CType.void;
try pool.ensureUnusedCapacity(allocator, 1); try pool.ensureUnusedCapacity(allocator, 1);
const extra_index = try pool.addHashedExtra(allocator, &hasher, Aggregate, .{ const extra_index = try pool.addHashedExtra(allocator, &hasher, Aggregate, .{
.fwd_decl = fwd_decl.index, .fwd_decl = fwd_decl.index,
@ -1700,7 +1789,7 @@ pub const Pool = struct {
scratch.items.len - scratch_top, scratch.items.len - scratch_top,
@typeInfo(Field).Struct.fields.len, @typeInfo(Field).Struct.fields.len,
)); ));
if (fields_len == 0) return .{ .index = .void }; if (fields_len == 0) return CType.void;
if (kind.isForward()) { if (kind.isForward()) {
try pool.ensureUnusedCapacity(allocator, 1); try pool.ensureUnusedCapacity(allocator, 1);
const extra_index = try pool.addHashedExtra( const extra_index = try pool.addHashedExtra(
@ -1739,7 +1828,7 @@ pub const Pool = struct {
if (kind.isForward()) return if (ty.hasRuntimeBitsIgnoreComptime(zcu)) if (kind.isForward()) return if (ty.hasRuntimeBitsIgnoreComptime(zcu))
fwd_decl fwd_decl
else else
.{ .index = .void }; CType.void;
const loaded_tag = loaded_union.loadTagType(ip); const loaded_tag = loaded_union.loadTagType(ip);
const scratch_top = scratch.items.len; const scratch_top = scratch.items.len;
defer scratch.shrinkRetainingCapacity(scratch_top); defer scratch.shrinkRetainingCapacity(scratch_top);
@ -1786,7 +1875,7 @@ pub const Pool = struct {
@typeInfo(Field).Struct.fields.len, @typeInfo(Field).Struct.fields.len,
)); ));
if (!has_tag) { if (!has_tag) {
if (fields_len == 0) return .{ .index = .void }; if (fields_len == 0) return CType.void;
try pool.ensureUnusedCapacity(allocator, 1); try pool.ensureUnusedCapacity(allocator, 1);
const extra_index = try pool.addHashedExtra( const extra_index = try pool.addHashedExtra(
allocator, allocator,
@ -1813,7 +1902,7 @@ pub const Pool = struct {
); );
if (tag_ctype.index != .void) { if (tag_ctype.index != .void) {
struct_fields[struct_fields_len] = .{ struct_fields[struct_fields_len] = .{
.name = try pool.string(allocator, "tag"), .name = .{ .index = .tag },
.ctype = tag_ctype, .ctype = tag_ctype,
.alignas = AlignAs.fromAbiAlignment(tag_type.abiAlignment(zcu)), .alignas = AlignAs.fromAbiAlignment(tag_type.abiAlignment(zcu)),
}; };
@ -1846,14 +1935,14 @@ pub const Pool = struct {
}; };
if (payload_ctype.index != .void) { if (payload_ctype.index != .void) {
struct_fields[struct_fields_len] = .{ struct_fields[struct_fields_len] = .{
.name = try pool.string(allocator, "payload"), .name = .{ .index = .payload },
.ctype = payload_ctype, .ctype = payload_ctype,
.alignas = AlignAs.fromAbiAlignment(payload_align), .alignas = AlignAs.fromAbiAlignment(payload_align),
}; };
struct_fields_len += 1; struct_fields_len += 1;
} }
} }
if (struct_fields_len == 0) return .{ .index = .void }; if (struct_fields_len == 0) return CType.void;
sortFields(struct_fields[0..struct_fields_len]); sortFields(struct_fields[0..struct_fields_len]);
return pool.getAggregate(allocator, .{ return pool.getAggregate(allocator, .{
.tag = .@"struct", .tag = .@"struct",
@ -1867,7 +1956,7 @@ pub const Pool = struct {
}, mod, kind), }, mod, kind),
} }
}, },
.opaque_type => return .{ .index = .void }, .opaque_type => return CType.void,
.enum_type => return pool.fromType( .enum_type => return pool.fromType(
allocator, allocator,
scratch, scratch,
@ -1876,7 +1965,7 @@ pub const Pool = struct {
mod, mod,
kind, kind,
), ),
.func_type => |func_info| if (func_info.is_generic) return .{ .index = .void } else { .func_type => |func_info| if (func_info.is_generic) return CType.void else {
const scratch_top = scratch.items.len; const scratch_top = scratch.items.len;
defer scratch.shrinkRetainingCapacity(scratch_top); defer scratch.shrinkRetainingCapacity(scratch_top);
try scratch.ensureUnusedCapacity(allocator, func_info.param_types.len); try scratch.ensureUnusedCapacity(allocator, func_info.param_types.len);
@ -1890,7 +1979,7 @@ pub const Pool = struct {
zcu, zcu,
mod, mod,
kind.asParameter(), kind.asParameter(),
) else .{ .index = .void }; ) else CType.void;
for (0..func_info.param_types.len) |param_index| { for (0..func_info.param_types.len) |param_index| {
const param_type = Type.fromInterned( const param_type = Type.fromInterned(
func_info.param_types.get(ip)[param_index], func_info.param_types.get(ip)[param_index],
@ -2024,7 +2113,10 @@ pub const Pool = struct {
}); });
for (0..fields.len) |field_index| { for (0..fields.len) |field_index| {
const field = fields.at(field_index, source_pool); const field = fields.at(field_index, source_pool);
const field_name = try pool.string(allocator, field.name.slice(source_pool)); const field_name = if (field.name.toPoolSlice(source_pool)) |slice|
try pool.string(allocator, slice)
else
field.name;
pool.addExtraAssumeCapacity(Field, .{ pool.addExtraAssumeCapacity(Field, .{
.name = field_name.index, .name = field_name.index,
.ctype = pool_adapter.copy(field.ctype).index, .ctype = pool_adapter.copy(field.ctype).index,
@ -2054,7 +2146,10 @@ pub const Pool = struct {
}); });
for (0..aggregate_info.fields.len) |field_index| { for (0..aggregate_info.fields.len) |field_index| {
const field = aggregate_info.fields.at(field_index, source_pool); const field = aggregate_info.fields.at(field_index, source_pool);
const field_name = try pool.string(allocator, field.name.slice(source_pool)); const field_name = if (field.name.toPoolSlice(source_pool)) |slice|
try pool.string(allocator, slice)
else
field.name;
pool.addExtraAssumeCapacity(Field, .{ pool.addExtraAssumeCapacity(Field, .{
.name = field_name.index, .name = field_name.index,
.ctype = pool_adapter.copy(field.ctype).index, .ctype = pool_adapter.copy(field.ctype).index,
@ -2082,8 +2177,8 @@ pub const Pool = struct {
return .{ ctype, gop.found_existing }; return .{ ctype, gop.found_existing };
} }
pub fn string(pool: *Pool, allocator: std.mem.Allocator, str: []const u8) !String { pub fn string(pool: *Pool, allocator: std.mem.Allocator, slice: []const u8) !String {
try pool.string_bytes.appendSlice(allocator, str); try pool.string_bytes.appendSlice(allocator, slice);
return pool.trailingString(allocator); return pool.trailingString(allocator);
} }
@ -2111,12 +2206,15 @@ pub const Pool = struct {
fn updateExtra(hasher: *Hasher, comptime Extra: type, extra: Extra, pool: *const Pool) void { fn updateExtra(hasher: *Hasher, comptime Extra: type, extra: Extra, pool: *const Pool) void {
inline for (@typeInfo(Extra).Struct.fields) |field| { inline for (@typeInfo(Extra).Struct.fields) |field| {
const value = @field(extra, field.name); const value = @field(extra, field.name);
hasher.update(switch (field.type) { switch (field.type) {
Pool.Tag, String, CType => unreachable, Pool.Tag, String, CType => unreachable,
CType.Index => (CType{ .index = value }).hash(pool), CType.Index => hasher.update((CType{ .index = value }).hash(pool)),
String.Index => (String{ .index = value }).slice(pool), String.Index => if ((String{ .index = value }).toPoolSlice(pool)) |slice|
else => value, hasher.update(slice)
}); else
hasher.update(@intFromEnum(value)),
else => hasher.update(value),
}
} }
} }
fn update(hasher: *Hasher, data: anytype) void { fn update(hasher: *Hasher, data: anytype) void {
@ -2231,30 +2329,30 @@ pub const Pool = struct {
} }
fn trailingString(pool: *Pool, allocator: std.mem.Allocator) !String { fn trailingString(pool: *Pool, allocator: std.mem.Allocator) !String {
const StringAdapter = struct { const start = pool.string_indices.getLast();
pool: *const Pool, const slice: []const u8 = pool.string_bytes.items[start..];
pub fn hash(_: @This(), slice: []const u8) Map.Hash { if (slice.len >= 2 and slice[0] == 'f' and switch (slice[1]) {
return @truncate(Hasher.Impl.hash(1, slice)); '0' => slice.len == 2,
'1'...'9' => true,
else => false,
}) if (std.fmt.parseInt(u31, slice[1..], 10)) |unnamed| {
pool.string_bytes.shrinkRetainingCapacity(start);
return String.fromUnnamed(unnamed);
} else |_| {};
if (std.meta.stringToEnum(String.Index, slice)) |index| {
pool.string_bytes.shrinkRetainingCapacity(start);
return .{ .index = index };
} }
pub fn eql(string_adapter: @This(), lhs_slice: []const u8, _: void, rhs_index: usize) bool {
const rhs_string: String = .{ .index = @enumFromInt(rhs_index) };
const rhs_slice = rhs_string.slice(string_adapter.pool);
return std.mem.eql(u8, lhs_slice, rhs_slice);
}
};
try pool.string_map.ensureUnusedCapacity(allocator, 1); try pool.string_map.ensureUnusedCapacity(allocator, 1);
try pool.string_indices.ensureUnusedCapacity(allocator, 1); try pool.string_indices.ensureUnusedCapacity(allocator, 1);
const start = pool.string_indices.getLast(); const gop = pool.string_map.getOrPutAssumeCapacityAdapted(slice, String.Adapter{ .pool = pool });
const gop = pool.string_map.getOrPutAssumeCapacityAdapted(
@as([]const u8, pool.string_bytes.items[start..]),
StringAdapter{ .pool = pool },
);
if (gop.found_existing) if (gop.found_existing)
pool.string_bytes.shrinkRetainingCapacity(start) pool.string_bytes.shrinkRetainingCapacity(start)
else else
pool.string_indices.appendAssumeCapacity(@intCast(pool.string_bytes.items.len)); pool.string_indices.appendAssumeCapacity(@intCast(pool.string_bytes.items.len));
return .{ .index = @enumFromInt(gop.index) }; return String.fromPoolIndex(gop.index);
} }
const Item = struct { const Item = struct {

View file

@ -214,7 +214,6 @@ fn testAbsIntVectors(comptime len: comptime_int) !void {
} }
test "@abs unsigned int vectors" { test "@abs unsigned int vectors" {
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
@ -274,7 +273,6 @@ fn testAbsUnsignedIntVectors(comptime len: comptime_int) !void {
} }
test "@abs float vectors" { test "@abs float vectors" {
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO

View file

@ -267,7 +267,6 @@ test "arguments to comptime parameters generated in comptime blocks" {
test "forced tail call" { test "forced tail call" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
@ -280,6 +279,8 @@ test "forced tail call" {
} }
} }
if (builtin.zig_backend == .stage2_c and builtin.os.tag == .windows) return error.SkipZigTest; // MSVC doesn't support always tail calls
const S = struct { const S = struct {
fn fibonacciTailInternal(n: u16, a: u16, b: u16) u16 { fn fibonacciTailInternal(n: u16, a: u16, b: u16) u16 {
if (n == 0) return a; if (n == 0) return a;
@ -301,7 +302,6 @@ test "forced tail call" {
test "inline call preserves tail call" { test "inline call preserves tail call" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
@ -314,6 +314,8 @@ test "inline call preserves tail call" {
} }
} }
if (builtin.zig_backend == .stage2_c and builtin.os.tag == .windows) return error.SkipZigTest; // MSVC doesn't support always tail calls
const max = std.math.maxInt(u16); const max = std.math.maxInt(u16);
const S = struct { const S = struct {
var a: u16 = 0; var a: u16 = 0;
@ -432,7 +434,6 @@ test "method call as parameter type" {
test "non-anytype generic parameters provide result type" { test "non-anytype generic parameters provide result type" {
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
@ -463,7 +464,6 @@ test "non-anytype generic parameters provide result type" {
test "argument to generic function has correct result type" { test "argument to generic function has correct result type" {
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO

View file

@ -45,9 +45,10 @@ test "arguments pointed to on stack into tailcall" {
else => {}, else => {},
} }
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c and builtin.os.tag == .windows) return error.SkipZigTest; // MSVC doesn't support always tail calls
var data = [_]u64{ 1, 6, 2, 7, 1, 9, 3 }; var data = [_]u64{ 1, 6, 2, 7, 1, 9, 3 };
base = @intFromPtr(&data); base = @intFromPtr(&data);
insertionSort(data[0..]); insertionSort(data[0..]);

View file

@ -1119,7 +1119,6 @@ fn foobar(func: PFN_void) !void {
} }
test "cast function with an opaque parameter" { test "cast function with an opaque parameter" {
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c) { if (builtin.zig_backend == .stage2_c) {
@ -1461,6 +1460,7 @@ test "pointer to empty struct literal to mutable slice" {
test "coerce between pointers of compatible differently-named floats" { test "coerce between pointers of compatible differently-named floats" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_c and builtin.os.tag == .windows and !builtin.link_libc) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest; if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest;
@ -2558,7 +2558,6 @@ test "@intCast vector of signed integer" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
var x: @Vector(4, i32) = .{ 1, 2, 3, 4 }; var x: @Vector(4, i32) = .{ 1, 2, 3, 4 };

View file

@ -5,7 +5,6 @@ const expect = std.testing.expect;
test "exporting enum type and value" { test "exporting enum type and value" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
const S = struct { const S = struct {
const E = enum(c_int) { one, two }; const E = enum(c_int) { one, two };
@ -20,7 +19,6 @@ test "exporting enum type and value" {
test "exporting with internal linkage" { test "exporting with internal linkage" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
const S = struct { const S = struct {
fn foo() callconv(.C) void {} fn foo() callconv(.C) void {}
@ -34,7 +32,6 @@ test "exporting with internal linkage" {
test "exporting using field access" { test "exporting using field access" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
const S = struct { const S = struct {
const Inner = struct { const Inner = struct {

View file

@ -16,7 +16,6 @@ test "anyopaque extern symbol" {
export var a_mystery_symbol: i32 = 1234; export var a_mystery_symbol: i32 = 1234;
test "function extern symbol" { test "function extern symbol" {
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest; if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
@ -30,7 +29,6 @@ export fn a_mystery_function() i32 {
} }
test "function extern symbol matches extern decl" { test "function extern symbol matches extern decl" {
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest; if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;

View file

@ -582,7 +582,6 @@ test "pass and return comptime-only types" {
test "pointer to alias behaves same as pointer to function" { test "pointer to alias behaves same as pointer to function" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
const S = struct { const S = struct {

View file

@ -7,7 +7,6 @@ test "store to global array" {
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
try expect(pos[1] == 0.0); try expect(pos[1] == 0.0);
pos = [2]f32{ 0.0, 1.0 }; pos = [2]f32{ 0.0, 1.0 };
@ -19,7 +18,6 @@ test "store to global vector" {
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
try expect(vpos[1] == 0.0); try expect(vpos[1] == 0.0);
vpos = @Vector(2, f32){ 0.0, 1.0 }; vpos = @Vector(2, f32){ 0.0, 1.0 };
@ -49,7 +47,6 @@ test "global loads can affect liveness" {
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
const S = struct { const S = struct {
const ByRef = struct { const ByRef = struct {

View file

@ -55,17 +55,57 @@ fn testNullPtrsEql() !void {
try expect(&number == x); try expect(&number == x);
} }
test "optional with void type" { test "optional with zero-bit type" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
const Foo = struct { const S = struct {
x: ?void, fn doTheTest(comptime ZeroBit: type, comptime zero_bit: ZeroBit) !void {
const WithRuntime = struct {
zero_bit: ZeroBit,
runtime: u1,
}; };
var x = Foo{ .x = null }; var with_runtime: WithRuntime = undefined;
_ = &x; with_runtime = .{ .zero_bit = zero_bit, .runtime = 0 };
try expect(x.x == null);
const Opt = struct { opt: ?ZeroBit };
var opt: Opt = .{ .opt = null };
try expect(opt.opt == null);
try expect(opt.opt != zero_bit);
try expect(opt.opt != with_runtime.zero_bit);
opt.opt = zero_bit;
try expect(opt.opt != null);
try expect(opt.opt == zero_bit);
try expect(opt.opt == with_runtime.zero_bit);
opt = .{ .opt = zero_bit };
try expect(opt.opt != null);
try expect(opt.opt == zero_bit);
try expect(opt.opt == with_runtime.zero_bit);
opt.opt = with_runtime.zero_bit;
try expect(opt.opt != null);
try expect(opt.opt == zero_bit);
try expect(opt.opt == with_runtime.zero_bit);
opt = .{ .opt = with_runtime.zero_bit };
try expect(opt.opt != null);
try expect(opt.opt == zero_bit);
try expect(opt.opt == with_runtime.zero_bit);
var two: ?struct { ZeroBit, ZeroBit } = undefined;
two = .{ with_runtime.zero_bit, with_runtime.zero_bit };
if (!@inComptime()) {
try expect(two != null);
try expect(two.?[0] == zero_bit);
try expect(two.?[0] == with_runtime.zero_bit);
try expect(two.?[1] == zero_bit);
try expect(two.?[1] == with_runtime.zero_bit);
}
}
};
try S.doTheTest(void, {});
try comptime S.doTheTest(void, {});
try S.doTheTest(enum { only }, .only);
try comptime S.doTheTest(enum { only }, .only);
} }
test "address of unwrap optional" { test "address of unwrap optional" {

View file

@ -1125,12 +1125,13 @@ test "pointer loaded correctly from packed struct" {
} }
} }
}; };
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c and builtin.os.tag == .windows) return error.SkipZigTest; // crashes MSVC
var ram = try RAM.new(); var ram = try RAM.new();
var cpu = try CPU.new(&ram); var cpu = try CPU.new(&ram);
try cpu.tick(); try cpu.tick();

View file

@ -101,7 +101,6 @@ test "reslice of undefined global var slice" {
test "returned undef is 0xaa bytes when runtime safety is enabled" { test "returned undef is 0xaa bytes when runtime safety is enabled" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;

View file

@ -1644,7 +1644,6 @@ test "undefined-layout union field pointer has correct alignment" {
} }
test "packed union field pointer has correct alignment" { test "packed union field pointer has correct alignment" {
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO

View file

@ -1392,7 +1392,6 @@ test "store vector with memset" {
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_llvm) { if (builtin.zig_backend == .stage2_llvm) {
switch (builtin.target.cpu.arch) { switch (builtin.target.cpu.arch) {

View file

@ -1092,9 +1092,17 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step {
// Tracking issue for making the C backend generate C89 compatible code: // Tracking issue for making the C backend generate C89 compatible code:
// https://github.com/ziglang/zig/issues/19468 // https://github.com/ziglang/zig/issues/19468
"-std=c99", "-std=c99",
"-pedantic",
"-Werror", "-Werror",
"-Wall",
"-Wembedded-directive",
"-Wempty-translation-unit",
"-Wextra",
"-Wgnu",
"-Winvalid-utf8",
"-Wkeyword-macro",
"-Woverlength-strings",
// Tracking issue for making the C backend generate code // Tracking issue for making the C backend generate code
// that does not trigger warnings: // that does not trigger warnings:
// https://github.com/ziglang/zig/issues/19467 // https://github.com/ziglang/zig/issues/19467
@ -1103,14 +1111,14 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step {
"-Wno-builtin-requires-header", "-Wno-builtin-requires-header",
// spotted on linux // spotted on linux
"-Wno-gnu-folding-constant", "-Wno-braced-scalar-init",
"-Wno-incompatible-function-pointer-types", "-Wno-excess-initializers",
"-Wno-incompatible-pointer-types", "-Wno-incompatible-pointer-types-discards-qualifiers",
"-Wno-overlength-strings", "-Wno-unused",
"-Wno-unused-parameter",
// spotted on darwin // spotted on darwin
"-Wno-dollar-in-identifier-extension", "-Wno-incompatible-pointer-types",
"-Wno-absolute-value",
}, },
}); });
compile_c.addIncludePath(b.path("lib")); // for zig.h compile_c.addIncludePath(b.path("lib")); // for zig.h