This repository has been archived by the owner on Jan 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
022primitives.cc
145 lines (122 loc) · 4.04 KB
/
022primitives.cc
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
//// core compiled primitives
// Design considered the following:
// compiled 'if' needs access to caller scope
// avoid accidental shadowing for params
// so params have a '$' prefix; user-defined functions won't have it because of implicit gensyms
// so compiledfns never call other compiledfns
// always increment the nrefs of a single cell along all codepaths
COMPILE_FN(fn, compiledfn_fn, "'($params ... $body)",
TEMP(f, mkref(new_table()));
put(f, sym_sig, lookup("$params"));
put(f, sym_body, lookup("$body"));
put(f, sym_env, cdr(Curr_lexical_scope));
return mkref(new_object("function", f));
)
COMPILE_FN(if, compiledfn_if, "($cond '$then '$else)",
return (lookup("$cond") != nil && lookup("$cond") != sym_false) ? eval(lookup("$then")) : eval(lookup("$else"));
)
COMPILE_FN(not, compiledfn_not, "($x)",
return (lookup("$x") == nil || lookup("$x") == sym_false) ? mkref(new_num(1)) : mkref(sym_false);
)
COMPILE_FN(=, compiledfn_equal, "($x $y)",
cell* x = lookup("$x");
cell* y = lookup("$y");
cell* result = nil;
if (x == nil && y == nil)
result = new_num(1);
else if (x == sym_false && y == sym_false)
result = new_num(1);
else if (x == nil || y == nil)
result = sym_false;
else if (x == sym_false || y == sym_false)
result = sym_false;
else if (x == y)
result = x;
else if (x->type == FLOAT || y->type == FLOAT)
result = (equal_floats(to_float(x), to_float(y)) ? x : nil);
else if (is_string(x) && is_string(y) && to_string(x) == to_string(y))
result = x;
else
result = sym_false;
return mkref(result);
)
//// types
COMPILE_FN(type, compiledfn_type, "($x)",
return mkref(type(lookup("$x")));
)
COMPILE_FN(coerce_quoted, compiledfn_coerce_quoted, "'($x $dest_type)",
return coerce_quoted(lookup("$x"), lookup("$dest_type"), lookup(sym_Coercions)); // already mkref'd
)
//// bindings
COMPILE_FN(<-, compiledfn_assign, "('$var $val)",
cell* var = lookup("$var");
cell* val = lookup("$val");
assign(var, val);
return mkref(val);
)
void assign(cell* var, cell* val) {
if (!is_sym(var)) {
RAISE << "can't assign to non-sym " << var << '\n';
return;
}
cell* scope = scope_containing_binding(var, Curr_lexical_scope);
if (!scope)
new_dynamic_scope(var, val);
else if (scope == nil)
assign_dynamic_var(var, val);
else
unsafe_put(scope, var, val, false);
}
COMPILE_FN(bind, compiledfn_bind, "('$var $val)",
new_dynamic_scope(lookup("$var"), lookup("$val"));
return nil;
)
COMPILE_FN(unbind, compiledfn_unbind, "('$var)",
cell* var = lookup("$var");
if (!Dynamics[var].empty())
end_dynamic_scope(var);
return nil;
)
COMPILE_FN(bound?, compiledfn_is_bound, "($var $scope)",
cell* var = lookup("$var");
if (var == nil) return mkref(new_num(1));
if (var == sym_false) return mkref(new_num(1));
if (!scope_containing_binding(var, lookup("$scope")))
return mkref(sym_false);
return mkref(var);
)
COMPILE_FN(num_bindings, compiledfn_num_bindings, "($var)",
return mkref(new_num((long)Dynamics[lookup("$var")].size()));
)
//// macros
COMPILE_FN(eval, compiledfn_eval, "('$x $scope)",
// assuming all calls to eval indicate a macro seems sufficient for now
In_macro.push(true);
// sidestep eval_args for x to handle @args
cell* x = eval(lookup("$x"), Curr_lexical_scope);
cell* ans = eval(
(type(x) == new_sym("incomplete_eval_data")) ? rep(x) : x,
lookup("$scope"));
rmref(x);
In_macro.pop();
return ans;
)
COMPILE_FN(mac?, compiledfn_is_macro, "($f)",
cell* f = lookup("$f");
return is_macro(f) ? mkref(f) : mkref(sym_false);
)
COMPILE_FN(uniq, compiledfn_uniq, "($x)",
return mkref(gensym(lookup("$x")));
)
//// partial eval
COMPILE_FN(warning_on_undefined_var?, compiledfn_is_warning_on_undefined_var, "()",
return Warn_on_unknown_var ? mkref(new_num(1)) : mkref(sym_false);
)
COMPILE_FN(stop_warning_on_undefined_var, compiledfn_stop_warning_on_undefined_var, "()",
Warn_on_unknown_var = false;
return nil;
)
COMPILE_FN(warn_on_undefined_var, compiledfn_warn_on_undefined_var, "()",
Warn_on_unknown_var = true;
return nil;
)