Home
last modified time | relevance | path

Searched refs:V2 (Results 1 – 25 of 446) sorted by relevance

12345678910>>...18

/llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/
H A Dtrap-abis.ll19 ; NOHSA-TRAP-GFX900-V2-LABEL: trap:
20 ; NOHSA-TRAP-GFX900-V2: ; %bb.0:
27 ; NOHSA-TRAP-GFX900-V2-NEXT: s_endpgm
49 ; HSA-TRAP-GFX803-V2-LABEL: trap:
63 ; HSA-TRAP-GFX803-V2-NEXT: priv = 0
118 ; HSA-TRAP-GFX803-V2-NEXT: ; %bb.0:
127 ; HSA-TRAP-GFX803-V2-NEXT: s_trap 2
153 ; HSA-TRAP-GFX900-V2-LABEL: trap:
222 ; HSA-TRAP-GFX900-V2-NEXT: ; %bb.0:
253 ; HSA-NOTRAP-GFX900-V2-LABEL: trap:
[all …]
H A Dllvm.amdgcn.workgroup.id.ll14 ; CO-V2: .amd_kernel_code_t
15 ; CO-V2: user_sgpr_count = 6
16 ; CO-V2: enable_sgpr_workgroup_id_x = 1
17 ; CO-V2: enable_sgpr_workgroup_id_y = 0
20 ; CO-V2: enable_vgpr_workitem_id = 0
24 ; CO-V2: .end_amd_kernel_code_t
44 ; CO-V2: user_sgpr_count = 6
71 ; CO-V2: user_sgpr_count = 6
76 ; CO-V2: enable_vgpr_workitem_id = 0
79 ; CO-V2: enable_sgpr_queue_ptr = 0
[all …]
H A Dflat-scratch-reg.ll27 ; HSA-CI-V2: is_xnack_enabled = 0
28 ; HSA-VI-XNACK-V2: is_xnack_enabled = 1
47 ; HSA-CI-V2: is_xnack_enabled = 0
48 ; HSA-VI-XNACK-V2: is_xnack_enabled = 1
67 ; HSA-CI-V2: is_xnack_enabled = 0
68 ; HSA-VI-XNACK-V2: is_xnack_enabled = 1
87 ; HSA-CI-V2: is_xnack_enabled = 0
88 ; HSA-VI-XNACK-V2: is_xnack_enabled = 1
110 ; HSA-CI-V2: is_xnack_enabled = 0
130 ; HSA-CI-V2: is_xnack_enabled = 0
[all …]
H A Dllvm.amdgcn.workitem.id.ll5 …wn-mesa3d -mcpu=hawaii -verify-machineinstrs < %s | FileCheck -check-prefixes=ALL,CO-V2,UNPACKED %s
19 ; CO-V2: enable_vgpr_workitem_id = 0
36 ; CO-V2: enable_vgpr_workitem_id = 1
37 ; CO-V2-NOT: v1
38 ; CO-V2: {{buffer|flat}}_store_dword {{.*}}v1
54 ; CO-V2: enable_vgpr_workitem_id = 2
55 ; CO-V2-NOT: v2
56 ; CO-V2: {{buffer|flat}}_store_dword {{.*}}v2
69 ; CO-V2: enable_vgpr_workitem_id = 0
90 ; CO-V2: enable_vgpr_workitem_id = 1
[all …]
H A Dllvm.amdgcn.kernarg.segment.ptr.ll2 ; RUN: llc -mtriple=amdgcn-mesa-mesa3d -verify-machineinstrs < %s | FileCheck -check-prefixes=CO-V2
6 ; CO-V2: enable_sgpr_kernarg_segment_ptr = 1
10 ; CO-V2: s_load_dword s{{[0-9]+}}, s[4:5], 0xa
25 ; CO-V2: kernarg_segment_alignment = 4
41 ; CO-V2: kernarg_segment_alignment = 4
61 ; CO-V2: kernarg_segment_alignment = 4
79 ; CO-V2: enable_sgpr_kernarg_segment_ptr = 0
80 ; CO-V2: kernarg_segment_byte_size = 0
82 ; CO-V2: kernarg_segment_alignment = 4
98 ; CO-V2: kernarg_segment_alignment = 4
[all …]
/llvm-project-15.0.7/clang/test/Analysis/
H A Dmismatched-iterator.cpp14 void good_insert3(std::vector<int> &V1, std::vector<int> &V2) { in good_insert3() argument
15 V1.insert(V1.cbegin(), V2.cbegin(), V2.cend()); // no-warning in good_insert3()
48 std::find_first_of(V1.cbegin(), V1.cend(), V2.cbegin(), V2.cend()); // no-warning in good_find_first_of()
52 std::copy(V1.cbegin(), V1.cend(), V2.begin()); // no-warning in good_copy()
64V2.insert(V1.cbegin(), V2.cbegin(), V2.cend()); // expected-warning{{Container accessed using fore… in bad_insert3()
78V2.erase(V2.cbegin(), V1.cend()); // expected-warning{{Container accessed using foreign iterator a… in bad_erase2()
79V2.erase(V1.cbegin(), V2.cend()); // expected-warning{{Container accessed using foreign iterator a… in bad_erase2()
95 void bad_ctor(std::vector<int> &V1, std::vector<int> &V2) { in bad_ctor() argument
104 …std::find_first_of(V1.cbegin(), V2.cend(), V2.cbegin(), V2.cend()); // expected-warning{{Iterators… in bad_find_first_of()
113 V2.erase(V1.cbegin()); // no-warning in ignore_conjured1()
[all …]
H A Dptr-sort.cpp12 std::vector<int *> V2 = {&a, &b}; in PointerSorting() local
22 …std::is_sorted(V2.begin(), V2.end()); // expected-warning {{Sorting pointer-like elements can resu… in PointerSorting()
24 …std::nth_element(V2.begin(), V2.begin() + 1, V2.end()); // expected-warning {{Sorting pointer-like… in PointerSorting()
26 …std::partial_sort(V2.begin(), V2.begin() + 1, V2.end()); // expected-warning {{Sorting pointer-lik… in PointerSorting()
28 …std::sort(V2.begin(), V2.end()); // expected-warning {{Sorting pointer-like elements can result in… in PointerSorting()
30 …std::stable_sort(V2.begin(), V2.end()); // expected-warning {{Sorting pointer-like elements can re… in PointerSorting()
32 …std::partition(V2.begin(), V2.end(), f); // expected-warning {{Sorting pointer-like elements can r… in PointerSorting()
34 …std::stable_partition(V2.begin(), V2.end(), g); // expected-warning {{Sorting pointer-like element… in PointerSorting()
H A Dcontainer-modeling.cpp43 void move_assignment(std::vector<int> &V1, std::vector<int> &V2) { in move_assignment() argument
46 V2.cbegin(); in move_assignment()
47 V2.cend(); in move_assignment()
50 long B2 = clang_analyzer_container_begin(V2); in move_assignment()
51 long E2 = clang_analyzer_container_end(V2); in move_assignment()
52 V1 = std::move(V2); in move_assignment()
213 V2.cbegin(); in push_back1()
214 V2.cend(); in push_back1()
218 V2.push_back(n); // no-note in push_back1()
227 V2.cbegin(); in push_back2()
[all …]
H A Dstl-algorithm-modeling-aggressive-std-find-modeling.cpp148 const auto i3 = return_any_iterator(V2.begin()); in test_find_first_of1()
149 const auto i4 = return_any_iterator(V2.begin()); in test_find_first_of1()
171 const auto i3 = return_any_iterator(V2.begin()); in test_find_first_of2()
172 const auto i4 = return_any_iterator(V2.begin()); in test_find_first_of2()
195 const auto i3 = return_any_iterator(V2.begin()); in test_find_first_of3()
196 const auto i4 = return_any_iterator(V2.begin()); in test_find_first_of3()
218 const auto i3 = return_any_iterator(V2.begin()); in test_find_first_of4()
219 const auto i4 = return_any_iterator(V2.begin()); in test_find_first_of4()
242 const auto i3 = return_any_iterator(V2.begin()); in test_find_end1()
243 const auto i4 = return_any_iterator(V2.begin()); in test_find_end1()
[all …]
H A Dstl-algorithm-modeling.cpp135 const auto i3 = return_any_iterator(V2.begin()); in test_find_first_of1()
136 const auto i4 = return_any_iterator(V2.begin()); in test_find_first_of1()
156 const auto i3 = return_any_iterator(V2.begin()); in test_find_first_of2()
157 const auto i4 = return_any_iterator(V2.begin()); in test_find_first_of2()
178 const auto i3 = return_any_iterator(V2.begin()); in test_find_first_of3()
179 const auto i4 = return_any_iterator(V2.begin()); in test_find_first_of3()
199 const auto i3 = return_any_iterator(V2.begin()); in test_find_first_of4()
200 const auto i4 = return_any_iterator(V2.begin()); in test_find_first_of4()
221 const auto i3 = return_any_iterator(V2.begin()); in test_find_end1()
222 const auto i4 = return_any_iterator(V2.begin()); in test_find_end1()
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/GlobalISel/
H A Dllvm.amdgcn.workgroup.id.ll14 ; CO-V2: .amd_kernel_code_t
15 ; CO-V2: user_sgpr_count = 6
16 ; CO-V2: enable_sgpr_workgroup_id_x = 1
17 ; CO-V2: enable_sgpr_workgroup_id_y = 0
20 ; CO-V2: enable_vgpr_workitem_id = 0
24 ; CO-V2: .end_amd_kernel_code_t
44 ; CO-V2: user_sgpr_count = 6
71 ; CO-V2: user_sgpr_count = 6
76 ; CO-V2: enable_vgpr_workitem_id = 0
79 ; CO-V2: enable_sgpr_queue_ptr = 0
[all …]
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DTinyPtrVectorTest.cpp42 VectorT V2; member in __anon7f0b6eb10111::TinyPtrVectorTest
68 V2.clear(); in setVectors()
174 this->V = this->V2; in TYPED_TEST()
181 this->V = this->V2; in TYPED_TEST()
189 this->V = this->V2; in TYPED_TEST()
197 this->V = this->V2; in TYPED_TEST()
205 this->V = this->V2; in TYPED_TEST()
213 this->V = this->V2; in TYPED_TEST()
221 this->V = this->V2; in TYPED_TEST()
229 this->V = this->V2; in TYPED_TEST()
[all …]
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp257 return &getValue( V1 * V2 ); in evalAPSInt()
262 return &getValue( V1 / V2 ); in evalAPSInt()
267 return &getValue( V1 % V2 ); in evalAPSInt()
270 return &getValue( V1 + V2 ); in evalAPSInt()
273 return &getValue( V1 - V2 ); in evalAPSInt()
279 if (V2.isSigned() && V2.isNegative()) in evalAPSInt()
302 if (V2.isSigned() && V2.isNegative()) in evalAPSInt()
334 return &getValue( V1 & V2 ); in evalAPSInt()
337 return &getValue( V1 | V2 ); in evalAPSInt()
340 return &getValue( V1 ^ V2 ); in evalAPSInt()
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/Thumb2/
H A Dthumb2-ifcvt1.ll49 ; V2-LABEL: t2:
51 ; V2-NEXT: cmp r0, r1
52 ; V2-NEXT: it eq
53 ; V2-NEXT: bxeq lr
56 ; V2-NEXT: cmp r0, r1
57 ; V2-NEXT: ite gt
60 ; V2-NEXT: cmp r1, r0
63 ; V2-NEXT: bx lr
140 ; V2-NEXT: it eq
141 ; V2-NEXT: bxeq lr
[all …]
/llvm-project-15.0.7/llvm/test/Object/
H A Dnm-tapi.test5 RUN: | FileCheck %s -check-prefix V2
22 V2-NEXT: 00000000 S _sym1
23 V2-NEXT: 00000000 S _sym2
24 V2-NEXT: 00000000 S _sym3
26 V2-NEXT: 00000000 S _sym1
27 V2-NEXT: 00000000 S _sym2
28 V2-NEXT: 00000000 S _sym3
30 V2-NEXT: U _sym
31 V2-NEXT: 0000000000000000 S _sym1
32 V2-NEXT: 0000000000000000 S _sym2
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dvec_perf_shuffle.ll7 %V2 = load <4 x float>, <4 x float>* %P2 ; <<4 x float>> [#uses=1]
8 …%V3 = shufflevector <4 x float> %V1, <4 x float> %V2, <4 x i32> < i32 undef, i32 undef, i32 7, i32…
14 %V2 = load <4 x float>, <4 x float>* %P2 ; <<4 x float>> [#uses=1]
15 …%V3 = shufflevector <4 x float> %V1, <4 x float> %V2, <4 x i32> < i32 3, i32 0, i32 undef, i32 5 >…
21 %V2 = load <4 x float>, <4 x float>* %P2 ; <<4 x float>> [#uses=1]
22 …%V3 = shufflevector <4 x float> %V1, <4 x float> %V2, <4 x i32> < i32 3, i32 undef, i32 7, i32 3 >…
28 %V2 = load <4 x float>, <4 x float>* %P2 ; <<4 x float>> [#uses=1]
29 …%V3 = shufflevector <4 x float> %V1, <4 x float> %V2, <4 x i32> < i32 3, i32 7, i32 7, i32 4 > ; …
35 %V2 = load <4 x float>, <4 x float>* %P2 ; <<4 x float>> [#uses=1]
36 …%V3 = shufflevector <4 x float> %V1, <4 x float> %V2, <4 x i32> < i32 4, i32 4, i32 5, i32 0 > ; …
/llvm-project-15.0.7/llvm/test/CodeGen/BPF/
H A Dsetcc.ll12 ; CHECK-V2: if r1 == 0
22 ; CHECK-V2: if r1 != 0
31 ; CHECK-V2: if r1 != r2
40 ; CHECK-V2: if r1 == r2
49 ; CHECK-V2: if r1 > r2
58 ; CHECK-V2: if r1 >= r2
67 ; CHECK-V2: if r1 < r2
76 ; CHECK-V2: if r1 <= r2
85 ; CHECK-V2: if r1 s> r2
94 ; CHECK-V2: if r1 s>= r2
[all …]
/llvm-project-15.0.7/lldb/unittests/Utility/
H A DRangeMapTest.cpp45 RangeVector V2; in TEST() local
49 V2.Append(0, 1); in TEST()
54 V2.Append(4, 1); in TEST()
58 V2.Append(10, 3); in TEST()
63 V2.Append(20, 8); in TEST()
68 V2.Append(30, 5); in TEST()
73 V2.Append(40, 7); in TEST()
78 V2.Append(51, 7); in TEST()
83 V2.Append(60, 3); in TEST()
84 V2.Append(65, 3); in TEST()
[all …]
/llvm-project-15.0.7/llvm/test/MC/AArch64/
H A Darmv8a-fpmul.s13 FMLAL V0.2S, V1.2H, V2.2H
14 FMLSL V0.2S, V1.2H, V2.2H
15 FMLAL V0.4S, V1.4H, V2.4H
16 FMLSL V0.4S, V1.4H, V2.4H
17 FMLAL2 V0.2S, V1.2H, V2.2H
18 FMLSL2 V0.2S, V1.2H, V2.2H
19 FMLAL2 V0.4S, V1.4H, V2.4H
20 FMLSL2 V0.4S, V1.4H, V2.4H
/llvm-project-15.0.7/llvm/test/CodeGen/Hexagon/autohvx/
H A Dwiden-ext.ll7 ; CHECK: v[[V1:[0-9]+]]:[[V2:[0-9]+]].h = vunpack(v[[V0]].b)
9 ; CHECK: if (q[[Q0]]) vmem(r1+#0) = v[[V2]]
20 ; CHECK: v[[V1:[0-9]+]]:[[V2:[0-9]+]].h = vunpack(v[[V0]].b)
21 ; CHECK: v[[V3:[0-9]+]]:[[V4:[0-9]+]].w = vunpack(v[[V2]].h)
33 ; CHECK: v[[V1:[0-9]+]]:[[V2:[0-9]+]].h = vunpack(v[[V0]].b)
34 ; CHECK: vmem(r1+#0) = v[[V2]]
45 ; CHECK: v[[V1:[0-9]+]]:[[V2:[0-9]+]].h = vunpack(v[[V0]].b)
60 ; CHECK: v[[V1:[0-9]+]]:[[V2:[0-9]+]].w = vunpack(v[[V0]].h)
62 ; CHECK: if (q[[Q0]]) vmem(r1+#0) = v[[V2]]
73 ; CHECK: v[[V1:[0-9]+]]:[[V2:[0-9]+]].w = vunpack(v[[V0]].h)
[all …]
/llvm-project-15.0.7/llvm/test/Transforms/InstCombine/
H A Dcall-guard.ll53 %B = icmp slt i32 %V2, 0
68 ; CHECK-NEXT: [[B:%.*]] = icmp slt i32 [[V2]], 0
74 %V2 = load i32, i32* %P
75 %B = icmp slt i32 %V2, 0
90 %V2 = load i32, i32* %P
91 %B = icmp slt i32 %V2, 0
102 ; CHECK-NEXT: [[B:%.*]] = icmp slt i32 [[V2]], 0
108 %V2 = udiv i32 %V1, %D
109 %B = icmp slt i32 %V2, 0
128 %V2 = add i32 %a, %b
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dfp_load_cast_fold.ll5 %V2 = sitofp i16 %V to double ; <double> [#uses=1]
6 ret double %V2
11 %V2 = sitofp i32 %V to double ; <double> [#uses=1]
12 ret double %V2
17 %V2 = sitofp i64 %V to double ; <double> [#uses=1]
18 ret double %V2
/llvm-project-15.0.7/clang/test/CodeGen/X86/
H A Dsse41-builtins.c11 __m128i test_mm_blend_epi16(__m128i V1, __m128i V2) { in test_mm_blend_epi16() argument
14 return _mm_blend_epi16(V1, V2, 42); in test_mm_blend_epi16()
17 __m128d test_mm_blend_pd(__m128d V1, __m128d V2) { in test_mm_blend_pd() argument
20 return _mm_blend_pd(V1, V2, 2); in test_mm_blend_pd()
23 __m128 test_mm_blend_ps(__m128 V1, __m128 V2) { in test_mm_blend_ps() argument
26 return _mm_blend_ps(V1, V2, 6); in test_mm_blend_ps()
32 return _mm_blendv_epi8(V1, V2, V3); in test_mm_blendv_epi8()
35 __m128d test_mm_blendv_pd(__m128d V1, __m128d V2, __m128d V3) { in test_mm_blendv_pd() argument
38 return _mm_blendv_pd(V1, V2, V3); in test_mm_blendv_pd()
41 __m128 test_mm_blendv_ps(__m128 V1, __m128 V2, __m128 V3) { in test_mm_blendv_ps() argument
[all …]
/llvm-project-15.0.7/lld/test/COFF/
H A Dpdb-globals-dia-vfunc-simple.test7 ; virtual int V2() { return 42; }
11 ; int V2() override { return 42; }
17 ; return D.V2();
25 CHECK: func [0x00001070+ 0 - 0x0000107c-12 | sizeof= 12] (FPO) virtual {{.*}}V2()
26 CHECK: func [0x000010a0+ 0 - 0x000010ac-12 | sizeof= 12] (FPO) virtual {{.*}}V2()
/llvm-project-15.0.7/libcxx/test/std/ranges/range.req/range.view/
H A Denable_view.compile.pass.cpp80 struct V2 : std::ranges::view_interface<V1>, std::ranges::view_interface<V2> {}; struct
81 static_assert(!std::ranges::enable_view<V2>);
82 static_assert(!std::ranges::enable_view<V2&>);
83 static_assert(!std::ranges::enable_view<V2&&>);
84 static_assert(!std::ranges::enable_view<const V2>);
85 static_assert(!std::ranges::enable_view<const V2&>);
86 static_assert(!std::ranges::enable_view<const V2&&>);

12345678910>>...18