diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-01-07 22:28:24 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-07 22:28:24 -0800 |
| commit | 3176fdc0b921b36ee7d8346ef302d0817b980cfa (patch) | |
| tree | 213a34bd1618ff429ec54efbc6652b2ee9940ff9 /src | |
| parent | 2115d7d1beeba32f975d8a032e5f5068e96e74f4 (diff) | |
| parent | 01b48e938198a206b95ed06f3a7e530e859c1cbc (diff) | |
| download | zig-3176fdc0b921b36ee7d8346ef302d0817b980cfa.tar.gz zig-3176fdc0b921b36ee7d8346ef302d0817b980cfa.zip | |
Merge pull request #18470 from castholm/typeInfo-sentinels
Make `@typeInfo` return null-terminated strings
Diffstat (limited to 'src')
| -rw-r--r-- | src/InternPool.zig | 2 | ||||
| -rw-r--r-- | src/Sema.zig | 56 | ||||
| -rw-r--r-- | src/value.zig | 2 |
3 files changed, 33 insertions, 27 deletions
diff --git a/src/InternPool.zig b/src/InternPool.zig index 2e690652a3..0844e0f7a5 100644 --- a/src/InternPool.zig +++ b/src/InternPool.zig @@ -5315,7 +5315,7 @@ pub fn get(ip: *InternPool, gpa: Allocator, key: Key) Allocator.Error!Index { try ip.extra.ensureUnusedCapacity( gpa, - @typeInfo(Tag.Aggregate).Struct.fields.len + @as(usize, @intCast(len_including_sentinel)), + @typeInfo(Tag.Aggregate).Struct.fields.len + @as(usize, @intCast(len_including_sentinel + 1)), ); ip.items.appendAssumeCapacity(.{ .tag = .aggregate, diff --git a/src/Sema.zig b/src/Sema.zig index 2b020b405b..f79691f6ac 100644 --- a/src/Sema.zig +++ b/src/Sema.zig @@ -17259,10 +17259,11 @@ fn zirTypeInfo(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Ai const vals = try sema.arena.alloc(InternPool.Index, names.len); for (vals, 0..) |*field_val, i| { // TODO: write something like getCoercedInts to avoid needing to dupe - const name = try sema.arena.dupe(u8, ip.stringToSlice(names.get(ip)[i])); + const name = try sema.arena.dupeZ(u8, ip.stringToSlice(names.get(ip)[i])); const name_val = v: { const new_decl_ty = try mod.arrayType(.{ .len = name.len, + .sentinel = .zero_u8, .child = .u8_type, }); const new_decl_val = try mod.intern(.{ .aggregate = .{ @@ -17270,17 +17271,17 @@ fn zirTypeInfo(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Ai .storage = .{ .bytes = name }, } }); break :v try mod.intern(.{ .ptr = .{ - .ty = .slice_const_u8_type, + .ty = .slice_const_u8_sentinel_0_type, .addr = .{ .anon_decl = .{ .val = new_decl_val, - .orig_ty = .slice_const_u8_type, + .orig_ty = .slice_const_u8_sentinel_0_type, } }, .len = (try mod.intValue(Type.usize, name.len)).toIntern(), } }); }; const error_field_fields = .{ - // name: []const u8, + // name: [:0]const u8, name_val, }; field_val.* = try mod.intern(.{ .aggregate = .{ @@ -17387,10 +17388,11 @@ fn zirTypeInfo(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Ai else (try mod.intValue(Type.comptime_int, i)).toIntern(); // TODO: write something like getCoercedInts to avoid needing to dupe - const name = try sema.arena.dupe(u8, ip.stringToSlice(enum_type.names.get(ip)[i])); + const name = try sema.arena.dupeZ(u8, ip.stringToSlice(enum_type.names.get(ip)[i])); const name_val = v: { const new_decl_ty = try mod.arrayType(.{ .len = name.len, + .sentinel = .zero_u8, .child = .u8_type, }); const new_decl_val = try mod.intern(.{ .aggregate = .{ @@ -17398,17 +17400,17 @@ fn zirTypeInfo(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Ai .storage = .{ .bytes = name }, } }); break :v try mod.intern(.{ .ptr = .{ - .ty = .slice_const_u8_type, + .ty = .slice_const_u8_sentinel_0_type, .addr = .{ .anon_decl = .{ .val = new_decl_val, - .orig_ty = .slice_const_u8_type, + .orig_ty = .slice_const_u8_sentinel_0_type, } }, .len = (try mod.intValue(Type.usize, name.len)).toIntern(), } }); }; const enum_field_fields = .{ - // name: []const u8, + // name: [:0]const u8, name_val, // value: comptime_int, value_val, @@ -17512,10 +17514,11 @@ fn zirTypeInfo(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Ai for (union_field_vals, 0..) |*field_val, i| { // TODO: write something like getCoercedInts to avoid needing to dupe - const name = try sema.arena.dupe(u8, ip.stringToSlice(union_obj.field_names.get(ip)[i])); + const name = try sema.arena.dupeZ(u8, ip.stringToSlice(union_obj.field_names.get(ip)[i])); const name_val = v: { const new_decl_ty = try mod.arrayType(.{ .len = name.len, + .sentinel = .zero_u8, .child = .u8_type, }); const new_decl_val = try mod.intern(.{ .aggregate = .{ @@ -17523,10 +17526,10 @@ fn zirTypeInfo(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Ai .storage = .{ .bytes = name }, } }); break :v try mod.intern(.{ .ptr = .{ - .ty = .slice_const_u8_type, + .ty = .slice_const_u8_sentinel_0_type, .addr = .{ .anon_decl = .{ .val = new_decl_val, - .orig_ty = .slice_const_u8_type, + .orig_ty = .slice_const_u8_sentinel_0_type, } }, .len = (try mod.intValue(Type.usize, name.len)).toIntern(), } }); @@ -17539,7 +17542,7 @@ fn zirTypeInfo(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Ai const field_ty = union_obj.field_types.get(ip)[i]; const union_field_fields = .{ - // name: []const u8, + // name: [:0]const u8, name_val, // type: type, field_ty, @@ -17658,11 +17661,12 @@ fn zirTypeInfo(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Ai // TODO: write something like getCoercedInts to avoid needing to dupe const bytes = if (tuple.names.len != 0) // https://github.com/ziglang/zig/issues/15709 - try sema.arena.dupe(u8, ip.stringToSlice(ip.indexToKey(ty.toIntern()).anon_struct_type.names.get(ip)[i])) + try sema.arena.dupeZ(u8, ip.stringToSlice(ip.indexToKey(ty.toIntern()).anon_struct_type.names.get(ip)[i])) else - try std.fmt.allocPrint(sema.arena, "{d}", .{i}); + try std.fmt.allocPrintZ(sema.arena, "{d}", .{i}); const new_decl_ty = try mod.arrayType(.{ .len = bytes.len, + .sentinel = .zero_u8, .child = .u8_type, }); const new_decl_val = try mod.intern(.{ .aggregate = .{ @@ -17670,10 +17674,10 @@ fn zirTypeInfo(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Ai .storage = .{ .bytes = bytes }, } }); break :v try mod.intern(.{ .ptr = .{ - .ty = .slice_const_u8_type, + .ty = .slice_const_u8_sentinel_0_type, .addr = .{ .anon_decl = .{ .val = new_decl_val, - .orig_ty = .slice_const_u8_type, + .orig_ty = .slice_const_u8_sentinel_0_type, } }, .len = (try mod.intValue(Type.usize, bytes.len)).toIntern(), } }); @@ -17685,7 +17689,7 @@ fn zirTypeInfo(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Ai const opt_default_val = if (is_comptime) Value.fromInterned(field_val) else null; const default_val_ptr = try sema.optRefValue(opt_default_val); const struct_field_fields = .{ - // name: []const u8, + // name: [:0]const u8, name_val, // type: type, field_ty, @@ -17713,7 +17717,7 @@ fn zirTypeInfo(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Ai for (struct_field_vals, 0..) |*field_val, i| { // TODO: write something like getCoercedInts to avoid needing to dupe const name = if (struct_type.fieldName(ip, i).unwrap()) |name_nts| - try sema.arena.dupe(u8, ip.stringToSlice(name_nts)) + try sema.arena.dupeZ(u8, ip.stringToSlice(name_nts)) else try std.fmt.allocPrintZ(sema.arena, "{d}", .{i}); const field_ty = Type.fromInterned(struct_type.field_types.get(ip)[i]); @@ -17722,6 +17726,7 @@ fn zirTypeInfo(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Ai const name_val = v: { const new_decl_ty = try mod.arrayType(.{ .len = name.len, + .sentinel = .zero_u8, .child = .u8_type, }); const new_decl_val = try mod.intern(.{ .aggregate = .{ @@ -17729,10 +17734,10 @@ fn zirTypeInfo(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Ai .storage = .{ .bytes = name }, } }); break :v try mod.intern(.{ .ptr = .{ - .ty = .slice_const_u8_type, + .ty = .slice_const_u8_sentinel_0_type, .addr = .{ .anon_decl = .{ .val = new_decl_val, - .orig_ty = .slice_const_u8_type, + .orig_ty = .slice_const_u8_sentinel_0_type, } }, .len = (try mod.intValue(Type.usize, name.len)).toIntern(), } }); @@ -17750,7 +17755,7 @@ fn zirTypeInfo(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Ai }; const struct_field_fields = .{ - // name: []const u8, + // name: [:0]const u8, name_val, // type: type, field_ty.toIntern(), @@ -17957,9 +17962,10 @@ fn typeInfoNamespaceDecls( if (decl.kind != .named or !decl.is_pub) continue; const name_val = v: { // TODO: write something like getCoercedInts to avoid needing to dupe - const name = try sema.arena.dupe(u8, ip.stringToSlice(decl.name)); + const name = try sema.arena.dupeZ(u8, ip.stringToSlice(decl.name)); const new_decl_ty = try mod.arrayType(.{ .len = name.len, + .sentinel = .zero_u8, .child = .u8_type, }); const new_decl_val = try mod.intern(.{ .aggregate = .{ @@ -17967,9 +17973,9 @@ fn typeInfoNamespaceDecls( .storage = .{ .bytes = name }, } }); break :v try mod.intern(.{ .ptr = .{ - .ty = .slice_const_u8_type, + .ty = .slice_const_u8_sentinel_0_type, .addr = .{ .anon_decl = .{ - .orig_ty = .slice_const_u8_type, + .orig_ty = .slice_const_u8_sentinel_0_type, .val = new_decl_val, } }, .len = (try mod.intValue(Type.usize, name.len)).toIntern(), @@ -17977,7 +17983,7 @@ fn typeInfoNamespaceDecls( }; const fields = .{ - //name: []const u8, + //name: [:0]const u8, name_val, }; try decl_vals.append(try mod.intern(.{ .aggregate = .{ diff --git a/src/value.zig b/src/value.zig index 45f603ed2d..896ca108a7 100644 --- a/src/value.zig +++ b/src/value.zig @@ -4050,7 +4050,7 @@ pub const Value = struct { const tags = @typeInfo(Tag).Enum.fields; var fields: [tags.len]std.builtin.Type.StructField = undefined; for (&fields, tags) |*field, t| field.* = .{ - .name = t.name, + .name = t.name ++ "", .type = *@field(Tag, t.name).Type(), .default_value = null, .is_comptime = false, |
