forked from JonathanSalwan/Tigress_protection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollberg-0004-1.data
1247 lines (1247 loc) · 43.9 KB
/
collberg-0004-1.data
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
--------------------------------------------------------------------
-> sample23-virt-anti-branch-analysis-branchFuns
Instructions executed: 40174
Unique Instructions executed: 1521
Functions simulated: 11
Time of analysis: 3.283442 seconds
Command being timed: "./solve-vm.py build/virtualization/anti-branch-analysis/branchFuns/sample23-virt-anti-branch-analysis-branchFuns"
User time (seconds): 3.72
System time (seconds): 0.10
Percent of CPU this job got: 95%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:04.01
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 92988
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 442
Minor (reclaiming a frame) page faults: 40472
Voluntary context switches: 1410
Involuntary context switches: 48
Swaps: 0
File system inputs: 144320
File system outputs: 80
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-max-merge-lenght-10
Instructions executed: 4351
Unique Instructions executed: 2445
Functions simulated: 4
Time of analysis: 0.389304 seconds
Command being timed: "./solve-vm.py build/virtualization/max-merge-length/10/sample23-virt-max-merge-lenght-10"
User time (seconds): 0.84
System time (seconds): 0.06
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:00.92
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 86244
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 35602
Voluntary context switches: 67
Involuntary context switches: 33
Swaps: 0
File system inputs: 328
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-max-merge-lenght-20
Instructions executed: 3949
Unique Instructions executed: 2674
Functions simulated: 4
Time of analysis: 0.369042 seconds
Command being timed: "./solve-vm.py build/virtualization/max-merge-length/20/sample23-virt-max-merge-lenght-20"
User time (seconds): 0.82
System time (seconds): 0.07
Percent of CPU this job got: 97%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:00.91
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 85904
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 37050
Voluntary context switches: 58
Involuntary context switches: 41
Swaps: 0
File system inputs: 88
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-max-merge-lenght-0
Instructions executed: 9920
Unique Instructions executed: 951
Functions simulated: 4
Time of analysis: 0.844614 seconds
Command being timed: "./solve-vm.py build/virtualization/max-merge-length/0/sample23-virt-max-merge-lenght-0"
User time (seconds): 1.30
System time (seconds): 0.06
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.38
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 87136
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 37318
Voluntary context switches: 69
Involuntary context switches: 36
Swaps: 0
File system inputs: 144
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-max-merge-lenght-30
Instructions executed: 3810
Unique Instructions executed: 2704
Functions simulated: 4
Time of analysis: 0.352624 seconds
Command being timed: "./solve-vm.py build/virtualization/max-merge-length/30/sample23-virt-max-merge-lenght-30"
User time (seconds): 0.83
System time (seconds): 0.03
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:00.88
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 86296
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 35523
Voluntary context switches: 62
Involuntary context switches: 32
Swaps: 0
File system inputs: 80
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-bogus-functions-1
Instructions executed: 25604
Unique Instructions executed: 1685
Functions simulated: 7
Time of analysis: 1.862309 seconds
Command being timed: "./solve-vm.py build/virtualization/bogus-functions/1/sample23-virt-bogus-functions-1"
User time (seconds): 2.28
System time (seconds): 0.10
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:02.40
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 95164
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 41174
Voluntary context switches: 66
Involuntary context switches: 124
Swaps: 0
File system inputs: 72
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-bogus-functions-2
Instructions executed: 44997
Unique Instructions executed: 1819
Functions simulated: 18
Time of analysis: 3.603242 seconds
Command being timed: "./solve-vm.py build/virtualization/bogus-functions/2/sample23-virt-bogus-functions-2"
User time (seconds): 4.14
System time (seconds): 0.06
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:04.22
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 101264
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 42990
Voluntary context switches: 66
Involuntary context switches: 97
Swaps: 0
File system inputs: 88
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-bogus-functions-0
Instructions executed: 9920
Unique Instructions executed: 951
Functions simulated: 4
Time of analysis: 0.898531 seconds
Command being timed: "./solve-vm.py build/virtualization/bogus-functions/0/sample23-virt-bogus-functions-0"
User time (seconds): 1.45
System time (seconds): 0.05
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.52
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 86892
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 35762
Voluntary context switches: 58
Involuntary context switches: 102
Swaps: 0
File system inputs: 64
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-bogus-functions-3
Instructions executed: 49584
Unique Instructions executed: 1853
Functions simulated: 29
Time of analysis: 3.701591 seconds
Command being timed: "./solve-vm.py build/virtualization/bogus-functions/3/sample23-virt-bogus-functions-3"
User time (seconds): 4.18
System time (seconds): 0.08
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:04.29
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 104648
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 45954
Voluntary context switches: 63
Involuntary context switches: 120
Swaps: 0
File system inputs: 64
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-operand-stack
Instructions executed: 9920
Unique Instructions executed: 951
Functions simulated: 4
Time of analysis: 1.007469 seconds
Command being timed: "./solve-vm.py build/virtualization/operands/stack/sample23-virt-operand-stack"
User time (seconds): 1.51
System time (seconds): 0.06
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.59
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 86848
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 35772
Voluntary context switches: 65
Involuntary context switches: 284
Swaps: 0
File system inputs: 64
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-operand-registers
Instructions executed: 10698
Unique Instructions executed: 1034
Functions simulated: 4
Time of analysis: 1.002009 seconds
Command being timed: "./solve-vm.py build/virtualization/operands/registers/sample23-virt-operand-registers"
User time (seconds): 1.50
System time (seconds): 0.04
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.57
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 88028
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 37841
Voluntary context switches: 49
Involuntary context switches: 73
Swaps: 0
File system inputs: 56
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-add-opaque-to-vpc-true
Instructions executed: 12893
Unique Instructions executed: 1115
Functions simulated: 4
Time of analysis: 1.122198 seconds
Command being timed: "./solve-vm.py build/virtualization/add-opaque-to-vpc/true/sample23-virt-add-opaque-to-vpc-true"
User time (seconds): 1.59
System time (seconds): 0.08
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.69
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 87920
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 36241
Voluntary context switches: 50
Involuntary context switches: 65
Swaps: 0
File system inputs: 56
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-add-opaque-to-vpc-false
Instructions executed: 9920
Unique Instructions executed: 951
Functions simulated: 4
Time of analysis: 0.886469 seconds
Command being timed: "./solve-vm.py build/virtualization/add-opaque-to-vpc/false/sample23-virt-add-opaque-to-vpc-false"
User time (seconds): 1.38
System time (seconds): 0.04
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.45
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 86712
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 37317
Voluntary context switches: 65
Involuntary context switches: 62
Swaps: 0
File system inputs: 56
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-nested-vm-1
Instructions executed: 9920
Unique Instructions executed: 951
Functions simulated: 4
Time of analysis: 0.877469 seconds
Command being timed: "./solve-vm.py build/virtualization/nested-vm/1/sample23-virt-nested-vm-1"
User time (seconds): 1.38
System time (seconds): 0.05
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.46
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 87020
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 37321
Voluntary context switches: 51
Involuntary context switches: 48
Swaps: 0
File system inputs: 64
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-nested-vm-2
Instructions executed: 859278
Unique Instructions executed: 676
Functions simulated: 11
Time of analysis: 71.040771 seconds
Command being timed: "./solve-vm.py build/virtualization/nested-vm/2/sample23-virt-nested-vm-2"
User time (seconds): 71.42
System time (seconds): 0.28
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 1:11.73
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 420912
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 198116
Voluntary context switches: 65
Involuntary context switches: 518
Swaps: 0
File system inputs: 72
File system outputs: 88
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-bogus-loop-iterations-1
Instructions executed: 88559
Unique Instructions executed: 1176
Functions simulated: 4
Time of analysis: 8.941956 seconds
Command being timed: "./solve-vm.py build/virtualization/bogus-loop-iterations/1/sample23-virt-bogus-loop-iterations-1"
User time (seconds): 9.46
System time (seconds): 0.07
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:09.56
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 105272
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 44735
Voluntary context switches: 43
Involuntary context switches: 127
Swaps: 0
File system inputs: 48
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-bogus-loop-iterations-2
Instructions executed: 165475
Unique Instructions executed: 1176
Functions simulated: 4
Time of analysis: 18.505718 seconds
Command being timed: "./solve-vm.py build/virtualization/bogus-loop-iterations/2/sample23-virt-bogus-loop-iterations-2"
User time (seconds): 18.99
System time (seconds): 0.14
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:19.21
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 123712
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 53320
Voluntary context switches: 62
Involuntary context switches: 4372
Swaps: 0
File system inputs: 56
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-bogus-loop-iterations-0
Instructions executed: 9920
Unique Instructions executed: 951
Functions simulated: 4
Time of analysis: 0.935598 seconds
Command being timed: "./solve-vm.py build/virtualization/bogus-loop-iterations/0/sample23-virt-bogus-loop-iterations-0"
User time (seconds): 1.47
System time (seconds): 0.04
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.53
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 86776
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 37339
Voluntary context switches: 55
Involuntary context switches: 51
Swaps: 0
File system inputs: 48
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-bogus-loop-iterations-3
Instructions executed: 242391
Unique Instructions executed: 1176
Functions simulated: 4
Time of analysis: 25.750568 seconds
Command being timed: "./solve-vm.py build/virtualization/bogus-loop-iterations/3/sample23-virt-bogus-loop-iterations-3"
User time (seconds): 26.30
System time (seconds): 0.08
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:26.42
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 141876
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 61942
Voluntary context switches: 61
Involuntary context switches: 1781
Swaps: 0
File system inputs: 56
File system outputs: 80
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-super-operators-ratio-0.4
Instructions executed: 9920
Unique Instructions executed: 951
Functions simulated: 4
Time of analysis: 0.896338 seconds
Command being timed: "./solve-vm.py build/virtualization/super-operators-ratio/0.4/sample23-virt-super-operators-ratio-0.4"
User time (seconds): 1.44
System time (seconds): 0.05
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.52
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 86916
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 37307
Voluntary context switches: 69
Involuntary context switches: 82
Swaps: 0
File system inputs: 320
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-super-operators-ratio-0.0
Instructions executed: 9936
Unique Instructions executed: 953
Functions simulated: 4
Time of analysis: 0.988401 seconds
Command being timed: "./solve-vm.py build/virtualization/super-operators-ratio/0.0/sample23-virt-super-operators-ratio-0.0"
User time (seconds): 1.56
System time (seconds): 0.07
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.66
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 86760
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 35807
Voluntary context switches: 53
Involuntary context switches: 90
Swaps: 0
File system inputs: 80
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-super-operators-ratio-0.6
Instructions executed: 9920
Unique Instructions executed: 951
Functions simulated: 4
Time of analysis: 0.883743 seconds
Command being timed: "./solve-vm.py build/virtualization/super-operators-ratio/0.6/sample23-virt-super-operators-ratio-0.6"
User time (seconds): 1.53
System time (seconds): 0.09
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.64
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 87168
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 37322
Voluntary context switches: 66
Involuntary context switches: 42
Swaps: 0
File system inputs: 64
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-super-operators-ratio-0.8
Instructions executed: 9920
Unique Instructions executed: 951
Functions simulated: 4
Time of analysis: 0.902467 seconds
Command being timed: "./solve-vm.py build/virtualization/super-operators-ratio/0.8/sample23-virt-super-operators-ratio-0.8"
User time (seconds): 1.37
System time (seconds): 0.06
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.45
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 86980
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 37324
Voluntary context switches: 64
Involuntary context switches: 37
Swaps: 0
File system inputs: 48
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-super-operators-ratio-0.2
Instructions executed: 9920
Unique Instructions executed: 951
Functions simulated: 4
Time of analysis: 0.935412 seconds
Command being timed: "./solve-vm.py build/virtualization/super-operators-ratio/0.2/sample23-virt-super-operators-ratio-0.2"
User time (seconds): 1.40
System time (seconds): 0.08
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.50
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 87220
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 37332
Voluntary context switches: 66
Involuntary context switches: 59
Swaps: 0
File system inputs: 64
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-super-operators-ratio-1.0
Instructions executed: 9920
Unique Instructions executed: 951
Functions simulated: 4
Time of analysis: 0.873346 seconds
Command being timed: "./solve-vm.py build/virtualization/super-operators-ratio/1.0/sample23-virt-super-operators-ratio-1.0"
User time (seconds): 1.36
System time (seconds): 0.05
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.43
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 87256
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 35809
Voluntary context switches: 65
Involuntary context switches: 62
Swaps: 0
File system inputs: 56
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-encode-byte-array-true
Instructions executed: 24313
Unique Instructions executed: 966
Functions simulated: 4
Time of analysis: 2.18666 seconds
Command being timed: "./solve-vm.py build/virtualization/encode-byte-array/true/sample23-virt-encode-byte-array-true"
User time (seconds): 2.68
System time (seconds): 0.03
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:02.74
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 95996
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 40242
Voluntary context switches: 64
Involuntary context switches: 70
Swaps: 0
File system inputs: 48
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-encode-byte-array-false
Instructions executed: 9920
Unique Instructions executed: 951
Functions simulated: 4
Time of analysis: 0.929617 seconds
Command being timed: "./solve-vm.py build/virtualization/encode-byte-array/false/sample23-virt-encode-byte-array-false"
User time (seconds): 1.53
System time (seconds): 0.06
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.61
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 87244
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 37337
Voluntary context switches: 64
Involuntary context switches: 67
Swaps: 0
File system inputs: 56
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-random-opcodes-true
Instructions executed: 9920
Unique Instructions executed: 951
Functions simulated: 4
Time of analysis: 0.898936 seconds
Command being timed: "./solve-vm.py build/virtualization/random-opcodes/true/sample23-virt-random-opcodes-true"
User time (seconds): 1.54
System time (seconds): 0.08
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.66
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 86704
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 37304
Voluntary context switches: 26
Involuntary context switches: 69
Swaps: 0
File system inputs: 48
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-random-opcodes-false
Instructions executed: 9360
Unique Instructions executed: 905
Functions simulated: 4
Time of analysis: 0.771893 seconds
Command being timed: "./solve-vm.py build/virtualization/random-opcodes/false/sample23-virt-random-opcodes-false"
User time (seconds): 1.25
System time (seconds): 0.05
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.32
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 87288
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 36765
Voluntary context switches: 65
Involuntary context switches: 42
Swaps: 0
File system inputs: 56
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-duplicate-opcodes-1
Instructions executed: 9920
Unique Instructions executed: 951
Functions simulated: 4
Time of analysis: 0.900674 seconds
Command being timed: "./solve-vm.py build/virtualization/duplicate-opcodes/1/sample23-virt-duplicate-opcodes-1"
User time (seconds): 1.38
System time (seconds): 0.07
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.47
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 87036
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 35803
Voluntary context switches: 57
Involuntary context switches: 56
Swaps: 0
File system inputs: 48
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-duplicate-opcodes-2
Instructions executed: 9374
Unique Instructions executed: 1049
Functions simulated: 4
Time of analysis: 0.877137 seconds
Command being timed: "./solve-vm.py build/virtualization/duplicate-opcodes/2/sample23-virt-duplicate-opcodes-2"
User time (seconds): 1.36
System time (seconds): 0.07
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.46
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 87492
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 37914
Voluntary context switches: 58
Involuntary context switches: 91
Swaps: 0
File system inputs: 64
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-duplicate-opcodes-0
Instructions executed: 9920
Unique Instructions executed: 951
Functions simulated: 4
Time of analysis: 0.867442 seconds
Command being timed: "./solve-vm.py build/virtualization/duplicate-opcodes/0/sample23-virt-duplicate-opcodes-0"
User time (seconds): 1.34
System time (seconds): 0.05
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.41
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 87028
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 37309
Voluntary context switches: 64
Involuntary context switches: 151
Swaps: 0
File system inputs: 48
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-duplicate-opcodes-3
Instructions executed: 9370
Unique Instructions executed: 1033
Functions simulated: 4
Time of analysis: 0.816778 seconds
Command being timed: "./solve-vm.py build/virtualization/duplicate-opcodes/3/sample23-virt-duplicate-opcodes-3"
User time (seconds): 1.37
System time (seconds): 0.05
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.44
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 87124
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 36857
Voluntary context switches: 58
Involuntary context switches: 386
Swaps: 0
File system inputs: 48
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-obfuscate-decode-byte-array-true
Instructions executed: 24799
Unique Instructions executed: 641
Functions simulated: 11
Time of analysis: 2.145927 seconds
Command being timed: "./solve-vm.py build/virtualization/obfuscate-decode-byte-array/true/sample23-virt-obfuscate-decode-byte-array-true"
User time (seconds): 2.64
System time (seconds): 0.08
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:02.75
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 95552
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 40228
Voluntary context switches: 65
Involuntary context switches: 303
Swaps: 0
File system inputs: 48
File system outputs: 72
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
--------------------------------------------------------------------
-> sample23-virt-obfuscate-decode-byte-array-false
Instructions executed: 24794
Unique Instructions executed: 636
Functions simulated: 11
Time of analysis: 2.13827 seconds
Command being timed: "./solve-vm.py build/virtualization/obfuscate-decode-byte-array/false/sample23-virt-obfuscate-decode-byte-array-false"
User time (seconds): 2.63
System time (seconds): 0.04
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:02.69
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0