refactor: special forms

This commit is contained in:
2026-07-25 00:25:21 +02:00
parent 729f07655a
commit 0e134957af
4 changed files with 263 additions and 227 deletions
+38 -188
View File
@@ -1,6 +1,19 @@
#include "lisp.h"
static Scope global_scope = {0};
static LispFunction special_forms[] = {
{
.name = (Nob_String_View){.count = 2, .data = "if"},
.apply = special_form_if,
},
{.name = (Nob_String_View){.count = 6, .data = "define"},
.apply = special_form_define},
{.name = (Nob_String_View){.count = 3, .data = "let"},
.apply = special_form_let},
{
.name = (Nob_String_View){.count = 6, .data = "lambda"},
.apply = special_form_lambda,
}};
static int scope_lookup(Scopes *scopes, Nob_String_View name, Node *result) {
nob_da_foreach(Scope *, scope, scopes) {
@@ -17,7 +30,7 @@ static int scope_lookup(Scopes *scopes, Nob_String_View name, Node *result) {
}
static void scope_add_function(Scope *scope, const char *name,
LispFunction function) {
LispFunctionPtr function) {
Nob_String_View obj_name = nob_sv_from_cstr(name);
ScopeObject obj = (ScopeObject){
.name = obj_name,
@@ -26,37 +39,26 @@ static void scope_add_function(Scope *scope, const char *name,
nob_da_append(scope, obj);
}
static bool node_is_true(Node node) {
switch (node.kind) {
case NODE_KIND_NUMBER:
return node.as_number != 0;
case NODE_KIND_LIST:
return node.as_list->count > 0;
default:
return true;
}
}
void build_scopes(Scopes *scopes) {
scope_add_function(&global_scope, "+", lisp_function_add);
scope_add_function(&global_scope, "-", lisp_function_sub);
scope_add_function(&global_scope, "/", lisp_function_div);
scope_add_function(&global_scope, "*", lisp_function_mul);
scope_add_function(&global_scope, "=", lisp_function_eq);
scope_add_function(&global_scope, "<", lisp_function_lt);
scope_add_function(&global_scope, ">", lisp_function_gt);
scope_add_function(&global_scope, "<=", lisp_function_lt_eq);
scope_add_function(&global_scope, ">=", lisp_function_gt_eq);
scope_add_function(&global_scope, "+", builtin_add);
scope_add_function(&global_scope, "-", builtin_sub);
scope_add_function(&global_scope, "/", builtin_div);
scope_add_function(&global_scope, "*", builtin_mul);
scope_add_function(&global_scope, "=", builtin_eq);
scope_add_function(&global_scope, "<", builtin_lt);
scope_add_function(&global_scope, ">", builtin_gt);
scope_add_function(&global_scope, "<=", builtin_lt_eq);
scope_add_function(&global_scope, ">=", builtin_gt_eq);
scope_add_function(&global_scope, "println", lisp_function_println);
scope_add_function(&global_scope, "list", lisp_function_list);
scope_add_function(&global_scope, "append", lisp_function_append);
scope_add_function(&global_scope, "length", lisp_function_length);
scope_add_function(&global_scope, "null?", lisp_function_isnull);
scope_add_function(&global_scope, "builtins", lisp_function_builtins);
scope_add_function(&global_scope, "println", builtin_println);
scope_add_function(&global_scope, "list", builtin_list);
scope_add_function(&global_scope, "append", builtin_append);
scope_add_function(&global_scope, "length", builtin_length);
scope_add_function(&global_scope, "null?", builtin_isnull);
scope_add_function(&global_scope, "builtins", builtin_builtins);
scope_add_function(&global_scope, "floor", lisp_function_floor);
scope_add_function(&global_scope, "ceil", lisp_function_ceil);
scope_add_function(&global_scope, "floor", builtin_floor);
scope_add_function(&global_scope, "ceil", builtin_ceil);
nob_da_append(scopes, &global_scope);
}
@@ -305,168 +307,16 @@ int eval_one(Node input, Scopes *scopes, Node *result) {
Node head_node = children->items[0];
if (head_node.kind == NODE_KIND_SYMBOL) {
if (nob_sv_eq(head_node.as_symbol,
(Nob_String_View){.count = 2, .data = "if"})) {
if (children->count != 3 + 1) {
printf("'if' expects three arguments!\n");
return 1;
}
Node condition = {0};
int ret = eval_one(children->items[0 + 1], scopes, &condition);
if (ret != 0) {
return ret;
}
if (node_is_true(condition)) {
ret = eval_one(children->items[1 + 1], scopes, result);
} else {
ret = eval_one(children->items[2 + 1], scopes, result);
}
return ret;
}
if (nob_sv_eq(head_node.as_symbol,
(Nob_String_View){.count = 6, .data = "define"})) {
if (children->count != 2 + 1) {
printf("'define' expects two arguments!\n");
return 1;
}
Node name_node = children->items[0 + 1];
if (name_node.kind != NODE_KIND_SYMBOL) {
printf("First argument of 'define' must be a symbol!\n");
return 1;
}
Node value = {0};
int ret = eval_one(children->items[1 + 1], scopes, &value);
if (ret != 0) {
return ret;
}
nob_da_foreach(ScopeObject, scope_object, &global_scope) {
if (nob_sv_eq(scope_object->name, name_node.as_symbol)) {
scope_object->node = value;
*result = children->items[0 + 1];
return 0;
}
}
ScopeObject obj =
(ScopeObject){.name = name_node.as_symbol, .node = value};
nob_da_append(&global_scope, obj);
*result = children->items[0 + 1];
return 0;
}
if (nob_sv_eq(head_node.as_symbol,
(Nob_String_View){.count = 3, .data = "let"})) {
if (children->count != 2 + 1) {
printf("'let' expects two arguments!\n");
return 1;
}
Node definitions = children->items[0 + 1];
if (definitions.kind != NODE_KIND_LIST) {
printf("First argument of 'let' must be a list!\n");
return 1;
}
Node expression = children->items[1 + 1];
if (expression.kind != NODE_KIND_LIST) {
printf("Second argument of 'let' must be a list!\n");
return 1;
}
// it's fine to allocate this on the stack because we will throw
// it off the scope stack after parsing 'let' anyways therefore
// it'll outlive the recursive call
Scope scope = {0};
nob_da_foreach(Node, def, definitions.as_list) {
if (def->kind != NODE_KIND_LIST ||
def->as_list->count != 2 ||
def->as_list->items[0].kind != NODE_KIND_SYMBOL) {
printf("'let' expects a list of key-value pairs, e.g. "
"'(let ((x 42) (y 2)) (+ x y))'\n");
return 1;
}
Node key = def->as_list->items[0];
Node value_node = def->as_list->items[1];
Node value = {0};
int ret = eval_one(value_node, scopes, &value);
for (size_t i = 0; i < NOB_ARRAY_LEN(special_forms); i++) {
LispFunction special_form = special_forms[i];
if (nob_sv_eq(head_node.as_symbol, special_form.name)) {
Nodes args = {.count = children->count - 1,
.items = children->items + 1};
int ret = special_form.apply(args, scopes, result);
if (ret != 0)
return ret;
ScopeObject obj =
(ScopeObject){.name = key.as_symbol, .node = value};
nob_da_append(&scope, obj);
}
Node expression_value = {0};
{
nob_da_append(scopes, &scope);
int ret = eval_one(expression, scopes, &expression_value);
if (ret != 0) {
return ret;
}
UNUSED(nob_da_pop(scopes));
}
*result = expression_value;
return 0;
}
if (nob_sv_eq(head_node.as_symbol,
(Nob_String_View){.count = 6, .data = "lambda"})) {
if (children->count != 2 + 1) {
printf("'lambda' expects two argument!\n");
return 1;
}
Node params = children->items[0 + 1];
if (params.kind != NODE_KIND_LIST) {
printf("'lambda' expects a list of parameters as the first "
"argument!\n");
return 1;
}
nob_da_foreach(Node, node, params.as_list) {
if (node->kind != NODE_KIND_SYMBOL) {
printf("'lambda' expects a list of symbols "
"(parameters) as "
"the "
"first argument!\n");
return 1;
}
return 0;
}
result->kind = NODE_KIND_LAMBDA;
Nodes *params_list = malloc(sizeof(Nodes));
if (params_list == NULL) {
printf("Failed to allocate memory, something is really "
"wrong!\n");
return 1;
}
memcpy(params_list, params.as_list, sizeof(Nodes));
result->as_lambda.params = params_list;
Node *body = malloc(sizeof(Node));
if (body == NULL) {
printf("Failed to allocate memory, something is really "
"wrong!\n");
return 1;
}
memcpy(body, &children->items[1 + 1], sizeof(Node));
result->as_lambda.body = body;
return 0;
}
}