/llvm-project/llvm/test/CodeGen/AMDGPU/ |
H A D | attr-amdgpu-flat-work-group-size-vgpr-limit.ll | 271 call void asm sideeffect "; use $0", "v"(i32 %v0) 272 call void asm sideeffect "; use $0", "v"(i32 %v1) 273 call void asm sideeffect "; use $0", "v"(i32 %v2) 274 call void asm sideeffect "; use $0", "v"(i32 %v3) 275 call void asm sideeffect "; use $0", "v"(i32 %v4) 276 call void asm sideeffect "; use $0", "v"(i32 %v5) 277 call void asm sideeffect "; use $0", "v"(i32 %v6) 278 call void asm sideeffect "; use $0", "v"(i32 %v7) 279 call void asm sideeffect "; use $0", "v"(i32 %v8) 280 call void asm sideeffect "; use [all...] |
H A D | vgpr-agpr-limit-gfx90a.ll | 262 call void asm sideeffect "; use $0", "v"(i32 %v0) 263 call void asm sideeffect "; use $0", "v"(i32 %v1) 264 call void asm sideeffect "; use $0", "v"(i32 %v2) 265 call void asm sideeffect "; use $0", "v"(i32 %v3) 266 call void asm sideeffect "; use $0", "v"(i32 %v4) 267 call void asm sideeffect "; use $0", "v"(i32 %v5) 268 call void asm sideeffect "; use $0", "v"(i32 %v6) 269 call void asm sideeffect "; use $0", "v"(i32 %v7) 270 call void asm sideeffect "; use $0", "v"(i32 %v8) 271 call void asm sideeffect "; use $0", "v"(i32 %v9) [all …]
|
H A D | branch-relax-spill.ll | 356 ; CHECK-NEXT: ; reg use s0 359 ; CHECK-NEXT: ; reg use s1 362 ; CHECK-NEXT: ; reg use s2 365 ; CHECK-NEXT: ; reg use s3 368 ; CHECK-NEXT: ; reg use s4 371 ; CHECK-NEXT: ; reg use s5 374 ; CHECK-NEXT: ; reg use s6 377 ; CHECK-NEXT: ; reg use s7 380 ; CHECK-NEXT: ; reg use s8 383 ; CHECK-NEXT: ; reg use s [all...] |
/llvm-project/flang/test/Semantics/ |
H A D | modfile41.f90 | 2 ! Test USE statements that use same module multiple times mixed with rename 21 use m1 24 use m1 25 use m1, z=>a 28 use m1, only : a 31 use m1 32 use m1,z=>a ! This prevents the use association of m1's "a" as local "a" 33 use m2 ! m2's version of "a" gets use associated 34 !ERROR: 'a' is use-associated from module 'm2' and cannot be re-declared 38 use m1,only : a ! This forces the use association of m1's "a" as local "a" [all …]
|
H A D | resolve17.f90 | 50 ! Generic g should merge the two use-associated ones 52 use m4a 53 use m4b 74 ! Generic g should merge the two use-associated ones 76 use m5a 77 use m5b, g => gg 100 use m6a, g => gg 101 use m6b, g => gg 128 ! Merge the three use-associated generics 130 use m7a [all …]
|
/llvm-project/llvm/test/MC/RISCV/ |
H A D | rv32-only-csr-names.s |
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize/ |
H A D | use-trailing-return-type.cpp | 1 // RUN: %check_clang_tidy -std=c++14-or-later %s modernize-use-trailing-return-type %t -- -- -fdecl… 29 // CHECK-MESSAGES: :[[@LINE-1]]:5: warning: use a trailing return type for this function [modernize… 32 // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use a trailing return type for this function [modernize… 35 // CHECK-MESSAGES: :[[@LINE-1]]:5: warning: use a trailing return type for this function [modernize… 38 // CHECK-MESSAGES: :[[@LINE-1]]:5: warning: use a trailing return type for this function [modernize… 41 // CHECK-MESSAGES: :[[@LINE-1]]:5: warning: use a trailing return type for this function [modernize… 44 // CHECK-MESSAGES: :[[@LINE-1]]:5: warning: use a trailing return type for this function [modernize… 47 // CHECK-MESSAGES: :[[@LINE-1]]:27: warning: use a trailing return type for this function [moderniz… 55 // CHECK-MESSAGES: :[[@LINE-1]]:5: warning: use a trailing return type for this function [modernize… 60 // CHECK-MESSAGES: :[[@LINE-3]]:5: warning: use a trailing return type for this function [modernize… [all …]
|
H A D | use-std-print.cpp | 2 // RUN: -std=c++23 %s modernize-use-std-print %t -- \ 3 // RUN: -config="{CheckOptions: {modernize-use-std-print.StrictMode: true}}" \ 8 // RUN: -std=c++23 %s modernize-use-std-print %t -- \ 9 // RUN: -config="{CheckOptions: {modernize-use-std-print.StrictMode: false}}" \ 29 // CHECK-MESSAGES: [[@LINE-1]]:3: warning: use 'std::print' instead of 'printf' [modernize-use-std-print] in printf_newline() 35 // CHECK-MESSAGES: [[@LINE-1]]:3: warning: use 'std::println' instead of 'printf' [modernize-use-std-print] in printf_newline() 39 // CHECK-MESSAGES: [[@LINE-1]]:3: warning: use 'std::println' instead of 'printf' [modernize-use in printf_newline() [all...] |
H A D | use-designated-initializers.cpp | 1 // RUN: %check_clang_tidy -std=c++20 %s modernize-use-designated-initializers %t \ 4 // RUN: %check_clang_tidy -check-suffixes=,SINGLE-ELEMENT -std=c++20 %s modernize-use-designated-initializers %t \ 5 // RUN: -- -config="{CheckOptions: {modernize-use-designated-initializers.IgnoreSingleElementAggregates: false}}" \ 7 // RUN: %check_clang_tidy -check-suffixes=POD -std=c++20 %s modernize-use-designated-initializers %t \ 8 // RUN: -- -config="{CheckOptions: {modernize-use-designated-initializers.RestrictToPODTypes: true}}" \ 10 // RUN: %check_clang_tidy -check-suffixes=,MACROS -std=c++20 %s modernize-use-designated-initializers %t \ 11 // RUN: -- -config="{CheckOptions: {modernize-use-designated-initializers.IgnoreMacros: false}}" \ 26 // CHECK-MESSAGES: :[[@LINE-1]]:10: warning: use designated initializer list to initialize 'S2' [modernize-use-designated-initializers] 28 // CHECK-MESSAGES-POD: :[[@LINE-3]]:10: warning: use designate [all...] |
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/performance/ |
H A D | avoid-endl.cpp | 56 // CHECK-MESSAGES: :[[@LINE-1]]:27: warning: do not use 'std::endl' with streams; use '\n' instead [performance-avoid-endl] in bad() 59 // CHECK-MESSAGES: :[[@LINE-1]]:28: warning: do not use 'std::endl' with streams; use '\n' instead [performance-avoid-endl] in bad() 62 // CHECK-MESSAGES: :[[@LINE-1]]:27: warning: do not use 'std::endl' with streams; use '\n' instead [performance-avoid-endl] in bad() 65 // CHECK-MESSAGES: :[[@LINE-1]]:28: warning: do not use 'std::endl' with streams; use '\n' instead [performance-avoid-endl] in bad() 68 // CHECK-MESSAGES: :[[@LINE-1]]:27: warning: do not use 'std::endl' with streams; use '\ in bad() [all...] |
/llvm-project/llvm/docs/ |
H A D | loop-separate.svg | 140 <use x="274.88388" y="482.01486" width="100%" height="100%" xlink:href="#glyph0-4"/> 141 <use x="292.62811" y="482.01486" width="100%" height="100%" xlink:href="#glyph0-4"/> 142 <use x="318.24506" y="482.01486" width="100%" height="100%" xlink:href="#glyph0-4"/> 146 <use x="162.13281" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-1"/> 147 <use x="169.35559" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-2"/> 148 <use x="176.57835" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-3"/> 149 <use x="183.8134" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-4"/> 150 <use x="191.03618" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-5"/> 151 <use x="198.25894" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-6"/> 152 <use x="162.13281" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-7"/> [all …]
|
H A D | loop-merge.svg | 140 <use x="276.50989" y="396.44205" width="100%" height="100%" xlink:href="#glyph0-4"/> 141 <use x="293.32669" y="396.44205" width="100%" height="100%" xlink:href="#glyph0-4"/> 142 <use x="317.60468" y="396.44205" width="100%" height="100%" xlink:href="#glyph0-4"/> 146 <use x="238.96875" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-1"/> 147 <use x="245.81401" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-2"/> 148 <use x="252.65927" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-3"/> 149 <use x="259.51614" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-4"/> 150 <use x="266.36139" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-5"/> 151 <use x="273.20667" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-6"/> 152 <use x="238.96875" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-7"/> [all …]
|
/llvm-project/clang/test/Sema/ |
H A D | builtins-x86_64.c | 17 …(void)__builtin_ia32_readeflags_u64(); // expected-error{{use of unkno… in call_x86_64_builtins() 18 …(void)__builtin_ia32_writeeflags_u64(4); // expected-error{{use of unkno… in call_x86_64_builtins() 19 …(void)__builtin_ia32_cvtss2si64(vec4floats); // expected-error{{use of unkno… in call_x86_64_builtins() 20 …(void)__builtin_ia32_cvttss2si64(vec4floats); // expected-error{{use of unkno… in call_x86_64_builtins() 21 …(void)__builtin_ia32_cvtsd2si64(vec2doubles); // expected-error{{use of unkno… in call_x86_64_builtins() 22 …(void)__builtin_ia32_cvttsd2si64(vec2doubles); // expected-error{{use of unkno… in call_x86_64_builtins() 23 …(void)__builtin_ia32_crc32di(4, 4); // expected-error{{use of unkno… in call_x86_64_builtins() 24 …(void)__builtin_ia32_rdfsbase64(); // expected-error{{use of unkno… in call_x86_64_builtins() 25 …(void)__builtin_ia32_rdgsbase64(); // expected-error{{use of unkno… in call_x86_64_builtins() 26 …(void)__builtin_ia32_wrfsbase64(4); // expected-error{{use of unkno… in call_x86_64_builtins() [all …]
|
H A D | atomic-implicit-seq_cst.c | 10 …++atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger me… in bad_pre_inc() 14 …--atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger me… in bad_pre_dec() 18 …atom++; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger me… in bad_post_inc() 22 …atom--; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger me… in bad_post_dec() 26 …gimme_int(atom); // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_call() 30 …return +atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stron… in bad_unary_plus() 34 …return -atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stron… in bad_unary_minus() 38 …return !atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stron… in bad_unary_logical_not() 42 …return ~atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stron… in bad_unary_bitwise_not() 46 …return (int)atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_explicit_cast() [all …]
|
/llvm-project/llvm/test/CodeGen/MIR/AMDGPU/ |
H A D | long-branch-reg-all-sgpr-used.ll | 165 tail call void asm sideeffect "; reg use $0", "{s0}"(i32 %sgpr0) #1 166 tail call void asm sideeffect "; reg use $0", "{s1}"(i32 %sgpr1) #1 167 tail call void asm sideeffect "; reg use $0", "{s2}"(i32 %sgpr2) #1 168 tail call void asm sideeffect "; reg use $0", "{s3}"(i32 %sgpr3) #1 169 tail call void asm sideeffect "; reg use $0", "{s4}"(i32 %sgpr4) #1 170 tail call void asm sideeffect "; reg use $0", "{s5}"(i32 %sgpr5) #1 171 tail call void asm sideeffect "; reg use $0", "{s6}"(i32 %sgpr6) #1 172 tail call void asm sideeffect "; reg use $0", "{s7}"(i32 %sgpr7) #1 173 tail call void asm sideeffect "; reg use $0", "{s8}"(i32 %sgpr8) #1 174 tail call void asm sideeffect "; reg use [all...] |
/llvm-project/clang/test/Parser/ |
H A D | altivec.c | 59 __vector long vv_l; // nonaix-warning {{use of 'long' with '__vector' is deprecated… 60 // aix-error@-1 {{cannot use 'long' with '__vector'}} 61 // novsx-error@-2 {{cannot use 'long' with '__vector'}} 62 __vector signed long vv_sl; // nonaix-warning {{use of 'long' with '__vector' is deprecated… 63 // aix-error@-1 {{cannot use 'long' with '__vector'}} 64 // novsx-error@-2 {{cannot use 'long' with '__vector'}} 65 __vector unsigned long vv_ul; // nonaix-warning {{use of 'long' with '__vector' is deprecated… 66 // aix-error@-1 {{cannot use 'long' with '__vector'}} 67 // novsx-error@-2 {{cannot use 'long' with '__vector'}} 68 __vector long int vv_li; // nonaix-warning {{use of 'long' with '__vector' is deprecated… [all …]
|
/llvm-project/clang/test/Misc/ |
H A D | diag-verify.cpp | 4 // "use of undeclared identifier 'y'" error message. 9 x = y; // expected-error{{use of undeclared identifier 'y'}} in test() 10 x = y; // expected-error{{use of undeclared identifier}} in test() 12 x = y; // expected-error{{use of}} in test() 17 x = y; // expected-error{{use of undeclared identifier 'y' is fine}} in test() 19 x = y; // expected-error{{good use of undeclared identifier 'y' in code}} in test() 20 x = y; // expected-error{{ use of undeclared identifier 'y' }} in test() 21 x = y; // expected-error{{use of undeclared identifier 'y' is disallowed}} in test() 22 x = y; // expected-error{{please don't use of undeclared identifier 'y'}} in test() 23 x = y; // expected-error{{use of undeclared identifier 'y'; please declare y before use}} in test() [all …]
|
/llvm-project/llvm/test/Transforms/SCCP/ |
H A D | conditions-ranges.ll | 4 declare void @use(i1) 14 ; CHECK-NEXT: call void @use(i1 false) 15 ; CHECK-NEXT: call void @use(i1 false) 16 ; CHECK-NEXT: call void @use(i1 false) 17 ; CHECK-NEXT: call void @use(i1 true) 18 ; CHECK-NEXT: call void @use(i1 true) 20 ; CHECK-NEXT: call void @use(i1 [[C_1]]) 22 ; CHECK-NEXT: call void @use(i1 [[C_2]]) 24 ; CHECK-NEXT: call void @use(i1 [[C_3]]) 27 ; CHECK-NEXT: call void @use(i1 false) [all …]
|
H A D | binaryops-constexprs.ll | 4 declare void @use.i32(i32) 5 declare void @use.i1(i1) 10 ; CHECK-NEXT: call void @use.i32(i32 0) 12 ; CHECK-NEXT: call void @use.i32(i32 [[AND_2]]) 13 ; CHECK-NEXT: call void @use.i1(i1 true) 14 ; CHECK-NEXT: call void @use.i1(i1 false) 16 ; CHECK-NEXT: call void @use.i1(i1 [[COND_1]]) 17 ; CHECK-NEXT: call void @use.i32(i32 4) 22 call void @use.i32(i32 %and.1) 24 call void @use.i32(i32 %and.2) [all …]
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/objc/ |
H A D | nsdate-formatter.m | 47 …// CHECK-MESSAGES: :[[@LINE-1]]:28: warning: use of week year (Y) with month (M); did you mean to … 65 …HECK-MESSAGES: :[[@LINE-1]]:28: warning: use of calendar year (y) with week of the year (w); did y… 83 …HECK-MESSAGES: :[[@LINE-1]]:28: warning: use of calendar year (y) with week of the year (w); did y… 102 …HECK-MESSAGES: :[[@LINE-1]]:28: warning: use of calendar year (y) with week of the year (w); did y… 108 …// CHECK-MESSAGES: :[[@LINE-1]]:28: warning: use of week year (Y) with month (M); did you mean to … 118 …CHECK-MESSAGES: :[[@LINE-2]]:28: warning: use of week year (Y) with week of the month (W); did you… 127 … CHECK-MESSAGES: :[[@LINE-1]]:28: warning: use of week year (Y) with day of the year (D); did you … 137 … CHECK-MESSAGES: :[[@LINE-1]]:28: warning: use of week year (Y) with day of the year (D); did you … 151 …HECK-MESSAGES: :[[@LINE-1]]:28: warning: use of calendar year (y) with week of the year (w); did y… 156 …HECK-MESSAGES: :[[@LINE-1]]:28: warning: use of calendar year (y) with week of the year (w); did y… [all …]
|
/llvm-project/clang/test/SemaObjC/ |
H A D | arc-repeated-weak.mm | 1 …-has-weak -fobjc-arc -fblocks -Wno-objc-root-class -std=c++11 -Warc-repeated-use-of-weak -verify %s 2 …has-weak -fobjc-weak -fblocks -Wno-objc-root-class -std=c++11 -Warc-repeated-use-of-weak -verify %s 17 extern void use(id); function 23 …use(a.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times in this … 24 use(a.weakProp); // expected-note{{also accessed here}} 26 use(a.strongProp); 27 use(a.strongProp); // no-warning 29 use(a.weakProp); // expected-note{{also accessed here}} 33 use(a.weakProp); // no-warning 34 use(a.strongProp); // no-warning [all …]
|
/llvm-project/llvm/test/Transforms/InstCombine/ |
H A D | smax-icmp.ll | 235 declare void @use(i1 %c) 243 ; CHECK-NEXT: call void @use(i1 false) 245 ; CHECK-NEXT: call void @use(i1 [[CMP2]]) 247 ; CHECK-NEXT: call void @use(i1 [[CMP3]]) 248 ; CHECK-NEXT: call void @use(i1 true) 250 ; CHECK-NEXT: call void @use(i1 [[CMP5]]) 252 ; CHECK-NEXT: call void @use(i1 [[CMP6]]) 254 ; CHECK-NEXT: call void @use(i1 [[CMP7]]) 256 ; CHECK-NEXT: call void @use(i1 [[CMP8]]) 258 ; CHECK-NEXT: call void @use(i [all...] |
H A D | umin-icmp.ll | 235 declare void @use(i1 %c) 244 ; CHECK-NEXT: call void @use(i1 [[CMP1]]) 246 ; CHECK-NEXT: call void @use(i1 [[CMP2]]) 248 ; CHECK-NEXT: call void @use(i1 [[CMP3]]) 250 ; CHECK-NEXT: call void @use(i1 [[CMP4]]) 252 ; CHECK-NEXT: call void @use(i1 [[CMP5]]) 253 ; CHECK-NEXT: call void @use(i1 true) 254 ; CHECK-NEXT: call void @use(i1 false) 256 ; CHECK-NEXT: call void @use(i1 [[CMP8]]) 258 ; CHECK-NEXT: call void @use(i [all...] |
H A D | umax-icmp.ll | 235 declare void @use(i1 %c) 244 ; CHECK-NEXT: call void @use(i1 [[CMP1]]) 246 ; CHECK-NEXT: call void @use(i1 [[CMP2]]) 248 ; CHECK-NEXT: call void @use(i1 [[CMP3]]) 250 ; CHECK-NEXT: call void @use(i1 [[CMP4]]) 251 ; CHECK-NEXT: call void @use(i1 false) 253 ; CHECK-NEXT: call void @use(i1 [[CMP6]]) 255 ; CHECK-NEXT: call void @use(i1 [[CMP7]]) 256 ; CHECK-NEXT: call void @use(i1 true) 258 ; CHECK-NEXT: call void @use(i [all...] |
/llvm-project/clang/test/SemaCXX/ |
H A D | expressions.cpp | 43 return x && 4; // expected-warning {{use of logical '&&' with constant operand}} \ in test2() 44 // expected-note {{use '&' for a bitwise operation}} \ in test2() 53 return x && (unsigned)0; // expected-warning {{use of logical '&&' with constant operand}} \ in test2() 54 // expected-note {{use '&' for a bitwise operation}} \ in test2() 57 return x || (unsigned)1; // expected-warning {{use of logical '||' with constant operand}} \ in test2() 58 // expected-note {{use '|' for a bitwise operation}} in test2() 60 return x || 0; // expected-warning {{use of logical '||' with constant operand}} \ in test2() 61 // expected-note {{use '|' for a bitwise operation}} in test2() 62 return x || 1; // expected-warning {{use of logical '||' with constant operand}} \ in test2() 63 // expected-note {{use '|' for a bitwise operation}} in test2() [all …]
|