File: type.ha

package info (click to toggle)
hare-update 0.26.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,044 kB
  • sloc: makefile: 37; sh: 14
file content (212 lines) | stat: -rw-r--r-- 4,739 bytes parent folder | download | duplicates (2)
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
// SPDX-License-Identifier: MPL-2.0
// (c) Hare authors <https://harelang.org>

use common;

// A type alias.
export type alias_type = struct {
	unwrap: bool,
	ident: ident,
};

// A built-in primitive type (int, bool, str, etc).
export type builtin_type = enum {
	BOOL, DONE, F32, F64, FCONST, I16, I32, I64, I8, ICONST, INT, NEVER,
	NOMEM, NULL, OPAQUE, RCONST, RUNE, SIZE, STR, U16, U32, U64, U8, UINT,
	UINTPTR, UNDEFINED, VALIST, VOID
};

// An enumeration field (and optional value).
export type enum_field = struct {
	name: str,
	value: nullable *expr,
	loc: common::location,
	docs: str,
};

// enum { FOO = 0, BAR, ... }
export type enum_type = struct {
	storage: builtin_type,
	values: []enum_field,
};

// The variadism strategy for a function type.
export type variadism = enum {
	NONE,
	C,
	HARE,
};

// A parameter to a function type.
export type func_param = struct {
	loc: common::location,
	name: str,
	_type: *_type,
	default_value: (void | expr),
};

// fn(foo: int, baz: int...) int
export type func_type = struct {
	result: *_type,
	variadism: variadism,
	params: []func_param,
};

// The length for a list type which is a slice (e.g. []int).
export type len_slice = void;

// The length for a list type which is unbounded (e.g. [*]int).
export type len_unbounded = void;

// The length for a list type which is inferred from context (e.g. [_]int).
export type len_contextual = void;

// []int, [*]int, [_]int, [foo]int
export type list_type = struct {
	length: (*expr | len_slice | len_unbounded | len_contextual),
	members: *_type,
};

// Flags which apply to a pointer type.
export type pointer_flag = enum uint {
	NONE = 0,
	NULLABLE = 1 << 0,
};

// *int
export type pointer_type = struct {
	referent: *_type,
	flags: pointer_flag,
};

// A single field of a struct type.
export type struct_field = struct {
	name: str, // may be "_"
	_type: *_type,
};

// An embedded struct type.
export type struct_embedded = *_type;

// An embedded type alias.
export type struct_alias = ident;

// struct { @offset(10) foo: int, struct { bar: int }, baz::quux }
export type struct_member = struct {
	_offset: nullable *expr,
	member: (struct_field | struct_embedded | struct_alias),

	// Only valid if the lexer has comments enabled
	docs: str,
};

// struct { ... }
export type struct_type = struct {
	packed: bool,
	members: []struct_member,
};

// union { ... }
export type union_type = []struct_member;

export type struct_union_type = (struct_type | union_type);

// (int | bool)
export type tagged_type = []*_type;

// (int, bool, ...)
export type tuple_type = []*_type;

// Flags which apply to types.
export type type_flag = enum uint {
	NONE = 0,
	CONST = 1 << 0,
	ERROR = 1 << 1,
};

// A Hare type.
export type _type = struct {
	start: common::location,
	end: common::location,
	flags: type_flag,
	repr: (alias_type | builtin_type | enum_type | func_type |
		list_type | pointer_type | struct_type | union_type |
		tagged_type | tuple_type),
};

fn struct_members_free(membs: []struct_member) void = {
	for (let i = 0z; i < len(membs); i += 1) {
		free(membs[i].docs);
		expr_finish(membs[i]._offset);
		free(membs[i]._offset);
		match (membs[i].member) {
		case let f: struct_field =>
			free(f.name);
			type_finish(f._type);
			free(f._type);
		case let e: struct_embedded =>
			type_finish(e);
			free(e);
		case let a: struct_alias =>
			ident_free(a);
		};
	};
	free(membs);
};

// Frees resources associated with a [[_type]].
export fn type_finish(t: nullable *_type) void = {
	match (t) {
	case null => void;
	case let t: *_type =>
		match (t.repr) {
		case let a: alias_type =>
			ident_free(a.ident);
		case builtin_type => void;
		case let e: enum_type =>
			for (let i = 0z; i < len(e.values); i += 1) {
				free(e.values[i].name);
				expr_finish(e.values[i].value);
				free(e.values[i].value);
			};
			free(e.values);
		case let f: func_type =>
			type_finish(f.result);
			free(f.result);
			for (let i = 0z; i < len(f.params); i += 1) {
				free(f.params[i].name);
				type_finish(f.params[i]._type);
				free(f.params[i]._type);
			};
			free(f.params);
		case let l: list_type =>
			match (l.length) {
			case let e: *expr =>
				expr_finish(e);
				free(e);
			case => void;
			};
			type_finish(l.members);
			free(l.members);
		case let p: pointer_type =>
			type_finish(p.referent);
			free(p.referent);
		case let s: struct_type =>
			struct_members_free(s.members);
		case let t: tagged_type =>
			for (let i = 0z; i < len(t); i += 1) {
				type_finish(t[i]);
				free(t[i]);
			};
			free(t);
		case let t: tuple_type =>
			for (let i = 0z; i < len(t); i += 1) {
				type_finish(t[i]);
				free(t[i]);
			};
			free(t);
		case let u: union_type =>
			struct_members_free(u);
		};
	};
};