-
Notifications
You must be signed in to change notification settings - Fork 2
/
runtime.c
765 lines (649 loc) · 22.7 KB
/
runtime.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
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
#include <inttypes.h>
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include "runtime.h"
// To do: we need to account for the "any" type. -Jeremy
// Often misunderstood: static global variables in C are not
// accessible to code outside of the module.
// No one besides the collector ever needs to know tospace exists.
static int64_t* tospace_begin;
static int64_t* tospace_end;
// initialized it set during initialization of the heap, and can be
// checked in order to ensure that initialization has occurred.
static int initialized = 0;
/*
Tuple Tag (64 bits)
#b|- 7 bit unused -|- 50 bit field [50, 0] -| 6 bits length -| 1 bit isNotForwarding Pointer
* If the bottom-most bit is zero, the tag is really a forwarding pointer.
* Otherwise, its an object tag. In that case, the next
6 bits give the length of the object (max of 50 64-bit words).
The next 50 bits say where there are pointers.
A '1' is a pointer, a '0' is not a pointer.
*/
static const int TAG_IS_NOT_FORWARD_MASK = 1;
static const int TAG_VEC_LENGTH_MASK = 126; // 1111110
static const int TAG_VEC_LENGTH_RSHIFT = 1;
static const int TAG_VEC_PTR_BITFIELD_RSHIFT = 7;
static const int TAG_VECOF_LENGTH_RSHIFT = 2;
static const int TAG_VECOF_PTR_BITFIELD_RSHIFT = 1;
static const int TAG_VECOF_RSHIFT = 63;
// cheney implements cheney's copying collection algorithm
// There is a stub and explaination below.
static void cheney(int64_t** rootstack_ptr);
// Check to see if a tag is actually a forwarding pointer.
static inline int is_forwarding(int64_t tag) {
return !(tag & TAG_IS_NOT_FORWARD_MASK);
}
static inline int is_vecof(int64_t tag) {
return (tag >> TAG_VECOF_RSHIFT);
}
// Get the length field out of a vector's tag.
// It is contained in bits [1,6].
static inline int get_vector_length(int64_t tag){
return (tag & TAG_VEC_LENGTH_MASK) >> TAG_VEC_LENGTH_RSHIFT;
}
// Get the "is pointer bitfield" out of a vector's tag.
static inline int64_t get_vec_ptr_bitfield(int64_t tag){
return tag >> TAG_VEC_PTR_BITFIELD_RSHIFT;
}
// Get the length field out of a vectorof's tag.
static inline int get_vecof_length(int64_t tag){
return ((tag << 1) >> 1) >> TAG_VECOF_LENGTH_RSHIFT;
}
// Get the "is pointer bitfield" out of a vectorof's tag.
static inline int64_t get_vecof_ptr_bitfield(int64_t tag){
return (tag >> TAG_VECOF_PTR_BITFIELD_RSHIFT) & 1;
}
static inline int get_vec_length(int64_t tag){
if (is_vecof(tag))
return get_vecof_length(tag);
else
return get_vector_length(tag);
}
// The following needs to stay in sync with the any-tag function
// in utilities.rkt. -Jeremy
#define ANY_TAG_MASK 7
#define ANY_TAG_LEN 3
#define ANY_TAG_INT 1 // 001
#define ANY_TAG_VEC 2 // 010
#define ANY_TAG_FUN 3 // 011
#define ANY_TAG_BOOL 4 // 100
#define ANY_TAG_VOID 5 // 101
#define ANY_TAG_VECOF 6 // 110
#define ANY_TAG_PTR 0 // not an any, a raw pointer
int any_tag(int64_t any) {
return any & ANY_TAG_MASK;
}
int is_ptr(int64_t* p) {
int64_t q = (int64_t)p;
if (q == 0) {
return 0;
} else {
int t = any_tag(q);
return t == ANY_TAG_PTR || t == ANY_TAG_VEC || t == ANY_TAG_VECOF;
}
}
int64_t* to_ptr(int64_t* p) {
int64_t q = (int64_t)p;
if (any_tag(q) == ANY_TAG_PTR)
return p;
else
return (int64_t*)(q & ~ANY_TAG_MASK);
}
// initialize the state of the collector so that allocations can occur
void initialize(uint64_t rootstack_size, uint64_t heap_size)
{
// 1. Check to make sure that our assumptions about the world are correct.
assert(sizeof(int64_t) == sizeof(int64_t*));
assert((heap_size % sizeof(int64_t)) == 0);
assert((rootstack_size % sizeof(int64_t)) == 0);
// 2. Allocate memory (You should always check if malloc gave you memory)
if (!(fromspace_begin = malloc(heap_size))) {
printf("Failed to malloc %" PRIu64 " byte fromspace\n", heap_size);
exit(EXIT_FAILURE);
}
if (!(tospace_begin = malloc(heap_size))) {
printf("Failed to malloc %" PRIu64 " byte tospace\n", heap_size);
exit(EXIT_FAILURE);
}
if (!(rootstack_begin = malloc(rootstack_size))) {
printf("Failed to malloc %" PRIu64 " byte rootstack", rootstack_size);
exit(EXIT_FAILURE);
}
// 2.5 Calculate the ends memory we are using.
// Note: the pointers are for a half open interval [begin, end)
fromspace_end = fromspace_begin + (heap_size / sizeof(int64_t));
tospace_end = tospace_begin + (heap_size / sizeof(int64_t));
rootstack_end = rootstack_begin + (rootstack_size / sizeof(int64_t));
// 3 Initialize the global free pointer
free_ptr = fromspace_begin;
// Useful for debugging
initialized = 1;
}
void validate_vector(int64_t** scan_addr) {
int64_t* scan_ptr = *scan_addr;
int64_t tag = *scan_ptr;
if (is_vecof(tag)) {
exit(EXIT_FAILURE);
} else {
unsigned char len = get_vector_length(tag);
int64_t isPtrBits = get_vec_ptr_bitfield(tag);
int64_t* data = scan_ptr + 1;
*scan_addr = scan_ptr + len + 1;
for (unsigned char i = 0; i != len; i++){
if ((isPtrBits >> i) & 1){
int64_t* ptr = (int64_t*) data[i];
if (is_ptr(ptr)) {
int64_t* real_ptr = to_ptr(ptr);
assert(real_ptr < fromspace_end);
assert(real_ptr >= fromspace_begin);
}
}
}
}
}
void collect(int64_t** rootstack_ptr, uint64_t bytes_requested)
{
#if 0
printf("collecting, need %ld\n", bytes_requested);
print_heap(rootstack_ptr);
#endif
// 1. Check our assumptions about the world
assert(initialized);
assert(rootstack_ptr >= rootstack_begin);
assert(rootstack_ptr < rootstack_end);
#ifndef NDEBUG
// All pointers in the rootstack point to fromspace
for (unsigned int i = 0; rootstack_begin + i < rootstack_ptr; i++){
int64_t* root = rootstack_begin[i];
if (is_ptr(root)) {
int64_t* a_root = to_ptr(root);
assert(fromspace_begin <= a_root && a_root < fromspace_end);
}
}
#endif
// 2. Perform collection
cheney(rootstack_ptr);
// 3. Check if collection freed enough space in order to allocate
if (sizeof(int64_t) * (fromspace_end - free_ptr) < bytes_requested){
//printf("resizing the heap\n");
/*
If there is not enough room left for the bytes_requested,
allocate larger tospace and fromspace.
In order to determine the new size of the heap double the
heap size until it is bigger than the occupied portion of
the heap plus the bytes requested.
This covers the corner case of heaps objects that are
more than half the size of the heap. No a very likely
scenario but slightly more robust.
One corner case that isn't handled is if the heap is size
zero. My thought is that malloc probably wouldn't give
back a pointer if you asked for 0 bytes. Thus initialize
would fail, but our runtime-config.rkt file has a contract
on the heap_size parameter that the code generator uses
to determine initial heap size to this is a non-issue
in reality.
*/
unsigned long occupied_bytes = (free_ptr - fromspace_begin) * sizeof(int64_t);
unsigned long needed_bytes = occupied_bytes + bytes_requested;
unsigned long old_len = fromspace_end - fromspace_begin;
unsigned long old_bytes = old_len * sizeof(int64_t);
unsigned long new_bytes = old_bytes;
#if 0
// this version is good for debugging purposes -Jeremy
new_bytes = needed_bytes;
#else
while (new_bytes <= needed_bytes) {
new_bytes = 2 * new_bytes;
}
#endif
// Free and allocate a new tospace of size new_bytes
free(tospace_begin);
if (!(tospace_begin = malloc(new_bytes))) {
printf("failed to malloc %ld byte fromspace", new_bytes);
exit(EXIT_FAILURE);
}
tospace_end = tospace_begin + new_bytes / (sizeof(int64_t));
// The pointers on the stack and in the heap must be updated,
// so this cannot be just a memcopy of the heap.
// Performing cheney's algorithm again will have the correct
// effect, and we have already implemented it.
cheney(rootstack_ptr);
// Cheney flips tospace and fromspace. Thus, we allocate another
// tospace not fromspace as we might expect.
free(tospace_begin);
if (!(tospace_begin = malloc(new_bytes))) {
printf("failed to malloc %ld byte tospace", new_bytes);
exit(EXIT_FAILURE);
}
tospace_end = tospace_begin + new_bytes / (sizeof(int64_t));
}
assert(free_ptr < fromspace_end);
assert(free_ptr >= fromspace_begin);
#ifndef NDEBUG
// All pointers in the rootstack point to fromspace
for (unsigned long i = 0; rootstack_begin + i < rootstack_ptr; i++){
int64_t* root = rootstack_begin[i];
if (is_ptr(root)) {
int64_t* a_root = to_ptr(root);
assert(fromspace_begin <= a_root && a_root < fromspace_end);
}
}
// All pointers in fromspace point to fromspace
/*printf("validating pointers in fromspace [%lld, %lld)\n",
(int64_t)fromspace_begin, (int64_t)fromspace_end);*/
int64_t* scan_ptr = fromspace_begin;
while (scan_ptr != free_ptr){
validate_vector(&scan_ptr);
#if 0
int64_t tag = *scan_ptr;
unsigned char len = get_vector_length(tag);
int64_t isPtrBits = get_vec_ptr_bitfield(tag);
int64_t* data = scan_ptr + 1;
scan_ptr = scan_ptr + len + 1;
for (unsigned char i = 0; i != len; i++){
if ((isPtrBits >> i) & 1){
int64_t* ptr = (int64_t*) data[i];
if (is_ptr(ptr)) {
int64_t* real_ptr = to_ptr(ptr);
assert(real_ptr < fromspace_end);
assert(real_ptr >= fromspace_begin);
}
}
}
#endif
}
#endif
#if 0
printf("finished collecting\n");
print_heap(rootstack_ptr);
printf("---------------------------------------\n");
#endif
} // collect
// copy_vector is responsible for doing a pointer oblivious
// move of vector data and updating the vector pointer with
// the new address of the data.
// There is a stub and explaination for copy_vector below.
static void copy_vector(int64_t** vector_ptr_loc);
/*
The cheney algorithm takes a pointer to the top of the rootstack.
It resets the free pointer to be at the begining of tospace, copies
(or reallocates) the data pointed to by the roots into tospace and
replaces the pointers in the rootset with pointers to the
copies. (See the description of copy_vector below).
While this initial copying of root vectors is occuring the free_ptr
has been maintained to remain at the next free memory location in
tospace. Cheney's algorithm then scans a vector at a time until it
reaches the free_ptr.
At each vector we use the meta information stored in the vector tag
to find the length of the vector and tell which fields inside the
vector are vector pointers. Each new vector pointer must have its
data copied and every vector pointer must be updated to to point to
the copied data. (The description of copy_vector will help keep this
organized.
This process is a breadth first graph traversal. Copying a vector
places its contents at the end of a Fifo queue and scanning a vector
removes it. Eventually the graph traversal will run out of unseen
nodes "catch up" to the free pointer. When this occurs we know that
all live data in the program is contained by tospace, and that
everything left in fromspace is unreachable by the program.
After this point the free pointer will be pointing into what until
now we considered tospace. This means the program will allocate
object here. In order to keep track of the we "flip" fromspace and
tospace by making the fromspace pointers point to tospace and vice
versa.
*/
void process_vector(int64_t** scan_addr) {
// Since this tag is already in tospace we know that it isn't
// a forwarding pointer.
int64_t tag = **scan_addr;
if (is_vecof(tag)) {
int len = get_vecof_length(tag);
int eltsArePointers = get_vecof_ptr_bitfield(tag);
int64_t* next_ptr = *scan_addr + len + 1;
*scan_addr += 1;
while(*scan_addr != next_ptr){
if (eltsArePointers == 1) {
copy_vector((int64_t**)*scan_addr);
}
*scan_addr += 1;
}
} else {
int len = get_vector_length(tag);
// Find the next vector or the next free_ptr;
// with is len + 1 away from the current;
int64_t* next_ptr = *scan_addr + len + 1;
// each bit low to high says if the next index is a ptr
int64_t isPointerBits = get_vec_ptr_bitfield(tag);
// Advance the scan_addr then check to
// see if we have arrived at the beginning of the next array.
*scan_addr += 1;
while(*scan_addr != next_ptr){
if ((isPointerBits & 1) == 1) {
// since the tag says that the scan ptr in question is a
// ptr* we known that *scan_addr currently points to a ptr*
// and must be a ptr** itself.
copy_vector((int64_t**)*scan_addr);
}
// Advance the tag so the next check is for the next scan ptr
isPointerBits = isPointerBits >> 1;
*scan_addr += 1;
}
}
}
void cheney(int64_t** rootstack_ptr)
{
// printf("cheney: starting copy, rootstack=%p\n", rootstack_ptr);
int64_t* scan_ptr = tospace_begin;
free_ptr = tospace_begin;
/* traverse the root set to create the initial queue */
for (int64_t** root_loc = rootstack_begin;
root_loc != rootstack_ptr;
++root_loc) {
/*
We pass copy vector the pointer to the pointer to the vector.
This is because we need to be able to rewrite the pointer after
the object has been moved.
*/
copy_vector(root_loc);
}
/*
Here we need to scan tospace until we reach the free_ptr pointer.
This will end up being a breadth first search of the pointers in
from space.
*/
while (scan_ptr != free_ptr) {
process_vector(&scan_ptr);
#if 0
/*
I inlined this to leave maniuplation of scan_ptr to a single
function. This can be accomplished by passing the location
of the pointer into helper, but let's not make reasoning
through the algorithm any harder.
The invarient of the outer loop is that scan_ptr is either
at the front of a vector, or == to free_ptr.
*/
// Since this tag is already in tospace we know that it isn't
// a forwarding pointer.
int64_t tag = *scan_ptr;
// the length of the vector is contained in bits [1,6]
int len = get_vector_length(tag);
// Find the next vector or the next free_ptr;
// with is len + 1 away from the current;
int64_t* next_ptr = scan_ptr + len + 1;
// each bit low to high says if the next index is a ptr
int64_t isPointerBits = get_vec_ptr_bitfield(tag);
// Advance the scan_ptr then check to
// see if we have arrived at the beginning of the next array.
scan_ptr += 1;
while(scan_ptr != next_ptr){
if ((isPointerBits & 1) == 1) {
// since the tag says that the scan ptr in question is a
// ptr* we known that scan_ptr currently points to a ptr*
// and must be a ptr** itself.
copy_vector((int64_t**)scan_ptr);
}
// Advance the tag so the next check is for the next scan ptr
isPointerBits = isPointerBits >> 1;
scan_ptr += 1;
}
#endif
}
/* swap the tospace and fromspace */
int64_t* tmp_begin = tospace_begin;
int64_t* tmp_end = tospace_end;
tospace_begin = fromspace_begin;
tospace_end = fromspace_end;
fromspace_begin = tmp_begin;
fromspace_end = tmp_end;
//printf("cheney: finished copy\n");
}
/*
copy_vector takes a pointer, (`location`) to a vector pointer,
copies the vector data from fromspace into tospace, and updates the
vector pointer so that it points to the the data's new address in
tospace.
Precondition:
* original vector pointer location
|
V
[*] old vector pointer
|
+-> [tag or forwarding pointer | ? | ? | ? | ...] old vector data
Postcondition:
* original vector pointer location
|
V
[*] new vector pointer
|
| [ * forwarding pointer | ? | ? | ? | ...] old vector data
| |
| V
+---->[tag | ? | ? | ? | ...] new vector data
Since multiple pointers to the same vector can exist within the
memory of the program this may or may not be the first time
we called `copy_vector` on a location that contains this old vector
pointer. In order to tell if we have copied the old vector data previously we
check the vector information tag (`tag = old_vector_pointer[0]`).
If the forwarding bit is set, then is_forwarding(tag) will return
false and we know we haven't already copied the data. In order to
figure out how much data to copy we can inspect the tag's length
field. The length field indicates the number of 64-bit words the
array is storing for the user, so we need to copy `length + 1` words
in total, including the tag. After performing the
copy we need to leave a forwarding pointer in old data's tag field
to indicate the new address to subsequent copy_vector calls for this
vector pointer. Furthermore, we need to store the new vector's pointer
at the location where where we found the old vector pointer.
If the tag is a forwarding pointer, the `is_forwarding(tag) will return
true and we need to update the location storing the old vector pointer to
point to the new data instead).
As a side note any time you are allocating new data you must maintain
the invariant that the free_ptr points to the next free memory address.
*/
void copy_vector(int64_t** vector_ptr_loc)
{
int64_t* old_vector_ptr = *vector_ptr_loc;
int old_tag = any_tag((int64_t)old_vector_ptr);
if (! is_ptr(old_vector_ptr))
return;
old_vector_ptr = to_ptr(old_vector_ptr);
#if 0
printf("copy_vector %ll\n", (int64_t)old_vector_ptr);
#endif
int64_t tag = old_vector_ptr[0];
// If our search has already moved the vector then we
// would have left a forwarding pointer.
if (is_forwarding(tag)) {
//printf("\talready copied to %lld\n", tag);
// Since we left a forwarding pointer, we have already
// moved this vector. All we need to do is update the pointer
// that was pointing to the old vector. The
// forwarding pointer says where the new copy is.
*vector_ptr_loc = (int64_t*) (tag | old_tag);
} else {
#if 0
printf("\tfirst time copy\n");
#endif
// This is the first time we have followed this pointer.
// Since we are about to jumble all the pointers around lets
// set up some structure to the world.
// The new vector is going to be where the free_ptr currently points.
int64_t* new_vector_ptr = free_ptr;
#if 0
printf("\tto address: %ld\n", (int64_t)new_vector_ptr);
#endif
// The tag we grabbed earlier contains some usefull info for
// forwarding copying the vector.
int length = get_vec_length(tag);
#if 0
printf("\tlen: %d\n", length);
#endif
// Copy the old vector to the new one.
// The "length" is the number of elements, so to include the
// tag, we need to iterate from 0 to length + 1;
for (int i = 0; i != length + 1; i++){
new_vector_ptr[i] = old_vector_ptr[i];
}
// the free ptr can be updated to point to the next free ptr.
free_ptr = free_ptr + length + 1;
// We need to set the forwarding pointer in the old_vector
old_vector_ptr[0] = (int64_t) new_vector_ptr;
// And where we found the old vector we need to update the
// pointer to point to the new vector
new_vector_ptr = (int64_t*)((int64_t)new_vector_ptr | old_tag);
*vector_ptr_loc = new_vector_ptr;
}
}
// Read an integer from stdin
int64_t read_int() {
int64_t i;
scanf("%" SCNd64, &i);
return i;
}
// print an integer to stdout
void print_int(int64_t x) {
printf("%" PRId64, x);
}
// print a bool to stdout
void print_bool(int64_t x) {
if (x){
printf("#t");
} else {
printf("#f");
}
}
void print_void() {
printf("#<void>");
}
void print_vecbegin() {
printf("#(");
}
void print_space() {
printf(" ");
}
void print_vecend() {
printf(")");
}
void print_ellipsis() {
printf("#(...)");
}
/* to do: need to cycle detection. -Jeremy */
void print_any(int64_t any) {
switch (any_tag(any)) {
case ANY_TAG_INT:
printf("%" PRId64, any >> ANY_TAG_LEN);
break;
case ANY_TAG_BOOL:
if (any >> ANY_TAG_LEN) {
printf("#t");
} else {
printf("#f");
}
break;
case ANY_TAG_VEC: {
int64_t* vector_ptr = (int64_t*) (any & ~ANY_TAG_MASK);
int64_t tag = vector_ptr[0];
unsigned char len = get_vector_length(tag);
printf("#(");
for (int i = 0; i != len; ++i) {
print_any(vector_ptr[i + 1]); // this is wrong -Jeremy
}
printf(")");
break;
}
case ANY_TAG_FUN:
printf("#<procedure>");
break;
case ANY_TAG_VOID:
printf("#<void>");
break;
default:
printf("unrecognized!");
exit(-1);
}
}
void print_heap(int64_t** rootstack_ptr)
{
printf("rootstack len = %ld\n", rootstack_ptr - rootstack_begin);
for (int64_t** root_loc = rootstack_begin;
root_loc != rootstack_ptr;
++root_loc) {
if (is_ptr(*root_loc)) {
print_vector(to_ptr(*root_loc));
} else {
printf("%lld", (int64_t)*root_loc);
}
printf("\n");
}
printf("\n");
}
void print_vector(int64_t* vector_ptr)
{
int64_t tag = vector_ptr[0];
if (is_vecof(tag)) {
exit(EXIT_FAILURE);
} else {
unsigned char len = get_vector_length(tag);
int64_t* scan_ptr = vector_ptr;
int64_t* next_ptr = vector_ptr + len + 1;
printf("%lld=#(", (int64_t)vector_ptr);
scan_ptr += 1;
int64_t isPointerBits = get_vec_ptr_bitfield(tag);
while (scan_ptr != next_ptr) {
if ((isPointerBits & 1) == 1 && is_ptr((int64_t*)*scan_ptr)) {
print_vector(to_ptr((int64_t*)*scan_ptr));
} else {
printf("%lld", (int64_t)*scan_ptr);
}
isPointerBits = isPointerBits >> 1;
scan_ptr += 1;
if (scan_ptr != next_ptr) {
printf(", ");
}
}
printf(")");
}
}
int64_t proxy_vector_ref(int64_t* vec, int i);
int64_t proxy_vector_set(int64_t* vec, int i, int64_t arg);
int64_t proxy_vector_length(int64_t* vec);
int64_t apply_closure(int64_t* clos, int64_t arg) {
int64_t(*f)(int64_t*, int64_t);
f = (int64_t(*)(int64_t*, int64_t)) clos[1];
return f(clos, arg);
}
int is_vector_proxy(int64_t* vec) {
int64_t tag = vec[0];
return (1 && (tag >> 57)) == 1;
}
int64_t proxy_vector_length(int64_t* vec) {
if (is_vector_proxy(vec)) {
int64_t vec2 = vec[1];
return proxy_vector_length((int64_t*) vec2);
} else {
return get_vector_length(vec[0]);
}
}
int64_t proxy_vector_ref(int64_t* vec, int i) {
if (is_vector_proxy(vec)) {
int64_t vec2 = vec[1];
int64_t val = proxy_vector_ref((int64_t*) vec2, i);
int64_t* rd = (int64_t*) ((int64_t*) vec[2])[i+1];
return apply_closure(rd, val);
} else {
return vec[i+1];
}
}
int64_t proxy_vector_set(int64_t* vec, int i, int64_t arg) {
if (is_vector_proxy(vec)) {
int64_t vec2 = vec[1];
int64_t* wr = (int64_t*) ((int64_t*) vec[3])[i+1];
int64_t arg2 = apply_closure(wr, arg);
return proxy_vector_set((int64_t*) vec2, i, arg2);
} else {
vec[i+1] = arg;
return 0;
}
}