-
Notifications
You must be signed in to change notification settings - Fork 5
/
baseline.txt
1663 lines (1608 loc) · 146 KB
/
baseline.txt
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
./simulate: qemu-system-riscv64 -machine spike -cpu rv64 -nographic -serial mon:stdio -m size=4095M -bios none -kernel images/sel4test-driver-image-riscv-spike
OpenSBI v0.8
____ _____ ____ _____
/ __ \ / ____| _ \_ _|
| | | |_ __ ___ _ __ | (___ | |_) || |
| | | | '_ \ / _ \ '_ \ \___ \| _ < | |
| |__| | |_) | __/ | | |____) | |_) || |_
\____/| .__/ \___|_| |_|_____/|____/_____|
| |
|_|
Platform Name : ucbbar,spike-bare,qemu
Platform Features : timer,mfdeleg
Platform HART Count : 1
Boot HART ID : 0
Boot HART ISA : rv64imafdcsu
BOOT HART Features : pmp,scounteren,mcounteren
BOOT HART PMP Count : 16
Firmware Base : 0x80000000
Firmware Size : 96 KB
Runtime SBI Version : 0.2
MIDELEG : 0x0000000000000222
MEDELEG : 0x000000000000b109
PMP0 : 0x0000000080000000-0x000000008001ffff (A)
PMP1 : 0x0000000000000000-0xffffffffffffffff (A,R,W,X)
ELF-loader started on (HART 0) (NODES 1)
paddr=[80200000..8067f037]
Looking for DTB in CPIO archive...found at 802d8ac0.
Loaded DTB from 802d8ac0.
paddr=[84020000..84020fff]
ELF-loading image 'kernel' to 84000000
paddr=[84000000..8401ffff]
vaddr=[ffffffff84000000..ffffffff8401ffff]
virt_entry=ffffffff84000000
ELF-loading image 'sel4test-driver' to 84021000
paddr=[84021000..84406fff]
vaddr=[10000..3f5fff]
virt_entry=1ba78
Enabling MMU and paging
Jumping to kernel-image entry point...
Init local IRQ
no PLIC present, skip hart specific initialisation
Bootstrapping kernel
Initializing PLIC...
no PLIC present, skip platform specific initialisation
available phys memory regions: 1
[80200000..17ff00000]
reserved virt address space regions: 3
[ffffffc084000000..ffffffc084020000]
[ffffffc084020000..ffffffc0840203a1]
[ffffffc084021000..ffffffc084407000]
Booting all finished, dropped to user space
Node 0 of 1
IOPT levels: 0
IPC buffer: 0x3f6000
Empty slots: [1070 --> 8192)
sharedFrames: [0 --> 0)
userImageFrames: [18 --> 1016)
userImagePaging: [14 --> 17)
untypeds: [1016 --> 1070)
Initial thread domain: 0
Initial thread cnode size: 13
List of untypeds
------------------
Paddr | Size | Device
0 | 31 | 1
0x80000000 | 21 | 1
0x17ff00000 | 20 | 1
0x180000000 | 31 | 1
0x200000000 | 33 | 1
0x400000000 | 34 | 1
0x800000000 | 35 | 1
0x1000000000 | 36 | 1
0x2000000000 | 37 | 1
0x4000000000 | 38 | 1
0x84000000 | 13 | 0
0x84002000 | 12 | 0
0x80200000 | 21 | 0
0x80400000 | 22 | 0
0x80800000 | 23 | 0
0x81000000 | 24 | 0
0x82000000 | 25 | 0
0x840203b0 | 4 | 0
0x840203c0 | 6 | 0
0x84020400 | 10 | 0
0x84020800 | 11 | 0
0x84407000 | 12 | 0
0x84408000 | 15 | 0
0x84410000 | 16 | 0
0x84420000 | 17 | 0
0x84440000 | 18 | 0
0x84480000 | 19 | 0
0x84500000 | 20 | 0
0x84600000 | 21 | 0
0x84800000 | 23 | 0
0x85000000 | 24 | 0
0x86000000 | 25 | 0
0x88000000 | 27 | 0
0x90000000 | 28 | 0
0xa0000000 | 29 | 0
0xc0000000 | 30 | 0
0x100000000 | 30 | 0
0x140000000 | 29 | 0
0x160000000 | 28 | 0
0x170000000 | 27 | 0
0x178000000 | 26 | 0
0x17c000000 | 25 | 0
0x17e000000 | 24 | 0
0x17f000000 | 23 | 0
0x17f800000 | 22 | 0
0x17fc00000 | 21 | 0
0x17fe00000 | 19 | 0
0x17fec8400 | 10 | 0
0x17fec8800 | 11 | 0
0x17fec9000 | 12 | 0
0x17feca000 | 13 | 0
0x17fecc000 | 14 | 0
0x17fed0000 | 16 | 0
0x17fee0000 | 17 | 0
Untyped summary
1 untypeds of size 4
1 untypeds of size 6
2 untypeds of size 10
2 untypeds of size 11
3 untypeds of size 12
2 untypeds of size 13
1 untypeds of size 14
1 untypeds of size 15
2 untypeds of size 16
2 untypeds of size 17
1 untypeds of size 18
2 untypeds of size 19
2 untypeds of size 20
4 untypeds of size 21
2 untypeds of size 22
3 untypeds of size 23
3 untypeds of size 24
3 untypeds of size 25
1 untypeds of size 26
2 untypeds of size 27
2 untypeds of size 28
2 untypeds of size 29
2 untypeds of size 30
2 untypeds of size 31
1 untypeds of size 33
1 untypeds of size 34
1 untypeds of size 35
1 untypeds of size 36
1 untypeds of size 37
1 untypeds of size 38
Switching to a safer, bigger stack... <<seL4(CPU 0) [decodeRISCVPageTableInvocation/764 T0xffffffc17fec8200 "sel4test-driver" @5550c]: RISCVPageTableMap: All objects mapped at this address>>
seL4 Test
=========
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 2147483648, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 1073741824, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 536870912, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 268435456, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 134217728, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 67108864, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 33554432, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 16777216, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 8388608, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 4194304, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 2097152, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 1048576, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 524288, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 262144, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 131072, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 65536, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 32768, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 16384, error 1
vka_alloc_object_at_maybe_dev@object.h:57 Failed to allocate object of size 8192, error 1
vspace_reserve_range_at@vspace.h:738 vspace is NULL
create_reservations@elf.c:245 Failed to make reservation: 0x10000, 692224
elf_reserve_regions_in_vspace@elf.c:438 Failed to create reservations
sel4utils_elf_reserve@elf.c:465 Failed to reserve regions
Starting test suite sel4test
Starting test 0: Test that there are tests
Starting test 1: SYSCALL0000
Starting test 2: SYSCALL0001
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
Starting test 3: SYSCALL0002
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
Starting test 4: SYSCALL0003
Starting test 5: SYSCALL0004
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13b42]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13b42]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13b42]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13b42]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13b42]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13b42]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13b42]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13b42]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13b42]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13b42]: CNodeCap: Illegal Operation attempted.>>
Starting test 6: SYSCALL0005
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
Starting test 7: SYSCALL0006
Starting test 8: SYSCALL0010
Starting test 9: SYSCALL0011
Starting test 10: SYSCALL0012
Starting test 11: SYSCALL0013
Starting test 12: SYSCALL0014
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
Starting test 13: SYSCALL0015
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13ad6]: CNodeCap: Illegal Operation attempted.>>
Starting test 14: SYSCALL0016
Starting test 15: SYSCALL0017
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
<<seL4(CPU 0) [decodeCNodeInvocation/54 T0xffffffc17fec8200 "sel4test-driver" @13c08]: CNodeCap: Illegal Operation attempted.>>
Starting test 16: BIND0001
Running test BIND0001 (Test that a bound tcb waiting on a sync endpoint receives normal sync ipc and notification notifications.)
test_name: BIND0001, Test cost: 137695
Test BIND0001 passed
Starting test 17: BIND0002
Running test BIND0002 (Test that a bound tcb waiting on its bound notification recieves notifications)
test_name: BIND0002, Test cost: 106999
Test BIND0002 passed
Starting test 18: BIND0003
Running test BIND0003 (Test IPC ordering 1) bound tcb waits on bound notification 2, true) another tcb sends a message)
test_name: BIND0003, Test cost: 126616
Test BIND0003 passed
Starting test 19: BIND0004
Running test BIND0004 (Test IPC ordering 2) bound tcb waits on bound notification 1, true) another tcb sends a message)
test_name: BIND0004, Test cost: 120621
Test BIND0004 passed
Starting test 20: CANCEL_BADGED_SENDS_0001
Running test CANCEL_BADGED_SENDS_0001 (Basic endpoint cancelBadgedSends testing.)
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442c600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #118.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #180.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #248.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #315.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #374.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #438.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #508.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #566.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #625.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #698.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #756.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dd200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #827.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dd600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #890.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dda00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #948.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dde00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1015.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe27200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1086.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe27600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1143.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe27a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1213.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe27e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1277.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe71200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1342.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe71600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1399.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe71a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1467.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe71e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1530.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453b200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1603.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453b600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1660.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ba00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1734.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453be00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1791.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084585200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1856.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084585600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1922.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084585a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1986.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084585e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #2053.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0845cf200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #2122.>>
test_name: CANCEL_BADGED_SENDS_0001, Test cost: 1181409
Test CANCEL_BADGED_SENDS_0001 passed
Starting test 21: CANCEL_BADGED_SENDS_0002
Running test CANCEL_BADGED_SENDS_0002 (cancelBadgedSends deletes caps)
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1355.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1355.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1415.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1355.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1415.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1468.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1355.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1415.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1468.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1534.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1355.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1415.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1468.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1534.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1596.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1355.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1415.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1468.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1534.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1596.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1664.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1355.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1415.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1468.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1534.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1596.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1664.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1721.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1355.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1415.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1468.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1534.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1596.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1664.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1721.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1777.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1355.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1415.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1468.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1534.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1596.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1664.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1721.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1777.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1845.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1355.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1415.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1468.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1534.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1596.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1664.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1721.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1777.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1845.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1903.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1355.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1415.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1468.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1534.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1596.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1664.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1721.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1777.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1845.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1903.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1965.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1355.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1415.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1468.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1534.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1596.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1664.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1721.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1777.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1845.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1903.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1965.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #2029.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1355.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1415.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1468.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1534.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1596.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1664.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1721.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1777.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1845.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1903.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1965.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #2029.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #2092.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1355.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1415.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1468.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1534.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1596.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1664.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1721.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1777.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1845.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1903.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1965.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #2029.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #2092.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0845d1200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #2278.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #182.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08442ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #249.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #311.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #371.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #553.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084446e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #609.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #677.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #735.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #796.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084493e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #860.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #926.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844de600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #981.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dea00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1042.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0844dee00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1106.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1172.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1233.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1287.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe28e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1355.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1415.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1468.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1534.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc17fe72e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1596.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1664.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453c600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1721.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ca00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1777.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc08453ce00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1845.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1903.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587600 "child of: '43'" @1e14c]: Attempted to invoke a null cap #1965.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #2029.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084587e00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #2092.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0845d1200 "child of: '43'" @1e14c]: Attempted to invoke a null cap #2278.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc0845d1a00 "child of: '43'" @1e14c]: Attempted to invoke a null cap #2342.>>
test_name: CANCEL_BADGED_SENDS_0002, Test cost: 11610808
Test CANCEL_BADGED_SENDS_0002 passed
Starting test 22: CNODEOP0001
Running test CNODEOP0001 (Basic seL4_CNode_Copy() testing)
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
test_name: CNODEOP0001, Test cost: 176736
Test CNODEOP0001 passed
Starting test 23: CNODEOP0002
Running test CNODEOP0002 (Basic seL4_CNode_Delete() testing)
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
test_name: CNODEOP0002, Test cost: 68665
Test CNODEOP0002 passed
Starting test 24: CNODEOP0003
Running test CNODEOP0003 (Basic seL4_CNode_Mint() testing)
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
test_name: CNODEOP0003, Test cost: 88426
Test CNODEOP0003 passed
Starting test 25: CNODEOP0004
Running test CNODEOP0004 (Basic seL4_CNode_Move() testing)
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
test_name: CNODEOP0004, Test cost: 201595
Test CNODEOP0004 passed
Starting test 26: CNODEOP0005
Running test CNODEOP0005 (Basic seL4_CNode_Mutate() testing)
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
test_name: CNODEOP0005, Test cost: 210731
Test CNODEOP0005 passed
Starting test 27: CNODEOP0006
Running test CNODEOP0006 (Basic seL4_CNode_CancelBadgedSends() testing)
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/224 T0xffffffc084020600 "43" @10712]: CNode CancelBadgedSends: Target cap invalid.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
test_name: CNODEOP0006, Test cost: 101023
Test CNODEOP0006 passed
Starting test 28: CNODEOP0007
Running test CNODEOP0007 (Basic seL4_CNode_Revoke() testing)
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
test_name: CNODEOP0007, Test cost: 73302
Test CNODEOP0007 passed
Starting test 29: CNODEOP0008
Running test CNODEOP0008 (Basic seL4_CNode_Rotate() testing)
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/266 T0xffffffc084020600 "43" @10712]: CNode Rotate: Pivot slot the same as source or dest slot.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/107 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Source slot invalid or empty.>>
test_name: CNODEOP0008, Test cost: 325060
Test CNODEOP0008 passed
Starting test 30: CNODEOP0009
Running test CNODEOP0009 (Basic seL4_CNode_SaveCaller() testing)
<<seL4(CPU 0) [invokeCNodeSaveCaller/374 T0xffffffc084020600 "43" @10712]: CNode SaveCaller: Reply cap not present.>>
<<seL4(CPU 0) [decodeCNodeInvocation/209 T0xffffffc084020600 "43" @10712]: CNode SaveCaller: Destination slot not empty.>>
<<seL4(CPU 0) [decodeCNodeInvocation/95 T0xffffffc084020600 "43" @10712]: CNode Copy/Mint/Move/Mutate: Destination not empty.>>
test_name: CNODEOP0009, Test cost: 93224
Test CNODEOP0009 passed
Starting test 31: CSPACE0001
Running test CSPACE0001 (Test full cspace resolution)
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #0.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #1.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #2.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #3.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #4.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #5.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #6.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #7.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #8.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #9.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #10.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #11.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #12.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #13.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #14.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #15.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #16.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #17.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #18.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #19.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #20.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #21.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #22.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #23.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #24.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #25.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #26.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #27.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #28.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #29.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #30.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #31.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #32.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #33.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #34.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #35.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #36.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #37.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #38.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #39.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #40.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #41.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #42.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #43.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #44.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #45.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #46.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #47.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #48.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #49.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #50.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #51.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #52.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #53.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #54.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #55.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #56.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #57.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #58.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #59.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #60.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #61.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #62.>>
<<seL4(CPU 0) [decodeInvocation/645 T0xffffffc084432600 "child of: '43'" @1c020]: Attempted to invoke a null cap #63.>>