-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunc.h
74 lines (70 loc) · 1.81 KB
/
func.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
67
68
69
70
71
72
73
74
#ifndef LK_FUNC_H
#define LK_FUNC_H
#include "types.h"
/* type */
struct lk_func {
struct lk_common o;
struct lk_commonfunc {
lk_instr_t *sigdef;
int minargc;
int maxargc;
darray_t *sigs;
lk_sig_t *rest;
lk_str_t *doc;
uint8_t opts;
} cf;
};
struct lk_cfunc {
struct lk_common o;
struct lk_commonfunc cf;
enum {
LK_CFUNC_CC_LK,
LK_CFUNC_CC_CRETURN,
LK_CFUNC_CC_CVOID
} cc;
union {
lk_cfunc_lk_t *lk;
lk_cfunc_r0_t *r0;
lk_cfunc_r1_t *r1;
lk_cfunc_r2_t *r2;
lk_cfunc_r3_t *r3;
lk_cfunc_r4_t *r4;
lk_cfunc_r5_t *r5;
lk_cfunc_v0_t *v0;
lk_cfunc_v1_t *v1;
lk_cfunc_v2_t *v2;
lk_cfunc_v3_t *v3;
lk_cfunc_v4_t *v4;
lk_cfunc_v5_t *v5;
} cfunc;
};
struct lk_gfunc {
struct lk_common o;
struct lk_commonfunc cf;
darray_t *funcs;
};
struct lk_kfunc {
struct lk_common o;
struct lk_commonfunc cf;
lk_scope_t *scope;
lk_instr_t *first;
};
struct lk_sig {
struct lk_common o;
lk_str_t *name;
lk_obj_t *check;
uint8_t isself;
};
/* ext map */
void lk_func_typeinit(lk_vm_t *vm);
void lk_func_libinit(lk_vm_t *vm);
/* new */
lk_cfunc_t *lk_cfunc_new(lk_vm_t * vm, lk_cfuncfunc_t *func, int minargc, int maxargc);
lk_kfunc_t *lk_kfunc_new(lk_vm_t *vm, lk_scope_t *scope, lk_instr_t *first);
lk_gfunc_t *lk_gfunc_new(lk_vm_t *vm);
lk_sig_t *lk_sig_new(lk_vm_t *vm, lk_str_t *name, lk_obj_t *type);
/* update */
lk_gfunc_t *lk_func_combine(lk_func_t *self, lk_func_t *other);
lk_func_t *lk_func_match(lk_func_t *self, lk_scope_t *args, lk_obj_t *recv);
void lk_kfunc_updatesig(lk_kfunc_t *self);
#endif