summaryrefslogtreecommitdiff
path: root/sdecls_cgen.c
blob: a146eb24620c50303c0f6ce4efdd0ec50d01984f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
  Copyright (C) 2019, 2020 Leo Tenenbaum.
  This file is part of toc. toc is distributed under version 3 of the GNU General Public License, without any warranty whatsoever.
  You should have received a copy of the GNU General Public License along with toc. If not, see <https://www.gnu.org/licenses/>.
*/
static bool cgen_sdecls_stmt(CGenerator *g, Statement *s);
static bool cgen_sdecls_decl(CGenerator *g, Declaration *d);
static bool cgen_sdecls_expr(CGenerator *g, Expression *e);

/* i is the name for this type, NULL if not available */
/* ALWAYS RETURNS TRUE. it just returns a bool for cgen_recurse_into_type to work */
static bool cgen_sdecls_type(CGenerator *g, Type *type) {
	if (!(type->flags & TYPE_IS_RESOLVED)) /* non-instance constant fn parameter type */
		return true;
	if (type->kind == TYPE_STRUCT) {
		StructDef *sdef = type->struc;
		/* we'll actually define the struct later; here we can just declare it */
	
		if (sdef->flags & STRUCT_DEF_CGEN_DECLARED) {
			/* we've already done this */
		} else {
			cgen_write(g, "struct ");
			if (!sdef->name) {
				sdef->c.id = ++g->ident_counter;
			} 
			cgen_struct_name(g, sdef);
			cgen_write(g, ";");
			cgen_nl(g);
			sdef->flags |= STRUCT_DEF_CGEN_DECLARED;
		}
	}
	cgen_recurse_subtypes(cgen_sdecls_type, g, type);
	return true;
}

static bool cgen_sdecls_block(CGenerator *g, Block *b) {
	Block *prev_block = g->block;
	g->block = b;
	
	arr_foreach(b->stmts, Statement, s)
		if (!cgen_sdecls_stmt(g, s))
			return false;
	if (b->ret_expr && !cgen_sdecls_expr(g, b->ret_expr))
		return false;
	g->block = prev_block;
	return true;
}

static bool cgen_sdecls_expr(CGenerator *g, Expression *e) {
	switch (e->kind) {
	case EXPR_CAST:
		cgen_sdecls_type(g, &e->cast.type);
		break;
	case EXPR_FN:
		/* needs to go before decls_cgen.c... */
		e->fn->c.id = ++g->ident_counter;
		break;
	case EXPR_TYPE:
		if (!cgen_sdecls_type(g, &e->typeval))
			return false;
		break;
	case EXPR_NMS:
		e->nms.c.id = 0;
		break;
	default: break;
	}
	cgen_recurse_subexprs(g, e, cgen_sdecls_expr, cgen_sdecls_block, cgen_sdecls_decl);
	return true;

}

static bool cgen_sdecls_decl(CGenerator *g, Declaration *d) {
	if (d->flags & DECL_FOREIGN) {
		/* handled by cgen_decls */
		return true;
	}
	cgen_sdecls_type(g, &d->type);
	if (cgen_fn_is_direct(g, d)) {
		d->expr.fn->c.name = d->idents[0];
	}
	for (int idx = 0; idx < (int)arr_len(d->idents); ++idx) {
		Type *type = decl_type_at_index(d, idx);
		Value *val = decl_val_at_index(d, idx);
		if (type_is_builtin(type, BUILTIN_TYPE)) {
			if (!cgen_sdecls_type(g, val->type))
				return false;
		}
	}
	if (d->flags & DECL_HAS_EXPR) {
		if (!cgen_sdecls_expr(g, &d->expr))
			return false;
		if (d->flags & DECL_EXPORT) {
			if (d->expr.kind == EXPR_FN)
				d->expr.fn->flags |= FN_EXPR_EXPORT;
		}
	}
	return true;
}

static bool cgen_sdecls_stmt(CGenerator *g, Statement *s) {
	switch (s->kind) {
	case STMT_DECL:
		if (!cgen_sdecls_decl(g, s->decl))
			return false;
		break;
	case STMT_EXPR:
		if (!cgen_sdecls_expr(g, &s->expr))
			return false;
		break;
	case STMT_RET:
		if (s->ret.flags & RET_HAS_EXPR)
			if (!cgen_sdecls_expr(g, &s->ret.expr))
				return false;
		break;
	case STMT_INCLUDE:
		arr_foreach(s->inc.stmts, Statement, sub)
			if (!cgen_sdecls_stmt(g, sub))
				return false;
	    break;
	}
	return true;
}

static bool cgen_sdecls_file(CGenerator *g, ParsedFile *f) {
	arr_foreach(f->stmts, Statement, s) {
		if (!cgen_sdecls_stmt(g, s))
			return false;
	}
	return true;
}