| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/ |
| H A D | pass-by-value.cpp | 25 A(const Movable &M) : M(M) {} in A() 42 C(const Movable &M) : M(M) { this->i = M.a; } in C() 46 C(const Movable &M, int) : M(M), i(M.a) {} in C() 58 D::D(const Movable &M) : M(M) {} in D() argument 83 G::G(const Movable &M) : M(M) {} in G() argument 97 H::H(const HMovable &M) : M(M) {} in H() argument 105 I(MOVABLE_PARAM(M)) : M(M) {} in I() 114 J(const T &M) : M(M) {} in J() 176 O(Movable M) : M(M) {} in O() 217 S(Movable &&M) : M(M) {} in S() [all …]
|
| /llvm-project-15.0.7/llvm/test/CodeGen/ARM/ |
| H A D | cmse-clear-float.ll | 3 ; RUN: FileCheck %s --check-prefix=CHECK-8M --check-prefix=CHECK-8M-LE 5 ; RUN: FileCheck %s --check-prefix=CHECK-8M --check-prefix=CHECK-8M-BE 8 ; RUN: FileCheck %s --check-prefix=CHECK-81M --check-prefix=CHECK-81M-LE 10 ; RUN: FileCheck %s --check-prefix=CHECK-81M --check-prefix=CHECK-81M-BE 12 ; RUN: FileCheck %s --check-prefix=CHECK-81M --check-prefix=CHECK-81M-LE 14 ; RUN: FileCheck %s --check-prefix=CHECK-81M --check-prefix=CHECK-81M-BE 17 ; CHECK-8M-LABEL: f1: 49 ; CHECK-81M-LABEL: f1: 192 ; CHECK-8M-LABEL: f2: 220 ; CHECK-81M-LABEL: f2: [all …]
|
| H A D | cmse-clear-float-hard.ll | 3 ; RUN: FileCheck %s --check-prefix=CHECK-8M --check-prefix=CHECK-8M-LE 5 ; RUN: FileCheck %s --check-prefix=CHECK-8M --check-prefix=CHECK-8M-BE 16 ; CHECK-8M-LABEL: f1: 20 ; CHECK-8M-NEXT: blx r0 47 ; CHECK-81M-LABEL: f1: 69 ; CHECK-8M-LE-LABEL: d1: 182 ; CHECK-8M-LABEL: f2: 216 ; CHECK-81M-LABEL: f2: 363 ; CHECK-8M-LABEL: f3: 544 ; CHECK-8M-LABEL: f4: [all …]
|
| H A D | cmse-clear.ll | 44 ; CHECK-8M-SOFT-LABEL: ns_entry: 49 ; CHECK-8M-SOFT-NEXT: blx r1 56 ; CHECK-8M-SOFT-NEXT: bxns lr 58 ; CHECK-8M-SOFTFP-LABEL: ns_entry: 63 ; CHECK-8M-SOFTFP-NEXT: blx r1 89 ; CHECK-81M-SOFT-LABEL: ns_entry: 96 ; CHECK-81M-SOFT-NEXT: blx r1 102 ; CHECK-81M-SOFT-NEXT: bxns lr 162 ; CHECK-8M-SOFT-LABEL: ns_call: 216 ; CHECK-81M-SOFT-LABEL: ns_call: [all …]
|
| H A D | cmse-cve-2021-35465.ll | 40 ; CHECK-8M-FP-CVE-2021-35465: @ %bb.0: 45 ; CHECK-8M-FP-CVE-2021-35465-NEXT: vlstm sp 59 ; CHECK-8M-FP-CVE-2021-35465-NEXT: blxns r0 62 ; CHECK-8M-FP-CVE-2021-35465-NEXT: it ne 64 ; CHECK-8M-FP-CVE-2021-35465-NEXT: vlldm sp 92 ; CHECK-8M-NOFP-CVE-2021-35465-NEXT: it ne 93 ; CHECK-8M-NOFP-CVE-2021-35465-NEXT: @APP 102 ; CHECK-81M-CVE-2021-35465: @ %bb.0: 107 ; CHECK-81M-CVE-2021-35465-NEXT: vlstm sp 109 ; CHECK-81M-CVE-2021-35465-NEXT: blxns r0 [all …]
|
| H A D | cmse.ll | 59 ; CHECK-8M-LABEL: func1: 90 ; CHECK-8M-NEXT: bxns lr 92 ; CHECK-81M-LABEL: func1: 154 ; CHECK-8M-LABEL: func2: 180 ; CHECK-81M-LABEL: func2: 212 ; CHECK-8M-LABEL: func3: 222 ; CHECK-81M-LABEL: func3: 249 ; CHECK-8M-LABEL: func4: 262 ; CHECK-81M-LABEL: func4: 307 ; CHECK-8M-LABEL: func5: [all …]
|
| H A D | cmse-cve-2021-35465-return.ll | 10 ; CHECK-8M-FP-CVE-2021-35465-LABEL: func: 13 ; CHECK-8M-FP-CVE-2021-35465-NEXT: mov lr, r3 14 ; CHECK-8M-FP-CVE-2021-35465-NEXT: mov r12, r0 15 ; CHECK-8M-FP-CVE-2021-35465-NEXT: mov r0, r1 16 ; CHECK-8M-FP-CVE-2021-35465-NEXT: mov r1, r2 18 ; CHECK-8M-FP-CVE-2021-35465-NEXT: mov r2, lr 22 ; CHECK-8M-FP-CVE-2021-35465-NEXT: vmov r4, s5 28 ; CHECK-8M-FP-CVE-2021-35465-NEXT: vlstm sp 44 ; CHECK-8M-FP-CVE-2021-35465-NEXT: blxns r12 55 ; CHECK-8M-FP-CVE-2021-35465-NEXT: it ne [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/Analysis/ |
| H A D | InlineModelFeatureMaps.h | 24 #define INLINE_COST_FEATURE_ITERATOR(M) \ argument 25 M(SROASavings, "sroa_savings") \ 26 M(SROALosses, "sroa_losses") \ 27 M(LoadElimination, "load_elimination") \ 28 M(CallPenalty, "call_penalty") \ 29 M(CallArgumentSetup, "call_argument_setup") \ 30 M(LoadRelativeIntrinsic, "load_relative_intrinsic") \ 31 M(LoweredCallArgSetup, "lowered_call_arg_setup") \ 32 M(IndirectCallPenalty, "indirect_call_penalty") \ 33 M(JumpTablePenalty, "jump_table_penalty") \ [all …]
|
| /llvm-project-15.0.7/clang/lib/Headers/ |
| H A D | avx512erintrin.h | 35 #define _mm512_mask_exp2a23_pd(S, M, A) \ argument 38 #define _mm512_maskz_exp2a23_pd(M, A) \ argument 59 #define _mm512_mask_exp2a23_ps(S, M, A) \ argument 62 #define _mm512_maskz_exp2a23_ps(M, A) \ argument 87 #define _mm512_maskz_rsqrt28_pd(M, A) \ argument 111 #define _mm512_maskz_rsqrt28_ps(M, A) \ argument 138 #define _mm_maskz_rsqrt28_ss(M, A, B) \ argument 190 #define _mm512_maskz_rcp28_pd(M, A) \ argument 214 #define _mm512_maskz_rcp28_ps(M, A) \ argument 241 #define _mm_maskz_rcp28_ss(M, A, B) \ argument [all …]
|
| /llvm-project-15.0.7/polly/lib/External/isl/test_inputs/codegen/cloog/ |
| H A D | sor1d.st | 1 …M, N] -> { S2[i0, i1, 1 + i1, 99 + 100i1, i4] : i4 >= 3 and i4 >= -193 - 200i1 and i4 >= -194 + 10… 3 context: "[M, N] -> { [] : M >= 0 and N >= 0 }" 6 options: "[M, N] -> { atomic[i0] }" 9 - filter: "[M, N] -> { S2[i0, i1, i2, i3, i4]; S3[i0, i1, i2, i3, i4]; S1[i0, i1, i2, i3] }" 12 options: "[M, N] -> { atomic[i0] }" 15 - filter: "[M, N] -> { S3[i0, i1, i2, i3, i4] }" 18 options: "[M, N] -> { atomic[i0] }" 19 - filter: "[M, N] -> { S1[i0, i1, i2, i3] }" 20 - filter: "[M, N] -> { S2[i0, i1, i2, i3, i4] }" 23 options: "[M, N] -> { atomic[i0] }" [all …]
|
| H A D | swim.st | 1 …M, N, O, P, Q, R] -> { S40[i0, i1, i2] : M = 1 and i0 >= 2 and i0 <= P and i1 >= 1 and i1 <= Q and… 3 context: "[M, N, O, P, Q, R] -> { [] }" 6 - filter: "[M, N, O, P, Q, R] -> { S1[] }" 7 - filter: "[M, N, O, P, Q, R] -> { S2[] }" 8 - filter: "[M, N, O, P, Q, R] -> { S3[] }" 9 - filter: "[M, N, O, P, Q, R] -> { S4[] }" 10 - filter: "[M, N, O, P, Q, R] -> { S5[] }" 11 - filter: "[M, N, O, P, Q, R] -> { S6[] }" 12 - filter: "[M, N, O, P, Q, R] -> { S7[] }" 13 - filter: "[M, N, O, P, Q, R] -> { S8[] }" [all …]
|
| H A D | reservoir-lim-lam5.st | 1 …M] -> { S1[i0, i1] : i0 >= 1 and i0 <= M and i1 >= 1 and i1 <= M; S3[i0, i1] : i0 >= 1 and i0 <= M… 3 context: "[M] -> { [] }" 6 - filter: "[M] -> { S1[i0, i1] }" 9 options: "[M] -> { separate[i0] }" 12 options: "[M] -> { separate[i0] }" 13 - filter: "[M] -> { S2[i0, i1] }" 16 options: "[M] -> { separate[i0] }" 19 options: "[M] -> { separate[i0] }" 20 - filter: "[M] -> { S3[i0, i1] }" 23 options: "[M] -> { separate[i0] }" [all …]
|
| /llvm-project-15.0.7/libcxx/test/libcxx/utilities/function.objects/func.require/ |
| H A D | bullet_4_5_6.pass.cpp | 81 MemPtr M = &TestType::object; in doTest() local 82 runTestDispatch<E>(M, obj, &obj.object); in doTest() 83 runTestDispatch<E>(M, der, &der.object); in doTest() 96 CMemPtr M = &TestType::object; in doTest() local 97 runTestDispatch<E>(M, obj, &obj.object); in doTest() 98 runTestDispatch<E>(M, der, &der.object); in doTest() 111 VMemPtr M = &TestType::object; in doTest() local 112 runTestDispatch<E>(M, obj, &obj.object); in doTest() 126 CVMemPtr M = &TestType::object; in doTest() local 179 decltype(std::__invoke(M, obj)), Expect in runTest() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/multiset.special/ |
| H A D | member_swap.pass.cpp | 27 M m1; in main() 28 M m2; in main() 29 M m1_save = m1; in main() 30 M m2_save = m2; in main() 47 M m1; in main() 49 M m1_save = m1; in main() 64 M m2; in main() 104 M m1; in main() 105 M m2; in main() 124 M m1; in main() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/containers/associative/set/set.special/ |
| H A D | member_swap.pass.cpp | 27 M m1; in main() 28 M m2; in main() 29 M m1_save = m1; in main() 30 M m2_save = m2; in main() 47 M m1; in main() 49 M m1_save = m1; in main() 64 M m2; in main() 104 M m1; in main() 105 M m2; in main() 124 M m1; in main() [all …]
|
| /llvm-project-15.0.7/clang/tools/clang-linker-wrapper/ |
| H A D | OffloadWrapper.cpp | 42 LLVMContext &C = M.getContext(); in getSizeTTy() 60 LLVMContext &C = M.getContext(); in getEntryTy() 80 LLVMContext &C = M.getContext(); in getDeviceImageTy() 104 getDeviceImagePtrTy(M), getEntryPtrTy(M), in getBinDescTy() 155 M, getEntryTy(M), /*isConstant*/ true, GlobalValue::ExternalLinkage, in createBinDesc() 159 M, getEntryTy(M), /*isConstant*/ true, GlobalValue::ExternalLinkage, in createBinDesc() 218 getBinDescTy(M), in createBinDesc() 324 new GlobalVariable(M, getFatbinWrapperTy(M), in createFatbinDesc() 393 new GlobalVariable(M, ArrayType::get(getEntryTy(M), 0), in createRegisterGlobalsFunction() 400 new GlobalVariable(M, ArrayType::get(getEntryTy(M), 0), in createRegisterGlobalsFunction() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/ |
| H A D | default.pass.cpp | 39 const T M(static_cast<T>(-1)); in test() local 40 test1<T, 0, 0, M>(); in test() 41 test1<T, 0, M-2, M>(); in test() 42 test1<T, 0, M-1, M>(); in test() 43 test1<T, M-2, 0, M>(); in test() 44 test1<T, M-2, M-2, M>(); in test() 45 test1<T, M-2, M-1, M>(); in test() 46 test1<T, M-1, 0, M>(); in test() 47 test1<T, M-1, M-2, M>(); in test() 48 test1<T, M-1, M-1, M>(); in test()
|
| H A D | copy.pass.cpp | 41 const T M(static_cast<T>(-1)); in test() local 42 test1<T, 0, 0, M>(); in test() 43 test1<T, 0, M-2, M>(); in test() 44 test1<T, 0, M-1, M>(); in test() 45 test1<T, M-2, 0, M>(); in test() 46 test1<T, M-2, M-2, M>(); in test() 47 test1<T, M-2, M-1, M>(); in test() 48 test1<T, M-1, 0, M>(); in test() 49 test1<T, M-1, M-2, M>(); in test() 50 test1<T, M-1, M-1, M>(); in test()
|
| H A D | assign.pass.cpp | 41 const T M(static_cast<T>(-1)); in test() local 42 test1<T, 0, 0, M>(); in test() 43 test1<T, 0, M-2, M>(); in test() 44 test1<T, 0, M-1, M>(); in test() 45 test1<T, M-2, 0, M>(); in test() 46 test1<T, M-2, M-2, M>(); in test() 47 test1<T, M-2, M-1, M>(); in test() 48 test1<T, M-1, 0, M>(); in test() 49 test1<T, M-1, M-2, M>(); in test() 50 test1<T, M-1, M-1, M>(); in test()
|
| /llvm-project-15.0.7/libcxx/test/std/containers/associative/map/map.special/ |
| H A D | member_swap.pass.cpp | 27 M m1; in main() 28 M m2; in main() 29 M m1_save = m1; in main() 30 M m2_save = m2; in main() 47 M m1; in main() 49 M m1_save = m1; in main() 64 M m2; in main() 103 M m1; in main() 104 M m2; in main() 123 M m1; in main() [all …]
|
| H A D | non_member_swap.pass.cpp | 30 M m1; in main() 31 M m2; in main() 32 M m1_save = m1; in main() 33 M m2_save = m2; in main() 50 M m1; in main() 52 M m1_save = m1; in main() 67 M m2; in main() 174 M m1; in main() 175 M m2; in main() 194 M m1; in main() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/containers/associative/multimap/multimap.special/ |
| H A D | non_member_swap.pass.cpp | 30 M m1; in main() 31 M m2; in main() 32 M m1_save = m1; in main() 33 M m2_save = m2; in main() 50 M m1; in main() 52 M m1_save = m1; in main() 67 M m2; in main() 174 M m1; in main() 175 M m2; in main() 194 M m1; in main() [all …]
|
| H A D | member_swap.pass.cpp | 27 M m1; in main() 28 M m2; in main() 29 M m1_save = m1; in main() 30 M m2_save = m2; in main() 47 M m1; in main() 49 M m1_save = m1; in main() 64 M m2; in main() 103 M m1; in main() 104 M m2; in main() 123 M m1; in main() [all …]
|
| /llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/shtest-shell/ |
| H A D | valid-shell.txt | 147 # NP-CAT-OUTPUT-NEXT: xyz{|}~^?M-^@M-^AM-^BM-^CM-^DM-^EM-^FM-^GM-^HM-^IM-^JM-^K 148 # NP-CAT-OUTPUT-NEXT: M-^LM-^MM-^NM-^OM-^PM-^QM-^RM-^SM-^TM-^UM-^VM-^WM-^XM-^YM-^ZM-^[M-^\M-^]M-^^M… 149 # NP-CAT-OUTPUT-NEXT: M- M-!M-"M-#M-$M-%M-&M-'M-(M-)M-*M-+M-,M--M-.M-/M-0M-1M-2M-3 150 # NP-CAT-OUTPUT-NEXT: M-4M-5M-6M-7M-8M-9M-:M-;M-<M-=M->M-?M-@M-AM-BM-CM-DM-EM-FM-G 152 # NP-CAT-OUTPUT-NEXT: M-\M-]M-^M-_M-`M-aM-bM-cM-dM-eM-fM-gM-hM-iM-jM-kM-lM-mM-nM-o 153 # NP-CAT-OUTPUT-NEXT: M-pM-qM-rM-sM-tM-uM-vM-wM-xM-yM-zM-{M-|M-}M-~M-^? 166 # NPLONG-CAT-OUTPUT-NEXT: M-^LM-^MM-^NM-^OM-^PM-^QM-^RM-^SM-^TM-^UM-^VM-^WM-^XM-^YM-^ZM-^[M-^\M-^]M… 167 # NPLONG-CAT-OUTPUT-NEXT: M- M-!M-"M-#M-$M-%M-&M-'M-(M-)M-*M-+M-,M--M-.M-/M-0M-1M-2M-3 168 # NPLONG-CAT-OUTPUT-NEXT: M-4M-5M-6M-7M-8M-9M-:M-;M-<M-=M->M-?M-@M-AM-BM-CM-DM-EM-FM-G 170 # NPLONG-CAT-OUTPUT-NEXT: M-\M-]M-^M-_M-`M-aM-bM-cM-dM-eM-fM-gM-hM-iM-jM-kM-lM-mM-nM-o [all …]
|
| /llvm-project-15.0.7/mlir/lib/ExecutionEngine/ |
| H A D | RunnerUtils.cpp | 56 impl::printMemRef(*M); in _mlir_ciface_printMemrefVector4x4xf32() 60 impl::printMemRef(*M); in _mlir_ciface_printMemrefI8() 64 impl::printMemRef(*M); in _mlir_ciface_printMemrefI32() 68 impl::printMemRef(*M); in _mlir_ciface_printMemrefI64() 72 impl::printMemRef(*M); in _mlir_ciface_printMemrefF32() 76 impl::printMemRef(*M); in _mlir_ciface_printMemrefF64() 110 impl::printMemRef(*M); in _mlir_ciface_printMemref0dF32() 113 impl::printMemRef(*M); in _mlir_ciface_printMemref1dF32() 116 impl::printMemRef(*M); in _mlir_ciface_printMemref2dF32() 119 impl::printMemRef(*M); in _mlir_ciface_printMemref3dF32() [all …]
|