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
|
#ifndef ORYX_ANALYZER_H
#define ORYX_ANALYZER_H
#include <assert.h>
#include <stdint.h>
#include <gmp.h>
#include "alloc.h"
#include "lexer.h"
#include "parser.h"
#include "symtab.h"
#include "types.h"
/* The different base types */
enum {
/* No type exists (or hasn’t yet been typechecked) */
TYPE_UNSET,
/* Currently in the process of being typechecked. Useful for
detecting cyclic definitions. */
TYPE_CHECKING,
/* A numeric type */
TYPE_NUM,
/* A function type */
TYPE_FN,
_TYPE_LAST_ENT,
};
static_assert(_TYPE_LAST_ENT - 1 <= UINT8_MAX,
"Too many AST tokens to fix in uint8_t");
typedef struct {
idx_t up, i;
symtab_t *map;
} scope_t;
/* A variable type */
typedef struct type {
uint8_t kind;
union {
struct {
uint8_t size; /* number of bytes */
bool isfloat;
bool issigned;
};
struct {
const struct type *params, *ret;
idx_t paramcnt;
};
};
} type_t;
void analyzeprog(ast_t, aux_t, lexemes_t, arena_t *, type_t **, scope_t **,
mpq_t **)
__attribute__((nonnull));
#endif /* !ORYX_ANALYZER_H */
|