This repository has been archived by the owner on Sep 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathencode.c
686 lines (576 loc) · 17.9 KB
/
encode.c
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
/* Generated by the New Jersey Machine-Code Toolkit, version 0.5 */
/* command line: tools -lc-cons-names -encoder encode bytecode.sled */
#include <mclib.h>
#include "encode.h"
#define sign_extend(N,SIZE) \
(((int)((N) << (sizeof(unsigned)*8-(SIZE)))) >> (sizeof(unsigned)*8-(SIZE)))
/**************
store_local8 bits8 is (?noname?) op == 8; bits8 = bits8
***********/
void store_local8(unsigned /* [0..255] */ bits8) {
if (!((unsigned)(bits8) < 0x100))
fail("field bits8 does not fit in 8 unsigned bits");
else
{ emitm(8, 1); emitm(bits8 & 0xff, 1); }
}
/**************
store_global8 bits8 is (?noname?) op == 9; bits8 = bits8
***********/
void store_global8(unsigned /* [0..255] */ bits8) {
if (!((unsigned)(bits8) < 0x100))
fail("field bits8 does not fit in 8 unsigned bits");
else
{ emitm(9, 1); emitm(bits8 & 0xff, 1); }
}
/**************
fetch_local8 bits8 is (?noname?) op == 10; bits8 = bits8
***********/
void fetch_local8(unsigned /* [0..255] */ bits8) {
if (!((unsigned)(bits8) < 0x100))
fail("field bits8 does not fit in 8 unsigned bits");
else
{ emitm(10, 1); emitm(bits8 & 0xff, 1); }
}
/**************
fetch_global8 bits8 is (?noname?) op == 11; bits8 = bits8
***********/
void fetch_global8(unsigned /* [0..255] */ bits8) {
if (!((unsigned)(bits8) < 0x100))
fail("field bits8 does not fit in 8 unsigned bits");
else
{ emitm(11, 1); emitm(bits8 & 0xff, 1); }
}
/**************
gstore_local8 bits8 is (?noname?) op == 16; bits8 = bits8
***********/
void gstore_local8(unsigned /* [0..255] */ bits8) {
if (!((unsigned)(bits8) < 0x100))
fail("field bits8 does not fit in 8 unsigned bits");
else
{ emitm(16, 1); emitm(bits8 & 0xff, 1); }
}
/**************
gstore_global8 bits8 is (?noname?) op == 18; bits8 = bits8
***********/
void gstore_global8(unsigned /* [0..255] */ bits8) {
if (!((unsigned)(bits8) < 0x100))
fail("field bits8 does not fit in 8 unsigned bits");
else
{ emitm(18, 1); emitm(bits8 & 0xff, 1); }
}
/**************
fetch_arg bits8 is (?noname?) op == 6; bits8 = bits8
***********/
void fetch_arg(unsigned /* [0..255] */ bits8) {
if (!((unsigned)(bits8) < 0x100))
fail("field bits8 does not fit in 8 unsigned bits");
else
{ emitm(6, 1); emitm(bits8 & 0xff, 1); }
}
/**************
store_arg bits8 is (?noname?) op == 7; bits8 = bits8
***********/
void store_arg(unsigned /* [0..255] */ bits8) {
if (!((unsigned)(bits8) < 0x100))
fail("field bits8 does not fit in 8 unsigned bits");
else
{ emitm(7, 1); emitm(bits8 & 0xff, 1); }
}
/**************
store_local16 bits16 is (?noname?) op == 12; bits16 = bits16
***********/
void store_local16(unsigned /* [0..65535] */ bits16) {
if (!((unsigned)(bits16) < 0x10000))
fail("field bits16 does not fit in 16 unsigned bits");
else
{ emitm(12, 1); emitm(bits16 & 0xffff, 2); }
}
/**************
store_global16 bits16 is (?noname?) op == 13; bits16 = bits16
***********/
void store_global16(unsigned /* [0..65535] */ bits16) {
if (!((unsigned)(bits16) < 0x10000))
fail("field bits16 does not fit in 16 unsigned bits");
else
{ emitm(13, 1); emitm(bits16 & 0xffff, 2); }
}
/**************
fetch_local16 bits16 is (?noname?) op == 14; bits16 = bits16
***********/
void fetch_local16(unsigned /* [0..65535] */ bits16) {
if (!((unsigned)(bits16) < 0x10000))
fail("field bits16 does not fit in 16 unsigned bits");
else
{ emitm(14, 1); emitm(bits16 & 0xffff, 2); }
}
/**************
fetch_global16 bits16 is (?noname?) op == 15; bits16 = bits16
***********/
void fetch_global16(unsigned /* [0..65535] */ bits16) {
if (!((unsigned)(bits16) < 0x10000))
fail("field bits16 does not fit in 16 unsigned bits");
else
{ emitm(15, 1); emitm(bits16 & 0xffff, 2); }
}
/**************
gstore_local16 bits16 is (?noname?) op == 17; bits16 = bits16
***********/
void gstore_local16(unsigned /* [0..65535] */ bits16) {
if (!((unsigned)(bits16) < 0x10000))
fail("field bits16 does not fit in 16 unsigned bits");
else
{ emitm(17, 1); emitm(bits16 & 0xffff, 2); }
}
/**************
gstore_global16 bits16 is (?noname?) op == 19; bits16 = bits16
***********/
void gstore_global16(unsigned /* [0..65535] */ bits16) {
if (!((unsigned)(bits16) < 0x10000))
fail("field bits16 does not fit in 16 unsigned bits");
else
{ emitm(19, 1); emitm(bits16 & 0xffff, 2); }
}
/**************
call bits32 is (?noname?) op == 24; bits32 = bits32
***********/
void call(unsigned bits32) {
{ emitm(24, 1); emitm(bits32, 4); }
}
/**************
define_proc bits32 is (?noname?) op == 0; bits32 = bits32
***********/
void define_proc(unsigned bits32) {
{ emitm(0, 1); emitm(bits32, 4); }
}
/**************
push_symbol bits32 is (?noname?) op == 29; bits32 = bits32
***********/
void push_symbol(unsigned bits32) {
{ emitm(29, 1); emitm(bits32, 4); }
}
/**************
fetch bits8 bits8b bits8c is
(?noname?) op == 4; bits8 = bits8; bits8b = bits8b; bits8c = bits8c
***********/
void fetch(unsigned /* [0..255] */ bits8, unsigned /* [0..255] */ bits8b, unsigned /* [0..255] */ bits8c) {
if (!((unsigned)(bits8) < 0x100))
fail("field bits8 does not fit in 8 unsigned bits");
else if (!((unsigned)(bits8b) < 0x100))
fail("field bits8b does not fit in 8 unsigned bits");
else if (!((unsigned)(bits8c) < 0x100))
fail("field bits8c does not fit in 8 unsigned bits");
else
{
emitm(4, 1);
emitm(bits8 & 0xff, 1);
emitm(bits8b & 0xff, 1);
emitm(bits8c & 0xff, 1);
}
}
/**************
store bits8 bits8b bits8c is
(?noname?) op == 5; bits8 = bits8; bits8b = bits8b; bits8c = bits8c
***********/
void store(unsigned /* [0..255] */ bits8, unsigned /* [0..255] */ bits8b, unsigned /* [0..255] */ bits8c) {
if (!((unsigned)(bits8) < 0x100))
fail("field bits8 does not fit in 8 unsigned bits");
else if (!((unsigned)(bits8b) < 0x100))
fail("field bits8b does not fit in 8 unsigned bits");
else if (!((unsigned)(bits8c) < 0x100))
fail("field bits8c does not fit in 8 unsigned bits");
else
{
emitm(5, 1);
emitm(bits8 & 0xff, 1);
emitm(bits8b & 0xff, 1);
emitm(bits8c & 0xff, 1);
}
}
/**************
gstore bits8 bits8b bits8c is
(?noname?) op == 3; bits8 = bits8; bits8b = bits8b; bits8c = bits8c
***********/
void gstore(unsigned /* [0..255] */ bits8, unsigned /* [0..255] */ bits8b, unsigned /* [0..255] */ bits8c) {
if (!((unsigned)(bits8) < 0x100))
fail("field bits8 does not fit in 8 unsigned bits");
else if (!((unsigned)(bits8b) < 0x100))
fail("field bits8b does not fit in 8 unsigned bits");
else if (!((unsigned)(bits8c) < 0x100))
fail("field bits8c does not fit in 8 unsigned bits");
else
{
emitm(3, 1);
emitm(bits8 & 0xff, 1);
emitm(bits8b & 0xff, 1);
emitm(bits8c & 0xff, 1);
}
}
/**************
emit_raddr addr is (?noname?) bits32 = addr
***********/
typedef struct O1_0_closure {
ClosureHeader h;
ClosureLocation loc;
struct { RAddr a1; } v;
} *O1_0_Closure;
static void O1_0_relocfn(RClosure c, RelocCallback f, void *closure) {
O1_0_Closure _c = (O1_0_Closure) c;
(*f)(closure, _c->v.a1);
}
/* CLOSURE FUNCTION _clofun_1 is
1 cla force cl-loc force 4 emit-at
*/
/* bytecode (3) is "\x15\x85\x00" */
static void _clofun_1(RClosure c, Emitter emitter, FailCont fail) {
O1_0_Closure _c = (O1_0_Closure) c;
emitter(_c->loc.dest_block, _c->loc.dest_lc, location(_c->v.a1), 4);
}
static struct closure_header _clofun_1_closure_header =
{ _clofun_1, O1_0_relocfn, 0, sizeof (struct O1_0_closure) };
/****************
CLOSURE IS: CLOSURE(
type = O1_0,
fun = _clofun_1,
header = _clofun_1_closure_header,
values = {},
addresses = {addr})
****************/
void emit_raddr(RAddr addr) {
if (location_known(addr))
emitm(location(addr), 4);
else
{
{ O1_0_Closure _c;
_c = (O1_0_Closure) mc_create_closure_here(sizeof *_c, &_clofun_1_closure_header);
_c->v.a1 = addr;
/* this line intentionally left blank */
}
emitm(0, 4);
}
}
/**************
push bits32 bits8 is (?noname?) op == 2; bits32 = bits32; bits8 = bits8
***********/
void push(unsigned bits32, unsigned /* [0..255] */ bits8) {
if (!((unsigned)(bits8) < 0x100))
fail("field bits8 does not fit in 8 unsigned bits");
else
{ emitm(2, 1); emitm(bits32, 4); emitm(bits8 & 0xff, 1); }
}
/**************
apply_operator bits32 is (?noname?) op == 30; bits32 = bits32
***********/
void apply_operator(unsigned bits32) {
{ emitm(30, 1); emitm(bits32, 4); }
}
/**************
cbrancht addr is (?noname?) op == 21; bits32 = addr
***********/
/* CLOSURE FUNCTION _clofun_2 is
21 cl-loc force 1 emit-at
1 cla force cl-loc force 1 add 4 emit-at
*/
/* bytecode (10) is "U\x15\x05\x15\x0f_\eCo\x00" */
static void _clofun_2(RClosure c, Emitter emitter, FailCont fail) {
O1_0_Closure _c = (O1_0_Closure) c;
{
emitter(_c->loc.dest_block, _c->loc.dest_lc, 21, 1);
emitter(_c->loc.dest_block, _c->loc.dest_lc + 1, location(_c->v.a1), 4);
}
}
static struct closure_header _clofun_2_closure_header =
{ _clofun_2, O1_0_relocfn, 0, sizeof (struct O1_0_closure) };
/****************
CLOSURE IS: CLOSURE(
type = O1_0,
fun = _clofun_2,
header = _clofun_2_closure_header,
values = {},
addresses = {addr})
****************/
void cbrancht(RAddr addr) {
if (location_known(addr))
{ emitm(21, 1); emitm(location(addr), 4); }
else
{
{ O1_0_Closure _c;
_c = (O1_0_Closure) mc_create_closure_here(sizeof *_c, &_clofun_2_closure_header);
_c->v.a1 = addr;
/* this line intentionally left blank */
}
{ emitm(34, 1); emitm(0, 4); }
}
}
/**************
cbranchf addr is (?noname?) op == 22; bits32 = addr
***********/
/* CLOSURE FUNCTION _clofun_3 is
22 cl-loc force 1 emit-at
1 cla force cl-loc force 1 add 4 emit-at
*/
/* bytecode (10) is "U\x16\x05\x15\x0f_\eCo\x00" */
static void _clofun_3(RClosure c, Emitter emitter, FailCont fail) {
O1_0_Closure _c = (O1_0_Closure) c;
{
emitter(_c->loc.dest_block, _c->loc.dest_lc, 22, 1);
emitter(_c->loc.dest_block, _c->loc.dest_lc + 1, location(_c->v.a1), 4);
}
}
static struct closure_header _clofun_3_closure_header =
{ _clofun_3, O1_0_relocfn, 0, sizeof (struct O1_0_closure) };
/****************
CLOSURE IS: CLOSURE(
type = O1_0,
fun = _clofun_3,
header = _clofun_3_closure_header,
values = {},
addresses = {addr})
****************/
void cbranchf(RAddr addr) {
if (location_known(addr))
{ emitm(22, 1); emitm(location(addr), 4); }
else
{
{ O1_0_Closure _c;
_c = (O1_0_Closure) mc_create_closure_here(sizeof *_c, &_clofun_3_closure_header);
_c->v.a1 = addr;
/* this line intentionally left blank */
}
{ emitm(34, 1); emitm(0, 4); }
}
}
/**************
branchtf addr addr2 is (?noname?) op == 23; bits32 = addr; bits32 = addr2
***********/
typedef struct O2_0_closure {
ClosureHeader h;
ClosureLocation loc;
struct { RAddr a1; RAddr a2; } v;
} *O2_0_Closure;
static void O2_0_relocfn(RClosure c, RelocCallback f, void *closure) {
O2_0_Closure _c = (O2_0_Closure) c;
(*f)(closure, _c->v.a1);
(*f)(closure, _c->v.a2);
}
/* CLOSURE FUNCTION _clofun_4 is
23 cl-loc force 1 emit-at
1 cla force cl-loc force 1 add 4 emit-at
2 cla force cl-loc force 5 add 4 emit-at
*/
/* bytecode (16) is "U\x17\x05\x15\x0f_\eCo\x95\x0f_[Co\x00" */
static void _clofun_4(RClosure c, Emitter emitter, FailCont fail) {
O2_0_Closure _c = (O2_0_Closure) c;
{
emitter(_c->loc.dest_block, _c->loc.dest_lc, 23, 1);
emitter(_c->loc.dest_block, _c->loc.dest_lc + 1, location(_c->v.a1), 4);
emitter(_c->loc.dest_block, _c->loc.dest_lc + 5, location(_c->v.a2), 4);
}
}
static struct closure_header _clofun_4_closure_header =
{ _clofun_4, O2_0_relocfn, 0, sizeof (struct O2_0_closure) };
/****************
CLOSURE IS: CLOSURE(
type = O2_0,
fun = _clofun_4,
header = _clofun_4_closure_header,
values = {},
addresses = {addr, addr2})
****************/
void branchtf(RAddr addr, RAddr addr2) {
if (location_known(addr) && location_known(addr2))
{ emitm(23, 1); emitm(location(addr), 4); emitm(location(addr2), 4); }
else
{
{ O2_0_Closure _c;
_c = (O2_0_Closure) mc_create_closure_here(sizeof *_c, &_clofun_4_closure_header);
_c->v.a1 = addr;
_c->v.a2 = addr2;
/* this line intentionally left blank */
}
{ emitm(34, 1); emitm(0, 4); emitm(0, 4); }
}
}
/**************
return bits8 bits8b is (?noname?) op == 26; bits8 = bits8; bits8b = bits8b
***********/
void return_(unsigned /* [0..255] */ bits8, unsigned /* [0..255] */ bits8b) {
if (!((unsigned)(bits8) < 0x100))
fail("field bits8 does not fit in 8 unsigned bits");
else if (!((unsigned)(bits8b) < 0x100))
fail("field bits8b does not fit in 8 unsigned bits");
else
{ emitm(26, 1); emitm(bits8 & 0xff, 1); emitm(bits8b & 0xff, 1); }
}
/**************
halt is (HALT) op == 36
***********/
void halt(void) {
emitm(36, 1);
}
/**************
goto is (GOTO) op == 20
***********/
void goto_(void) {
emitm(20, 1);
}
/**************
cmm_tail_call is (CMM_TAIL_CALL) op == 25
***********/
void cmm_tail_call(void) {
emitm(25, 1);
}
/**************
cut is (CUT) op == 27
***********/
void cut(void) {
emitm(27, 1);
}
/**************
end_proc is (END_PROC) op == 1
***********/
void end_proc(void) {
emitm(1, 1);
}
/**************
fetch_round is (FETCH_ROUND) op == 31
***********/
void fetch_round(void) {
emitm(31, 1);
}
/**************
store_round is (STORE_ROUND) op == 32
***********/
void store_round(void) {
emitm(32, 1);
}
/**************
fetch_sp is (FETCH_SP) op == 33
***********/
void fetch_sp(void) {
emitm(33, 1);
}
/**************
breakpt is (BREAKPT) op == 35
***********/
void breakpt(void) {
emitm(35, 1);
}
/**************
forbidden is (FORBIDDEN) op == 37
***********/
void forbidden(void) {
emitm(37, 1);
}
/**************
store_local bits16 is
(store_local8) op == 8; bits8 = bits16
| (store_local16) op == 12; bits16 = bits16
***********/
void store_local(unsigned /* [0..65535] */ bits16) {
if (!((unsigned)(bits16) < 0x10000))
fail("field bits16 does not fit in 16 unsigned bits");
else
if ((unsigned)(bits16) < 0x100)
{ emitm(8, 1); emitm(bits16 & 0xff, 1); }
else
{ emitm(12, 1); emitm(bits16 & 0xffff, 2); }
}
/**************
store_global bits16 is
(store_global8) op == 9; bits8 = bits16
| (store_global16) op == 13; bits16 = bits16
***********/
void store_global(unsigned /* [0..65535] */ bits16) {
if (!((unsigned)(bits16) < 0x10000))
fail("field bits16 does not fit in 16 unsigned bits");
else
if ((unsigned)(bits16) < 0x100)
{ emitm(9, 1); emitm(bits16 & 0xff, 1); }
else
{ emitm(13, 1); emitm(bits16 & 0xffff, 2); }
}
/**************
gstore_local bits16 is
(gstore_local8) op == 16; bits8 = bits16
| (gstore_local16) op == 17; bits16 = bits16
***********/
void gstore_local(unsigned /* [0..65535] */ bits16) {
if (!((unsigned)(bits16) < 0x10000))
fail("field bits16 does not fit in 16 unsigned bits");
else
if ((unsigned)(bits16) < 0x100)
{ emitm(16, 1); emitm(bits16 & 0xff, 1); }
else
{ emitm(17, 1); emitm(bits16 & 0xffff, 2); }
}
/**************
gstore_global bits16 is
(gstore_global8) op == 18; bits8 = bits16
| (gstore_global16) op == 19; bits16 = bits16
***********/
void gstore_global(unsigned /* [0..65535] */ bits16) {
if (!((unsigned)(bits16) < 0x10000))
fail("field bits16 does not fit in 16 unsigned bits");
else
if ((unsigned)(bits16) < 0x100)
{ emitm(18, 1); emitm(bits16 & 0xff, 1); }
else
{ emitm(19, 1); emitm(bits16 & 0xffff, 2); }
}
/**************
fetch_local bits16 is
(fetch_local8) op == 10; bits8 = bits16
| (fetch_local16) op == 14; bits16 = bits16
***********/
void fetch_local(unsigned /* [0..65535] */ bits16) {
if (!((unsigned)(bits16) < 0x10000))
fail("field bits16 does not fit in 16 unsigned bits");
else
if ((unsigned)(bits16) < 0x100)
{ emitm(10, 1); emitm(bits16 & 0xff, 1); }
else
{ emitm(14, 1); emitm(bits16 & 0xffff, 2); }
}
/**************
fetch_global bits16 is
(fetch_global8) op == 11; bits8 = bits16
| (fetch_global16) op == 15; bits16 = bits16
***********/
void fetch_global(unsigned /* [0..65535] */ bits16) {
if (!((unsigned)(bits16) < 0x10000))
fail("field bits16 does not fit in 16 unsigned bits");
else
if ((unsigned)(bits16) < 0x100)
{ emitm(11, 1); emitm(bits16 & 0xff, 1); }
else
{ emitm(15, 1); emitm(bits16 & 0xffff, 2); }
}
/*****************************
_clofun_2 =
21 cl-loc force 1 emit-at
1 cla force cl-loc force 1 add 4 emit-at
_clofun_3 =
22 cl-loc force 1 emit-at
1 cla force cl-loc force 1 add 4 emit-at
_clofun_4 =
23 cl-loc force 1 emit-at
1 cla force cl-loc force 1 add 4 emit-at
2 cla force cl-loc force 5 add 4 emit-at
_clofun_1 =
1 cla force cl-loc force 4 emit-at
****************/
ClosurePostfix encode_clofuns[] = {
{ _clofun_2, "21 cl-loc force 1 emit-at\n1 cla force cl-loc force 1 add 4 emit-at\n" },
{ _clofun_3, "22 cl-loc force 1 emit-at\n1 cla force cl-loc force 1 add 4 emit-at\n" },
{ _clofun_4, "23 cl-loc force 1 emit-at\n1 cla force cl-loc force 1 add 4 emit-at\n2 cla force cl-loc force 5 add 4 emit-at\n" },
{ _clofun_1, "1 cla force cl-loc force 4 emit-at\n" },
{ (ApplyMethod) 0, (char *) 0 }
};
ClosurePostfix encode_clobytes[] = {
{ _clofun_2, /* 9 */ "U\x15\x05\x15\x0f_\eCo" },
{ _clofun_3, /* 9 */ "U\x16\x05\x15\x0f_\eCo" },
{ _clofun_4, /* 15 */ "U\x17\x05\x15\x0f_\eCo\x95\x0f_[Co" },
{ _clofun_1, /* 2 */ "\x15\x85" },
{ (ApplyMethod) 0, (char *) 0 }
};
/* Bytecode total is 35 */