-
Notifications
You must be signed in to change notification settings - Fork 17
/
t80_try1.nim
391 lines (323 loc) Β· 8.49 KB
/
t80_try1.nim
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
import std/strutils
include preamble
from cps/spec import cpsStackFrames
suite "try statements":
var r = 0
block:
## try-except statements may be split across continuations
r = 0
proc foo() {.cps: Cont.} =
inc r
try:
noop()
inc r
except CatchableError:
fail "this branch should not run"
inc r
trampoline whelp(foo())
check r == 3
block:
## try-except statements may split and also raise exceptions
r = 0
proc foo() {.cps: Cont.} =
inc r
try:
noop()
inc r
raise newException(CatchableError, "test")
fail "statement run after raise"
except CatchableError:
check getCurrentExceptionMsg() == "test"
inc r
inc r
trampoline whelp(foo())
check r == 4
block:
## exception clauses may split across continuations
r = 0
proc foo() {.cps: Cont.} =
inc r
try:
noop()
inc r
raise newException(CatchableError, "test")
fail "statement run after raise"
except CatchableError:
inc r
noop()
check getCurrentExceptionMsg() == "test"
inc r
inc r
trampoline whelp(foo())
check r == 5
block:
## exceptions raised in the current continuation work
r = 0
proc foo() {.cps: Cont.} =
inc r
try:
inc r
raise newException(CatchableError, "test")
fail "statement run after raise"
except CatchableError:
inc r
noop()
check getCurrentExceptionMsg() == "test"
inc r
inc r
trampoline whelp(foo())
check r == 5
block:
## except statement catching multiple exception types across splits
proc foo() {.cps: Cont.} =
inc r
try:
noop()
inc r
raise newException(ValueError, "test")
fail "statement run after raise"
except ValueError, IOError:
check getCurrentExceptionMsg() == "test"
inc r
inc r
proc bar() {.cps: Cont.} =
# Same as foo(), but with the constraints switched
inc r
try:
noop()
inc r
raise newException(ValueError, "test")
fail "statement run after raise"
except IOError, ValueError:
check getCurrentExceptionMsg() == "test"
inc r
inc r
r = 0
trampoline whelp(foo())
check r == 4
r = 0
trampoline whelp(bar())
check r == 4
block:
## try statements with a finally clause
r = 0
proc foo() {.cps: Cont.} =
inc r
try:
noop()
inc r
finally:
inc r
trampoline whelp(foo())
check r == 3
block:
## try statements with a finally and a return
r = 0
proc foo() {.cps: Cont.} =
inc r
try:
noop()
inc r
return
fail"statement run after return"
finally:
inc r
fail"statement run after try-finally containing a return"
trampoline whelp(foo())
check r == 3
block:
## try statements with an exception and a finally
r = 0
proc foo() {.cps: Cont.} =
inc r
try:
noop()
inc r
raise newException(CatchableError, "")
fail "statement run after raise"
except CatchableError:
inc r
finally:
inc r
inc r
trampoline whelp(foo())
check r == 5
block:
## try statements with a split in finally
r = 0
proc foo() {.cps: Cont.} =
inc r
try:
noop()
inc r
finally:
noop()
inc r
inc r
trampoline whelp(foo())
check r == 4
block:
## try statements with a split in finally with an unhandled exception
r = 0
proc foo() {.cps: Cont.} =
inc r
try:
noop()
inc r
raise newException(ValueError, "test")
fail"code run after raise"
finally:
noop()
inc r
fail"code run after raising try-finally"
expect ValueError:
trampoline whelp(foo())
check r == 3
block:
## nested try statements within the except branch
r = 0
proc foo() {.cps: Cont.} =
inc r
try:
noop()
inc r
raise newException(CatchableError, "test")
fail "statement run after raise"
except CatchableError:
check getCurrentExceptionMsg() == "test"
inc r
try:
noop()
inc r
raise newException(CatchableError, "test 2")
fail "statement run after raise"
except CatchableError:
check getCurrentExceptionMsg() == "test 2"
inc r
check getCurrentExceptionMsg() == "test"
inc r
inc r
trampoline whelp(foo())
check r == 7
block:
## calling a continuation that handles exception while handling an exception
r = 0
proc foo() {.cps: Cont.} =
inc r
try:
noop()
inc r
raise newException(CatchableError, "test")
except CatchableError:
noop()
inc r
check getCurrentExceptionMsg() == "test"
inc r
try:
raise newException(CatchableError, "outside cps test")
except CatchableError:
trampoline whelp(foo())
check r == 4
check getCurrentExceptionMsg() == "outside cps test"
block:
## running a continuation that handles exception then raises while handling
## an exception in the exception handler
when defined(isNimSkull):
skip "semantically invalid under this compiler"
else:
r = 0
# This is a very delicate test designed to demonstrate an issue with
# Nim's exception stack mechanism and CPS
proc foo() {.cps: Cont.} =
inc r
try:
noop()
inc r
raise newException(CatchableError, "test")
except CatchableError:
noop()
inc r
check getCurrentExceptionMsg() == "test"
raise
fail"this statement cannot be run"
var c: Continuation = whelp foo()
# Run two iterations, which should place us right after the raise
#
# At this point, the parent of our `raise` is `nil`, because there wasn't
# any exception being handled at the point of raise.
for _ in 1 .. 2:
c = c.fn(c)
try:
raise newException(CatchableError, "outside cps test")
except CatchableError:
# Now we handle an exception, which the current exception is now
# "outside cps test"
try:
# Run the tramp to finish `c`, which will end in a re-raise.
trampoline c
fail"continuing `c` should raise"
except CatchableError:
check r == 3
# Confirm that this is the exception from cps
check getCurrentExceptionMsg() == "test"
# Confirm that the stack has been fixed and the parent of the inner
# exception is the outer.
check getCurrentExceptionMsg() == "outside cps test"
block:
## calling a continuation with finally while handling an exception
r = 0
proc foo() {.cps: Cont.} =
inc r
try:
noop()
inc r
finally:
noop()
inc r
inc r
try:
raise newException(CatchableError, "outside cps test")
except CatchableError:
trampoline whelp(foo())
check r == 4
check getCurrentExceptionMsg() == "outside cps test"
block:
## except T as e keep the type T in cps
r = 0
type
SpecialError = object of CatchableError
extra: int ## An extra field so we can verify that we can access it
proc newSpecialError(msg: string, extra: int): ref SpecialError =
result = newException(SpecialError, msg)
result.extra = extra
proc foo() {.cps: Cont.} =
inc r
try:
noop()
inc r
raise newSpecialError("test", 42)
fail "statement run after raise"
except SpecialError as e:
noop()
inc r
check e.msg == "test"
# The reason we test access is because `is` is expanded before `e` is
# processed by cps. By testing access we can be sure that even after
# cps processing it's still the correct type.
check e.extra == 42
foo()
check r == 3
block:
## try statement with one cps jump as the body
r = 0
proc noop(c: Cont): Cont {.cpsMagic.} =
inc r
result = c
proc foo() {.cps: Cont.} =
try:
noop()
except CatchableError:
fail"this except branch should not run"
inc r
trampoline whelp(foo())
check r == 2