-
Notifications
You must be signed in to change notification settings - Fork 2
/
log.bench-20140631
3315 lines (2980 loc) · 153 KB
/
log.bench-20140631
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
== start -m32 2014-06-31
branch=RELEASE_0_0_10
tag=RELEASE_0_0_10-0-gb98414f
branch=RELEASE_0_0_11
tag=RELEASE_0_0_11-0-gfd0bc74
branch=RELEASE_0_0_13
tag=RELEASE_0_0_13-0-g4fed092
branch=RELEASE_0_0_10
tag=RELEASE_0_0_10-0-gb98414f
branch=RELEASE_0_0_11
tag=RELEASE_0_0_11-0-gfd0bc74
branch=RELEASE_0_0_13
tag=RELEASE_0_0_13-0-g4fed092
branch=RELEASE_0_0_6
tag=RELEASE_0_0_6-0-ge0d9723
branch=RELEASE_0_0_8
tag=RELEASE_0_0_8-0-g9d150e9
loadavg 0.88 0.50 0.37 1/836 30653
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/bench_newp.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/freeze.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops_intval.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress1.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress3.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/addit2.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/array_access.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/arriter.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/dispatch.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/fib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/hamming.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo5.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo6.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oofib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/primes2_i.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/vpm.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/bench_newp.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/freeze.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops_intval.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress1.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress3.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/addit2.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/array_access.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/arriter.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/dispatch.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/fib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/hamming.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo5.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo6.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oofib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/primes2_i.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/vpm.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/bench_newp.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/freeze.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops_intval.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress1.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress3.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/addit2.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/array_access.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/arriter.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/dispatch.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/fib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/hamming.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo5.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo6.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oofib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/primes2_i.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/vpm.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/bench_newp.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/freeze.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops_intval.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress1.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress3.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/addit2.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/array_access.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/arriter.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/dispatch.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/fib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/hamming.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo5.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo6.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oofib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/primes2_i.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/vpm.pir.
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
19.711462 task-clock (msec) # 0.785 CPUs utilized ( +- 18.77% )
31 context-switches # 0.002 M/sec ( +- 10.57% )
19 cpu-migrations # 0.977 K/sec ( +- 4.44% )
5,227 page-faults # 0.265 M/sec ( +- 20.18% )
30,954,390 cycles # 1.570 GHz ( +- 18.76% )
19,712,514 stalled-cycles-frontend # 63.68% frontend cycles idle ( +- 18.49% )
14,163,280 stalled-cycles-backend # 45.76% backend cycles idle ( +- 18.29% )
21,553,437 instructions # 0.70 insns per cycle
# 0.91 stalled cycles per insn ( +- 19.53% )
4,309,005 branches # 218.604 M/sec ( +- 19.60% )
193,358 branch-misses # 4.49% of all branches ( +- 18.51% )
0.025125014 seconds time elapsed ( +- 0.96% )
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/bench_newp.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/freeze.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops_intval.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress1.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress3.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/addit2.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/array_access.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/arriter.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/dispatch.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/fib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/hamming.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo5.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo6.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oofib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/primes2_i.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/vpm.pir.
23.667755,,task-clock
34,,context-switches
20,,cpu-migrations
6300,,page-faults
37162642,,cycles
23723862,,stalled-cycles-frontend
17117387,,stalled-cycles-backend
25694758,,instructions
5143525,,branches
238667,,branch-misses
tag=RELEASE_0_0_9
tag=RELEASE_0_0_9-0-g79715d9
branch=RELEASE_0_1_0
tag=RELEASE_0_1_0-0-g7d4ba24
branch=RELEASE_0_1_1
tag=RELEASE_0_1_1-0-g49c2092
branch=RELEASE_0_1_2
tag=RELEASE_0_1_2-0-gcd09134
branch=RELEASE_0_2_0
tag=RELEASE_0_2_0-0-g4c67c81
branch=RELEASE_0_2_1
tag=RELEASE_0_2_1-0-g8bbcbac
branch=RELEASE_0_2_2
tag=RELEASE_0_2_2-0-gc8a1db7
branch=RELEASE_0_2_3
tag=RELEASE_0_2_3-0-g0f0d696
branch=RELEASE_0_3_0
tag=RELEASE_0_3_0-0-g090c1dd
branch=RELEASE_0_3_1
tag=RELEASE_0_3_1-0-g79848a4
branch=RELEASE_0_4_0
tag=RELEASE_0_4_0-0-g84b126a
branch=RELEASE_0_4_1
tag=RELEASE_0_4_1-0-g9e6a5a4
branch=RELEASE_0_0_10
tag=RELEASE_0_0_10-0-gb98414f
branch=RELEASE_0_0_11
tag=RELEASE_0_0_11-0-gfd0bc74
branch=RELEASE_0_0_13
tag=RELEASE_0_0_13-0-g4fed092
branch=RELEASE_0_0_6
tag=RELEASE_0_0_6-0-ge0d9723
branch=RELEASE_0_0_8
tag=RELEASE_0_0_8-0-g9d150e9
loadavg 1.43 0.84 0.52 1/840 842
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/bench_newp.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/freeze.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops_intval.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress1.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress3.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/addit2.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/array_access.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/arriter.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/dispatch.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/fib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/hamming.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo5.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo6.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oofib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/primes2_i.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/vpm.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/bench_newp.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/freeze.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops_intval.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress1.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress3.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/addit2.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/array_access.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/arriter.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/dispatch.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/fib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/hamming.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo5.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo6.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oofib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/primes2_i.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/vpm.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/bench_newp.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/freeze.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops_intval.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress1.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress3.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/addit2.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/array_access.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/arriter.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/dispatch.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/fib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/hamming.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo5.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo6.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oofib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/primes2_i.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/vpm.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/bench_newp.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/freeze.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops_intval.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress1.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress3.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/addit2.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/array_access.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/arriter.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/dispatch.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/fib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/hamming.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo5.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo6.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oofib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/primes2_i.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/vpm.pir.
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
18.715386 task-clock (msec) # 0.738 CPUs utilized ( +- 26.34% )
30 context-switches # 0.002 M/sec ( +- 13.52% )
19 cpu-migrations # 0.001 M/sec ( +- 4.55% )
4,890 page-faults # 0.261 M/sec ( +- 28.76% )
29,761,617 cycles # 1.590 GHz ( +- 26.41% )
19,153,502 stalled-cycles-frontend # 64.36% frontend cycles idle ( +- 26.07% )
13,913,322 stalled-cycles-backend # 46.75% backend cycles idle ( +- 25.78% )
20,204,944 instructions # 0.68 insns per cycle
# 0.95 stalled cycles per insn ( +- 27.37% )
4,037,787 branches # 215.747 M/sec ( +- 27.46% )
196,434 branch-misses # 4.86% of all branches ( +- 25.94% )
0.025356290 seconds time elapsed ( +- 1.45% )
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/bench_newp.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/freeze.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/mops_intval.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress1.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/stress3.pasm.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/addit2.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/array_access.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/arriter.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/dispatch.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/fib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/hamming.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo5.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oo6.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/oofib.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/primes2_i.pir.
PackFile_unpack: Unimplemented wordsize transform.
File has wordsize: 35 (native is 8)
Parrot VM: Can't unpack packfile ../parrot-bench/vpm.pir.
23.854817,,task-clock
34,,context-switches
18,,cpu-migrations
6281,,page-faults
37458927,,cycles
23959794,,stalled-cycles-frontend
17386239,,stalled-cycles-backend
25778901,,instructions
5164265,,branches
246422,,branch-misses
tag=RELEASE_0_0_9
tag=RELEASE_0_0_9-0-g79715d9
branch=RELEASE_0_1_0
tag=RELEASE_0_1_0-0-g7d4ba24
branch=RELEASE_0_1_1
tag=RELEASE_0_1_1-0-g49c2092
branch=RELEASE_0_1_2
tag=RELEASE_0_1_2-0-gcd09134
branch=RELEASE_0_2_0
tag=RELEASE_0_2_0-0-g4c67c81
branch=RELEASE_0_2_1
tag=RELEASE_0_2_1-0-g8bbcbac
branch=RELEASE_0_2_2
tag=RELEASE_0_2_2-0-gc8a1db7
branch=RELEASE_0_2_3
tag=RELEASE_0_2_3-0-g0f0d696
branch=RELEASE_0_3_0
tag=RELEASE_0_3_0-0-g090c1dd
branch=RELEASE_0_3_1
tag=RELEASE_0_3_1-0-g79848a4
branch=RELEASE_0_4_0
tag=RELEASE_0_4_0-0-g84b126a
branch=RELEASE_0_4_1
tag=RELEASE_0_4_1-0-g9e6a5a4
branch=RELEASE_0_4_10
tag=RELEASE_0_4_10-0-g9abdc84
branch=RELEASE_0_4_11
tag=RELEASE_0_4_11-0-g1b7d78f
branch=RELEASE_0_4_12
tag=RELEASE_0_4_12-0-g8f1e72f
loadavg 3.08 1.97 1.02 1/841 7484
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP
in file '../parrot-bench/stress3.pasm' line 46
Segmentation fault
error:imcc:The opcode 'new_p_s' (new<2>) was not found. Check the type and number of the arguments
in file '../parrot-bench/array_access.pir' line 49
Segmentation fault
error:imcc:syntax error, unexpected ']'
in file '../parrot-bench/dispatch.pir' line 22
error:imcc:The opcode 'say_i' (say<1>) was not found. Check the type and number of the arguments
in file '../parrot-bench/fib.pir' line 38
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:The opcode 'say_i' (say<1>) was not found. Check the type and number of the arguments
in file '../parrot-bench/primes2_i.pir' line 42
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP
in file '../parrot-bench/stress3.pasm' line 46
Segmentation fault
error:imcc:The opcode 'new_p_s' (new<2>) was not found. Check the type and number of the arguments
in file '../parrot-bench/array_access.pir' line 49
Segmentation fault
error:imcc:syntax error, unexpected ']'
in file '../parrot-bench/dispatch.pir' line 22
error:imcc:The opcode 'say_i' (say<1>) was not found. Check the type and number of the arguments
in file '../parrot-bench/fib.pir' line 38
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:The opcode 'say_i' (say<1>) was not found. Check the type and number of the arguments
in file '../parrot-bench/primes2_i.pir' line 42
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP
in file '../parrot-bench/stress3.pasm' line 46
Segmentation fault
error:imcc:The opcode 'new_p_s' (new<2>) was not found. Check the type and number of the arguments
in file '../parrot-bench/array_access.pir' line 49
Segmentation fault
error:imcc:syntax error, unexpected ']'
in file '../parrot-bench/dispatch.pir' line 22
error:imcc:The opcode 'say_i' (say<1>) was not found. Check the type and number of the arguments
in file '../parrot-bench/fib.pir' line 38
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:The opcode 'say_i' (say<1>) was not found. Check the type and number of the arguments
in file '../parrot-bench/primes2_i.pir' line 42
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP
in file '../parrot-bench/stress3.pasm' line 46
Segmentation fault
error:imcc:The opcode 'new_p_s' (new<2>) was not found. Check the type and number of the arguments
in file '../parrot-bench/array_access.pir' line 49
Segmentation fault
error:imcc:syntax error, unexpected ']'
in file '../parrot-bench/dispatch.pir' line 22
error:imcc:The opcode 'say_i' (say<1>) was not found. Check the type and number of the arguments
in file '../parrot-bench/fib.pir' line 38
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:The opcode 'say_i' (say<1>) was not found. Check the type and number of the arguments
in file '../parrot-bench/primes2_i.pir' line 42
Segmentation fault
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
1580.676092 task-clock (msec) # 0.999 CPUs utilized ( +- 0.93% )
121 context-switches # 0.076 K/sec ( +- 0.52% )
84 cpu-migrations # 0.053 K/sec ( +- 4.86% )
22,326 page-faults # 0.014 M/sec ( +- 0.01% )
4,494,806,374 cycles # 2.844 GHz ( +- 0.84% )
1,473,048,006 stalled-cycles-frontend # 32.77% frontend cycles idle ( +- 1.55% )
171,568,570 stalled-cycles-backend # 3.82% backend cycles idle ( +- 12.48% )
10,278,530,249 instructions # 2.29 insns per cycle
# 0.14 stalled cycles per insn ( +- 0.00% )
1,789,924,810 branches # 1132.379 M/sec ( +- 0.00% )
1,152,944 branch-misses # 0.06% of all branches ( +- 2.11% )
1.581919382 seconds time elapsed ( +- 0.93% )
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP
in file '../parrot-bench/stress3.pasm' line 46
Segmentation fault
error:imcc:The opcode 'new_p_s' (new<2>) was not found. Check the type and number of the arguments
in file '../parrot-bench/array_access.pir' line 49
Segmentation fault
error:imcc:syntax error, unexpected ']'
in file '../parrot-bench/dispatch.pir' line 22
error:imcc:The opcode 'say_i' (say<1>) was not found. Check the type and number of the arguments
in file '../parrot-bench/fib.pir' line 38
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:The opcode 'say_i' (say<1>) was not found. Check the type and number of the arguments
in file '../parrot-bench/primes2_i.pir' line 42
Segmentation fault
1626.630483,,task-clock
123,,context-switches
78,,cpu-migrations
22330,,page-faults
4568747598,,cycles
1511440145,,stalled-cycles-frontend
221468967,,stalled-cycles-backend
10278523383,,instructions
1789914491,,branches
1115553,,branch-misses
tag=RELEASE_0_4_13
tag=RELEASE_0_4_13-0-ga4b6137
branch=RELEASE_0_4_14
tag=RELEASE_0_4_14-0-g407cebe
branch=RELEASE_0_4_15
tag=RELEASE_0_4_15-0-g412d341
branch=RELEASE_0_4_16
tag=RELEASE_0_4_16-0-gfd72294
branch=RELEASE_0_4_17
tag=RELEASE_0_4_17-0-gd6c145b
loadavg 1.78 2.02 1.77 2/835 4159
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress3.pasm' line 46
error:imcc:syntax error, unexpected ']' (']')
in file '../parrot-bench/dispatch.pir' line 22
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress3.pasm' line 46
error:imcc:syntax error, unexpected ']' (']')
in file '../parrot-bench/dispatch.pir' line 22
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress3.pasm' line 46
error:imcc:syntax error, unexpected ']' (']')
in file '../parrot-bench/dispatch.pir' line 22
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress3.pasm' line 46
error:imcc:syntax error, unexpected ']' (']')
in file '../parrot-bench/dispatch.pir' line 22
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
6804.552533 task-clock (msec) # 1.001 CPUs utilized ( +- 0.15% )
119 context-switches # 0.018 K/sec ( +- 11.67% )
121 cpu-migrations # 0.018 K/sec ( +- 6.43% )
46,800 page-faults # 0.007 M/sec ( +- 0.01% )
19,858,710,270 cycles # 2.918 GHz ( +- 0.37% )
6,450,188,442 stalled-cycles-frontend # 32.48% frontend cycles idle ( +- 1.05% )
1,862,756,037 stalled-cycles-backend # 9.38% backend cycles idle ( +- 1.47% )
37,741,376,522 instructions # 1.90 insns per cycle
# 0.17 stalled cycles per insn ( +- 0.00% )
7,810,736,701 branches # 1147.869 M/sec ( +- 0.00% )
24,228,949 branch-misses # 0.31% of all branches ( +- 1.07% )
6.799108126 seconds time elapsed ( +- 0.15% )
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress3.pasm' line 46
error:imcc:syntax error, unexpected ']' (']')
in file '../parrot-bench/dispatch.pir' line 22
6894.152719,,task-clock
109,,context-switches
119,,cpu-migrations
46805,,page-faults
20159570924,,cycles
6764113591,,stalled-cycles-frontend
1827132860,,stalled-cycles-backend
37738409653,,instructions
7810478516,,branches
24311275,,branch-misses
branch=RELEASE_0_4_2
tag=RELEASE_0_4_2-0-g594a02a
branch=RELEASE_0_4_3
tag=RELEASE_0_4_3-0-g3014e14
branch=RELEASE_0_4_4
tag=RELEASE_0_4_4-0-ga472eea
branch=RELEASE_0_4_5
tag=RELEASE_0_4_5-0-g79e9f55
branch=RELEASE_0_4_6
tag=RELEASE_0_4_6-0-g98890dc
branch=RELEASE_0_4_7
tag=RELEASE_0_4_7-0-g7fff6ed
branch=RELEASE_0_4_8
tag=RELEASE_0_4_8-0-g5e3d9d7
branch=RELEASE_0_4_9
tag=RELEASE_0_4_9-0-gd08fcb3
branch=RELEASE_0_5_0
tag=RELEASE_0_5_0-0-g93eb8a3
loadavg 2.73 2.79 2.32 2/838 3129
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress3.pasm' line 46
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected ']' (']')
in file '../parrot-bench/dispatch.pir' line 22
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress3.pasm' line 46
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected ']' (']')
in file '../parrot-bench/dispatch.pir' line 22
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress3.pasm' line 46
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected ']' (']')
in file '../parrot-bench/dispatch.pir' line 22
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress3.pasm' line 46
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected ']' (']')
in file '../parrot-bench/dispatch.pir' line 22
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
1460.471818 task-clock (msec) # 1.000 CPUs utilized ( +- 0.17% )
129 context-switches # 0.088 K/sec ( +- 2.57% )
80 cpu-migrations # 0.055 K/sec ( +- 4.62% )
21,783 page-faults # 0.015 M/sec ( +- 0.03% )
4,047,745,175 cycles # 2.772 GHz ( +- 0.49% )
1,387,984,371 stalled-cycles-frontend # 34.29% frontend cycles idle ( +- 1.04% )
307,647,328 stalled-cycles-backend # 7.60% backend cycles idle ( +- 3.46% )
8,442,318,554 instructions # 2.09 insns per cycle
# 0.16 stalled cycles per insn ( +- 0.00% )
1,532,057,079 branches # 1049.015 M/sec ( +- 0.00% )
2,763,064 branch-misses # 0.18% of all branches ( +- 3.24% )
1.461183067 seconds time elapsed ( +- 0.17% )
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress3.pasm' line 46
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected ']' (']')
in file '../parrot-bench/dispatch.pir' line 22
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
1433.798414,,task-clock
126,,context-switches
82,,cpu-migrations
21760,,page-faults
4004031705,,cycles
1356549573,,stalled-cycles-frontend
280744692,,stalled-cycles-backend
8442219202,,instructions
1532035830,,branches
2651034,,branch-misses
branch=RELEASE_0_5_1
tag=RELEASE_0_5_1-0-gbafe78b
loadavg 2.08 2.47 2.30 1/836 31164
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress1.pasm' line 28
error:imcc:syntax error, unexpected IDENTIFIER, expecting PARROT_OP ('local_branch')
in file '../parrot-bench/stress3.pasm' line 46
Segmentation fault
Segmentation fault
Segmentation fault
error:imcc:syntax error, unexpected ']' (']')
in file '../parrot-bench/dispatch.pir' line 22
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault