-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBruteClang output.txt
More file actions
4238 lines (4212 loc) · 371 KB
/
BruteClang output.txt
File metadata and controls
4238 lines (4212 loc) · 371 KB
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
nazim@acer:~/Desktop/omr-master/fvtest/compilertest$ ./run_BruteClang.py
Running on file ../../compiler/compile/OSRData.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/compile/Method.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/compile/VirtualGuard.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/compile/VirtualGuard.cpp: Line 194: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
Running on file ../../compiler/control/OMROptions.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 101: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 103: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 108: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 132: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 166: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 168: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 175: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 177: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 179: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 182: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 190: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 199: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 201: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 203: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 221: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 773: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 806: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 815: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 862: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 870: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 901: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 911: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 917: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 923: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 925: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 927: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 930: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 943: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 949: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 954: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 956: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 959: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 961: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 965: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 985: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1021: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1026: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1028: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1030: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1046: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1047: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1049: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1052: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1054: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1060: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1062: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1077: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1079: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1083: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1105: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1271: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1273: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1299: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1309: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OMROptions.cpp: Line 1550: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/control/OptimizationPlan.cpp:
No build variant reported any errors!
Running on file ../../compiler/control/OMRRecompilation.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/env/ExceptionTable.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/infra/Assert.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/infra/BitVector.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/infra/Checklist.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/infra/HashTab.cpp:
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/infra/IGBase.cpp:
No build variant reported any errors!
Running on file ../../compiler/infra/IGNode.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/infra/ILWalk.cpp:
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/ras/ILValidator.cpp:
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/infra/InterferenceGraph.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/InterferenceGraph.hpp: Line 102: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
Running on file ../../compiler/infra/OMRMonitor.cpp:
No build variant reported any errors!
Running on file ../../compiler/infra/OMRMonitorTable.cpp:
No build variant reported any errors!
Running on file ../../compiler/infra/Random.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/infra/Timer.cpp:
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/infra/TreeServices.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/infra/OMRCfg.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/infra/SimpleRegex.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/ilgen/IlGenRequest.cpp:
No build variant reported any errors!
Running on file ../../compiler/il/symbol/OMRSymbol.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/il/OMRBlock.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/compile/OMRSymbolReferenceTable.cpp:
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/compile/OMRAliasBuilder.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/il/symbol/OMRAutomaticSymbol.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/InterferenceGraph.hpp: Line 102: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
Running on file ../../compiler/il/symbol/OMRLabelSymbol.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/il/symbol/OMRMethodSymbol.cpp:
No build variant reported any errors!
Running on file ../../compiler/il/symbol/OMRParameterSymbol.cpp:
No build variant reported any errors!
Running on file ../../compiler/il/symbol/OMRRegisterMappedSymbol.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/il/symbol/OMRResolvedMethodSymbol.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/il/symbol/OMRStaticSymbol.cpp:
No build variant reported any errors!
Running on file ../../compiler/il/OMRNode.cpp:
#0 0x00007f904a04b954 PrintStackTraceSignalHandler(void*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libLLVMSupport.so.5+0x106954)
#1 0x00007f904a04bc96 SignalHandler(int) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libLLVMSupport.so.5+0x106c96)
#2 0x00007f904968f390 __restore_rt (/lib/x86_64-linux-gnu/libpthread.so.0+0x11390)
#3 0x00007f9044873202 clang::TypeLoc::getLocalSourceRangeImpl(clang::TypeLoc) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2d9202)
#4 0x00007f90448785de clang::TypeLoc::getBeginLoc() const (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2de5de)
#5 0x00007f904480a5fb clang::NestedNameSpecifierLoc::getLocalSourceRange() const (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2705fb)
#6 0x00007f904480a4e7 clang::NestedNameSpecifierLoc::getSourceRange() const (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2704e7)
#7 0x00007f90427ba89a clang::CXXScopeSpec::Extend(clang::ASTContext&, clang::SourceLocation, clang::TypeLoc, clang::SourceLocation) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0xe289a)
#8 0x00007f9042d65352 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCXXPseudoDestructorExpr(clang::CXXPseudoDestructorExpr*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x68d352)
#9 0x00007f9042d65d0e clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCallExpr(clang::CallExpr*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x68dd0e)
#10 0x00007f9042d5aa47 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformStmt(clang::Stmt*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x682a47)
#11 0x00007f9042d798c7 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformForStmt(clang::ForStmt*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6a18c7)
#12 0x00007f9042d74770 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCompoundStmt(clang::CompoundStmt*, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x69c770)
#13 0x00007f9042d79ae2 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformIfStmt(clang::IfStmt*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6a1ae2)
#14 0x00007f9042d74770 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCompoundStmt(clang::CompoundStmt*, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x69c770)
#15 0x00007f9042d5a9dc clang::Sema::SubstStmt(clang::Stmt*, clang::MultiLevelTemplateArgumentList const&) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6829dc)
#16 0x00007f9042d9528c clang::Sema::InstantiateFunctionDefinition(clang::SourceLocation, clang::FunctionDecl*, bool, bool, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6bd28c)
#17 0x00007f9042d9852b clang::Sema::PerformPendingInstantiations(bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6c052b)
#18 0x00007f9042d9547b clang::Sema::InstantiateFunctionDefinition(clang::SourceLocation, clang::FunctionDecl*, bool, bool, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6bd47b)
#19 0x00007f9042d9852b clang::Sema::PerformPendingInstantiations(bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6c052b)
#20 0x00007f9042d9547b clang::Sema::InstantiateFunctionDefinition(clang::SourceLocation, clang::FunctionDecl*, bool, bool, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6bd47b)
#21 0x00007f9042d9852b clang::Sema::PerformPendingInstantiations(bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6c052b)
#22 0x00007f90427cf51a clang::Sema::ActOnEndOfTranslationUnit() (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0xf751a)
#23 0x00007f904321d668 clang::Parser::ParseTopLevelDecl(clang::OpaquePtr<clang::DeclGroupRef>&) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangParse.so.5+0xd3668)
#24 0x00007f9043175f87 clang::ParseAST(clang::Sema&, bool, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangParse.so.5+0x2bf87)
#25 0x00007f90483ffb38 clang::FrontendAction::Execute() (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libclangFrontend.so.5+0xc7b38)
#26 0x00007f90483ba061 clang::CompilerInstance::ExecuteAction(clang::FrontendAction&) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libclangFrontend.so.5+0x82061)
#27 0x00007f9048135842 clang::ExecuteCompilerInvocation(clang::CompilerInstance*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libclangFrontendTool.so.5+0x3842)
#28 0x0000000000411f44 ExecuteCI(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, clang::frontend::IncludeDirGroup, clang::CustomDiagContainer&, llvm::ArrayRef<char const*>, char const*, void*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x411f44)
#29 0x00000000004126ac cc1_main(llvm::ArrayRef<char const*>, char const*, void*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x4126ac)
#30 0x0000000000410097 main (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x410097)
#31 0x00007f90474e7830 __libc_start_main /build/glibc-bfm8X4/glibc-2.23/csu/../csu/libc-start.c:325:0
#32 0x000000000040cfb9 _start (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x40cfb9)
Stack dump:
0. Program arguments: /home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0 -cc1 -triple x86_64-unknown-linux-gnu -fsyntax-only -disable-free -main-file-name OMRNode.cpp -mrelocation-model static -mthread-model posix -mdisable-fp-elim -fmath-errno -masm-verbose -mconstructor-aliases -munwind-tables -fuse-init-array -target-cpu x86-64 -dwarf-column-info -debugger-tuning=gdb -resource-dir /home/nazim/Desktop/llvm-clang/ninja-build/lib/clang/5.0.1 -D __sync()= -D __lwsync()= -D __isync()= -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/x86_64-linux-gnu/c++/5.4.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/x86_64-linux-gnu/c++/5.4.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/backward -internal-isystem /usr/local/include -internal-isystem /home/nazim/Desktop/llvm-clang/ninja-build/lib/clang/5.0.1/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -w -std=c++0x -fdeprecated-macro -fdebug-compilation-dir /home/nazim/Desktop/omr-master/fvtest/compilertest -ferror-limit 19 -fmessage-length 80 -fobjc-runtime=gcc -fcxx-exceptions -fexceptions -fdiagnostics-show-option -fcolor-diagnostics -load /home/nazim/Desktop/llvm-clang/ninja-build/lib/OMRChecker.so -add-plugin omr-checker -x c++ ../../compiler/il/OMRNode.cpp
1. <eof> parser at end of file
2. ../../compiler/cs2/arrayof.h:428:3: instantiating function definition 'CS2::ArrayOf<TR::Node *, CS2::shared_allocator<CS2::heap_allocator<65536, 12, TRMemoryAllocator<TR_AllocationKind::heapAlloc, 12, 28> > >, 8, TR::Node *>::~ArrayOf'
3. ../../compiler/cs2/arrayof.h:478:8: instantiating function definition 'CS2::ArrayOf<TR::Node *, CS2::shared_allocator<CS2::heap_allocator<65536, 12, TRMemoryAllocator<TR_AllocationKind::heapAlloc, 12, 28> > >, 8, TR::Node *>::MakeEmpty'
4. ../../compiler/cs2/arrayof.h:480:8: instantiating function definition 'CS2::ArrayOf<TR::Node *, CS2::shared_allocator<CS2::heap_allocator<65536, 12, TRMemoryAllocator<TR_AllocationKind::heapAlloc, 12, 28> > >, 8, TR::Node *>::ShrinkTo'
clang-5.0: error: unable to execute command: Segmentation fault (core dumped)
clang-5.0: error: clang frontend command failed due to signal (use -v to see invocation)
clang version 5.0.1 (https://github.com/nbhuiyan/clang-forked.git a74511b317ac513b774d45fd4ceecd5005a77dce) (https://github.com/nbhuiyan/llvm-forked.git 81029f142231bde8e119becda112a2173f1459c9)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/nazim/Desktop/llvm-clang/ninja-build/bin
clang-5.0: note: diagnostic msg: PLEASE submit a bug report to http://llvm.org/bugs/ and include the crash backtrace, preprocessed source, and associated run script.
clang-5.0: note: diagnostic msg:
********************
PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:
Preprocessed source(s) and associated run script(s) are located at:
clang-5.0: note: diagnostic msg: /tmp/OMRNode-ce0241.cpp
clang-5.0: note: diagnostic msg: /tmp/OMRNode-ce0241.sh
clang-5.0: note: diagnostic msg:
********************
Running on file ../../compiler/il/NodePool.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/il/NodeUtils.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/il/OMRIL.cpp:
No build variant reported any errors!
Running on file ../../compiler/il/OMRSymbolReference.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/il/Aliases.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/compile/OMRCompilation.cpp:
#0 0x00007f46806c6954 PrintStackTraceSignalHandler(void*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libLLVMSupport.so.5+0x106954)
#1 0x00007f46806c6c96 SignalHandler(int) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libLLVMSupport.so.5+0x106c96)
#2 0x00007f467fd0a390 __restore_rt (/lib/x86_64-linux-gnu/libpthread.so.0+0x11390)
#3 0x00007f467aeee202 clang::TypeLoc::getLocalSourceRangeImpl(clang::TypeLoc) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2d9202)
#4 0x00007f467aef35de clang::TypeLoc::getBeginLoc() const (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2de5de)
#5 0x00007f467ae855fb clang::NestedNameSpecifierLoc::getLocalSourceRange() const (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2705fb)
#6 0x00007f467ae854e7 clang::NestedNameSpecifierLoc::getSourceRange() const (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2704e7)
#7 0x00007f4678e3589a clang::CXXScopeSpec::Extend(clang::ASTContext&, clang::SourceLocation, clang::TypeLoc, clang::SourceLocation) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0xe289a)
#8 0x00007f46793e0352 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCXXPseudoDestructorExpr(clang::CXXPseudoDestructorExpr*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x68d352)
#9 0x00007f46793e0d0e clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCallExpr(clang::CallExpr*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x68dd0e)
#10 0x00007f46793d5a47 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformStmt(clang::Stmt*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x682a47)
#11 0x00007f46793ef770 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCompoundStmt(clang::CompoundStmt*, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x69c770)
#12 0x00007f46793f48c7 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformForStmt(clang::ForStmt*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6a18c7)
#13 0x00007f46793ef770 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCompoundStmt(clang::CompoundStmt*, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x69c770)
#14 0x00007f46793d59dc clang::Sema::SubstStmt(clang::Stmt*, clang::MultiLevelTemplateArgumentList const&) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6829dc)
#15 0x00007f467941028c clang::Sema::InstantiateFunctionDefinition(clang::SourceLocation, clang::FunctionDecl*, bool, bool, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6bd28c)
#16 0x00007f467941352b clang::Sema::PerformPendingInstantiations(bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6c052b)
#17 0x00007f4678e4a51a clang::Sema::ActOnEndOfTranslationUnit() (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0xf751a)
#18 0x00007f4679898668 clang::Parser::ParseTopLevelDecl(clang::OpaquePtr<clang::DeclGroupRef>&) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangParse.so.5+0xd3668)
#19 0x00007f46797f0f87 clang::ParseAST(clang::Sema&, bool, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangParse.so.5+0x2bf87)
#20 0x00007f467ea7ab38 clang::FrontendAction::Execute() (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libclangFrontend.so.5+0xc7b38)
#21 0x00007f467ea35061 clang::CompilerInstance::ExecuteAction(clang::FrontendAction&) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libclangFrontend.so.5+0x82061)
#22 0x00007f467e7b0842 clang::ExecuteCompilerInvocation(clang::CompilerInstance*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libclangFrontendTool.so.5+0x3842)
#23 0x0000000000411f44 ExecuteCI(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, clang::frontend::IncludeDirGroup, clang::CustomDiagContainer&, llvm::ArrayRef<char const*>, char const*, void*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x411f44)
#24 0x00000000004126ac cc1_main(llvm::ArrayRef<char const*>, char const*, void*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x4126ac)
#25 0x0000000000410097 main (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x410097)
#26 0x00007f467db62830 __libc_start_main /build/glibc-bfm8X4/glibc-2.23/csu/../csu/libc-start.c:325:0
#27 0x000000000040cfb9 _start (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x40cfb9)
Stack dump:
0. Program arguments: /home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0 -cc1 -triple x86_64-unknown-linux-gnu -fsyntax-only -disable-free -main-file-name OMRCompilation.cpp -mrelocation-model static -mthread-model posix -mdisable-fp-elim -fmath-errno -masm-verbose -mconstructor-aliases -munwind-tables -fuse-init-array -target-cpu x86-64 -dwarf-column-info -debugger-tuning=gdb -resource-dir /home/nazim/Desktop/llvm-clang/ninja-build/lib/clang/5.0.1 -D __sync()= -D __lwsync()= -D __isync()= -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/x86_64-linux-gnu/c++/5.4.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/x86_64-linux-gnu/c++/5.4.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/backward -internal-isystem /usr/local/include -internal-isystem /home/nazim/Desktop/llvm-clang/ninja-build/lib/clang/5.0.1/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -w -std=c++0x -fdeprecated-macro -fdebug-compilation-dir /home/nazim/Desktop/omr-master/fvtest/compilertest -ferror-limit 19 -fmessage-length 80 -fobjc-runtime=gcc -fcxx-exceptions -fexceptions -fdiagnostics-show-option -fcolor-diagnostics -load /home/nazim/Desktop/llvm-clang/ninja-build/lib/OMRChecker.so -add-plugin omr-checker -x c++ ../../compiler/compile/OMRCompilation.cpp
1. <eof> parser at end of file
2. ../../compiler/cs2/listof.h:58:3: instantiating function definition 'CS2::ListOf<CS2::PhaseMeasuringNode<CS2::RunnableMeter<CS2::Timer>, CS2::shared_allocator<CS2::heap_allocator<65536, 12, TRMemoryAllocator<TR_AllocationKind::heapAlloc, 12, 28> > > >, CS2::shared_allocator<CS2::heap_allocator<65536, 12, TRMemoryAllocator<TR_AllocationKind::heapAlloc, 12, 28> > >, 8>::~ListOf'
clang-5.0: error: unable to execute command: Segmentation fault (core dumped)
clang-5.0: error: clang frontend command failed due to signal (use -v to see invocation)
clang version 5.0.1 (https://github.com/nbhuiyan/clang-forked.git a74511b317ac513b774d45fd4ceecd5005a77dce) (https://github.com/nbhuiyan/llvm-forked.git 81029f142231bde8e119becda112a2173f1459c9)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/nazim/Desktop/llvm-clang/ninja-build/bin
clang-5.0: note: diagnostic msg: PLEASE submit a bug report to http://llvm.org/bugs/ and include the crash backtrace, preprocessed source, and associated run script.
clang-5.0: note: diagnostic msg:
********************
PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:
Preprocessed source(s) and associated run script(s) are located at:
clang-5.0: note: diagnostic msg: /tmp/OMRCompilation-fe4893.cpp
clang-5.0: note: diagnostic msg: /tmp/OMRCompilation-fe4893.sh
clang-5.0: note: diagnostic msg:
********************
Running on file ../../compiler/compile/TLSCompilationManager.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/env/OMRCPU.cpp:
No build variant reported any errors!
Running on file ../../compiler/env/OMRObjectModel.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/env/OMRArithEnv.cpp:
No build variant reported any errors!
Running on file ../../compiler/env/OMRClassEnv.cpp:
No build variant reported any errors!
Running on file ../../compiler/env/OMRDebugEnv.cpp:
No build variant reported any errors!
Running on file ../../compiler/env/OMRVMEnv.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/env/SegmentProvider.cpp:
No build variant reported any errors!
Running on file ../../compiler/env/SegmentAllocator.cpp:
No build variant reported any errors!
Running on file ../../compiler/env/SystemSegmentProvider.cpp:
No build variant reported any errors!
Running on file ../../compiler/env/DebugSegmentProvider.cpp:
No build variant reported any errors!
Running on file ../../compiler/env/Region.cpp:
No build variant reported any errors!
Running on file ../../compiler/env/StackMemoryRegion.cpp:
No build variant reported any errors!
Running on file ../../compiler/env/OMRPersistentInfo.cpp:
No build variant reported any errors!
Running on file ../../compiler/env/TRMemory.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/env/TRPersistentMemory.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/env/VerboseLog.cpp:
No build variant reported any errors!
Running on file ../../compiler/il/OMRDataTypes.cpp:
No build variant reported any errors!
Running on file ../../compiler/il/OMRTreeTop.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/il/OMRILOps.cpp:
No build variant reported any errors!
Running on file ../../compiler/ras/CallStack.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/ras/CFGChecker.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/ras/Debug.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/ras/DebugCounter.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/ras/DebugCounter.cpp: Line 246: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/ras/DebugCounter.cpp: Line 335: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/ras/IgnoreLocale.cpp:
No build variant reported any errors!
Running on file ../../compiler/ras/LimitFile.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/ras/LimitFile.cpp: Line 407: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/ras/LimitFile.cpp: Line 473: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/ras/LimitFile.cpp: Line 671: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/ras/LogTracer.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/ras/OptionsDebug.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/ras/OptionsDebug.cpp: Line 433: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/ras/OptionsDebug.cpp: Line 439: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/ras/PPCOpNames.cpp:
No build variant reported any errors!
Running on file ../../compiler/ras/Tree.cpp:
#0 0x00007fc2de722954 PrintStackTraceSignalHandler(void*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libLLVMSupport.so.5+0x106954)
#1 0x00007fc2de722c96 SignalHandler(int) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libLLVMSupport.so.5+0x106c96)
#2 0x00007fc2ddd66390 __restore_rt (/lib/x86_64-linux-gnu/libpthread.so.0+0x11390)
#3 0x00007fc2d8f4a202 clang::TypeLoc::getLocalSourceRangeImpl(clang::TypeLoc) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2d9202)
#4 0x00007fc2d8f4f5de clang::TypeLoc::getBeginLoc() const (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2de5de)
#5 0x00007fc2d8ee15fb clang::NestedNameSpecifierLoc::getLocalSourceRange() const (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2705fb)
#6 0x00007fc2d8ee14e7 clang::NestedNameSpecifierLoc::getSourceRange() const (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2704e7)
#7 0x00007fc2d6e9189a clang::CXXScopeSpec::Extend(clang::ASTContext&, clang::SourceLocation, clang::TypeLoc, clang::SourceLocation) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0xe289a)
#8 0x00007fc2d743c352 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCXXPseudoDestructorExpr(clang::CXXPseudoDestructorExpr*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x68d352)
#9 0x00007fc2d743cd0e clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCallExpr(clang::CallExpr*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x68dd0e)
#10 0x00007fc2d7431a47 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformStmt(clang::Stmt*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x682a47)
#11 0x00007fc2d74508c7 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformForStmt(clang::ForStmt*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6a18c7)
#12 0x00007fc2d744b770 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCompoundStmt(clang::CompoundStmt*, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x69c770)
#13 0x00007fc2d7450ae2 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformIfStmt(clang::IfStmt*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6a1ae2)
#14 0x00007fc2d744b770 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCompoundStmt(clang::CompoundStmt*, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x69c770)
#15 0x00007fc2d74319dc clang::Sema::SubstStmt(clang::Stmt*, clang::MultiLevelTemplateArgumentList const&) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6829dc)
#16 0x00007fc2d746c28c clang::Sema::InstantiateFunctionDefinition(clang::SourceLocation, clang::FunctionDecl*, bool, bool, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6bd28c)
#17 0x00007fc2d746f52b clang::Sema::PerformPendingInstantiations(bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6c052b)
#18 0x00007fc2d746c47b clang::Sema::InstantiateFunctionDefinition(clang::SourceLocation, clang::FunctionDecl*, bool, bool, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6bd47b)
#19 0x00007fc2d746f52b clang::Sema::PerformPendingInstantiations(bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6c052b)
#20 0x00007fc2d746c47b clang::Sema::InstantiateFunctionDefinition(clang::SourceLocation, clang::FunctionDecl*, bool, bool, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6bd47b)
#21 0x00007fc2d746f52b clang::Sema::PerformPendingInstantiations(bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6c052b)
#22 0x00007fc2d6ea651a clang::Sema::ActOnEndOfTranslationUnit() (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0xf751a)
#23 0x00007fc2d78f4668 clang::Parser::ParseTopLevelDecl(clang::OpaquePtr<clang::DeclGroupRef>&) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangParse.so.5+0xd3668)
#24 0x00007fc2d784cf87 clang::ParseAST(clang::Sema&, bool, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangParse.so.5+0x2bf87)
#25 0x00007fc2dcad6b38 clang::FrontendAction::Execute() (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libclangFrontend.so.5+0xc7b38)
#26 0x00007fc2dca91061 clang::CompilerInstance::ExecuteAction(clang::FrontendAction&) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libclangFrontend.so.5+0x82061)
#27 0x00007fc2dc80c842 clang::ExecuteCompilerInvocation(clang::CompilerInstance*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libclangFrontendTool.so.5+0x3842)
#28 0x0000000000411f44 ExecuteCI(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, clang::frontend::IncludeDirGroup, clang::CustomDiagContainer&, llvm::ArrayRef<char const*>, char const*, void*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x411f44)
#29 0x00000000004126ac cc1_main(llvm::ArrayRef<char const*>, char const*, void*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x4126ac)
#30 0x0000000000410097 main (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x410097)
#31 0x00007fc2dbbbe830 __libc_start_main /build/glibc-bfm8X4/glibc-2.23/csu/../csu/libc-start.c:325:0
#32 0x000000000040cfb9 _start (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x40cfb9)
Stack dump:
0. Program arguments: /home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0 -cc1 -triple x86_64-unknown-linux-gnu -fsyntax-only -disable-free -main-file-name Tree.cpp -mrelocation-model static -mthread-model posix -mdisable-fp-elim -fmath-errno -masm-verbose -mconstructor-aliases -munwind-tables -fuse-init-array -target-cpu x86-64 -dwarf-column-info -debugger-tuning=gdb -resource-dir /home/nazim/Desktop/llvm-clang/ninja-build/lib/clang/5.0.1 -D __sync()= -D __lwsync()= -D __isync()= -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/x86_64-linux-gnu/c++/5.4.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/x86_64-linux-gnu/c++/5.4.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/backward -internal-isystem /usr/local/include -internal-isystem /home/nazim/Desktop/llvm-clang/ninja-build/lib/clang/5.0.1/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -w -std=c++0x -fdeprecated-macro -fdebug-compilation-dir /home/nazim/Desktop/omr-master/fvtest/compilertest -ferror-limit 19 -fmessage-length 80 -fobjc-runtime=gcc -fcxx-exceptions -fexceptions -fdiagnostics-show-option -fcolor-diagnostics -load /home/nazim/Desktop/llvm-clang/ninja-build/lib/OMRChecker.so -add-plugin omr-checker -x c++ ../../compiler/ras/Tree.cpp
1. <eof> parser at end of file
2. ../../compiler/cs2/arrayof.h:428:3: instantiating function definition 'CS2::ArrayOf<TR::Node *, CS2::shared_allocator<CS2::heap_allocator<65536, 12, TRMemoryAllocator<TR_AllocationKind::heapAlloc, 12, 28> > >, 8, TR::Node *>::~ArrayOf'
3. ../../compiler/cs2/arrayof.h:478:8: instantiating function definition 'CS2::ArrayOf<TR::Node *, CS2::shared_allocator<CS2::heap_allocator<65536, 12, TRMemoryAllocator<TR_AllocationKind::heapAlloc, 12, 28> > >, 8, TR::Node *>::MakeEmpty'
4. ../../compiler/cs2/arrayof.h:480:8: instantiating function definition 'CS2::ArrayOf<TR::Node *, CS2::shared_allocator<CS2::heap_allocator<65536, 12, TRMemoryAllocator<TR_AllocationKind::heapAlloc, 12, 28> > >, 8, TR::Node *>::ShrinkTo'
clang-5.0: error: unable to execute command: Segmentation fault (core dumped)
clang-5.0: error: clang frontend command failed due to signal (use -v to see invocation)
clang version 5.0.1 (https://github.com/nbhuiyan/clang-forked.git a74511b317ac513b774d45fd4ceecd5005a77dce) (https://github.com/nbhuiyan/llvm-forked.git 81029f142231bde8e119becda112a2173f1459c9)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/nazim/Desktop/llvm-clang/ninja-build/bin
clang-5.0: note: diagnostic msg: PLEASE submit a bug report to http://llvm.org/bugs/ and include the crash backtrace, preprocessed source, and associated run script.
clang-5.0: note: diagnostic msg:
********************
PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:
Preprocessed source(s) and associated run script(s) are located at:
clang-5.0: note: diagnostic msg: /tmp/Tree-d9703e.cpp
clang-5.0: note: diagnostic msg: /tmp/Tree-d9703e.sh
clang-5.0: note: diagnostic msg:
********************
Running on file ../../compiler/optimizer/AsyncCheckInsertion.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/BackwardBitVectorAnalysis.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/BackwardIntersectionBitVectorAnalysis.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/BackwardUnionBitVectorAnalysis.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/BitVectorAnalysis.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/CatchBlockRemover.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/CFGSimplifier.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/CompactLocals.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/InterferenceGraph.hpp: Line 102: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
Running on file ../../compiler/optimizer/CopyPropagation.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/DataFlowAnalysis.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/DeadStoreElimination.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/DeadTreesElimination.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/DebuggingCounters.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/Delayedness.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/Dominators.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/DominatorVerifier.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/DominatorsChk.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/Earliestness.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/ExpressionsSimplification.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/FieldPrivatizer.cpp:
#0 0x00007fe116613954 PrintStackTraceSignalHandler(void*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libLLVMSupport.so.5+0x106954)
#1 0x00007fe116613c96 SignalHandler(int) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libLLVMSupport.so.5+0x106c96)
#2 0x00007fe115c57390 __restore_rt (/lib/x86_64-linux-gnu/libpthread.so.0+0x11390)
#3 0x00007fe110e3b202 clang::TypeLoc::getLocalSourceRangeImpl(clang::TypeLoc) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2d9202)
#4 0x00007fe110e405de clang::TypeLoc::getBeginLoc() const (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2de5de)
#5 0x00007fe110dd25fb clang::NestedNameSpecifierLoc::getLocalSourceRange() const (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2705fb)
#6 0x00007fe110dd24e7 clang::NestedNameSpecifierLoc::getSourceRange() const (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangAST.so.5+0x2704e7)
#7 0x00007fe10ed8289a clang::CXXScopeSpec::Extend(clang::ASTContext&, clang::SourceLocation, clang::TypeLoc, clang::SourceLocation) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0xe289a)
#8 0x00007fe10f32d352 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCXXPseudoDestructorExpr(clang::CXXPseudoDestructorExpr*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x68d352)
#9 0x00007fe10f32dd0e clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCallExpr(clang::CallExpr*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x68dd0e)
#10 0x00007fe10f322a47 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformStmt(clang::Stmt*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x682a47)
#11 0x00007fe10f3418c7 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformForStmt(clang::ForStmt*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6a18c7)
#12 0x00007fe10f33c770 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCompoundStmt(clang::CompoundStmt*, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x69c770)
#13 0x00007fe10f341ae2 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformIfStmt(clang::IfStmt*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6a1ae2)
#14 0x00007fe10f33c770 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCompoundStmt(clang::CompoundStmt*, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x69c770)
#15 0x00007fe10f3229dc clang::Sema::SubstStmt(clang::Stmt*, clang::MultiLevelTemplateArgumentList const&) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6829dc)
#16 0x00007fe10f35d28c clang::Sema::InstantiateFunctionDefinition(clang::SourceLocation, clang::FunctionDecl*, bool, bool, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6bd28c)
#17 0x00007fe10f36052b clang::Sema::PerformPendingInstantiations(bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6c052b)
#18 0x00007fe10f35d47b clang::Sema::InstantiateFunctionDefinition(clang::SourceLocation, clang::FunctionDecl*, bool, bool, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6bd47b)
#19 0x00007fe10f36052b clang::Sema::PerformPendingInstantiations(bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6c052b)
#20 0x00007fe10f35d47b clang::Sema::InstantiateFunctionDefinition(clang::SourceLocation, clang::FunctionDecl*, bool, bool, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6bd47b)
#21 0x00007fe10f36052b clang::Sema::PerformPendingInstantiations(bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0x6c052b)
#22 0x00007fe10ed9751a clang::Sema::ActOnEndOfTranslationUnit() (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangSema.so.5+0xf751a)
#23 0x00007fe10f7e5668 clang::Parser::ParseTopLevelDecl(clang::OpaquePtr<clang::DeclGroupRef>&) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangParse.so.5+0xd3668)
#24 0x00007fe10f73df87 clang::ParseAST(clang::Sema&, bool, bool) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/../lib/libclangParse.so.5+0x2bf87)
#25 0x00007fe1149c7b38 clang::FrontendAction::Execute() (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libclangFrontend.so.5+0xc7b38)
#26 0x00007fe114982061 clang::CompilerInstance::ExecuteAction(clang::FrontendAction&) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libclangFrontend.so.5+0x82061)
#27 0x00007fe1146fd842 clang::ExecuteCompilerInvocation(clang::CompilerInstance*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/../lib/libclangFrontendTool.so.5+0x3842)
#28 0x0000000000411f44 ExecuteCI(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, clang::frontend::IncludeDirGroup, clang::CustomDiagContainer&, llvm::ArrayRef<char const*>, char const*, void*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x411f44)
#29 0x00000000004126ac cc1_main(llvm::ArrayRef<char const*>, char const*, void*) (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x4126ac)
#30 0x0000000000410097 main (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x410097)
#31 0x00007fe113aaf830 __libc_start_main /build/glibc-bfm8X4/glibc-2.23/csu/../csu/libc-start.c:325:0
#32 0x000000000040cfb9 _start (/home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0+0x40cfb9)
Stack dump:
0. Program arguments: /home/nazim/Desktop/llvm-clang/ninja-build/bin/clang-5.0 -cc1 -triple x86_64-unknown-linux-gnu -fsyntax-only -disable-free -main-file-name FieldPrivatizer.cpp -mrelocation-model static -mthread-model posix -mdisable-fp-elim -fmath-errno -masm-verbose -mconstructor-aliases -munwind-tables -fuse-init-array -target-cpu x86-64 -dwarf-column-info -debugger-tuning=gdb -resource-dir /home/nazim/Desktop/llvm-clang/ninja-build/lib/clang/5.0.1 -D __sync()= -D __lwsync()= -D __isync()= -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/x86_64-linux-gnu/c++/5.4.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/x86_64-linux-gnu/c++/5.4.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/backward -internal-isystem /usr/local/include -internal-isystem /home/nazim/Desktop/llvm-clang/ninja-build/lib/clang/5.0.1/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -w -std=c++0x -fdeprecated-macro -fdebug-compilation-dir /home/nazim/Desktop/omr-master/fvtest/compilertest -ferror-limit 19 -fmessage-length 80 -fobjc-runtime=gcc -fcxx-exceptions -fexceptions -fdiagnostics-show-option -fcolor-diagnostics -load /home/nazim/Desktop/llvm-clang/ninja-build/lib/OMRChecker.so -add-plugin omr-checker -x c++ ../../compiler/optimizer/FieldPrivatizer.cpp
1. <eof> parser at end of file
2. ../../compiler/cs2/arrayof.h:428:3: instantiating function definition 'CS2::ArrayOf<TR::Node *, CS2::shared_allocator<CS2::heap_allocator<65536, 12, TRMemoryAllocator<TR_AllocationKind::heapAlloc, 12, 28> > >, 8, TR::Node *>::~ArrayOf'
3. ../../compiler/cs2/arrayof.h:478:8: instantiating function definition 'CS2::ArrayOf<TR::Node *, CS2::shared_allocator<CS2::heap_allocator<65536, 12, TRMemoryAllocator<TR_AllocationKind::heapAlloc, 12, 28> > >, 8, TR::Node *>::MakeEmpty'
4. ../../compiler/cs2/arrayof.h:480:8: instantiating function definition 'CS2::ArrayOf<TR::Node *, CS2::shared_allocator<CS2::heap_allocator<65536, 12, TRMemoryAllocator<TR_AllocationKind::heapAlloc, 12, 28> > >, 8, TR::Node *>::ShrinkTo'
clang-5.0: error: unable to execute command: Segmentation fault (core dumped)
clang-5.0: error: clang frontend command failed due to signal (use -v to see invocation)
clang version 5.0.1 (https://github.com/nbhuiyan/clang-forked.git a74511b317ac513b774d45fd4ceecd5005a77dce) (https://github.com/nbhuiyan/llvm-forked.git 81029f142231bde8e119becda112a2173f1459c9)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/nazim/Desktop/llvm-clang/ninja-build/bin
clang-5.0: note: diagnostic msg: PLEASE submit a bug report to http://llvm.org/bugs/ and include the crash backtrace, preprocessed source, and associated run script.
clang-5.0: note: diagnostic msg:
********************
PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:
Preprocessed source(s) and associated run script(s) are located at:
clang-5.0: note: diagnostic msg: /tmp/FieldPrivatizer-7dc0fa.cpp
clang-5.0: note: diagnostic msg: /tmp/FieldPrivatizer-7dc0fa.sh
clang-5.0: note: diagnostic msg:
********************
Running on file ../../compiler/optimizer/GeneralLoopUnroller.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/optimizer/InductionVariable.hpp: Line 256: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/optimizer/InductionVariable.hpp: Line 281: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/GlobalAnticipatability.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/GlobalRegisterAllocator.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/Inliner.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/RematTools.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/InductionVariable.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/optimizer/InductionVariable.hpp: Line 256: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/optimizer/InductionVariable.hpp: Line 281: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/IntersectionBitVectorAnalysis.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/Isolatedness.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/IsolatedStoreElimination.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/Latestness.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/LiveOnAllPaths.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 81: error: cast from pointer to smaller type 'uintptrj_t' (aka 'unsigned int') loses information
i386:
In file ../../compiler/infra/HashTab.hpp: Line 202: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
Running on file ../../compiler/optimizer/LiveVariableInformation.cpp:
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 155: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386:
In file ../../compiler/control/OptionsUtil.hpp: Line 156: error: cast from pointer to smaller type 'intptrj_t' (aka 'int') loses information
i386: