forked from Matway/mpl-sl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrol.mpl
executable file
·241 lines (200 loc) · 4.14 KB
/
control.mpl
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
"control" module
"conventions" includeModule
pfunc: [{
virtual CALL:;
virtual PRE:;
}];
isCodeRef: [TRUE static];
isCodeRef: [storageSize TRUE static] [FALSE static] pfunc;
isCopyable: [drop FALSE];
isCopyable: [x:; @x storageSize 0nx > [@x Ref] [@x] uif copy TRUE] [drop TRUE] pfunc;
failProc: [
storageAddress printAddr
trace: getCallTrace;
[
trace.first trace.last is [
FALSE
] [
() LF printf
(trace.last.name trace.last.line copy trace.last.column copy) "in %s at %i:%i" printf
trace.last.prev trace.last addressToReference @trace.!last
TRUE
] if
] loop
2 exit
];
Cond: [v: FALSE dynamic; @v];
Int8: [v: 0i8 dynamic; @v];
Int16: [v: 0i16 dynamic; @v];
Int32: [v: 0i32 dynamic; @v];
Int64: [v: 0i64 dynamic; @v];
Intx: [v: 0ix dynamic; @v];
Nat8: [v: 0n8 dynamic; @v];
Nat16: [v: 0n16 dynamic; @v];
Nat32: [v: 0n32 dynamic; @v];
Nat64: [v: 0n64 dynamic; @v];
Natx: [v: 0nx dynamic; @v];
Real32: [v: 0.0r32 dynamic; @v];
Real64: [v: 0.0r64 dynamic; @v];
Text: [v: "" dynamic; @v];
Ref: [v:; 0nx @v addressToReference]; # for signatures
Cref: [v:; 0nx v addressToReference]; # for signatures
AsRef: [{data:;}]; # for Ref Array
{format: Text;} () {variadic: TRUE; convention: cdecl;} "printf" importFunction # need for assert
{result: 0;} () {convention: cdecl;} "exit" importFunction
drop: [v:;];
when: [[] if];
printAddr: [
copy addr:;
addr 0nx = not [(addr copy) "%s" printf] when
];
while: [
whileBody:;
whileCondition:;
[
@whileCondition call [
@whileBody call
TRUE
] &&
] loop
];
times: [
timesBody:; 0 cast timesCount:;
i: timesCount timesCount -;
i timesCount <
[
[
@timesBody call
i 1 + @i set
i timesCount <
] loop
] when
];
assert: [
DEBUG [
message:;
call not [
message failProc
] when
] [
message:; condition:;
] if
];
unconst: [copy a:; @a];
&&: [[FALSE] if];
||: [lazyOrIfFalse:; [TRUE] @lazyOrIfFalse if];
iterate: [
x:;
x 1 + @x set
x >
];
riterate: [
x:;
x <
x 1 - @x set
];
max: [
a:b:;;
a b > [a][b] if
];
min: [
a:b:;;
a b < [a][b] if
];
# usage:
#
# (
# [1 =] ["one"]
# [2 =] ["two"]
# ["unknown"]
# ) cond
isNil: [storageAddress 0nx =];
condImpl: [
condIndex:;
condFunctionList:;
condControlVar:;
condIndex condFunctionList fieldCount 1 - = [
condIndex condFunctionList @ call
] [
@condControlVar condIndex condFunctionList @ call [
condIndex 1 + condFunctionList @ call
] [
@condControlVar condFunctionList condIndex 2 + condImpl
] if
] if
];
cond: [0 static condImpl];
# usage:
#
# 2 dynamic
# (
# 0 ["zero"]
# 1 ["one"]
# 2 ["two"]
# ["unknown"]
# ) case
caseImpl: [
copy caseIndex:;
caseFunctionList:;
caseControlVar:;
caseIndex caseFunctionList fieldCount 1 - = [
caseIndex caseFunctionList @ call
] [
caseControlVar caseIndex caseFunctionList @ = [
caseIndex 1 + caseFunctionList @ call
] [
caseControlVar caseFunctionList caseIndex 2 + caseImpl
] if
] if
];
case: [0 static caseImpl];
bind: [{
bindBody: isCodeRef [] [copy] uif;
bindValue: isCodeRef [] [copy] uif;
CALL: [@bindValue @bindBody call];
}];
compose: [{
composeBody1: isCodeRef [] [copy] uif;
composeBody0: isCodeRef [] [copy] uif;
CALL: [@composeBody0 call @composeBody1 call];
}];
for: [
forBody:;
forIterate:;
forCond:;
forInit:;
@forInit ucall
[
@forCond ucall [
@forBody call
@forIterate ucall
TRUE
] [
FALSE
] if
] loop
];
sequenceImpl: [
copy sequenceIndex:;
sequenceList:;
sequenceIndex sequenceList fieldCount < [0 static sequenceList @ call] && [
sequenceIndex sequenceList @ ucall
sequenceList sequenceIndex 1 + sequenceImpl
] when
];
sequence: [
1 static sequenceImpl
];
unwrap: [list:; list fieldCount [i @list @] times];
enum: [
enum_names:enum_type:;;
enum_index: 0;
enum_uloop: [
enum_index enum_names fieldCount < [
enum_index enum_type cast enum_index enum_names @ virtual def
enum_index 1 + !enum_index
@enum_uloop ucall
] [] uif
];
{@enum_uloop ucall}
];