Home
last modified time | relevance | path

Searched refs:B (Results 1 – 25 of 5385) sorted by relevance

12345678910>>...216

/llvm-project-15.0.7/clang/test/CodeGen/X86/
H A Dsse2-builtins.c15 return _mm_add_epi8(A, B); in test_mm_add_epi8()
39 return _mm_add_pd(A, B); in test_mm_add_pd()
48 return _mm_add_sd(A, B); in test_mm_add_sd()
80 return _mm_and_pd(A, B); in test_mm_and_pd()
1396 _mm_store_pd(A, B); in test_mm_store_pd()
1410 _mm_store_sd(A, B); in test_mm_store_sd()
1430 _mm_storeh_pd(A, B); in test_mm_storeh_pd()
1444 _mm_storel_pd(A, B); in test_mm_storel_pd()
1451 _mm_storer_pd(B, A); in test_mm_storer_pd()
1458 _mm_storeu_pd(A, B); in test_mm_storeu_pd()
[all …]
H A Dgfni-builtins.c10 return _mm_gf2p8affineinv_epi64_epi8(A, B, 1); in test_mm_gf2p8affineinv_epi64_epi8()
16 return _mm_gf2p8affine_epi64_epi8(A, B, 1); in test_mm_gf2p8affine_epi64_epi8()
22 return _mm_gf2p8mul_epi8(A, B); in test_mm_gf2p8mul_epi8()
35 return _mm256_gf2p8affine_epi64_epi8(A, B, 1); in test_mm256_gf2p8affine_epi64_epi8()
41 return _mm256_gf2p8mul_epi8(A, B); in test_mm256_gf2p8mul_epi8()
97 return _mm512_gf2p8affine_epi64_epi8(A, B, 1); in test_mm512_gf2p8affine_epi64_epi8()
145 return _mm512_gf2p8mul_epi8(A, B); in test_mm512_gf2p8mul_epi8()
152 return _mm512_mask_gf2p8mul_epi8(S, U, A, B); in test_mm512_mask_gf2p8mul_epi8()
159 return _mm512_maskz_gf2p8mul_epi8(U, A, B); in test_mm512_maskz_gf2p8mul_epi8()
173 return _mm256_maskz_gf2p8mul_epi8(U, A, B); in test_mm256_maskz_gf2p8mul_epi8()
[all …]
H A Dsse-builtins.c12 return _mm_add_ps(A, B); in test_mm_add_ps()
21 return _mm_add_ss(A, B); in test_mm_add_ss()
27 return _mm_and_ps(A, B); in test_mm_and_ps()
34 return _mm_andnot_ps(A, B); in test_mm_andnot_ps()
322 return _mm_div_ps(A, B); in test_mm_div_ps()
331 return _mm_div_ss(A, B); in test_mm_div_ss()
437 return _mm_max_ps(A, B); in test_mm_max_ps()
443 return _mm_max_ss(A, B); in test_mm_max_ss()
449 return _mm_min_ps(A, B); in test_mm_min_ps()
501 return _mm_or_ps(A, B); in test_mm_or_ps()
[all …]
/llvm-project-15.0.7/flang/test/Semantics/
H A Dboz-literal-constants.f9046 resbit = BGE(B"0101", B"1111")
48 resbit = BLE(B"0101", B"1111")
49 resbit = BLT(B"0101", B"1111")
58 dbl = DSHIFTL(B"0101",B"0101",2)
65 resint = IAND(B"0001", B"0011")
68 resint = AND(B"0001", B"0011")
72 resint = IEOR(B"0001", B"0011")
75 resint = XOR(B"0001", B"0011")
81 res = IOR(B"0101", B"0011")
84 res = OR(B"0101", B"0011")
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dretaddr_multi_levels.ll14 ; CHECK-64B-LE-LABEL: test0:
16 ; CHECK-64B-LE-NEXT: mflr 0
23 ; CHECK-64B-LE-NEXT: blr
25 ; CHECK-64B-BE-LABEL: test0:
34 ; CHECK-64B-BE-NEXT: blr
36 ; CHECK-32B-BE-LABEL: test0:
45 ; CHECK-32B-BE-NEXT: blr
52 ; CHECK-64B-LE-LABEL: test1:
63 ; CHECK-64B-LE-NEXT: blr
76 ; CHECK-64B-BE-NEXT: blr
[all …]
/llvm-project-15.0.7/llvm/unittests/MC/
H A DStringTableBuilderTest.cpp22 B.add("foo"); in TEST()
23 B.add("bar"); in TEST()
26 B.finalize(); in TEST()
37 B.write(OS); in TEST()
53 B.finalize(); in TEST()
71 B.write(OS); in TEST()
98 B.write(OS); in TEST()
129 B.write(OS); in TEST()
142 B.add("f"); in TEST()
164 B.write(OS); in TEST()
[all …]
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-vbtables.cpp53 struct B { int b; }; struct
76 struct C : B { int c; };
90 struct C : B { int c; };
118 struct B { int b; }; argument
168 struct B { int b; }; argument
374 struct B { int b; }; argument
467 struct B { int b; }; argument
486 struct D : C, B {};
507 struct D : C, B {};
535 B() {} in B() function
[all …]
H A Dmicrosoft-abi-virtual-inheritance.cpp16 B();
17 virtual ~B();
22 B::B() { in B() function in B
53 B::~B() { in ~B()
220 B b; in call_complete_dtor()
242 struct B { struct
278 B();
279 ~B();
330 struct B : virtual A { B() {} }; in B() struct
400 struct B { struct
[all …]
H A Dvtable-layout.cpp125 struct B { struct
130 void B::f() { } in f()
164 struct B : A { struct
202 struct D : B {
234 struct B : A { struct
703 struct B { virtual ~B(); }; struct
1260 struct B { struct
1318 struct B { struct
1382 struct B { struct
1505 struct B { struct
[all …]
H A Dinheriting-constructor.cpp9 struct B : A { using A::A; ~B(); }; struct
10 B::~B() {} in ~B()
12 B b(123);
46 B b(1, 2, &b);
63 struct C : B { using B::B; };
76 B b(1, 2, &b);
92 struct C : B { using B::B; };
155 struct C : B { using B::B; };
244 struct C : B { using B::B; };
314 struct C : B { using B::B; };
[all …]
/llvm-project-15.0.7/lld/MachO/Arch/
H A DARM64_32.cpp44 {"UNSIGNED", B(UNSIGNED) | B(ABSOLUTE) | B(EXTERN) | B(LOCAL) | B(BYTE4)},
45 {"SUBTRACTOR", B(SUBTRAHEND) | B(EXTERN) | B(BYTE4)},
46 {"BRANCH26", B(PCREL) | B(EXTERN) | B(BRANCH) | B(BYTE4)},
47 {"PAGE21", B(PCREL) | B(EXTERN) | B(BYTE4)},
48 {"PAGEOFF12", B(ABSOLUTE) | B(EXTERN) | B(BYTE4)},
49 {"GOT_LOAD_PAGE21", B(PCREL) | B(EXTERN) | B(GOT) | B(BYTE4)},
51 B(ABSOLUTE) | B(EXTERN) | B(GOT) | B(LOAD) | B(BYTE4)},
52 {"POINTER_TO_GOT", B(PCREL) | B(EXTERN) | B(GOT) | B(POINTER) | B(BYTE4)},
53 {"TLVP_LOAD_PAGE21", B(PCREL) | B(EXTERN) | B(TLV) | B(BYTE4)},
55 B(ABSOLUTE) | B(EXTERN) | B(TLV) | B(LOAD) | B(BYTE4)},
[all …]
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPUAtomicOptimizer.cpp300 B.getInt32(0xf), B.getInt32(0xf), B.getFalse()})); in buildReduction()
309 {V, V, B.getInt32(-1), B.getInt32(-1), B.getFalse(), B.getFalse()})); in buildReduction()
343 B.getInt32(0xf), B.getInt32(0xf), B.getFalse()})); in buildScan()
366 {V, V, B.getInt32(-1), B.getInt32(-1), B.getFalse(), B.getFalse()}); in buildScan()
371 B.getInt32(0xa), B.getInt32(0xf), B.getFalse()})); in buildScan()
380 B.getInt32(0xc), B.getInt32(0xf), B.getFalse()})); in buildScan()
411 B.getInt32(0xf), B.getInt32(0xf), B.getFalse()}); in buildShiftRight()
414 V = B.CreateCall(WriteLane, {B.CreateCall(ReadLane, {Old, B.getInt32(15)}), in buildShiftRight()
421 {B.CreateCall(ReadLane, {Old, B.getInt32(31)}), B.getInt32(32), V}); in buildShiftRight()
426 {B.CreateCall(ReadLane, {Old, B.getInt32(47)}), B.getInt32(48), V}); in buildShiftRight()
[all …]
H A DAMDGPULegalizerInfo.h47 MachineIRBuilder &B) const;
49 MachineIRBuilder &B) const;
51 MachineIRBuilder &B) const;
67 MachineIRBuilder &B) const;
78 MachineIRBuilder &B) const;
87 MachineIRBuilder &B) const;
133 MachineIRBuilder &B) const;
135 MachineIRBuilder &B) const;
137 MachineIRBuilder &B) const;
139 MachineIRBuilder &B) const;
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Transforms/Utils/
H A DSimplifyLibCalls.h51 Value *optimizeCall(CallInst *CI, IRBuilderBase &B);
151 Value *optimizeCall(CallInst *CI, IRBuilderBase &B);
175 Value *optimizeBCmp(CallInst *CI, IRBuilderBase &B);
189 Value *optimizeCAbs(CallInst *CI, IRBuilderBase &B);
190 Value *optimizePow(CallInst *CI, IRBuilderBase &B);
195 Value *optimizeLog(CallInst *CI, IRBuilderBase &B);
198 Value *optimizeTan(CallInst *CI, IRBuilderBase &B);
204 Value *optimizeFFS(CallInst *CI, IRBuilderBase &B);
205 Value *optimizeFls(CallInst *CI, IRBuilderBase &B);
206 Value *optimizeAbs(CallInst *CI, IRBuilderBase &B);
[all …]
/llvm-project-15.0.7/clang/test/Analysis/
H A Ddynamic-cast.cpp26 B *b = dynamic_cast<B*>(a); in testDynCastFromRadar()
39 B *pbb = dynamic_cast<B*>(pb); in testBaseToBase1()
54 B *b = dynamic_cast<B*>(pa); in testMultipleLevelsOfSubclassing1()
68 B *b = dynamic_cast<B*>(pbb); in testMultipleLevelsOfSubclassing2()
83 B *b = dynamic_cast<B*>(pbb); in testMultipleLevelsOfSubclassing3()
100 B *b = dynamic_cast<B*>(a); in testDynCastUnknown2()
105 B *b = dynamic_cast<B*>(a); in testDynCastUnknown()
119 B *b = dynamic_cast<B*>(pa); in testDynCastFail2()
131 B *b = dynamic_cast<B*>(&a); in testBaseToDerivedFail()
142 B *b = dynamic_cast<B*>(a); in testConstZeroFail2()
[all …]
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Duse-auto-cast-remove-stars.cpp37 B *b1 = static_cast<B *>(a); in f_static_cast()
41 B *const b2 = static_cast<B *>(a); in f_static_cast()
45 const B *b3 = static_cast<const B *>(a); in f_static_cast()
49 B &b4 = static_cast<B &>(*a); in f_static_cast()
53 const B &b5 = static_cast<const B &>(*a); in f_static_cast()
57 B &b6 = static_cast<B &>(*a), &b7 = static_cast<B &>(*a); in f_static_cast()
72 B *b1 = dynamic_cast<B *>(a); in f_dynamic_cast()
76 B &b2 = dynamic_cast<B &>(*a); in f_dynamic_cast()
185 B *b1 = template_value_cast<B *>(a); in f_template_cast()
188 B &b2 = template_value_cast<B &>(*a); in f_template_cast()
[all …]
H A Duse-auto-cast.cpp37 B *b1 = static_cast<B *>(a); in f_static_cast()
41 B *const b2 = static_cast<B *>(a); in f_static_cast()
45 const B *b3 = static_cast<const B *>(a); in f_static_cast()
49 B &b4 = static_cast<B &>(*a); in f_static_cast()
53 const B &b5 = static_cast<const B &>(*a); in f_static_cast()
57 B &b6 = static_cast<B &>(*a), &b7 = static_cast<B &>(*a); in f_static_cast()
72 B *b1 = dynamic_cast<B *>(a); in f_dynamic_cast()
76 B &b2 = dynamic_cast<B &>(*a); in f_dynamic_cast()
185 B *b1 = template_value_cast<B *>(a); in f_template_cast()
188 B &b2 = template_value_cast<B &>(*a); in f_template_cast()
[all …]
/llvm-project-15.0.7/clang/test/CXX/class/class.mem/
H A Dp13.cpp72 struct B { struct
89 struct D0 : B { using B::D0; }; // expected-error {{member 'D0' has the same name as its class}} argument
90 struct Da : B { using B::Da; }; // expected-error {{member 'Da' has the same name as its class}}
91 struct D1 : B { using B::D1; }; // expected-error {{member 'D1' has the same name as its class}}
92 struct D1a : B { using B::D1a; }; // expected-error {{member 'D1a' has the same name as its class}}
93 struct D2 : B { using B::D2; }; // expected-error {{member 'D2' has the same name as its class}}
99 struct D4 : B { using B::D4; }; // expected-error {{member 'D4' has the same name as its class}}
101 template<typename B> struct Dtemplate : B {
104 Dtemplate<B> ok;
107 template<typename B> struct Dtemplate_with_ctors : B {
[all …]
/llvm-project-15.0.7/clang/test/CXX/except/except.spec/
H A Dp11-2a.cpp40 B b;
91 DEF(B() <=> B());
92 static_assert(!noexcept(B() <=> B()));
184 friend bool operator==(B, B) noexcept;
187 friend int operator<=>(B, B) noexcept;
188 friend bool operator<(B, B) = default;
193 bool operator!=(B, B) noexcept;
194 bool operator<(B, B) noexcept;
195 bool operator<=(B, B) noexcept;
196 bool operator>(B, B) noexcept;
[all …]
/llvm-project-15.0.7/clang/test/CXX/class/class.compare/class.compare.default/
H A Dp1.cpp3 struct B {}; struct
61 struct B { in f() struct
65 return B(); in f()
72 struct B { in g() struct
76 return B(); in g()
80 struct B; in h()
81 bool operator==(const B&, const B&); in h()
83 std::strong_ordering operator<=>(const B&, const B&); in h()
89 struct B { in h() struct
144 struct B { struct
[all …]
/llvm-project-15.0.7/llvm/unittests/Analysis/
H A DMemorySSATest.cpp87 B.CreateCondBr(B.getTrue(), Left, Right); in TEST_F()
90 B.CreateStore(B.getInt8(16), PointerArg); in TEST_F()
125 B.CreateCondBr(B.getTrue(), Left, Right); in TEST_F()
215 B.CreateCondBr(B.getTrue(), Left, Right); in TEST_F()
317 B.CreateLoad(B.getInt8Ty(), PointerArg); in TEST_F()
1239 Value *Bar = B.CreateGEP(B.getInt8Ty(), Foo, B.getInt64(1), "bar"); in TEST_F()
1240 Value *Baz = B.CreateGEP(B.getInt8Ty(), Foo, B.getInt64(2), "baz"); in TEST_F()
1242 B.CreateStore(B.getInt8(0), Foo); in TEST_F()
1243 B.CreateStore(B.getInt8(0), Bar); in TEST_F()
1618 Value *Pointer2 = B.CreateGEP(B.getInt8Ty(), Pointer1, B.getInt64(1)); in TEST_F()
[all …]
/llvm-project-15.0.7/llvm/tools/llvm-xray/
H A Dxray-graph.h168 return {A.Count + B.Count, A.Min + B.Min, A.Median + B.Median,
169 A.Pct90 + B.Pct90, A.Pct99 + B.Pct99, A.Max + B.Max,
177 return {A.Count - B.Count, A.Min - B.Min, A.Median - B.Median,
178 A.Pct90 - B.Pct90, A.Pct99 - B.Pct99, A.Max - B.Max,
187 A.Min / B,
191 A.Max / B,
210 return B * A;
216 return {A.Count * B.Count, A.Min * B.Min, A.Median * B.Median,
217 A.Pct90 * B.Pct90, A.Pct99 * B.Pct99, A.Max * B.Max,
224 return {A.Count / B.Count, A.Min / B.Min, A.Median / B.Median,
[all …]
/llvm-project-15.0.7/lldb/unittests/Utility/
H A DArchSpecTest.cpp150 A.MergeFrom(B); in TEST()
176 A.MergeFrom(B); in TEST()
196 ArchSpec A, B; in TEST() local
212 A.MergeFrom(B); in TEST()
246 A.MergeFrom(B); in TEST()
270 MyArchSpec B; in TEST() local
272 A.MergeFrom(B); in TEST()
381 A.MergeFrom(B); in TEST()
387 ArchSpec C(B); in TEST()
389 B.MergeFrom(A); in TEST()
[all …]
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Deasily-swappable-parameters-relatedness.cpp41 if (B) in decideSequence()
50 return A < B ? A : B; in myMax()
54 if (A < B) in myMax2()
56 return B; in myMax2()
77 return B; in randomReturn2()
86 return B; in randomReturn3()
95 g(B); in passthrough1()
103 f(B); in passthrough2()
108 h(1, B); in passthrough3()
113 h(B, 2); in passthrough4()
[all …]
/llvm-project-15.0.7/clang/test/CXX/class/class.compare/class.rel/
H A Dp2.cpp23 struct B { struct
25 …friend bool operator<(const B&, const B&) = default; // expected-warning {{implicitly deleted}} ex…
26 …friend bool operator<=(const B&, const B&) = default; // expected-warning {{implicitly deleted}} e…
30 bool b1 = B() < B(); // expected-error {{deleted}}
31 bool b2 = B() <= B(); // expected-error {{deleted}}
32 bool b3 = B() > B(); // expected-error {{deleted}}
33 bool b4 = B() >= B(); // expected-error {{deleted}}
54 struct B { struct
58 bool b = B() != B(); // expected-error {{deleted}}
80 struct B : A { struct
[all …]

12345678910>>...216