Sema: populate the sentinel for comptime array inits

This commit is contained in:
Andrew Kelley 2022-01-15 22:46:39 -07:00
parent 0d2f4d0654
commit 7c6f5d26ea
3 changed files with 33 additions and 15 deletions

View File

@ -2854,7 +2854,15 @@ fn zirValidateArrayInit(
if (is_comptime or block.is_comptime) {
// In this case the comptime machinery will have evaluated the store instructions
// at comptime and we have nothing to do here.
// at comptime so we have almost nothing to do here. However, in case of a
// sentinel-terminated array, the sentinel will not have been populated by
// any ZIR instructions at comptime; we need to do that here.
if (array_ty.sentinel()) |sentinel_val| {
const array_len_ref = try sema.addIntUnsigned(Type.usize, array_len);
const sentinel_ptr = try sema.elemPtrArray(block, init_src, array_ptr, array_len_ref, init_src);
const sentinel = try sema.addConstant(array_ty.childType(), sentinel_val);
try sema.storePtr2(block, init_src, sentinel_ptr, init_src, sentinel, init_src, .store);
}
return;
}
@ -2863,7 +2871,7 @@ fn zirValidateArrayInit(
// Collect the comptime element values in case the array literal ends up
// being comptime-known.
const element_vals = try sema.arena.alloc(Value, instrs.len);
const element_vals = try sema.arena.alloc(Value, array_ty.arrayLenIncludingSentinel());
const opt_opv = try sema.typeHasOnePossibleValue(block, init_src, array_ty);
const air_tags = sema.air_instructions.items(.tag);
const air_datas = sema.air_instructions.items(.data);
@ -2920,6 +2928,10 @@ fn zirValidateArrayInit(
if (array_is_comptime) {
// Our task is to delete all the `elem_ptr` and `store` instructions, and insert
// instead a single `store` to the array_ptr with a comptime struct value.
// Also to populate the sentinel value, if any.
if (array_ty.sentinel()) |sentinel_val| {
element_vals[instrs.len] = sentinel_val;
}
block.instructions.shrinkRetainingCapacity(first_block_index);
@ -13436,6 +13448,12 @@ fn elemValArray(
const maybe_index_val = try sema.resolveDefinedValue(block, elem_index_src, elem_index);
if (maybe_index_val) |index_val| {
const index = @intCast(usize, index_val.toUnsignedInt());
const len = array_ty.arrayLenIncludingSentinel();
if (index >= len) {
return sema.fail(block, elem_index_src, "index {d} outside array of length {d}", .{
index, len,
});
}
const elem_val = try array_val.elemValue(sema.arena, index);
return sema.addConstant(elem_ty, elem_val);
}

View File

@ -166,3 +166,16 @@ test "anonymous literal in array" {
try S.doTheTest();
comptime try S.doTheTest();
}
test "access the null element of a null terminated array" {
const S = struct {
fn doTheTest() !void {
var array: [4:0]u8 = .{ 'a', 'o', 'e', 'u' };
try expect(array[4] == 0);
var len: usize = 4;
try expect(array[len] == 0);
}
};
try S.doTheTest();
comptime try S.doTheTest();
}

View File

@ -4,19 +4,6 @@ const mem = std.mem;
const expect = testing.expect;
const expectEqual = testing.expectEqual;
test "access the null element of a null terminated array" {
const S = struct {
fn doTheTest() !void {
var array: [4:0]u8 = .{ 'a', 'o', 'e', 'u' };
try expect(array[4] == 0);
var len: usize = 4;
try expect(array[len] == 0);
}
};
try S.doTheTest();
comptime try S.doTheTest();
}
test "type deduction for array subscript expression" {
const S = struct {
fn doTheTest() !void {