1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
|
# File format ($ symbol means the beginning of a line):
#
# $ # this message
# $ # =======================
# $ # comments (all commentaries should starts with some number of spaces and # symbol)
# ${action} {license id} {license text hash}
# $BELONGS ./ya/make/file/relative/path/1/ya.make ./ya/make/2/ya.make
# ${all_file_action} filename
# $ # user commentaries (many lines)
# $ generated description - files with this license, license text... (some number of lines that starts with some number of spaces, do not modify)
# ${action} {license spdx} {license text hash}
# $BELONGS ./ya/make/file/relative/path/3/ya.make
# ${all_file_action} filename
# $ # user commentaries
# $ generated description
# $ ...
#
# You can modify action, all_file_action and add commentaries
# Available actions:
# keep - keep license in contrib and use in credits
# skip - skip license
# remove - remove all files with this license
# rename - save license text/links into licenses texts file, but not store SPDX into LINCENSE macro. You should store correct license id into devtools.license.spdx.txt file
#
# {all file action} records will be generated when license text contains filename that exists on filesystem (in contrib directory)
# We suppose that that files can contain some license info
# Available all file actions:
# FILE_IGNORE - ignore file (do nothing)
# FILE_INCLUDE - include all file data into licenses text file
# =======================
KEEP COPYRIGHT_SERVICE_LABEL 09d1731fda037a42651b22724e02e848
BELONGS tools/polly/lib/External/isl/ya.make tools/polly/lib/External/ppcg/ya.make
License text:
* Copyright 2013 Ecole Normale Superieure
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/extract_key.c [2:2]
tools/polly/lib/External/isl/include/isl/hmap_templ.c [2:3]
tools/polly/lib/External/isl/isl_multi_coalesce.c [2:2]
tools/polly/lib/External/isl/isl_multi_dim_id_templ.c [2:3]
tools/polly/lib/External/isl/isl_multi_domain_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_move_dims_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_no_domain_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_read_no_explicit_domain_templ.c [2:2]
tools/polly/lib/External/isl/isl_point.c [2:5]
tools/polly/lib/External/isl/isl_pw_eval.c [2:3]
tools/polly/lib/External/isl/isl_tab.c [2:5]
tools/polly/lib/External/isl/isl_type_has_space_templ.c [2:2]
tools/polly/lib/External/isl/isl_union_multi.c [2:4]
tools/polly/lib/External/isl/isl_union_single.c [2:3]
tools/polly/lib/External/isl/isl_union_templ.c [2:3]
tools/polly/lib/External/isl/isl_val.c [2:2]
tools/polly/lib/External/isl/isl_vec.c [2:3]
tools/polly/lib/External/ppcg/gpu_hybrid.c [2:3]
tools/polly/lib/External/ppcg/gpu_tree.c [2:2]
tools/polly/lib/External/ppcg/hybrid.c [2:3]
tools/polly/lib/External/ppcg/ppcg.c [2:4]
SKIP COPYRIGHT_SERVICE_LABEL 0b6aaa97daae741e03da41749ac1d155
BELONGS lib/IR/ya.make
License text:
Type *I32Ty = Type::getInt32Ty(C);
Value *Elt0 = Builder.CreateExtractElement(CI->getArgOperand(0),
ConstantInt::get(I32Ty, 0));
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/IR/AutoUpgrade.cpp [2194:2196]
KEEP COPYRIGHT_SERVICE_LABEL 11038801a66a8aad80a421c2e7b10837
BELONGS tools/polly/lib/External/isl/ya.make tools/polly/lib/External/ppcg/ya.make
License text:
* Copyright 2008-2009 Katholieke Universiteit Leuven
* Copyright 2010 INRIA Saclay
* Copyright 2012 Ecole Normale Superieure
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_affine_hull.c [2:4]
tools/polly/lib/External/isl/isl_bernstein.c [2:4]
tools/polly/lib/External/isl/isl_bound.c [2:2]
tools/polly/lib/External/isl/isl_coalesce.c [2:7]
tools/polly/lib/External/isl/isl_constraint.c [2:3]
tools/polly/lib/External/isl/isl_equalities.c [2:3]
tools/polly/lib/External/isl/isl_factorization.c [2:4]
tools/polly/lib/External/isl/isl_farkas.c [2:2]
tools/polly/lib/External/isl/isl_flow.c [2:6]
tools/polly/lib/External/isl/isl_fold.c [2:2]
tools/polly/lib/External/isl/isl_input.c [2:5]
tools/polly/lib/External/isl/isl_map.c [2:8]
tools/polly/lib/External/isl/isl_map_lexopt_templ.c [2:3]
tools/polly/lib/External/isl/isl_mat.c [2:5]
tools/polly/lib/External/isl/isl_morph.h [2:2]
tools/polly/lib/External/isl/isl_obj.c [2:4]
tools/polly/lib/External/isl/isl_output.c [2:5]
tools/polly/lib/External/isl/isl_point.c [2:5]
tools/polly/lib/External/isl/isl_polynomial.c [2:2]
tools/polly/lib/External/isl/isl_pw_eval.c [2:3]
tools/polly/lib/External/isl/isl_pw_insert_dims_templ.c [2:2]
tools/polly/lib/External/isl/isl_pw_lift_templ.c [2:2]
tools/polly/lib/External/isl/isl_pw_morph_templ.c [2:2]
tools/polly/lib/External/isl/isl_pw_move_dims_templ.c [2:2]
tools/polly/lib/External/isl/isl_pw_neg_templ.c [2:2]
tools/polly/lib/External/isl/isl_pw_opt_templ.c [2:2]
tools/polly/lib/External/isl/isl_pw_sub_templ.c [2:2]
tools/polly/lib/External/isl/isl_reordering.c [2:2]
tools/polly/lib/External/isl/isl_space.c [2:5]
tools/polly/lib/External/isl/isl_tab_lexopt_templ.c [2:4]
tools/polly/lib/External/isl/isl_tab_pip.c [2:4]
tools/polly/lib/External/isl/isl_transitive_closure.c [2:2]
tools/polly/lib/External/isl/isl_type_has_equal_space_templ.c [2:2]
tools/polly/lib/External/isl/isl_union_eval.c [2:2]
tools/polly/lib/External/isl/isl_union_multi.c [2:4]
tools/polly/lib/External/isl/isl_union_neg.c [2:2]
tools/polly/lib/External/isl/isl_union_single.c [2:3]
tools/polly/lib/External/isl/isl_union_templ.c [2:3]
tools/polly/lib/External/isl/isl_vertices.c [2:2]
tools/polly/lib/External/ppcg/cuda_common.c [2:2]
KEEP COPYRIGHT_SERVICE_LABEL 12c13673979d84c93fb3f9aed80709bd
BELONGS lib/Support/ya.make
License text:
* Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Support/regstrlcpy.c [4:4]
KEEP COPYRIGHT_SERVICE_LABEL 144b4e824389b748144f4e60485d3c2f
BELONGS tools/polly/lib/External/isl/ya.make tools/polly/lib/External/ppcg/ya.make
License text:
* Copyright 2011 INRIA Saclay
* Copyright 2012-2013 Ecole Normale Superieure
* Copyright 2016 Sven Verdoolaege
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_aff_map.c [2:4]
tools/polly/lib/External/isl/isl_ast.c [2:2]
tools/polly/lib/External/isl/isl_ast_build.c [2:3]
tools/polly/lib/External/isl/isl_box.c [2:3]
tools/polly/lib/External/isl/isl_coalesce.c [2:7]
tools/polly/lib/External/isl/isl_input.c [2:5]
tools/polly/lib/External/isl/isl_list_templ.c [2:5]
tools/polly/lib/External/isl/isl_map_simplify.c [2:5]
tools/polly/lib/External/isl/isl_multi_apply_templ.c [2:3]
tools/polly/lib/External/isl/isl_multi_arith_templ.c [2:3]
tools/polly/lib/External/isl/isl_multi_dims.c [2:3]
tools/polly/lib/External/isl/isl_multi_gist.c [2:3]
tools/polly/lib/External/isl/isl_multi_intersect.c [2:3]
tools/polly/lib/External/isl/isl_multi_tuple_id_templ.c [2:3]
tools/polly/lib/External/isl/isl_output.c [2:5]
tools/polly/lib/External/isl/isl_stride.c [2:2]
tools/polly/lib/External/ppcg/gpu.c [2:4]
tools/polly/lib/External/ppcg/print.c [2:2]
tools/polly/lib/External/ppcg/util.c [2:2]
KEEP COPYRIGHT_SERVICE_LABEL 15fbc8ca6eab0954d939e1b16a6b74f8
BELONGS lib/Transforms/Coroutines/ya.make
License text:
IRBuilder<> Builder(C);
StructType *FrameTy = Shape.FrameTy;
Instruction *FramePtr = Shape.FramePtr;
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Transforms/Coroutines/CoroFrame.cpp [1524:1526]
KEEP COPYRIGHT_SERVICE_LABEL 18078dcc93cabe2b2081eb3e0ee92c6b
BELONGS tools/polly/lib/External/isl/ya.make tools/polly/lib/External/ppcg/ya.make
License text:
* Copyright 2012 Ecole Normale Superieure
* Copyright 2015-2016 Sven Verdoolaege
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_schedule_constraints.c [2:3]
tools/polly/lib/External/isl/isl_scheduler.c [2:6]
tools/polly/lib/External/ppcg/gpu.c [2:4]
KEEP COPYRIGHT_SERVICE_LABEL 1e274833b7fb3d36a3be23a694f46aac
BELONGS tools/polly/lib/External/isl/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_flow.c [2:6]
KEEP COPYRIGHT_SERVICE_LABEL 1e686ce4ffe6d63b91a69c1b26712d33
BELONGS lib/Support/ya.make
License text:
* Copyright (c) 1994
* The Regents of the University of California. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Support/COPYRIGHT.regex [26:27]
KEEP COPYRIGHT_SERVICE_LABEL 23befcc9a22e8ccf6e5df3134d3e033e
BELONGS tools/polly/lib/External/isl/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_coalesce.c [2:7]
tools/polly/lib/External/isl/isl_multi_zero_space_templ.c [2:2]
tools/polly/lib/External/isl/isl_pw_locals_templ.c [2:2]
tools/polly/lib/External/isl/isl_pw_union_opt.c [2:4]
tools/polly/lib/External/isl/isl_union_locals_templ.c [2:2]
SKIP COPYRIGHT_SERVICE_LABEL 28368d51c5dcd8ee8080c84c4f8f192e
BELONGS lib/Target/X86/ya.make
License text:
Trampoline->setComdat(C);
BasicBlock *EntryBB = BasicBlock::Create(Context, "entry", Trampoline);
IRBuilder<> Builder(EntryBB);
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Target/X86/X86WinEHState.cpp [403:405]
KEEP COPYRIGHT_SERVICE_LABEL 2a22d1f4218625c4ce9e47576ddfe109
BELONGS tools/polly/lib/External/isl/ya.make
License text:
* Copyright 2012,2014 Ecole Normale Superieure
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_multi_from_base_templ.c [2:2]
SKIP COPYRIGHT_SERVICE_LABEL 30978c73becf399db8f52c771e38e22d
BELONGS lib/Transforms/InstCombine/ya.make
License text:
// The instruction has the form "(A op' B) op (C)". Try to factorize common
// term.
if (Op0)
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Transforms/InstCombine/InstructionCombining.cpp [759:761]
KEEP COPYRIGHT_SERVICE_LABEL 3166dbaed102eed6d3653822d5176d42
BELONGS tools/polly/lib/External/isl/ya.make
License text:
IMath is copyright © 2002-2009 Michael J. Fromberger.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/imath/README.md [9:9]
SKIP COPYRIGHT_SERVICE_LABEL 318577927099d6e8a6d11b7f87ea7da3
BELONGS lib/Analysis/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Analysis/DependenceGraphBuilder.cpp [464:468]
SKIP COPYRIGHT_SERVICE_LABEL 3680a79f7158604adc35f5aca3f57d93
BELONGS lib/CodeGen/ya.make
License text:
IntegerType *WordType = DL.getIntPtrType(C);
PointerType *InitPtrType = InitValue ?
PointerType::getUnqual(InitValue->getType()) : VoidPtrType;
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/CodeGen/LowerEmuTLS.cpp [117:119]
KEEP COPYRIGHT_SERVICE_LABEL 3c354bb3a6485498273ede375ac114c2
BELONGS tools/polly/lib/External/isl/ya.make
License text:
* Copyright 2008-2009 Katholieke Universiteit Leuven
* Copyright 2010 INRIA Saclay
* Copyright 2016-2017 Sven Verdoolaege
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_tab_pip.c [2:4]
tools/polly/lib/External/isl/isl_union_map.c [2:5]
SKIP COPYRIGHT_SERVICE_LABEL 3e3009e9cc74d820b2d85abf2790f180
BELONGS lib/DebugInfo/DWARF/ya.make
License text:
Value0 = Data.getULEB128(C);
Value1 = Data.getULEB128(C);
break;
case dwarf::DW_RLE_startx_length: {
Value0 = Data.getULEB128(C);
Value1 = Data.getULEB128(C);
break;
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp [40:46]
lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp [49:51]
SKIP COPYRIGHT_SERVICE_LABEL 42ae7da0badf3b2f130af3a54173f220
BELONGS lib/DebugInfo/DWARF/ya.make
License text:
: DebugLineData(Data), Context(C) {
LineToUnit = buildLineToUnitMap(Units);
if (!DebugLineData.isValidOffset(Offset))
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/DebugInfo/DWARF/DWARFDebugLine.cpp [1433:1435]
KEEP COPYRIGHT_SERVICE_LABEL 436fc5ecfdba3f630dca8faa57fe7939
BELONGS tools/polly/lib/External/isl/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_aff.c [2:8]
KEEP COPYRIGHT_SERVICE_LABEL 461e4cbb7bcd561964b60cfc5349b46f
BELONGS tools/polly/lib/External/isl/ya.make tools/polly/lib/External/ppcg/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_aff.c [2:8]
tools/polly/lib/External/isl/isl_ast_build_expr.c [2:3]
tools/polly/lib/External/isl/isl_ast_codegen.c [2:3]
tools/polly/lib/External/isl/isl_local_space.c [2:3]
tools/polly/lib/External/isl/isl_map.c [2:8]
tools/polly/lib/External/isl/isl_multi_templ.c [2:3]
tools/polly/lib/External/isl/isl_pw_templ.c [2:4]
tools/polly/lib/External/isl/isl_schedule.c [2:4]
tools/polly/lib/External/isl/isl_scheduler.c [2:6]
tools/polly/lib/External/ppcg/gpu_group.c [2:4]
KEEP COPYRIGHT_SERVICE_LABEL 48792ca6e267c7339e5b010e5dfcf7e8
BELONGS lib/CodeGen/MIRParser/ya.make
License text:
return isalpha(C) || isdigit(C) || C == '_' || C == '-' || C == '.' ||
C == '$';
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/CodeGen/MIRParser/MILexer.cpp [121:122]
SKIP COPYRIGHT_SERVICE_LABEL 54e2525236fb6c3cc97e13b6fb250b63
BELONGS lib/DebugInfo/DWARF/ya.make
License text:
uint64_t BlockLength = Data.getULEB128(C);
StringRef Expression = Data.getBytes(C, BlockLength);
DataExtractor Extractor(Expression, Data.isLittleEndian(),
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/DebugInfo/DWARF/DWARFDebugFrame.cpp [373:375]
KEEP COPYRIGHT_SERVICE_LABEL 5655c5febb1994aec6687062b2e02bd9
BELONGS tools/polly/lib/External/isl/ya.make
License text:
* Copyright 2012 Ecole Normale Superieure
* Copyright 2014 INRIA Rocquencourt
* Copyright 2019 Cerebras Systems
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_ast_graft.c [2:4]
tools/polly/lib/External/isl/isl_copy_tuple_id_templ.c [2:2]
tools/polly/lib/External/isl/isl_ilp_opt_multi_val_templ.c [2:2]
tools/polly/lib/External/isl/isl_input.c [2:5]
tools/polly/lib/External/isl/isl_insert_domain_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_add_constant_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_insert_domain_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_locals_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_min_max_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_unbind_params_templ.c [2:2]
tools/polly/lib/External/isl/isl_output.c [2:5]
tools/polly/lib/External/isl/isl_point.c [2:5]
tools/polly/lib/External/isl/isl_pw_add_constant_multi_val_templ.c [2:2]
tools/polly/lib/External/isl/isl_pw_add_constant_templ.c [2:2]
tools/polly/lib/External/isl/isl_pw_add_constant_val_templ.c [2:2]
tools/polly/lib/External/isl/isl_pw_insert_domain_templ.c [2:2]
tools/polly/lib/External/isl/isl_pw_range_tuple_id_templ.c [2:3]
KEEP COPYRIGHT_SERVICE_LABEL 5c85ca831b8809876c0790cfad2d8956
BELONGS lib/Support/ya.make
License text:
Copyright 1992, 1993, 1994 Henry Spencer. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Support/COPYRIGHT.regex [3:3]
KEEP COPYRIGHT_SERVICE_LABEL 65ab4ffe80a963d1ba83b72e467c317b
BELONGS tools/polly/lib/External/isl/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_map.c [2:8]
tools/polly/lib/External/isl/isl_space.c [2:5]
KEEP COPYRIGHT_SERVICE_LABEL 6889c51be687d2aa2ca198228ffada0d
BELONGS ya.make
License text:
Copyright (c) 2003-2019 University of Illinois at Urbana-Champaign.
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.TXT [242:243]
KEEP COPYRIGHT_SERVICE_LABEL 698365507d95a4f75e3a8ada69384de8
BELONGS tools/polly/lib/External/isl/ya.make
License text:
Copyright (C) 2002-2007 Michael J. Fromberger, All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/imath/imath.c [6:6]
tools/polly/lib/External/isl/imath/imath.h [6:6]
tools/polly/lib/External/isl/imath/imrat.c [6:6]
tools/polly/lib/External/isl/imath/imrat.h [6:6]
SKIP COPYRIGHT_SERVICE_LABEL 6c1074072381bc6362e1b37c9f1b2256
BELONGS lib/DebugInfo/DWARF/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp [390:398]
KEEP COPYRIGHT_SERVICE_LABEL 71a5570b4ed12474c30d73d9c6d6af57
BELONGS lib/Support/ya.make
License text:
* Copyright (c) 1992 Henry Spencer.
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Support/regex_impl.h [4:6]
KEEP COPYRIGHT_SERVICE_LABEL 72954459d846489a9437b458790243b4
BELONGS tools/polly/lib/External/isl/ya.make
License text:
* Copyright 2008-2009 Katholieke Universiteit Leuven
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/basis_reduction_tab.c [2:2]
tools/polly/lib/External/isl/basis_reduction_templ.c [2:3]
tools/polly/lib/External/isl/include/isl/arg.h [2:2]
tools/polly/lib/External/isl/include/isl/constraint.h [2:2]
tools/polly/lib/External/isl/include/isl/ctx.h [2:2]
tools/polly/lib/External/isl/include/isl/hash.h [2:2]
tools/polly/lib/External/isl/include/isl/ilp.h [2:2]
tools/polly/lib/External/isl/include/isl/list.h [2:2]
tools/polly/lib/External/isl/include/isl/lp.h [2:2]
tools/polly/lib/External/isl/include/isl/map.h [2:2]
tools/polly/lib/External/isl/include/isl/mat.h [2:2]
tools/polly/lib/External/isl/include/isl/options.h [2:2]
tools/polly/lib/External/isl/include/isl/set.h [2:2]
tools/polly/lib/External/isl/include/isl/space.h [2:2]
tools/polly/lib/External/isl/include/isl/stream.h [2:2]
tools/polly/lib/External/isl/include/isl/vec.h [2:2]
tools/polly/lib/External/isl/isl_affine_hull.c [2:4]
tools/polly/lib/External/isl/isl_arg.c [2:2]
tools/polly/lib/External/isl/isl_basis_reduction.h [2:2]
tools/polly/lib/External/isl/isl_bernstein.c [2:4]
tools/polly/lib/External/isl/isl_blk.c [2:2]
tools/polly/lib/External/isl/isl_blk.h [2:2]
tools/polly/lib/External/isl/isl_coalesce.c [2:7]
tools/polly/lib/External/isl/isl_constraint.c [2:3]
tools/polly/lib/External/isl/isl_convex_hull.c [2:3]
tools/polly/lib/External/isl/isl_ctx.c [2:2]
tools/polly/lib/External/isl/isl_dim_map.c [2:3]
tools/polly/lib/External/isl/isl_equalities.c [2:3]
tools/polly/lib/External/isl/isl_equalities.h [2:2]
tools/polly/lib/External/isl/isl_factorization.c [2:4]
tools/polly/lib/External/isl/isl_flow.c [2:6]
tools/polly/lib/External/isl/isl_hash.c [2:2]
tools/polly/lib/External/isl/isl_id.c [2:2]
tools/polly/lib/External/isl/isl_id_private.h [2:2]
tools/polly/lib/External/isl/isl_ilp.c [2:2]
tools/polly/lib/External/isl/isl_input.c [2:5]
tools/polly/lib/External/isl/isl_int.h [2:2]
tools/polly/lib/External/isl/isl_list_templ.c [2:5]
tools/polly/lib/External/isl/isl_lp.c [2:2]
tools/polly/lib/External/isl/isl_map.c [2:8]
tools/polly/lib/External/isl/isl_map_private.h [2:2]
tools/polly/lib/External/isl/isl_map_simplify.c [2:5]
tools/polly/lib/External/isl/isl_map_subtract.c [2:2]
tools/polly/lib/External/isl/isl_mat.c [2:5]
tools/polly/lib/External/isl/isl_options.c [2:2]
tools/polly/lib/External/isl/isl_output.c [2:5]
tools/polly/lib/External/isl/isl_sample.c [2:2]
tools/polly/lib/External/isl/isl_sample.h [2:2]
tools/polly/lib/External/isl/isl_scan.c [2:2]
tools/polly/lib/External/isl/isl_scan.h [2:2]
tools/polly/lib/External/isl/isl_seq.c [2:3]
tools/polly/lib/External/isl/isl_seq.h [2:2]
tools/polly/lib/External/isl/isl_space.c [2:5]
tools/polly/lib/External/isl/isl_stream.c [2:2]
tools/polly/lib/External/isl/isl_tab.c [2:5]
tools/polly/lib/External/isl/isl_tab.h [2:2]
tools/polly/lib/External/isl/isl_tab_lexopt_templ.c [2:4]
tools/polly/lib/External/isl/isl_tab_pip.c [2:4]
tools/polly/lib/External/isl/isl_vec.c [2:3]
KEEP COPYRIGHT_SERVICE_LABEL 74cb8b1ee2bcf27ccbef2c7016611351
BELONGS tools/polly/lib/External/isl/ya.make
License text:
* Copyright 2015 INRIA Paris-Rocquencourt
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_int_sioimath.h [2:2]
tools/polly/lib/External/isl/isl_union_multi.c [2:4]
SKIP COPYRIGHT_SERVICE_LABEL 7ab4b45edb7aa5542d2298596f7ac077
BELONGS lib/Transforms/InstCombine/ya.make
License text:
Value *NotC = Builder.CreateNot(C);
Value *RHS = Builder.CreateAnd(B, NotC);
return BinaryOperator::CreateOr(LHS, RHS);
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Transforms/InstCombine/InstCombineAndOrXor.cpp [3230:3232]
SKIP COPYRIGHT_SERVICE_LABEL 7ade3b3e64da0b5a8c95933670bd325e
BELONGS lib/Analysis/ya.make
License text:
// |X| < |C| --> X > -abs(C) and X < abs(C)
Constant *PosDivisorC = ConstantInt::get(Ty, C->abs());
Constant *NegDivisorC = ConstantInt::get(Ty, -C->abs());
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Analysis/InstructionSimplify.cpp [1071:1073]
KEEP COPYRIGHT_SERVICE_LABEL 7e53573e64541341a91e201e6f51f486
BELONGS include/ya.make lib/Support/ya.make
License text:
Copyright (C) 2012-2016, Yann Collet.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
include/llvm/Support/xxhash.h [11:11]
lib/Support/xxhash.cpp [3:3]
KEEP COPYRIGHT_SERVICE_LABEL 8227611821c29c046c24e9d2d617e4d1
BELONGS tools/polly/lib/External/isl/ya.make
License text:
* Copyright 2008-2009 Katholieke Universiteit Leuven
* Copyright 2012-2013 Ecole Normale Superieure
* Copyright 2014-2015 INRIA Rocquencourt
* Copyright 2016 Sven Verdoolaege
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_map_simplify.c [2:5]
SKIP COPYRIGHT_SERVICE_LABEL 86fd792ceb251fb3fcc341f66082f35f
BELONGS lib/Analysis/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Analysis/ValueTracking.cpp [6722:6726]
SKIP COPYRIGHT_SERVICE_LABEL 8b4064d8567439548a359b7b1a7a28a1
BELONGS lib/Analysis/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Analysis/InstructionSimplify.cpp [1052:1057]
SKIP COPYRIGHT_SERVICE_LABEL 90576b7033efccaaffbad736f1a0d521
BELONGS lib/IR/ya.make
License text:
LLVMContext &Context = *unwrap(C);
SmallVector<Metadata *, 8> MDs;
for (auto *OV : makeArrayRef(Vals, Count)) {
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/IR/Core.cpp [1126:1128]
SKIP COPYRIGHT_SERVICE_LABEL 92ac083f410c3d3dd3a05e3b093a5bf8
BELONGS lib/DebugInfo/DWARF/ya.make
License text:
if (C)
Desc = StrOffsetsContributionDescriptor(C->Offset, C->Length, 4,
Header.getFormat());
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/DebugInfo/DWARF/DWARFUnit.cpp [999:1001]
SKIP COPYRIGHT_SERVICE_LABEL 93f312dfb3b79c52ddace2ce5cb4c8ec
BELONGS lib/DebugInfo/DWARF/ya.make
License text:
if (C)
Offset = C->Offset;
if (getVersion() >= 5) {
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/DebugInfo/DWARF/DWARFUnit.cpp [983:985]
KEEP COPYRIGHT_SERVICE_LABEL 945f656078309035caf01d2420f95535
BELONGS include/ya.make lib/Support/ya.make
License text:
* Copyright 2001-2004 Unicode, Inc.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
include/llvm/Support/ConvertUTF.h [16:16]
lib/Support/ConvertUTF.cpp [9:9]
KEEP COPYRIGHT_SERVICE_LABEL 94704cb20c3a3607018b836f1a5d4355
BELONGS tools/polly/lib/External/isl/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_aff.c [2:8]
tools/polly/lib/External/isl/isl_aff_lex_templ.c [2:2]
tools/polly/lib/External/isl/isl_ast_build.c [2:3]
tools/polly/lib/External/isl/isl_ast_build_expr.c [2:3]
tools/polly/lib/External/isl/isl_ast_codegen.c [2:3]
tools/polly/lib/External/isl/isl_ast_graft.c [2:4]
tools/polly/lib/External/isl/isl_coalesce.c [2:7]
tools/polly/lib/External/isl/isl_convex_hull.c [2:3]
tools/polly/lib/External/isl/isl_map.c [2:8]
tools/polly/lib/External/isl/isl_obj.c [2:4]
tools/polly/lib/External/isl/isl_schedule_band.c [2:3]
tools/polly/lib/External/isl/isl_schedule_node.c [2:4]
tools/polly/lib/External/isl/isl_schedule_tree.c [2:4]
tools/polly/lib/External/isl/isl_tab.c [2:5]
tools/polly/lib/External/isl/isl_union_map.c [2:5]
tools/polly/lib/External/isl/isl_union_map_lex_templ.c [2:2]
SKIP COPYRIGHT_SERVICE_LABEL 9834d5fa1f0986d34086e1d17571116a
BELONGS lib/CodeGen/SelectionDAG/ya.make
License text:
Type *Ty = MemOps[0].getTypeForEVT(C);
Align NewAlign = DL.getABITypeAlign(Ty);
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/CodeGen/SelectionDAG/SelectionDAG.cpp [6539:6540]
lib/CodeGen/SelectionDAG/SelectionDAG.cpp [6726:6728]
SKIP COPYRIGHT_SERVICE_LABEL 9ae7967f03e7e2a04a2e21f088823a55
BELONGS lib/DebugInfo/DWARF/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp [390:398]
SKIP COPYRIGHT_SERVICE_LABEL 9c879e80b33217edcdd9207481a44d94
BELONGS lib/DebugInfo/DWARF/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp [390:398]
KEEP COPYRIGHT_SERVICE_LABEL 9d4ec4453cbd8bf6cc9370c38dd298ed
BELONGS lib/Support/ya.make
License text:
* Copyright (c) 1992, 1993, 1994 Henry Spencer.
* Copyright (c) 1992, 1993, 1994
* The Regents of the University of California. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Support/regcomp.c [4:6]
lib/Support/regengine.inc [4:6]
lib/Support/regerror.c [4:6]
lib/Support/regex2.h [4:6]
lib/Support/regexec.c [4:6]
lib/Support/regfree.c [4:6]
lib/Support/regutils.h [4:6]
KEEP COPYRIGHT_SERVICE_LABEL a1124e6dbfac6a8682f68b97ffa3c4b7
BELONGS tools/polly/lib/External/isl/ya.make tools/polly/lib/External/ppcg/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_aff.c [2:8]
tools/polly/lib/External/isl/isl_aff_map.c [2:4]
tools/polly/lib/External/isl/isl_map.c [2:8]
tools/polly/lib/External/isl/isl_map_simplify.c [2:5]
tools/polly/lib/External/isl/isl_multi_cmp.c [2:2]
tools/polly/lib/External/isl/isl_multi_hash.c [2:2]
tools/polly/lib/External/isl/isl_pw_hash.c [2:2]
tools/polly/lib/External/isl/isl_schedule.c [2:4]
tools/polly/lib/External/isl/isl_schedule_node.c [2:4]
tools/polly/lib/External/isl/isl_tab.c [2:5]
tools/polly/lib/External/ppcg/grouping.c [2:2]
KEEP COPYRIGHT_SERVICE_LABEL a4b3a3b7e276c28b916f8f737b8e582b
BELONGS tools/polly/lib/External/isl/ya.make
License text:
* Copyright 2012 Ecole Normale Superieure
* Copyright 2017 Sven Verdoolaege
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_domain_factor_templ.c [2:3]
tools/polly/lib/External/isl/isl_ilp_opt_val_templ.c [2:2]
tools/polly/lib/External/isl/isl_list_read_templ.c [2:2]
tools/polly/lib/External/isl/isl_list_templ.c [2:5]
tools/polly/lib/External/isl/isl_mat.c [2:5]
tools/polly/lib/External/isl/isl_multi_align_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_explicit_domain.c [2:2]
tools/polly/lib/External/isl/isl_multi_no_explicit_domain.c [2:2]
tools/polly/lib/External/isl/isl_multi_pw_aff_explicit_domain.c [2:2]
tools/polly/lib/External/isl/isl_multi_union_add_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_union_pw_aff_explicit_domain.c [2:2]
tools/polly/lib/External/isl/isl_scheduler.c [2:6]
KEEP COPYRIGHT_SERVICE_LABEL a5abc66d4dc93961fd15d25d8a6e8d4f
BELONGS tools/polly/lib/External/isl/ya.make
License text:
* Copyright 2006-2007 Universiteit Leiden
* Copyright 2008-2009 Katholieke Universiteit Leuven
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/basis_reduction_templ.c [2:3]
tools/polly/lib/External/isl/isl_bernstein.c [2:4]
KEEP COPYRIGHT_SERVICE_LABEL aa55046ed38838026ba71159b2c09f09
BELONGS lib/Transforms/InstCombine/ya.make
License text:
// icmp <pred> iK %E, trunc(C)
Value *Vec;
ArrayRef<int> Mask;
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Transforms/InstCombine/InstCombineCompares.cpp [2975:2977]
KEEP COPYRIGHT_SERVICE_LABEL aca63d9e9935fcd3523aa703d86c95b1
BELONGS tools/polly/lib/External/isl/ya.make
License text:
* Copyright 2018 Cerebras Systems
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_bind_domain_templ.c [2:2]
tools/polly/lib/External/isl/isl_map_bound_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_bind_domain_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_bind_templ.c [2:2]
tools/polly/lib/External/isl/isl_opt_mpa_templ.c [2:2]
tools/polly/lib/External/isl/isl_pw_bind_domain_templ.c [2:2]
KEEP COPYRIGHT_SERVICE_LABEL b1eeacd142c9ee1731757d12ccdeca48
BELONGS tools/polly/lib/External/isl/ya.make
License text:
* Copyright 2005-2007 Universiteit Leiden
* Copyright 2008-2009 Katholieke Universiteit Leuven
* Copyright 2010 INRIA Saclay
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_factorization.c [2:4]
tools/polly/lib/External/isl/isl_flow.c [2:6]
KEEP COPYRIGHT_SERVICE_LABEL b3d9c252ff8f5a3a5d20c558a29e2e16
BELONGS include/ya.make tools/llvm-cxxfilt/ya.make
License text:
static bool isChar6(char C) { return isAlnum(C) || C == '.' || C == '_'; }
static unsigned EncodeChar6(char C) {
if (C >= 'a' && C <= 'z') return C-'a';
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
include/llvm/Bitstream/BitCodes.h [148:150]
tools/llvm-cxxfilt/llvm-cxxfilt.cpp [123:124]
KEEP COPYRIGHT_SERVICE_LABEL b7be40807046549a01a511a04d441db0
BELONGS tools/polly/lib/External/isl/ya.make tools/polly/lib/External/ppcg/ya.make
License text:
* Copyright 2008-2009 Katholieke Universiteit Leuven
* Copyright 2010 INRIA Saclay
* Copyright 2012 Ecole Normale Superieure
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_affine_hull.c [2:4]
tools/polly/lib/External/isl/isl_ast_graft.c [2:4]
tools/polly/lib/External/isl/isl_domain_factor_templ.c [2:3]
tools/polly/lib/External/isl/isl_map_lexopt_templ.c [2:3]
tools/polly/lib/External/isl/isl_multi_identity_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_product_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_splice_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_zero_templ.c [2:2]
tools/polly/lib/External/isl/isl_pw_pullback_templ.c [2:2]
tools/polly/lib/External/isl/isl_pw_union_opt.c [2:4]
tools/polly/lib/External/isl/isl_schedule_constraints.c [2:3]
tools/polly/lib/External/isl/isl_tarjan.c [2:3]
tools/polly/lib/External/ppcg/cuda.c [2:2]
tools/polly/lib/External/ppcg/gpu_print.c [2:2]
KEEP COPYRIGHT_SERVICE_LABEL ba76fb602cdb427419e5298f61c13346
BELONGS lib/Support/ya.make
License text:
* Copyright (c) 1992 Henry Spencer.
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Support/regex_impl.h [4:6]
KEEP COPYRIGHT_SERVICE_LABEL bae2c8c0881abaf9a917b263650fe746
BELONGS lib/Demangle/ya.make
License text:
return isDigit(C) || isLower(C) || isUpper(C) || C == '_';
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Demangle/RustDemangle.cpp [218:218]
KEEP COPYRIGHT_SERVICE_LABEL bed102526902357f786febaf3d1184f2
BELONGS ya.make
License text:
Copyright (c) 2009-2019 Polly Team
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/LICENSE.TXT [242:243]
KEEP COPYRIGHT_SERVICE_LABEL c02ea0d68190938e6849401dd3849f04
BELONGS tools/polly/lib/External/isl/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_flow.c [2:6]
tools/polly/lib/External/isl/isl_local.c [2:3]
tools/polly/lib/External/isl/isl_mat.c [2:5]
tools/polly/lib/External/isl/isl_morph.c [2:3]
tools/polly/lib/External/isl/isl_multi_floor.c [2:2]
tools/polly/lib/External/isl/isl_multi_nan_templ.c [2:2]
tools/polly/lib/External/isl/isl_obj.c [2:4]
KEEP COPYRIGHT_SERVICE_LABEL c4511e6caf8a6a741fb6fda077fd3335
BELONGS tools/polly/lib/External/isl/ya.make tools/polly/lib/External/ppcg/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/include/isl/hmap_templ.c [2:3]
tools/polly/lib/External/isl/isl_aff.c [2:8]
tools/polly/lib/External/isl/isl_aff_map.c [2:4]
tools/polly/lib/External/isl/isl_list_templ.c [2:5]
tools/polly/lib/External/isl/isl_local.c [2:3]
tools/polly/lib/External/isl/isl_local_space.c [2:3]
tools/polly/lib/External/isl/isl_pw_union_opt.c [2:4]
tools/polly/lib/External/isl/isl_schedule.c [2:4]
tools/polly/lib/External/isl/isl_scheduler.c [2:6]
tools/polly/lib/External/isl/isl_seq.c [2:3]
tools/polly/lib/External/ppcg/ppcg.c [2:4]
KEEP COPYRIGHT_SERVICE_LABEL c8069f9f5455fa4a970af50594daf852
BELONGS lib/Support/ya.make
License text:
* Copyright (c) 1992, 1993, 1994 Henry Spencer.
* Copyright (c) 1992, 1993, 1994
* The Regents of the University of California. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Support/regcomp.c [4:6]
lib/Support/regengine.inc [4:6]
lib/Support/regerror.c [4:6]
lib/Support/regex2.h [4:6]
lib/Support/regexec.c [4:6]
lib/Support/regfree.c [4:6]
lib/Support/regutils.h [4:6]
KEEP COPYRIGHT_SERVICE_LABEL cd92f11018b3e27ac7b0cc593c1c92c2
BELONGS tools/polly/lib/External/isl/ya.make tools/polly/lib/External/ppcg/ya.make
License text:
* Copyright 2010-2011 INRIA Saclay
* Copyright 2012-2013 Ecole Normale Superieure
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_box.c [2:3]
tools/polly/lib/External/isl/isl_dim_map.c [2:3]
tools/polly/lib/External/isl/isl_morph.c [2:3]
tools/polly/lib/External/isl/isl_pw_templ.c [2:4]
tools/polly/lib/External/isl/isl_tarjan.c [2:3]
tools/polly/lib/External/isl/isl_union_map.c [2:5]
tools/polly/lib/External/ppcg/gpu.c [2:4]
tools/polly/lib/External/ppcg/gpu_group.c [2:4]
tools/polly/lib/External/ppcg/ppcg_options.c [2:2]
tools/polly/lib/External/ppcg/schedule.c [2:2]
KEEP COPYRIGHT_SERVICE_LABEL dbc9f80f01ad96a42bc3446397c989b0
BELONGS tools/polly/lib/External/isl/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_aff.c [2:8]
tools/polly/lib/External/isl/isl_align_params_templ.c [2:2]
tools/polly/lib/External/isl/isl_multi_apply_templ.c [2:3]
tools/polly/lib/External/isl/isl_multi_arith_templ.c [2:3]
tools/polly/lib/External/isl/isl_multi_dim_id_templ.c [2:3]
tools/polly/lib/External/isl/isl_multi_dims.c [2:3]
tools/polly/lib/External/isl/isl_multi_gist.c [2:3]
tools/polly/lib/External/isl/isl_multi_intersect.c [2:3]
tools/polly/lib/External/isl/isl_multi_templ.c [2:3]
tools/polly/lib/External/isl/isl_multi_tuple_id_templ.c [2:3]
tools/polly/lib/External/isl/isl_pw_templ.c [2:4]
tools/polly/lib/External/isl/isl_tab_lexopt_templ.c [2:4]
tools/polly/lib/External/isl/isl_type_check_equal_space_templ.c [2:2]
KEEP COPYRIGHT_SERVICE_LABEL ddd440bf10074cb20bfb5212ec27c689
BELONGS tools/polly/lib/External/isl/ya.make
License text:
* Copyright 2018 Sven Verdoolaege
* Copyright 2019 Cerebras Systems
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_pw_range_tuple_id_templ.c [2:3]
tools/polly/lib/External/isl/isl_unbind_params_templ.c [2:2]
SKIP COPYRIGHT_SERVICE_LABEL eb7be45e1211bdf61ad67a5266a4d362
BELONGS lib/DebugInfo/DWARF/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp [390:398]
KEEP COPYRIGHT_SERVICE_LABEL ec68b124b848dab3076211e5404e326f
BELONGS tools/polly/lib/External/isl/ya.make tools/polly/lib/External/ppcg/ya.make
License text:
* Copyright 2010 INRIA Saclay
* Copyright 2013 Ecole Normale Superieure
* Copyright 2015 Sven Verdoolaege
* Copyright 2019 Cerebras Systems
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_point.c [2:5]
tools/polly/lib/External/ppcg/gpu_group.c [2:4]
tools/polly/lib/External/ppcg/gpu_hybrid.c [2:3]
tools/polly/lib/External/ppcg/hybrid.c [2:3]
tools/polly/lib/External/ppcg/ppcg.c [2:4]
KEEP COPYRIGHT_SERVICE_LABEL ec84ddedf1dc5016b4ff73d6f7a41324
BELONGS tools/polly/lib/External/isl/ya.make
License text:
* Copyright 2013-2014 Ecole Normale Superieure
* Copyright 2014 INRIA Rocquencourt
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_schedule_band.c [2:3]
tools/polly/lib/External/isl/isl_schedule_node.c [2:4]
tools/polly/lib/External/isl/isl_schedule_tree.c [2:4]
tools/polly/lib/External/isl/isl_space.c [2:5]
tools/polly/lib/External/isl/isl_union_map.c [2:5]
SKIP COPYRIGHT_SERVICE_LABEL ecb0e3c869f22cc8f0b923cd3df84147
BELONGS include/ya.make lib/Transforms/Utils/ya.make
License text:
// if (c) if (c)
// X1 = ... X1 = ...
// else else
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
include/llvm/Transforms/Utils/LCSSA.h [21:23]
lib/Transforms/Utils/LCSSA.cpp [14:16]
SKIP COPYRIGHT_SERVICE_LABEL f2bff1d61453f018fe1397173f3dfa43
BELONGS lib/Support/ya.make
License text:
: Code(C) {
ErrMsg = "Stream Error: ";
switch (C) {
case stream_error_code::unspecified:
ErrMsg += "An unspecified error has occurred.";
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Support/BinaryStreamError.cpp [23:27]
KEEP COPYRIGHT_SERVICE_LABEL f38404a02e69976b94505df0c691bed0
BELONGS include/ya.make lib/Support/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
include/llvm/Support/MD5.h [20:25]
lib/Support/MD5.cpp [13:18]
KEEP COPYRIGHT_SERVICE_LABEL f44570b515bc9a09cb026ea674529c30
BELONGS tools/polly/lib/External/isl/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_coalesce.c [2:7]
tools/polly/lib/External/isl/isl_map.c [2:8]
tools/polly/lib/External/isl/isl_schedule_tree.c [2:4]
tools/polly/lib/External/isl/isl_scheduler.c [2:6]
KEEP COPYRIGHT_SERVICE_LABEL f45dfdcd89f19aa627fe9a2953c87df6
BELONGS tools/polly/lib/External/isl/ya.make
License text:
Copyright (c) 2012 Qualcomm Innovation Center, Inc. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/imath/gmp_compat.c [6:6]
tools/polly/lib/External/isl/imath/gmp_compat.h [6:6]
SKIP COPYRIGHT_SERVICE_LABEL f894c606faef3610df8e9cfcc3a19c2e
BELONGS lib/CodeGen/ya.make
License text:
// Fix (C).
if (Restore && (MLI->getLoopFor(Save) || MLI->getLoopFor(Restore))) {
if (MLI->getLoopDepth(Save) > MLI->getLoopDepth(Restore)) {
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/CodeGen/ShrinkWrap.cpp [418:420]
SKIP COPYRIGHT_SERVICE_LABEL fb5e17767e7a12f5b9913e726533b21e
BELONGS lib/Transforms/Instrumentation/ya.make
License text:
Value *Sc = getShadow(C);
Value *Sd = getShadow(D);
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
lib/Transforms/Instrumentation/MemorySanitizer.cpp [3971:3972]
KEEP COPYRIGHT_SERVICE_LABEL fd1d589caaee8f6dbff3390e3f4e472b
BELONGS tools/polly/lib/External/isl/ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/isl_aff.c [2:8]
KEEP COPYRIGHT_SERVICE_LABEL fd871c9566d755e525c0d6c201633a49
BELONGS tools/polly/lib/External/isl/ya.make
License text:
IMath is Copyright © 2002-2009 Michael J. Fromberger
You may use it subject to the following Licensing Terms:
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tools/polly/lib/External/isl/imath/LICENSE [1:2]
|