-
Notifications
You must be signed in to change notification settings - Fork 13
/
accel.c
644 lines (538 loc) · 16.7 KB
/
accel.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
/* accel.c: Glulxe code for accelerated functions
Designed by Andrew Plotkin <[email protected]>
http://eblong.com/zarf/glulx/index.html
*/
#include "glk.h"
#include "git.h"
#define ARGS_REVERSED
#define glulx_malloc malloc
/* Git passes along function arguments in reverse order. To make our lives
more interesting. */
#ifdef ARGS_REVERSED
#define ARG(argv, argc, ix) (argv[(argc-1)-ix])
#else
#define ARG(argv, argc, ix) (argv[ix])
#endif
/* Any function can be called with any number of arguments. This macro
lets us snarf a given argument, or zero if it wasn't supplied. */
#define ARG_IF_GIVEN(argv, argc, ix) ((argc > ix) ? (ARG(argv, argc, ix)) : 0)
static void accel_error(char *msg);
static glui32 func_1_z__region(glui32 argc, glui32 *argv);
static glui32 func_2_cp__tab(glui32 argc, glui32 *argv);
static glui32 func_3_ra__pr(glui32 argc, glui32 *argv);
static glui32 func_4_rl__pr(glui32 argc, glui32 *argv);
static glui32 func_5_oc__cl(glui32 argc, glui32 *argv);
static glui32 func_6_rv__pr(glui32 argc, glui32 *argv);
static glui32 func_7_op__pr(glui32 argc, glui32 *argv);
static glui32 func_8_cp__tab(glui32 argc, glui32 *argv);
static glui32 func_9_ra__pr(glui32 argc, glui32 *argv);
static glui32 func_10_rl__pr(glui32 argc, glui32 *argv);
static glui32 func_11_oc__cl(glui32 argc, glui32 *argv);
static glui32 func_12_rv__pr(glui32 argc, glui32 *argv);
static glui32 func_13_op__pr(glui32 argc, glui32 *argv);
static int obj_in_class(glui32 obj);
static glui32 get_prop(glui32 obj, glui32 id);
static glui32 get_prop_new(glui32 obj, glui32 id);
/* Parameters, set by @accelparam. */
static glui32 classes_table = 0; /* class object array */
static glui32 indiv_prop_start = 0; /* first individual prop ID */
static glui32 class_metaclass = 0; /* "Class" class object */
static glui32 object_metaclass = 0; /* "Object" class object */
static glui32 routine_metaclass = 0; /* "Routine" class object */
static glui32 string_metaclass = 0; /* "String" class object */
static glui32 self = 0; /* address of global "self" */
static glui32 num_attr_bytes = 0; /* number of attributes / 8 */
static glui32 cpv__start = 0; /* array of common prop defaults */
typedef struct accelentry_struct {
glui32 addr;
acceleration_func func;
struct accelentry_struct *next;
} accelentry_t;
#define ACCEL_HASH_SIZE (511)
static accelentry_t **accelentries = NULL;
void init_accel()
{
accelentries = NULL;
}
acceleration_func accel_find_func(glui32 index)
{
switch (index) {
case 0: return NULL; /* 0 always means no acceleration */
case 1: return func_1_z__region;
case 2: return func_2_cp__tab;
case 3: return func_3_ra__pr;
case 4: return func_4_rl__pr;
case 5: return func_5_oc__cl;
case 6: return func_6_rv__pr;
case 7: return func_7_op__pr;
case 8: return func_8_cp__tab;
case 9: return func_9_ra__pr;
case 10: return func_10_rl__pr;
case 11: return func_11_oc__cl;
case 12: return func_12_rv__pr;
case 13: return func_13_op__pr;
}
return NULL;
}
acceleration_func accel_get_func(glui32 addr)
{
int bucknum;
accelentry_t *ptr;
if (!accelentries)
return NULL;
bucknum = (addr % ACCEL_HASH_SIZE);
for (ptr = accelentries[bucknum]; ptr; ptr = ptr->next) {
if (ptr->addr == addr)
return ptr->func;
}
return NULL;
}
void accel_set_func(glui32 index, glui32 addr)
{
int bucknum;
accelentry_t *ptr;
int functype;
acceleration_func new_func = NULL;
/* Check the Glulx type identifier byte. */
functype = memRead8(addr);
if (functype != 0xC0 && functype != 0xC1) {
fatalError("Attempt to accelerate non-function.");
}
if (!accelentries) {
accelentries = (accelentry_t **)glulx_malloc(ACCEL_HASH_SIZE
* sizeof(accelentry_t *));
if (!accelentries)
fatalError("Cannot malloc acceleration table.");
for (bucknum=0; bucknum<ACCEL_HASH_SIZE; bucknum++)
accelentries[bucknum] = NULL;
}
new_func = accel_find_func(index);
bucknum = (addr % ACCEL_HASH_SIZE);
for (ptr = accelentries[bucknum]; ptr; ptr = ptr->next) {
if (ptr->addr == addr)
break;
}
if (!ptr) {
if (!new_func) {
return; /* no need for a new entry */
}
ptr = (accelentry_t *)glulx_malloc(sizeof(accelentry_t));
if (!ptr)
fatalError("Cannot malloc acceleration entry.");
ptr->addr = addr;
ptr->func = NULL;
ptr->next = accelentries[bucknum];
accelentries[bucknum] = ptr;
}
ptr->func = new_func;
}
void accel_set_param(glui32 index, glui32 val)
{
switch (index) {
case 0: classes_table = val; break;
case 1: indiv_prop_start = val; break;
case 2: class_metaclass = val; break;
case 3: object_metaclass = val; break;
case 4: routine_metaclass = val; break;
case 5: string_metaclass = val; break;
case 6: self = val; break;
case 7: num_attr_bytes = val; break;
case 8: cpv__start = val; break;
}
}
static void accel_error(char *msg)
{
if (gIoMode == 2) { /* iosys_Glk */
glk_put_char('\n');
glk_put_string(msg);
glk_put_char('\n');
}
}
static int obj_in_class(glui32 obj)
{
/* This checks whether obj is contained in Class, not whether
it is a member of Class. */
return (memRead32(obj + 13 + num_attr_bytes) == class_metaclass);
}
/* Look up a property entry. */
static glui32 get_prop(glui32 obj, glui32 id)
{
glui32 cla = 0;
glui32 prop;
glui32 call_argv[2];
if (id & 0xFFFF0000) {
cla = memRead32(classes_table+((id & 0xFFFF) * 4));
ARG(call_argv, 2, 0) = obj;
ARG(call_argv, 2, 1) = cla;
if (func_5_oc__cl(2, call_argv) == 0)
return 0;
id >>= 16;
obj = cla;
}
ARG(call_argv, 2, 0) = obj;
ARG(call_argv, 2, 1) = id;
prop = func_2_cp__tab(2, call_argv);
if (prop == 0)
return 0;
if (obj_in_class(obj) && (cla == 0)) {
if ((id < indiv_prop_start) || (id >= indiv_prop_start+8))
return 0;
}
if (memRead32(self) != obj) {
if (memRead8(prop + 9) & 1)
return 0;
}
return prop;
}
/* Look up a property entry. This is part of the newer set of accel
functions (8 through 13), which support increasing NUM_ATTR_BYTES.
It is identical to get_prop() except that it calls the new versions
of func_5 and func_2. */
static glui32 get_prop_new(glui32 obj, glui32 id)
{
glui32 cla = 0;
glui32 prop;
glui32 call_argv[2];
if (id & 0xFFFF0000) {
cla = memRead32(classes_table+((id & 0xFFFF) * 4));
ARG(call_argv, 2, 0) = obj;
ARG(call_argv, 2, 1) = cla;
if (func_11_oc__cl(2, call_argv) == 0)
return 0;
id >>= 16;
obj = cla;
}
ARG(call_argv, 2, 0) = obj;
ARG(call_argv, 2, 1) = id;
prop = func_8_cp__tab(2, call_argv);
if (prop == 0)
return 0;
if (obj_in_class(obj) && (cla == 0)) {
if ((id < indiv_prop_start) || (id >= indiv_prop_start+8))
return 0;
}
if (memRead32(self) != obj) {
if (memRead8(prop + 9) & 1)
return 0;
}
return prop;
}
static glui32 func_1_z__region(glui32 argc, glui32 *argv)
{
glui32 addr;
glui32 tb;
if (argc < 1)
return 0;
addr = ARG(argv, argc, 0);
if (addr < 36)
return 0;
if (addr >= gEndMem)
return 0;
tb = memRead8(addr);
if (tb >= 0xE0) {
return 3;
}
if (tb >= 0xC0) {
return 2;
}
if (tb >= 0x70 && tb <= 0x7F && addr >= gRamStart) {
return 1;
}
return 0;
}
/* The old set of accel functions (2 through 7) are deprecated; they
behave badly if the Inform 6 NUM_ATTR_BYTES option (parameter 7) is
changed from its default value (7). They will not be removed, but
new games should use functions 8 through 13 instead. */
static glui32 func_2_cp__tab(glui32 argc, glui32 *argv)
{
glui32 obj;
glui32 id;
glui32 otab, max;
obj = ARG_IF_GIVEN(argv, argc, 0);
id = ARG_IF_GIVEN(argv, argc, 1);
if (func_1_z__region(1, &obj) != 1) {
accel_error("[** Programming error: tried to find the \".\" of (something) **]");
return 0;
}
otab = memRead32(obj + 16);
if (!otab)
return 0;
max = memRead32(otab);
otab += 4;
/* @binarysearch id 2 otab 10 max 0 0 res; */
return git_binary_search(id, 2, otab, 10, max, 0, 0);
}
static glui32 func_3_ra__pr(glui32 argc, glui32 *argv)
{
glui32 obj;
glui32 id;
glui32 prop;
obj = ARG_IF_GIVEN(argv, argc, 0);
id = ARG_IF_GIVEN(argv, argc, 1);
prop = get_prop(obj, id);
if (prop == 0)
return 0;
return memRead32(prop + 4);
}
static glui32 func_4_rl__pr(glui32 argc, glui32 *argv)
{
glui32 obj;
glui32 id;
glui32 prop;
obj = ARG_IF_GIVEN(argv, argc, 0);
id = ARG_IF_GIVEN(argv, argc, 1);
prop = get_prop(obj, id);
if (prop == 0)
return 0;
return 4 * memRead16(prop + 2);
}
static glui32 func_5_oc__cl(glui32 argc, glui32 *argv)
{
glui32 obj;
glui32 cla;
glui32 zr, prop, inlist, inlistlen, jx;
obj = ARG_IF_GIVEN(argv, argc, 0);
cla = ARG_IF_GIVEN(argv, argc, 1);
zr = func_1_z__region(1, &obj);
if (zr == 3)
return (cla == string_metaclass) ? 1 : 0;
if (zr == 2)
return (cla == routine_metaclass) ? 1 : 0;
if (zr != 1)
return 0;
if (cla == class_metaclass) {
if (obj_in_class(obj))
return 1;
if (obj == class_metaclass)
return 1;
if (obj == string_metaclass)
return 1;
if (obj == routine_metaclass)
return 1;
if (obj == object_metaclass)
return 1;
return 0;
}
if (cla == object_metaclass) {
if (obj_in_class(obj))
return 0;
if (obj == class_metaclass)
return 0;
if (obj == string_metaclass)
return 0;
if (obj == routine_metaclass)
return 0;
if (obj == object_metaclass)
return 0;
return 1;
}
if ((cla == string_metaclass) || (cla == routine_metaclass))
return 0;
if (!obj_in_class(cla)) {
accel_error("[** Programming error: tried to apply 'ofclass' with non-class **]");
return 0;
}
prop = get_prop(obj, 2);
if (prop == 0)
return 0;
inlist = memRead32(prop + 4);
if (inlist == 0)
return 0;
inlistlen = memRead16(prop + 2);
for (jx = 0; jx < inlistlen; jx++) {
if (memRead32(inlist + (4 * jx)) == cla)
return 1;
}
return 0;
}
static glui32 func_6_rv__pr(glui32 argc, glui32 *argv)
{
glui32 id;
glui32 addr;
id = ARG_IF_GIVEN(argv, argc, 1);
addr = func_3_ra__pr(argc, argv);
if (addr == 0) {
if ((id > 0) && (id < indiv_prop_start))
return memRead32(cpv__start + (4 * id));
accel_error("[** Programming error: tried to read (something) **]");
return 0;
}
return memRead32(addr);
}
static glui32 func_7_op__pr(glui32 argc, glui32 *argv)
{
glui32 obj;
glui32 id;
glui32 zr;
obj = ARG_IF_GIVEN(argv, argc, 0);
id = ARG_IF_GIVEN(argv, argc, 1);
zr = func_1_z__region(1, &obj);
if (zr == 3) {
/* print is INDIV_PROP_START+6 */
if (id == indiv_prop_start+6)
return 1;
/* print_to_array is INDIV_PROP_START+7 */
if (id == indiv_prop_start+7)
return 1;
return 0;
}
if (zr == 2) {
/* call is INDIV_PROP_START+5 */
return ((id == indiv_prop_start+5) ? 1 : 0);
}
if (zr != 1)
return 0;
if ((id >= indiv_prop_start) && (id < indiv_prop_start+8)) {
if (obj_in_class(obj))
return 1;
}
return ((func_3_ra__pr(argc, argv)) ? 1 : 0);
}
/* Here are the newer functions, which support changing NUM_ATTR_BYTES.
These call get_prop_new() instead of get_prop(). */
static glui32 func_8_cp__tab(glui32 argc, glui32 *argv)
{
glui32 obj;
glui32 id;
glui32 otab, max;
obj = ARG_IF_GIVEN(argv, argc, 0);
id = ARG_IF_GIVEN(argv, argc, 1);
if (func_1_z__region(1, &obj) != 1) {
accel_error("[** Programming error: tried to find the \".\" of (something) **]");
return 0;
}
otab = memRead32(obj + 4*(3+(int)(num_attr_bytes/4)));
if (!otab)
return 0;
max = memRead32(otab);
otab += 4;
/* @binarysearch id 2 otab 10 max 0 0 res; */
return git_binary_search(id, 2, otab, 10, max, 0, 0);
}
static glui32 func_9_ra__pr(glui32 argc, glui32 *argv)
{
glui32 obj;
glui32 id;
glui32 prop;
obj = ARG_IF_GIVEN(argv, argc, 0);
id = ARG_IF_GIVEN(argv, argc, 1);
prop = get_prop_new(obj, id);
if (prop == 0)
return 0;
return memRead32(prop + 4);
}
static glui32 func_10_rl__pr(glui32 argc, glui32 *argv)
{
glui32 obj;
glui32 id;
glui32 prop;
obj = ARG_IF_GIVEN(argv, argc, 0);
id = ARG_IF_GIVEN(argv, argc, 1);
prop = get_prop_new(obj, id);
if (prop == 0)
return 0;
return 4 * memRead16(prop + 2);
}
static glui32 func_11_oc__cl(glui32 argc, glui32 *argv)
{
glui32 obj;
glui32 cla;
glui32 zr, prop, inlist, inlistlen, jx;
obj = ARG_IF_GIVEN(argv, argc, 0);
cla = ARG_IF_GIVEN(argv, argc, 1);
zr = func_1_z__region(1, &obj);
if (zr == 3)
return (cla == string_metaclass) ? 1 : 0;
if (zr == 2)
return (cla == routine_metaclass) ? 1 : 0;
if (zr != 1)
return 0;
if (cla == class_metaclass) {
if (obj_in_class(obj))
return 1;
if (obj == class_metaclass)
return 1;
if (obj == string_metaclass)
return 1;
if (obj == routine_metaclass)
return 1;
if (obj == object_metaclass)
return 1;
return 0;
}
if (cla == object_metaclass) {
if (obj_in_class(obj))
return 0;
if (obj == class_metaclass)
return 0;
if (obj == string_metaclass)
return 0;
if (obj == routine_metaclass)
return 0;
if (obj == object_metaclass)
return 0;
return 1;
}
if ((cla == string_metaclass) || (cla == routine_metaclass))
return 0;
if (!obj_in_class(cla)) {
accel_error("[** Programming error: tried to apply 'ofclass' with non-class **]");
return 0;
}
prop = get_prop_new(obj, 2);
if (prop == 0)
return 0;
inlist = memRead32(prop + 4);
if (inlist == 0)
return 0;
inlistlen = memRead16(prop + 2);
for (jx = 0; jx < inlistlen; jx++) {
if (memRead32(inlist + (4 * jx)) == cla)
return 1;
}
return 0;
}
static glui32 func_12_rv__pr(glui32 argc, glui32 *argv)
{
glui32 id;
glui32 addr;
id = ARG_IF_GIVEN(argv, argc, 1);
addr = func_9_ra__pr(argc, argv);
if (addr == 0) {
if ((id > 0) && (id < indiv_prop_start))
return memRead32(cpv__start + (4 * id));
accel_error("[** Programming error: tried to read (something) **]");
return 0;
}
return memRead32(addr);
}
static glui32 func_13_op__pr(glui32 argc, glui32 *argv)
{
glui32 obj;
glui32 id;
glui32 zr;
obj = ARG_IF_GIVEN(argv, argc, 0);
id = ARG_IF_GIVEN(argv, argc, 1);
zr = func_1_z__region(1, &obj);
if (zr == 3) {
/* print is INDIV_PROP_START+6 */
if (id == indiv_prop_start+6)
return 1;
/* print_to_array is INDIV_PROP_START+7 */
if (id == indiv_prop_start+7)
return 1;
return 0;
}
if (zr == 2) {
/* call is INDIV_PROP_START+5 */
return ((id == indiv_prop_start+5) ? 1 : 0);
}
if (zr != 1)
return 0;
if ((id >= indiv_prop_start) && (id < indiv_prop_start+8)) {
if (obj_in_class(obj))
return 1;
}
return ((func_9_ra__pr(argc, argv)) ? 1 : 0);
}