-
Notifications
You must be signed in to change notification settings - Fork 4
/
types.h
66 lines (55 loc) · 1.23 KB
/
types.h
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
#ifndef __TYPES_H__
#define __TYPES_H__
#include "symbol.h"
typedef struct Ty_ty_ *Ty_ty;
typedef struct Ty_tyList_ *Ty_tyList;
typedef struct Ty_field_ *Ty_field;
typedef struct Ty_fieldList_ *Ty_fieldList;
struct Ty_ty_ {
enum {
Ty_record,
Ty_nil,
Ty_int,
Ty_string,
Ty_array,
Ty_name,
Ty_void,
Ty_funcWithFuncReturn,
Ty_funcWithSimpReturn
} kind;
union {
Ty_fieldList record;
Ty_ty array;
Ty_ty name;
} u;
Ty_tyList parameter;
Ty_ty returns;
};
struct Ty_tyList_ {
Ty_ty head;
Ty_tyList tail;
};
struct Ty_field_ {
S_symbol name;
Ty_ty ty;
};
struct Ty_fieldList_ {
Ty_field head;
Ty_fieldList tail;
};
Ty_ty Ty_Nil(void);
Ty_ty Ty_Int(void);
Ty_ty Ty_String(void);
Ty_ty Ty_Void(void);
Ty_ty Ty_Record(Ty_fieldList fields);
Ty_ty Ty_Array(Ty_ty ty);
Ty_ty Ty_Name(Ty_ty ty);
Ty_ty Ty_FuncWithFuncReturn(Ty_tyList parameter, Ty_ty returns);
Ty_ty Ty_FuncWithSimpleTypeReturn(Ty_tyList parameter, Ty_ty returns);
Ty_tyList Ty_TyList(Ty_ty head, Ty_tyList tail);
Ty_field Ty_Field(S_symbol name, Ty_ty ty);
Ty_fieldList Ty_FieldList(Ty_field head, Ty_fieldList tail);
int Ty_is_compatible(Ty_ty ty1, Ty_ty ty2);
void Ty_print(Ty_ty t);
void TyList_print(Ty_tyList list);
#endif