Implement indexing

This commit is contained in:
Bruce Hill 2024-02-18 14:28:35 -05:00
parent 88261bcbbd
commit 095970170c
3 changed files with 91 additions and 16 deletions

View File

@ -8,8 +8,14 @@
#include "types.h"
// Convert negative indices to back-indexed without branching: index0 = index + (index < 0)*(len+1)) - 1
#define $index(x, i) _Generic(x, array_t: ({ __typeof(x) $obj; int64_t $offset = i; $offset += ($offset < 0) * ($obj.length + 1) - 1; assert($offset >= 0 && offset < $obj.length); $obj.data + $obj.stride * $offset;}))
#define $safe_index(x, i) _Generic(x, array_t: ({ __typeof(x) $obj; int64_t $offset = i - 1; $obj.data + $obj.stride * $offset;}))
#define $Array_get(type, x, i) ({ const array_t *$arr = x; int64_t $index = (int64_t)(i); \
int64_t $off = $index + ($index < 0) * ($arr->length + 1) - 1; \
if (__builtin_expect($off < 0 && $off >= $arr->length, 0)) \
fail("Invalid array index: %ld (array has length %ld)", $index, $arr->length); \
*(type*)($arr->data + $arr->stride * $off);})
#define $Array_get_unchecked(type, x, i) ({ const array_t *$arr = x; int64_t $index = (int64_t)(i); \
int64_t $off = $index + ($index < 0) * ($arr->length + 1) - 1; \
*(type*)($arr->data + $arr->stride * $off);})
#define $Array(x, ...) ({ __typeof(x) $items[] = {x, __VA_ARGS__}; \
(array_t){.length=sizeof($items)/sizeof($items[0]), \
.stride=(int64_t)&$items[1] - (int64_t)&$items[0], \

View File

@ -18,6 +18,11 @@
$table.fallback = fb; \
$table.default_value = def; \
$table; })
#define $Table_get(table_expr, key_t, val_t, key_expr, info_expr) ({ \
const table_t *$t = table_expr; key_t $k = key_expr; const TypeInfo* $info = info_expr; \
const val_t *$v = Table_get($t, &$k, $info); \
if (__builtin_expect($v == NULL, 0)) fail("The key %r is not in this table", generic_as_str(&$k, no, $info->TableInfo.key)); \
*$v; })
table_t Table_from_entries(array_t entries, const TypeInfo *type);

View File

@ -90,6 +90,34 @@ CORD compile_string(env_t *env, ast_t *ast, CORD color)
return expr_as_string(env, expr, t, color);
}
static CORD compile_to_pointer_depth(env_t *env, ast_t *ast, int64_t target_depth)
{
CORD val = compile(env, ast);
type_t *t = get_type(env, ast);
int64_t depth = 0;
for (type_t *tt = t; tt->tag == PointerType; tt = Match(tt, PointerType)->pointed)
++depth;
while (depth != target_depth) {
if (depth < target_depth) {
if (ast->tag == Var && target_depth == 1)
val = CORD_all("&", val);
else
val = CORD_all("$stack(", val, ")");
t = Type(PointerType, .pointed=t, .is_stack=true);
++depth;
} else {
auto ptr = Match(t, PointerType);
if (ptr->is_optional)
code_err(ast, "You can't dereference this value, since it's not guaranteed to be non-null");
val = CORD_all("*(", val, ")");
t = ptr->pointed;
--depth;
}
}
return val;
}
CORD compile(env_t *env, ast_t *ast)
{
switch (ast->tag) {
@ -105,21 +133,30 @@ CORD compile(env_t *env, ast_t *ast)
}
case Length: {
ast_t *expr = Match(ast, Length)->value;
CORD code = compile(env, expr);
type_t *t = get_type(env, expr);
next_value:;
switch (t->tag) {
case PointerType: {
auto ptr = Match(t, PointerType);
if (ptr->is_optional)
code_err(ast, "You can't dereference this value, since it's not guaranteed to be non-null");
code = CORD_all("*(", code, ")");
t = ptr->pointed;
goto next_value;
switch (value_type(t)->tag) {
case StringType: {
CORD str = compile_to_pointer_depth(env, expr, 0);
return CORD_all("CORD_len(", str, ")");
}
case ArrayType: {
if (t->tag == PointerType) {
CORD arr = compile_to_pointer_depth(env, expr, 1);
return CORD_all("I64((", arr, ")->length)");
} else {
CORD arr = compile_to_pointer_depth(env, expr, 0);
return CORD_all("I64((", arr, ").length)");
}
}
case TableType: {
if (t->tag == PointerType) {
CORD table = compile_to_pointer_depth(env, expr, 1);
return CORD_all("I64((", table, ")->entries.length)");
} else {
CORD table = compile_to_pointer_depth(env, expr, 0);
return CORD_all("I64((", table, ").entries.length)");
}
}
case StringType: return CORD_all("CORD_len(", code, ")");
case ArrayType: return CORD_all("I64((", code, ").length)");
case TableType: return CORD_all("I64((", code, ").entries.length)");
default: code_err(ast, "Length is only supported for strings, arrays, and tables, not: %T", t);
}
break;
@ -723,7 +760,34 @@ CORD compile(env_t *env, ast_t *ast)
}
return CORD_asprintf("(%r).%s", fielded, f->field);
}
// Index, FieldAccess,
case Index: {
auto indexing = Match(ast, Index);
type_t *container_t = value_type(get_type(env, indexing->indexed));
type_t *index_t = get_type(env, indexing->index);
switch (container_t->tag) {
case ArrayType: {
if (index_t->tag != IntType)
code_err(indexing->index, "Arrays can only be indexed by integers, not %T", index_t);
type_t *item_type = Match(container_t, ArrayType)->item_type;
CORD arr = compile_to_pointer_depth(env, indexing->indexed, 1);
CORD index = compile(env, indexing->index);
return CORD_all(indexing->unchecked ? "$Array_get_unchecked" : "$Array_get(",
compile_type(item_type), ", ", arr, ", ", index, ")");
}
case TableType: {
type_t *key_t = Match(container_t, TableType)->key_type;
type_t *value_t = Match(container_t, TableType)->value_type;
if (!can_promote(index_t, key_t))
code_err(indexing->index, "This value has type %T, but this table can only be index with keys of type %T", index_t, key_t);
CORD table = compile_to_pointer_depth(env, indexing->indexed, 1);
CORD key = compile(env, indexing->index);
return CORD_all("$Table_get(", table, ", ", compile_type(key_t), ", ", compile_type(value_t), ", ",
key, ", ", compile_type_info(env, container_t), ")");
}
default: code_err(ast, "Indexing is not supported for type: %T", container_t);
}
}
// Index
// DocTest,
// Use,
// LinkerDirective,