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
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
|
ZERO_ARITY_DESCRIPTOR_OFFSET = -4
COPY_RECORDS_WITHOUT_POINTERS_TO_END_OF_HEAP = 1
str ASTACK_PTR,[BSTACK_PTR,#-4]!
lao SCRATCH_REG,heap_p2,9
ldo HEAP_PTR,SCRATCH_REG,heap_p2,9
lao SCRATCH_REG,heap_size_129,4
ldo BSTACK_0,SCRATCH_REG,heap_size_129,4
lsl BSTACK_0,BSTACK_0,#6
lao SCRATCH_REG,semi_space_size,0
sto BSTACK_0,SCRATCH_REG,semi_space_size,0
add ASTACK_PTR,HEAP_PTR,BSTACK_0
@ BSTACK_4 = INT+2
@ BSTACK_3 = CHAR+2
laol BSTACK_4,INT+2,INT_o_2,6
laol BSTACK_3,CHAR+2,CHAR_o_2,2
otoa BSTACK_4,INT_o_2,6
otoa BSTACK_3,CHAR_o_2,2
.if WRITE_HEAP
laol SCRATCH_REG,heap2_begin_and_end+4,heap2_begin_and_end_o_4,0
sto ASTACK_PTR,SCRATCH_REG,heap2_begin_and_end_o_4,0
.endif
sub BSTACK_PTR,BSTACK_PTR,#16
lao SCRATCH_REG,caf_list,0
ldo BSTACK_0,SCRATCH_REG,caf_list,0
tst BSTACK_0,BSTACK_0
beq end_copy_cafs
copy_cafs_lp:
ldr SCRATCH_REG,[BSTACK_0,#-4]
str SCRATCH_REG,[BSTACK_PTR,#-4]!
add ASTACK_2,BSTACK_0,#4
ldr BSTACK_1,[BSTACK_0]
mov BSTACK_2,#-2
bl copy_lp2
ldr BSTACK_0,[BSTACK_PTR],#4
cmp BSTACK_0,#0
bne copy_cafs_lp
end_copy_cafs:
ldr BSTACK_1,[BSTACK_PTR,#16]
lao SCRATCH_REG,stack_p,4
ldo ASTACK_2,SCRATCH_REG,stack_p,4
sub BSTACK_1,BSTACK_1,ASTACK_2
lsr BSTACK_1,BSTACK_1,#2
cmp BSTACK_1,#0
beq end_copy0
mov BSTACK_2,#-2
bl copy_lp2
end_copy0:
lao SCRATCH_REG,heap_p2,10
ldo ASTACK_2,SCRATCH_REG,heap_p2,10
bl copy_lp1
add BSTACK_PTR,BSTACK_PTR,#16
lao SCRATCH_REG,heap_end_after_gc,10
sto ASTACK_PTR,SCRATCH_REG,heap_end_after_gc,10
.ifdef FINALIZERS
lao ASTACK_0,finalizer_list,1
lao ASTACK_1,free_finalizer_list,3
otoa ASTACK_0,finalizer_list,1
otoa ASTACK_1,free_finalizer_list,3
ldr ASTACK_2,[ASTACK_0]
determine_free_finalizers_after_copy:
ldr BSTACK_0,[ASTACK_2]
tst BSTACK_0,#1
beq finalizer_not_used_after_copy
ldr ASTACK_2,[ASTACK_2,#4]
str BSTACK_0,[ASTACK_0]
add ASTACK_0,BSTACK_0,#4
b determine_free_finalizers_after_copy
finalizer_not_used_after_copy:
laol SCRATCH_REG,__Nil-4,__Nil_o_m4,3
otoa SCRATCH_REG,__Nil_o_m4,3
cmp ASTACK_2,SCRATCH_REG
beq end_finalizers_after_copy
str ASTACK_2,[ASTACK_1]
add ASTACK_1,ASTACK_2,#4
ldr ASTACK_2,[ASTACK_2,#4]
b determine_free_finalizers_after_copy
end_finalizers_after_copy:
str ASTACK_2,[ASTACK_0]
str ASTACK_2,[ASTACK_1]
.endif
b skip_copy_gc
.ifdef PIC
lto heap_p2,9
lto heap_size_129,4
lto semi_space_size,0
ltol INT+2,INT_o_2,6
ltol CHAR+2,CHAR_o_2,2
.if WRITE_HEAP
ltol heap2_begin_and_end+4,heap2_begin_and_end_o_4,0
.endif
lto caf_list,0
lto stack_p,4
lto heap_p2,10
lto heap_end_after_gc,10
.ifdef FINALIZERS
lto finalizer_list,1
lto free_finalizer_list,3
ltol __Nil-4,__Nil_o_m4,3
.endif
.endif
.ltorg
@
@ Copy nodes to the other semi-space
@
copy_lp2_lp1_all_pointers:
add BSTACK_2,ASTACK_2,BSTACK_1,lsl #2
copy_lp2_lp1:
copy_lp2:
ldr ASTACK_1,[ASTACK_2],#4
sub HEAP_FREE,ASTACK_2,#4
copy_lp2__lp1:
copy_lp2_:
@ selectors:
continue_after_selector_2:
ldr ASTACK_0,[ASTACK_1]
tst ASTACK_0,#2
beq not_in_hnf_2
in_hnf_2:
ldrh BSTACK_0,[ASTACK_0,#-2]
cmp BSTACK_0,#0
beq copy_arity_0_node2
cmp BSTACK_0,#256
bhs copy_record_2
subs BSTACK_0,BSTACK_0,#2
str HEAP_PTR,[HEAP_FREE]
bhi copy_hnf_node2_3
str ASTACK_0,[HEAP_PTR]
blo copy_hnf_node2_1
ldr ASTACK_0,[ASTACK_1,#4]
str HEAP_PTR,[ASTACK_1]
ldr BSTACK_0,[ASTACK_1,#8]
subs BSTACK_1,BSTACK_1,#1
str ASTACK_0,[HEAP_PTR,#4]
str BSTACK_0,[HEAP_PTR,#8]
add HEAP_PTR,HEAP_PTR,#12
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
copy_hnf_node2_1:
ldr BSTACK_0,[ASTACK_1,#4]
subs BSTACK_1,BSTACK_1,#1
str HEAP_PTR,[ASTACK_1]
str BSTACK_0,[HEAP_PTR,#4]
add HEAP_PTR,HEAP_PTR,#8
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
copy_hnf_node2_3:
str ASTACK_0,[HEAP_PTR],#1
str HEAP_PTR,[ASTACK_1]
ldr ASTACK_0,[ASTACK_1,#4]
str ASTACK_0,[HEAP_PTR,#4-1]
ldr ASTACK_0,[ASTACK_1,#8]
add HEAP_PTR,HEAP_PTR,#12-1
ldr ASTACK_1,[ASTACK_0]
tst ASTACK_1,#1
bne arguments_already_copied_2
str HEAP_PTR,[HEAP_PTR,#-4]
str ASTACK_1,[HEAP_PTR],#1
str HEAP_PTR,[ASTACK_0],#4
add HEAP_PTR,HEAP_PTR,#4-1
cp_hnf_arg_lp2:
ldr ASTACK_1,[ASTACK_0],#4
str ASTACK_1,[HEAP_PTR],#4
subs BSTACK_0,BSTACK_0,#1
bne cp_hnf_arg_lp2
subs BSTACK_1,BSTACK_1,#1
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
arguments_already_copied_2:
str ASTACK_1,[HEAP_PTR,#-4]
subs BSTACK_1,BSTACK_1,#1
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
copy_arity_0_node2:
cmp ASTACK_0,BSTACK_4 @ INT+2
blo copy_real_file_or_string_2
cmp ASTACK_0,BSTACK_3 @ CHAR+2
bhi copy_normal_hnf_0_2
copy_int_bool_or_char_2:
ldr BSTACK_0,[ASTACK_1,#4]
beq copy_char_2
cmp ASTACK_0,BSTACK_4 @ INT+2
bne no_small_int_or_char_2
copy_int_2:
cmp BSTACK_0,#33
bhs no_small_int_or_char_2
lao SCRATCH_REG,small_integers,1
subs BSTACK_1,BSTACK_1,#1
otoa SCRATCH_REG,small_integers,1
add BSTACK_0,SCRATCH_REG,BSTACK_0,lsl #3
str BSTACK_0,[HEAP_FREE]
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
copy_char_2:
and BSTACK_0,BSTACK_0,#255
lao SCRATCH_REG,static_characters,1
subs BSTACK_1,BSTACK_1,#1
otoa SCRATCH_REG,static_characters,1
add BSTACK_0,SCRATCH_REG,BSTACK_0,lsl #3
str BSTACK_0,[HEAP_FREE]
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
no_small_int_or_char_2:
copy_record_node2_1_b:
str ASTACK_0,[ASTACK_PTR,#-8]
str BSTACK_0,[ASTACK_PTR,#-4]
sub ASTACK_PTR,ASTACK_PTR,#8
str ASTACK_PTR,[ASTACK_1]
str ASTACK_PTR,[HEAP_FREE]
subs BSTACK_1,BSTACK_1,#1
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
copy_normal_hnf_0_2:
sub ASTACK_0,ASTACK_0,#2-ZERO_ARITY_DESCRIPTOR_OFFSET
subs BSTACK_1,BSTACK_1,#1
str ASTACK_0,[HEAP_FREE]
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
copy_real_file_or_string_2:
laol SCRATCH_REG,__STRING__+2,__STRING___o_2,7
otoa SCRATCH_REG,__STRING___o_2,7
cmp ASTACK_0,SCRATCH_REG
bls copy_string_or_array_2
copy_real_or_file_2:
str ASTACK_0,[ASTACK_PTR,#-12]
sub ASTACK_PTR,ASTACK_PTR,#12-1
str ASTACK_PTR,[ASTACK_1]
sub ASTACK_PTR,ASTACK_PTR,#1
ldr BSTACK_0,[ASTACK_1,#4]
ldr ASTACK_0,[ASTACK_1,#8]
str ASTACK_PTR,[HEAP_FREE]
str BSTACK_0,[ASTACK_PTR,#4]
subs BSTACK_1,BSTACK_1,#1
str ASTACK_0,[ASTACK_PTR,#8]
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
already_copied_2:
subs BSTACK_1,BSTACK_1,#1
str ASTACK_0,[HEAP_FREE]
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
copy_record_2:
ldrh SCRATCH_REG,[ASTACK_0,#-3+2]
sub BSTACK_0,BSTACK_0,#256
subs BSTACK_0,#2
bhi copy_record_node2_3
blo copy_record_node2_1
cmp SCRATCH_REG,#0
beq copy_real_or_file_2
str HEAP_PTR,[HEAP_FREE]
str ASTACK_0,[HEAP_PTR]
add ASTACK_0,HEAP_PTR,#1
ldr BSTACK_0,[ASTACK_1,#4]
str ASTACK_0,[ASTACK_1]
str BSTACK_0,[HEAP_PTR,#4]
ldr BSTACK_0,[ASTACK_1,#8]
str BSTACK_0,[HEAP_PTR,#8]
add HEAP_PTR,HEAP_PTR,#12
subs BSTACK_1,BSTACK_1,#1
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
copy_record_node2_1:
ldr BSTACK_0,[ASTACK_1,#4]
cmp SCRATCH_REG,#0
beq copy_record_node2_1_b
str HEAP_PTR,[HEAP_FREE]
str ASTACK_0,[HEAP_PTR]
add ASTACK_0,HEAP_PTR,#1
str BSTACK_0,[HEAP_PTR,#4]
str ASTACK_0,[ASTACK_1]
add HEAP_PTR,HEAP_PTR,#8
subs BSTACK_1,BSTACK_1,#1
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
copy_record_node2_3:
cmp SCRATCH_REG,#1
bls copy_record_node2_3_ab_or_b
str BSTACK_0,[BSTACK_PTR,#-4]!
add BSTACK_0,HEAP_PTR,#1
str BSTACK_0,[ASTACK_1]
ldr BSTACK_0,[ASTACK_1,#8]
str ASTACK_0,[HEAP_PTR]
ldr ASTACK_1,[ASTACK_1,#4]
str ASTACK_1,[HEAP_PTR,#4]
str HEAP_PTR,[HEAP_FREE]
ldr SCRATCH_REG,[BSTACK_0]
mov ASTACK_0,BSTACK_0
tst SCRATCH_REG,#1
bne record_arguments_already_copied_2
add ASTACK_1,HEAP_PTR,#12
ldr BSTACK_0,[BSTACK_PTR],#4
str ASTACK_1,[HEAP_PTR,#8]
add HEAP_PTR,HEAP_PTR,#13
ldr ASTACK_1,[ASTACK_0]
str HEAP_PTR,[ASTACK_0],#4
str ASTACK_1,[HEAP_PTR,#-1]
add HEAP_PTR,HEAP_PTR,#3
cp_record_arg_lp2:
ldr ASTACK_1,[ASTACK_0],#4
str ASTACK_1,[HEAP_PTR],#4
subs BSTACK_0,BSTACK_0,#1
bne cp_record_arg_lp2
subs BSTACK_1,BSTACK_1,#1
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
record_arguments_already_copied_2:
ldr ASTACK_1,[ASTACK_0]
ldr BSTACK_0,[BSTACK_PTR],#4
str ASTACK_1,[HEAP_PTR,#8]
add HEAP_PTR,HEAP_PTR,#12
subs BSTACK_1,BSTACK_1,#1
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
copy_record_node2_3_ab_or_b:
blo copy_record_node2_3_b
copy_record_node2_3_ab:
str BSTACK_0,[BSTACK_PTR,#-4]!
add BSTACK_0,HEAP_PTR,#1
lao SCRATCH_REG,heap_p1,9
str BSTACK_0,[ASTACK_1]
ldr BSTACK_0,[ASTACK_1,#8]
ldo SCRATCH_REG,SCRATCH_REG,heap_p1,9
str ASTACK_0,[HEAP_PTR]
ldr ASTACK_1,[ASTACK_1,#4]
mov ASTACK_0,BSTACK_0
sub BSTACK_0,BSTACK_0,SCRATCH_REG
lao SCRATCH_REG,heap_copied_vector,4
str ASTACK_1,[HEAP_PTR,#4]
lsr ASTACK_1,BSTACK_0,#6
lsr BSTACK_0,BSTACK_0,#3
and BSTACK_0,BSTACK_0,#31
ldo SCRATCH_REG,SCRATCH_REG,heap_copied_vector,4
and ASTACK_1,ASTACK_1,#-4
str HEAP_PTR,[HEAP_FREE]
add ASTACK_1,ASTACK_1,SCRATCH_REG
mov SCRATCH_REG,#1
lsl BSTACK_0,SCRATCH_REG,BSTACK_0
ldr SCRATCH_REG,[ASTACK_1]
tst BSTACK_0,SCRATCH_REG
bne record_arguments_already_copied_2
orr SCRATCH_REG,SCRATCH_REG,BSTACK_0
str SCRATCH_REG,[ASTACK_1]
ldr BSTACK_0,[BSTACK_PTR],#4
sub ASTACK_PTR,ASTACK_PTR,#4
lsl BSTACK_0,BSTACK_0,#2
sub ASTACK_PTR,ASTACK_PTR,BSTACK_0
str ASTACK_PTR,[BSTACK_PTR,#-4]!
add ASTACK_PTR,ASTACK_PTR,#1
str ASTACK_PTR,[HEAP_PTR,#8]
add HEAP_PTR,HEAP_PTR,#12
ldr ASTACK_1,[ASTACK_0]
b cp_record_arg_lp3_c
copy_record_node2_3_b:
str BSTACK_0,[BSTACK_PTR,#-4]!
add BSTACK_0,ASTACK_PTR,#-12+1
lao SCRATCH_REG,heap_p1,10
str BSTACK_0,[ASTACK_1]
ldr BSTACK_0,[ASTACK_1,#8]
ldo SCRATCH_REG,SCRATCH_REG,heap_p1,10
str ASTACK_0,[ASTACK_PTR,#-12]
ldr ASTACK_1,[ASTACK_1,#4]
mov ASTACK_0,BSTACK_0
sub BSTACK_0,BSTACK_0,SCRATCH_REG
lao SCRATCH_REG,heap_copied_vector,5
str ASTACK_1,[ASTACK_PTR,#-8]
lsr ASTACK_1,BSTACK_0,#6
sub ASTACK_PTR,ASTACK_PTR,#12
lsr BSTACK_0,BSTACK_0,#3
and BSTACK_0,BSTACK_0,#31
ldo SCRATCH_REG,SCRATCH_REG,heap_copied_vector,5
and ASTACK_1,ASTACK_1,#-4
str ASTACK_PTR,[HEAP_FREE]
add ASTACK_1,ASTACK_1,SCRATCH_REG
mov SCRATCH_REG,#1
lsl BSTACK_0,SCRATCH_REG,BSTACK_0
ldr SCRATCH_REG,[ASTACK_1]
tst BSTACK_0,SCRATCH_REG
bne record_arguments_already_copied_3_b
orr SCRATCH_REG,SCRATCH_REG,BSTACK_0
str SCRATCH_REG,[ASTACK_1]
ldr BSTACK_0,[BSTACK_PTR],#4
mov ASTACK_1,ASTACK_PTR
sub ASTACK_PTR,ASTACK_PTR,#4
lsl BSTACK_0,BSTACK_0,#2
sub ASTACK_PTR,ASTACK_PTR,BSTACK_0
str ASTACK_PTR,[ASTACK_1,#8]
ldr ASTACK_1,[ASTACK_0]
str ASTACK_PTR,[BSTACK_PTR,#-4]!
add ASTACK_PTR,ASTACK_PTR,#1
cp_record_arg_lp3_c:
str ASTACK_PTR,[ASTACK_0],#4
str ASTACK_1,[ASTACK_PTR,#-1]
add ASTACK_PTR,ASTACK_PTR,#3
cp_record_arg_lp3:
ldr ASTACK_1,[ASTACK_0],#4
str ASTACK_1,[ASTACK_PTR],#4
subs BSTACK_0,BSTACK_0,#4
bne cp_record_arg_lp3
ldr ASTACK_PTR,[BSTACK_PTR],#4
subs BSTACK_1,BSTACK_1,#1
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
record_arguments_already_copied_3_b:
ldr ASTACK_1,[ASTACK_0]
ldr BSTACK_0,[BSTACK_PTR],#4
sub ASTACK_1,ASTACK_1,#1
str ASTACK_1,[ASTACK_PTR,#8]
subs BSTACK_1,BSTACK_1,#1
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
not_in_hnf_2:
tst ASTACK_0,#1
beq already_copied_2
ldr BSTACK_0,[ASTACK_0,#-5]
cmp BSTACK_0,#0
ble copy_arity_0_node2_
copy_node2_1_:
and BSTACK_0,BSTACK_0,#255
subs BSTACK_0,BSTACK_0,#2
blt copy_arity_1_node2
copy_node2_3:
str HEAP_PTR,[HEAP_FREE]
str ASTACK_0,[HEAP_PTR]
str HEAP_PTR,[ASTACK_1]
ldr ASTACK_0,[ASTACK_1,#4]
add ASTACK_1,ASTACK_1,#8
str ASTACK_0,[HEAP_PTR,#4]
add HEAP_PTR,HEAP_PTR,#8
cp_arg_lp2:
ldr ASTACK_0,[ASTACK_1],#4
str ASTACK_0,[HEAP_PTR],#4
subs BSTACK_0,BSTACK_0,#1
bhs cp_arg_lp2
subs BSTACK_1,BSTACK_1,#1
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
copy_arity_1_node2__:
ldr BSTACK_1,[BSTACK_PTR],#4
copy_arity_1_node2:
copy_arity_1_node2_:
str HEAP_PTR,[HEAP_FREE]
str HEAP_PTR,[ASTACK_1]
ldr BSTACK_0,[ASTACK_1,#4]
str ASTACK_0,[HEAP_PTR]
str BSTACK_0,[HEAP_PTR,#4]
add HEAP_PTR,HEAP_PTR,#12
subs BSTACK_1,BSTACK_1,#1
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
copy_indirection_2:
mov BSTACK_0,ASTACK_1
ldr ASTACK_1,[ASTACK_1,#4]
ldr ASTACK_0,[ASTACK_1]
tst ASTACK_0,#2
bne in_hnf_2
tst ASTACK_0,#1
beq already_copied_2
ldr SCRATCH_REG,[ASTACK_0,#-4]
cmp SCRATCH_REG,#-2
beq skip_indirections_2
movs BSTACK_0,SCRATCH_REG
ble copy_arity_0_node2_
b copy_node2_1_
skip_indirections_2:
ldr ASTACK_1,[ASTACK_1,#4]
ldr ASTACK_0,[ASTACK_1]
tst ASTACK_0,#2
bne update_indirection_list_2
tst ASTACK_0,#1
beq update_indirection_list_2
ldr SCRATCH_REG,[ASTACK_0,#-4]
cmp SCRATCH_REG,#-2
beq skip_indirections_2
update_indirection_list_2:
add ASTACK_0,BSTACK_0,#4
ldr BSTACK_0,[BSTACK_0,#4]
str ASTACK_1,[ASTACK_0]
cmp ASTACK_1,BSTACK_0
bne update_indirection_list_2
b continue_after_selector_2
copy_selector_2:
cmp BSTACK_0,#-2
beq copy_indirection_2
blt copy_record_selector_2
ldr BSTACK_0,[ASTACK_1,#4]
str BSTACK_1,[BSTACK_PTR,#-4]!
ldr BSTACK_1,[BSTACK_0]
tst BSTACK_1,#2
beq copy_arity_1_node2__
ldrh SCRATCH_REG,[BSTACK_1,#-3]
cmp SCRATCH_REG,#2
bls copy_selector_2_
ldr BSTACK_1,[BSTACK_0,#8]
ldrb SCRATCH_REG,[BSTACK_1]
tst SCRATCH_REG,#1
bne copy_arity_1_node2__
.ifdef PIC
add ASTACK_3,ASTACK_0,#-9+4
.endif
ldr ASTACK_0,[ASTACK_0,#-9]
lao SCRATCH_REG,e__system__nind,8
.ifdef PIC
ldrh ASTACK_0,[ASTACK_3,ASTACK_0]
.else
ldrh ASTACK_0,[ASTACK_0,#4]
.endif
otoa SCRATCH_REG,e__system__nind,8
str SCRATCH_REG,[ASTACK_1]
cmp ASTACK_0,#8
blt copy_selector_2_1
beq copy_selector_2_2
sub BSTACK_1,BSTACK_1,#12
ldr ASTACK_0,[ASTACK_0,BSTACK_1]
ldr BSTACK_1,[BSTACK_PTR],#4
str ASTACK_0,[ASTACK_1,#4]
mov ASTACK_1,ASTACK_0
b continue_after_selector_2
copy_selector_2_1:
ldr ASTACK_0,[BSTACK_0,#4]
ldr BSTACK_1,[BSTACK_PTR],#4
str ASTACK_0,[ASTACK_1,#4]
mov ASTACK_1,ASTACK_0
b continue_after_selector_2
copy_selector_2_2:
ldr ASTACK_0,[BSTACK_1]
ldr BSTACK_1,[BSTACK_PTR],#4
str ASTACK_0,[ASTACK_1,#4]
mov ASTACK_1,ASTACK_0
b continue_after_selector_2
copy_selector_2_:
.ifdef PIC
add ASTACK_3,ASTACK_0,#-9+4
.endif
ldr ASTACK_0,[ASTACK_0,#-9]
ldr BSTACK_1,[BSTACK_PTR],#4
lao SCRATCH_REG,e__system__nind,9
.ifdef PIC
ldrh ASTACK_0,[ASTACK_3,ASTACK_0]
.else
ldrh ASTACK_0,[ASTACK_0,#4]
.endif
otoa SCRATCH_REG,e__system__nind,9
str SCRATCH_REG,[ASTACK_1]
ldr ASTACK_0,[BSTACK_0,ASTACK_0]
str ASTACK_0,[ASTACK_1,#4]
mov ASTACK_1,ASTACK_0
b continue_after_selector_2
copy_record_selector_2:
cmp BSTACK_0,#-3
ldr BSTACK_0,[ASTACK_1,#4]
ldr BSTACK_0,[BSTACK_0]
beq copy_strict_record_selector_2
tst BSTACK_0,#2
beq copy_arity_1_node2_
ldrh SCRATCH_REG,[BSTACK_0,#-3]
mov ASTACK_3,#258/2
cmp SCRATCH_REG,ASTACK_3,lsl #1
bls copy_record_selector_2_
ldrh SCRATCH_REG,[BSTACK_0,#-3+2]
cmp SCRATCH_REG,#2
bhs copy_selector_2__
lao SCRATCH_REG,heap_p1,11
ldr BSTACK_0,[ASTACK_1,#4]
str ASTACK_1,[BSTACK_PTR,#-4]!
ldo SCRATCH_REG,SCRATCH_REG,heap_p1,11
ldr BSTACK_0,[BSTACK_0,#8]
sub BSTACK_0,BSTACK_0,SCRATCH_REG
lao SCRATCH_REG,heap_copied_vector,6
lsr ASTACK_1,BSTACK_0,#6
lsr BSTACK_0,BSTACK_0,#3
ldo SCRATCH_REG,SCRATCH_REG,heap_copied_vector,6
and ASTACK_1,ASTACK_1,#-4
and BSTACK_0,BSTACK_0,#31
add ASTACK_1,ASTACK_1,SCRATCH_REG
mov SCRATCH_REG,#1
lsl BSTACK_0,SCRATCH_REG,BSTACK_0
ldr SCRATCH_REG,[ASTACK_1]
ands BSTACK_0,BSTACK_0,SCRATCH_REG
ldr ASTACK_1,[BSTACK_PTR],#4
beq copy_record_selector_2_
b copy_arity_1_node2_
copy_selector_2__:
ldr BSTACK_0,[ASTACK_1,#4]
ldr BSTACK_0,[BSTACK_0,#8]
ldrb SCRATCH_REG,[BSTACK_0]
tst SCRATCH_REG,#1
bne copy_arity_1_node2_
copy_record_selector_2_:
.ifdef PIC
add ASTACK_3,ASTACK_0,#-9+4
.endif
ldr BSTACK_0,[ASTACK_0,#-9]
lao SCRATCH_REG,e__system__nind,10
ldr ASTACK_0,[ASTACK_1,#4]
otoa SCRATCH_REG,e__system__nind,10
str SCRATCH_REG,[ASTACK_1]
.ifdef PIC
ldrh BSTACK_0,[ASTACK_3,BSTACK_0]
.else
ldrh BSTACK_0,[BSTACK_0,#4]
.endif
cmp BSTACK_0,#8
ble copy_record_selector_3
ldr ASTACK_0,[ASTACK_0,#8]
sub BSTACK_0,BSTACK_0,#12
copy_record_selector_3:
ldr ASTACK_0,[ASTACK_0,BSTACK_0]
str ASTACK_0,[ASTACK_1,#4]
mov ASTACK_1,ASTACK_0
b continue_after_selector_2
copy_strict_record_selector_2:
tst BSTACK_0,#2
beq copy_arity_1_node2_
ldrh SCRATCH_REG,[BSTACK_0,#-3]
mov ASTACK_3,#258/2
cmp SCRATCH_REG,ASTACK_3,lsl #1
bls copy_strict_record_selector_2_
ldrh SCRATCH_REG,[BSTACK_0,#-3+2]
cmp SCRATCH_REG,#2
blo copy_strict_record_selector_2_b
ldr BSTACK_0,[ASTACK_1,#4]
ldr BSTACK_0,[BSTACK_0,#8]
ldrb SCRATCH_REG,[BSTACK_0]
tst SCRATCH_REG,#1
bne copy_arity_1_node2_
b copy_strict_record_selector_2_
copy_strict_record_selector_2_b:
lao SCRATCH_REG,heap_p1,12
ldr BSTACK_0,[ASTACK_1,#4]
str ASTACK_1,[BSTACK_PTR,#-4]!
ldo SCRATCH_REG,SCRATCH_REG,heap_p1,12
ldr BSTACK_0,[BSTACK_0,#8]
sub BSTACK_0,BSTACK_0,SCRATCH_REG
lao SCRATCH_REG,heap_copied_vector,7
lsr ASTACK_1,BSTACK_0,#6
lsr BSTACK_0,BSTACK_0,#3
ldo SCRATCH_REG,SCRATCH_REG,heap_copied_vector,7
and ASTACK_1,ASTACK_1,#-4
and BSTACK_0,BSTACK_0,#31
add ASTACK_1,ASTACK_1,SCRATCH_REG
mov SCRATCH_REG,#1
lsl BSTACK_0,SCRATCH_REG,BSTACK_0
ldr SCRATCH_REG,[ASTACK_1]
ands BSTACK_0,BSTACK_0,SCRATCH_REG
ldr ASTACK_1,[BSTACK_PTR],#4
bne copy_arity_1_node2_
copy_strict_record_selector_2_:
.ifdef PIC
add ASTACK_3,ASTACK_0,#-9+4
.endif
ldr BSTACK_0,[ASTACK_0,#-9]
str BSTACK_1,[BSTACK_PTR,#-4]!
ldr ASTACK_0,[ASTACK_1,#4]
.ifdef PIC
ldrh BSTACK_1,[BSTACK_0,ASTACK_3]!
.else
ldrh BSTACK_1,[BSTACK_0,#4]
.endif
cmp BSTACK_1,#8
ble copy_strict_record_selector_3
ldr SCRATCH_REG,[ASTACK_0,#8]
add BSTACK_1,BSTACK_1,SCRATCH_REG
ldr BSTACK_1,[BSTACK_1,#-12]
b copy_strict_record_selector_4
copy_strict_record_selector_3:
ldr BSTACK_1,[ASTACK_0,BSTACK_1]
copy_strict_record_selector_4:
str BSTACK_1,[ASTACK_1,#4]
.ifdef PIC
ldrh BSTACK_1,[BSTACK_0,#6-4]
.else
ldrh BSTACK_1,[BSTACK_0,#6]
.endif
tst BSTACK_1,BSTACK_1
beq copy_strict_record_selector_6
cmp BSTACK_1,#8
ble copy_strict_record_selector_5
ldr ASTACK_0,[ASTACK_0,#8]
sub BSTACK_1,BSTACK_1,#12
copy_strict_record_selector_5:
ldr BSTACK_1,[ASTACK_0,BSTACK_1]
str BSTACK_1,[ASTACK_1,#8]
copy_strict_record_selector_6:
.ifdef PIC
ldr ASTACK_0,[BSTACK_0,#-4-4]
.else
ldr ASTACK_0,[BSTACK_0,#-4]
.endif
str ASTACK_0,[ASTACK_1]
ldr BSTACK_1,[BSTACK_PTR],#4
tst ASTACK_0,#2
bne in_hnf_2
hlt: b hlt
copy_arity_0_node2_:
blt copy_selector_2
str ASTACK_0,[ASTACK_PTR,#-12]!
str ASTACK_PTR,[ASTACK_1]
str ASTACK_PTR,[HEAP_FREE]
subs BSTACK_1,BSTACK_1,#1
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
copy_string_or_array_2:
.ifdef DLL
beq copy_string_2
laol SCRATCH_REG,__ARRAY__+2,__ARRAY___o_2,15
otoa SCRATCH_REG,__ARRAY___o_2,15
cmp ASTACK_0,SCRATCH_REG
blo copy_normal_hnf_0_2
mov ASTACK_0,ASTACK_1
b copy_array_2
copy_string_2:
mov ASTACK_0,ASTACK_1
.else
mov ASTACK_0,ASTACK_1
bne copy_array_2
.endif
lao SCRATCH_REG,heap_p1,13
ldo SCRATCH_REG,SCRATCH_REG,heap_p1,13
sub ASTACK_1,ASTACK_1,SCRATCH_REG
lao SCRATCH_REG,semi_space_size,1
ldo SCRATCH_REG,SCRATCH_REG,semi_space_size,1
cmp ASTACK_1,SCRATCH_REG
bhs copy_string_or_array_constant
ldr ASTACK_1,[ASTACK_0,#4]
add ASTACK_1,ASTACK_1,#3
str BSTACK_1,[BSTACK_PTR,#-4]!
lsr BSTACK_0,ASTACK_1,#2
and ASTACK_1,ASTACK_1,#-4
sub ASTACK_PTR,ASTACK_PTR,ASTACK_1
ldr BSTACK_1,[ASTACK_0],#4
str BSTACK_1,[ASTACK_PTR,#-8]!
str ASTACK_PTR,[HEAP_FREE]
add ASTACK_1,ASTACK_PTR,#1
str ASTACK_1,[ASTACK_0,#-4]
add ASTACK_1,ASTACK_PTR,#4
cp_s_arg_lp2:
ldr BSTACK_1,[ASTACK_0],#4
str BSTACK_1,[ASTACK_1],#4
subs BSTACK_0,BSTACK_0,#1
bge cp_s_arg_lp2
ldr BSTACK_1,[BSTACK_PTR],#4
subs BSTACK_1,BSTACK_1,#1
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
copy_array_2:
lao SCRATCH_REG,heap_p1,14
ldo SCRATCH_REG,SCRATCH_REG,heap_p1,14
sub ASTACK_1,ASTACK_1,SCRATCH_REG
lao SCRATCH_REG,semi_space_size,2
ldo SCRATCH_REG,SCRATCH_REG,semi_space_size,2
cmp ASTACK_1,SCRATCH_REG
bhs copy_string_or_array_constant
str BSTACK_1,[BSTACK_PTR,#-4]!
ldr BSTACK_0,[ASTACK_0,#8]
cmp BSTACK_0,#0
beq copy_array_a2
ldrh BSTACK_1,[BSTACK_0,#-3]
cmp BSTACK_1,#0
beq copy_strict_basic_array_2
sub BSTACK_1,BSTACK_1,#256
ldr SCRATCH_REG,[ASTACK_0,#4]
mul BSTACK_1,SCRATCH_REG,BSTACK_1
b copy_array_a3
copy_array_a2:
ldr BSTACK_1,[ASTACK_0,#4]
copy_array_a3:
mov ASTACK_1,HEAP_PTR
add HEAP_PTR,HEAP_PTR,#12
add HEAP_PTR,HEAP_PTR,BSTACK_1,lsl #2
str ASTACK_1,[HEAP_FREE]
ldr BSTACK_0,[ASTACK_0]
str BSTACK_0,[ASTACK_1]
add BSTACK_0,ASTACK_1,#1
add ASTACK_1,ASTACK_1,#4
str BSTACK_0,[ASTACK_0],#4
sub BSTACK_0,BSTACK_1,#1
b cp_s_arg_lp2
copy_strict_basic_array_2:
ldr BSTACK_1,[ASTACK_0,#4]
cmp BSTACK_0,BSTACK_4 @ INT+2
beq copy_int_array_2
laol SCRATCH_REG,BOOL+2,BOOL_o_2,4
otoa SCRATCH_REG,BOOL_o_2,4
cmp BSTACK_0,SCRATCH_REG
beq copy_bool_array_2
add BSTACK_1,BSTACK_1,BSTACK_1
copy_int_array_2:
add ASTACK_1,ASTACK_PTR,#-12
sub ASTACK_1,ASTACK_1,BSTACK_1,lsl #2
ldr BSTACK_0,[ASTACK_0]
str ASTACK_1,[HEAP_FREE]
mov ASTACK_PTR,ASTACK_1
str BSTACK_0,[ASTACK_1]
add BSTACK_0,ASTACK_1,#1
add ASTACK_1,ASTACK_1,#4
str BSTACK_0,[ASTACK_0],#4
add BSTACK_0,BSTACK_1,#1
b cp_s_arg_lp2
copy_bool_array_2:
add BSTACK_1,BSTACK_1,#3
lsr BSTACK_1,BSTACK_1,#2
b copy_int_array_2
copy_string_or_array_constant:
str ASTACK_0,[HEAP_FREE]
subs BSTACK_1,BSTACK_1,#1
bne copy_lp2
mov ASTACK_2,BSTACK_2
b copy_lp1
@
@ Copy all referenced nodes to the other semi space
@
copy_lp1:
cmp ASTACK_2,HEAP_PTR
bhs end_copy1
ldr BSTACK_0,[ASTACK_2],#4
tst BSTACK_0,#2
beq not_in_hnf_1
in_hnf_1:
ldrh BSTACK_1,[BSTACK_0,#-2]
cmp BSTACK_1,#0
beq copy_array_21
cmp BSTACK_1,#2
bls copy_lp2_lp1_all_pointers
cmp BSTACK_1,#256
bhs copy_record_21
ldr SCRATCH_REG,[ASTACK_2,#4]
tst SCRATCH_REG,#1
bne node_without_arguments_part
ldr ASTACK_1,[ASTACK_2],#8
sub HEAP_FREE,ASTACK_2,#8
sub BSTACK_2,ASTACK_2,#4
add BSTACK_2,BSTACK_2,BSTACK_1,lsl #2
b copy_lp2__lp1
copy_record_21:
sub BSTACK_1,BSTACK_1,#256
subs BSTACK_1,BSTACK_1,#2
bhi copy_record_arguments_3
ldrh BSTACK_1,[BSTACK_0,#-3+2]
blo copy_record_arguments_1
add BSTACK_2,ASTACK_2,#8
cmp BSTACK_1,#1
bhi copy_lp2_lp1
b copy_node_arity1
copy_record_arguments_1:
add BSTACK_2,ASTACK_2,#4
b copy_lp2_lp1
copy_record_arguments_3:
ldr SCRATCH_REG,[ASTACK_2,#4]
tst SCRATCH_REG,#1
bne record_node_without_arguments_part
ldrh ASTACK_1,[BSTACK_0,#-3+2]
add ASTACK_0,ASTACK_2,BSTACK_1,lsl #2
add BSTACK_2,ASTACK_0,#3*4
mov BSTACK_1,ASTACK_1
ldr ASTACK_1,[ASTACK_2],#8
sub HEAP_FREE,ASTACK_2,#8
b copy_lp2__lp1
node_without_arguments_part:
record_node_without_arguments_part:
ldr ASTACK_1,[ASTACK_2],#8
sub BSTACK_0,SCRATCH_REG,#1
mov BSTACK_1,#1
sub HEAP_FREE,ASTACK_2,#8
str BSTACK_0,[ASTACK_2,#-4]
mov BSTACK_2,ASTACK_2
b copy_lp2__lp1
not_in_hnf_1:
ldr BSTACK_1,[BSTACK_0,#-5]
cmp BSTACK_1,#256
bgt copy_unboxed_closure_arguments
cmp BSTACK_1,#1
bgt copy_lp2_lp1_all_pointers
copy_node_arity1:
ldr ASTACK_1,[ASTACK_2],#8
mov BSTACK_1,#1
sub HEAP_FREE,ASTACK_2,#8
mov BSTACK_2,ASTACK_2
b copy_lp2__lp1
copy_unboxed_closure_arguments:
ldr SCRATCH_REG,=257
cmp BSTACK_1,SCRATCH_REG
beq copy_unboxed_closure_arguments1
uxtb BSTACK_0,BSTACK_1,ror #8
and BSTACK_2,BSTACK_1,#255
subs BSTACK_1,BSTACK_2,BSTACK_0
add BSTACK_2,ASTACK_2,BSTACK_2,lsl #2
bne copy_lp2_lp1
copy_unboxed_closure_arguments_without_pointers:
mov ASTACK_2,BSTACK_2
b copy_lp1
copy_unboxed_closure_arguments1:
add ASTACK_2,ASTACK_2,#8
b copy_lp1
copy_array_21:
ldr BSTACK_1,[ASTACK_2,#4]
add ASTACK_2,ASTACK_2,#8
cmp BSTACK_1,#0
beq copy_array_21_a
ldrh BSTACK_0,[BSTACK_1,#-3]
ldrh BSTACK_1,[BSTACK_1,#-3+2]
sub BSTACK_0,BSTACK_0,#256
cmp BSTACK_1,#0
beq copy_array_21_b
cmp BSTACK_1,BSTACK_0
bne copy_array_21_ab
copy_array_21_r_a:
ldr BSTACK_1,[ASTACK_2,#-9]
mul BSTACK_1,BSTACK_0,BSTACK_1
cmp BSTACK_1,#0
beq copy_lp1
b copy_lp2_lp1_all_pointers
copy_array_21_a:
ldr BSTACK_1,[ASTACK_2,#-9]
cmp BSTACK_1,#0
beq copy_lp1
b copy_lp2_lp1_all_pointers
copy_array_21_b:
ldr BSTACK_1,[ASTACK_2,#-9]
mul BSTACK_1,BSTACK_0,BSTACK_1
add ASTACK_2,ASTACK_2,BSTACK_1,lsl #2
b copy_lp1
copy_array_21_ab:
ldr SCRATCH_REG,[ASTACK_2,#-9]
cmp SCRATCH_REG,#0
beq copy_lp1
str SCRATCH_REG,[BSTACK_PTR,#0]
lsl BSTACK_0,BSTACK_0,#2
str BSTACK_1,[BSTACK_PTR,#8]
str BSTACK_0,[BSTACK_PTR,#4]
copy_array_21_lp_ab:
add BSTACK_2,ASTACK_2,BSTACK_0
str BSTACK_2,[BSTACK_PTR,#12]
mov BSTACK_2,#-1
b copy_lp2
end_copy1:
cmp ASTACK_2,#-1
it ne
bxne lr
copy_array_21_lp_ab_next:
ldr ASTACK_2,[BSTACK_PTR,#12]
ldr SCRATCH_REG,[BSTACK_PTR]
ldr BSTACK_1,[BSTACK_PTR,#8]
ldr BSTACK_0,[BSTACK_PTR,#4]
subs SCRATCH_REG,SCRATCH_REG,#1
str SCRATCH_REG,[BSTACK_PTR]
bne copy_array_21_lp_ab
b copy_lp1
.ifdef PIC
lto small_integers,1
lto static_characters,1
ltol __STRING__+2,__STRING___o_2,7
lto heap_p1,9
lto heap_copied_vector,4
lto heap_p1,10
lto heap_copied_vector,5
lto e__system__nind,8
lto e__system__nind,9
lto heap_p1,11
lto heap_copied_vector,6
lto e__system__nind,10
lto heap_p1,12
lto heap_copied_vector,7
.ifdef DLL
ltol __ARRAY__+2,__ARRAY___o_2,15
.endif
lto heap_p1,13
lto semi_space_size,1
lto heap_p1,14
lto semi_space_size,2
ltol BOOL+2,BOOL_o_2,4
.endif
.ltorg
skip_copy_gc:
|