blob: 5e28903c7c28a236eee2a6f91665a6f751cccbd8 (
plain) (
blame)
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
|
#ifndef ORYX_ANALYZER_H
#define ORYX_ANALYZER_H
#include <stdint.h>
#include "lexer.h"
#include "parser.h"
enum {
TYPE_UNSET = 0,
TYPE_CHECKING = 1,
TYPE_NUM,
/* Floating point numbers */
TYPE_F16,
TYPE_F32,
TYPE_F64,
/* Unicode codepoint */
TYPE_RUNE,
/* Function type */
TYPE_FN,
_TYPE_LAST_ENT,
};
typedef uint8_t type_kind_t_;
static_assert(_TYPE_LAST_ENT - 1 <= (type_kind_t_)-1,
"Too many AST tokens to fix in TYPE_KIND_T_");
struct type {
type_kind_t_ kind;
uint8_t size : 7; /* bytes */
bool issigned : 1;
/* For functions */
const struct type *params, *ret;
idx_t_ paramcnt;
};
struct type *analyzeast(struct ast, struct lexemes)
__attribute__((returns_nonnull));
#endif /* !ORYX_ANALYZER_H */
|