aboutsummaryrefslogtreecommitdiff
path: root/src/analyze.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/analyze.c')
-rw-r--r--src/analyze.c141
1 files changed, 140 insertions, 1 deletions
diff --git a/src/analyze.c b/src/analyze.c
index 900e771..10e1f0b 100644
--- a/src/analyze.c
+++ b/src/analyze.c
@@ -2,6 +2,7 @@
/* Copyright 2024 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
#include <fwd/analyze.h>
+#include <string.h>
#include <assert.h>
struct state {
@@ -47,7 +48,67 @@ static int analyze_proc(struct state *state, struct scope *scope, struct ast *no
static int analyze_unop(struct state *state, struct scope *scope, struct ast *node)
{
- assert(false);
+ /** @todo check expr is some primitive type */
+ struct ast *expr = unop_expr(node);
+ if (analyze(state, scope, expr))
+ return -1;
+
+ node->t = expr->t;
+ return 0;
+}
+
+static int analyze_binop(struct state *state, struct scope *scope, struct ast *node)
+{
+ struct ast *lhs = binop_left(node);
+ struct ast *rhs = binop_right(node);
+
+ if (analyze(state, scope, lhs))
+ return -1;
+
+ if (analyze(state, scope, rhs))
+ return -1;
+
+
+ if (!types_match(lhs->t, rhs->t)) {
+ type_mismatch(scope, node, lhs->t, rhs->t);
+ return -1;
+ }
+
+ /** @todo check type is some primitive */
+ node->t = lhs->t;
+ return 0;
+}
+
+static int analyze_comparison(struct state *state, struct scope *scope, struct ast *node)
+{
+ struct ast *lhs = comparison_left(node);
+ struct ast *rhs = comparison_right(node);
+
+ if (analyze(state, scope, lhs))
+ return -1;
+
+ if (analyze(state, scope, rhs))
+ return -1;
+
+
+ if (!types_match(lhs->t, rhs->t)) {
+ type_mismatch(scope, node, lhs->t, rhs->t);
+ return -1;
+ }
+
+ /** @todo check type is some primitive */
+ char *tf = strdup("bool");
+ if (!tf) {
+ internal_error("failed allocating comparison bool str");
+ return -1;
+ }
+
+ node->t = tgen_id(tf, node->loc);
+ if (!node->t) {
+ internal_error("failed allocating comparison bool type");
+ return -1;
+ }
+
return 0;
}
@@ -91,6 +152,7 @@ static int analyze_let(struct state *state, struct scope *scope, struct ast *nod
return -1;
}
+ /** @todo check move semantics, maybe in another pass? */
node->t = l;
return 0;
}
@@ -154,6 +216,7 @@ static int analyze_call(struct state *state, struct scope *scope, struct ast *no
return -1;
}
+ /** @todo check move semantics? */
return 0;
}
@@ -213,6 +276,69 @@ static int analyze_closure(struct state *state, struct scope *scope, struct ast
return 0;
}
+static int analyze_int(struct state *state, struct scope *scope, struct ast *node)
+{
+ /** @todo do this properly, very hacky, bad bad bad */
+ char *i = strdup("int");
+ if (!i) {
+ internal_error("failed allocating constant int type string");
+ return -1;
+ }
+
+ node->t = tgen_id(i, node->loc);
+ if (!node->t) {
+ internal_error("failed allocating constant int type");
+ return -1;
+ }
+
+ return 0;
+}
+
+static int analyze_str(struct state *state, struct scope *scope, struct ast *node)
+{
+ /** @todo do this properly, very hacky, bad bad bad */
+ char *i = strdup("char");
+ if (!i) {
+ internal_error("failed allocating constant char type string");
+ return -1;
+ }
+
+ struct type *ch = tgen_id(i, node->loc);
+ if (!ch) {
+ internal_error("failed allocating constant char type");
+ return -1;
+ }
+
+ struct type *str = tgen_ptr(ch, node->loc);
+ if (!str) {
+ internal_error("failed allocating constant str type");
+ return -1;
+ }
+
+ node->t = str;
+ return 0;
+}
+
+static int analyze_if(struct state *state, struct scope *scope, struct ast *node)
+{
+ if (analyze(state, scope, if_cond(node)))
+ return -1;
+
+ if (analyze(state, scope, if_body(node)))
+ return -1;
+
+ if (analyze(state, scope, if_else(node)))
+ return -1;
+
+ node->t = tgen_void(node->loc);
+ if (!node->t) {
+ internal_error("failed allocating 'if' void type");
+ return -1;
+ }
+
+ return 0;
+}
+
static int analyze(struct state *state, struct scope *scope, struct ast *node)
{
if (!node)
@@ -234,6 +360,16 @@ static int analyze(struct state *state, struct scope *scope, struct ast *node)
node->scope = scope;
int ret = 0;
+ if (is_binop(node)) {
+ ret = analyze_binop(state, scope, node);
+ goto out;
+ }
+
+ if (is_comparison(node)) {
+ ret = analyze_comparison(state, scope, node);
+ goto out;
+ }
+
if (is_unop(node)) {
ret = analyze_unop(state, scope, node);
goto out;
@@ -247,7 +383,10 @@ static int analyze(struct state *state, struct scope *scope, struct ast *node)
case AST_INIT: ret = analyze_init (state, scope, node); break;
case AST_CALL: ret = analyze_call (state, scope, node); break;
case AST_ID: ret = analyze_id (state, scope, node); break;
+ case AST_IF: ret = analyze_if (state, scope, node); break;
case AST_CLOSURE: ret = analyze_closure (state, scope, node); break;
+ case AST_CONST_INT: ret = analyze_int (state, scope, node); break;
+ case AST_CONST_STR: ret = analyze_str (state, scope, node); break;
default:
internal_error("missing ast analysis");
return -1;