Home
last modified time | relevance | path

Searched refs:dp (Results 1 – 25 of 92) sorted by relevance

1234

/llvm-project-15.0.7/llvm/test/CodeGen/XCore/
H A Dglobals.ll6 ; CHECK: ldaw r0, dp[G1]
13 ; CHECK: ldaw r0, dp[G2]
20 ; CHECK: ldaw r0, dp[G3]
35 ; CHECK: ldaw r0, dp[G4]
42 ; CHECK: ldaw r0, dp[G5]
57 ; CHECK: ldaw r0, dp[G6]
64 ; CHECK: ldaw r0, dp[G7]
79 ; CHECK: ldaw r0, dp[G8]
84 ; CHECK: .section .dp.data,"awd",@progbits
88 ; CHECK: .section .dp.bss,"awd",@nobits
[all …]
H A Dcodemodel.ll16 ; CHECK: ldaw r0, dp[A2]
19 ; CHECK: ldaw r0, dp[A1]
51 ; CHECK: ldw r1, dp[l]
53 ; CHECK: ldw r1, dp[l+4]
55 ; CHECK: ldw r1, dp[l+392]
57 ; CHECK: ldw r1, dp[l+396]
59 ; CHECK: ldw r1, dp[s]
61 ; CHECK: ldw r1, dp[s+36]
93 ; LARGE: ldw r1, dp[s]
95 ; LARGE: ldw r1, dp[s+36]
[all …]
H A Datomic.ll24 ; CHECK: ldw r[[R0:[0-9]+]], dp[pool]
25 ; CHECK-NEXT: ldaw r[[R1:[0-9]+]], dp[pool]
38 ; CHECK-NEXT: ldw r4, dp[pool]
51 ; CHECK-NEXT: stw r[[R0]], dp[pool]
63 ; CHECK-NEXT: stw r4, dp[pool]
77 ; CHECK-NEXT: ldw r[[R0]], dp[pool]
78 ; CHECK-NEXT: stw r[[R0]], dp[pool]
H A Doffset_folding.ll18 ; CHECK: ldaw r0, dp[b+4]
23 ; Don't fold negative offsets into cp / dp accesses to avoid a relocation
24 ; error if the address + addend is less than the start of the cp / dp.
38 ; CHECK: ldaw [[REG:r[0-9]+]], dp[b]
H A Dsection-name.ll5 define void @".dp.bss"() {
9 ; CHECK: <unknown>:0: error: symbol '.dp.bss' is already defined
/llvm-project-15.0.7/clang/test/CodeGen/PowerPC/
H A Dppc-emmintrin.c30 double dp[2]; variable
384 _mm_clflush(dp); in test_control()
601 resd = _mm_load_pd(dp); in test_load()
602 resd = _mm_load_pd1(dp); in test_load()
603 resd = _mm_load_sd(dp); in test_load()
605 resd = _mm_load1_pd(dp); in test_load()
609 resd = _mm_loadr_pd(dp); in test_load()
888 resd = _mm_set_pd(dp[0], dp[1]); in test_set()
901 resd = _mm_setr_pd(dp[0], dp[1]); in test_set()
1297 _mm_store_pd(dp, md1); in test_store()
[all …]
/llvm-project-15.0.7/llvm/test/Transforms/LICM/
H A Dpr36228.ll20 %dp.0 = phi i8* [ %0, %entry ], [ %dp.1, %if.end ]
25 store i8 9, i8* %dp.0, align 1
29 call void @llvm.memcpy.p0i8.p0i8.i64(i8* %dp.0, i8* %src, i64 2, i32 1, i1 false)
30 %dp.new = getelementptr inbounds i8, i8* %dp.0, i64 1
34 %dp.1 = phi i8* [ %dp.0, %if.then ], [ %dp.new, %if.else ]
/llvm-project-15.0.7/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp1-0x.cpp35 void test_simple_deduction(int *ip, float *fp, double *dp) { in test_simple_deduction() argument
38 int *ip3 = first_arg(ip, fp, dp); in test_simple_deduction()
48 void test_simple_ref_deduction(int *ip, float *fp, double *dp) { in test_simple_ref_deduction() argument
51 int *ip3 = first_arg_ref(ip, fp, dp); in test_simple_ref_deduction()
62 void test_pair_deduction(int *ip, float *fp, double *dp) { in test_pair_deduction() argument
66 make_pair(dp, 17)); in test_pair_deduction()
69 make_pair(dp, 17)); in test_pair_deduction()
/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Dinstantiate-member-template.cpp14 void test_X0(int *ip, double *dp) { in test_X0() argument
17 double *&dpr = xi.f1(ip, dp); in test_X0()
18 xi.f1(dp, dp); // expected-error{{no matching}} in test_X0()
21 double *&dpr2 = xv.f1(ip, dp); in test_X0()
81 void test_X1(int *ip, int i, double *dp) { in test_X1() argument
93 …id3.f0(dp, i); // expected-error{{cannot initialize a parameter of type 'int *' with an lvalue of … in test_X1()
95 id3.f1(ip, i, dp); // expected-note{{instantiation}} in test_X1()
98 id3b.f0(ip, dp); // expected-note{{instantiation}} in test_X1()
101 id4.f2(ip, i, dp); // expected-note{{instantiation}} in test_X1()
H A Dinstantiate-init.cpp21 void test_f0(int *ip, float *fp, double *dp) { in test_f0() argument
23 f0(ip, dp); // expected-note{{instantiation}} in test_f0()
32 void test_f1(X0 *x0, int *ip, float *fp, double *dp) { in test_f1() argument
34 f1(x0, ip, dp); // expected-note{{instantiation}} in test_f1()
/llvm-project-15.0.7/clang/test/Sema/
H A Dconditional-expr.c10 double *dp; in foo() local
14 dp = vp; in foo()
15 vp = dp; in foo()
16 ip = dp; // expected-warning {{incompatible pointer types assigning to 'int *' from 'double *'}} in foo()
17 dp = ip; // expected-warning {{incompatible pointer types assigning to 'double *' from 'int *'}} in foo()
18 dp = 0 ? (double *)0 : (void *)0; in foo()
/llvm-project-15.0.7/llvm/test/Transforms/LoopStrengthReduce/X86/
H A D2011-12-04-loserreg.ll30 %dp.036 = phi i32* [ %add.ptr, %for.body ], [ %destrow, %entry ]
40 %4 = load i32, i32* %dp.036, align 4
43 %arrayidx6 = getelementptr inbounds i32, i32* %dp.036, i64 1
47 %arrayidx9 = getelementptr inbounds i32, i32* %dp.036, i64 2
51 %arrayidx12 = getelementptr inbounds i32, i32* %dp.036, i64 3
55 store i32 %or, i32* %dp.036, align 4
59 %add.ptr = getelementptr inbounds i32, i32* %dp.036, i64 4
77 %dp.132 = phi i32* [ %add.ptr, %for.body23.lr.ph ], [ %incdec.ptr28, %for.body23 ]
81 %10 = load i32, i32* %dp.132, align 4
84 store i32 %or26, i32* %dp.132, align 4
[all …]
/llvm-project-15.0.7/compiler-rt/test/BlocksRuntime/
H A Dcast.c26 double *dp; in main() local
30 dp = (double *)aBlock; in main()
33 aBlock = (void (^)(void))dp; in main()
/llvm-project-15.0.7/llvm/lib/Support/
H A Dregengine.inc141 const char *dp;
162 for (dp = start; dp < stop; dp++)
163 if (*dp == g->must[0] && stop - dp >= g->mlen &&
235 if (dp != NULL)
258 assert(dp == NULL || dp == endp);
526 const char *dp;
638 if (dp != NULL)
657 return(dp);
666 return(dp);
687 return(dp);
[all …]
/llvm-project-15.0.7/clang/test/CXX/expr/expr.unary/expr.new/
H A Dp20.cpp60 double *dp = &x; in operator delete() local
77 double *dp = &x; in operator delete() local
118 double *dp = &x; in operator delete() local
/llvm-project-15.0.7/libcxx/test/libcxx/containers/sequences/deque/
H A Dspare_block_handling.pass.cpp76 std::unique_ptr<Deque<LargeT>> dp(new Deque<LargeT>); in TEST_CASE() local
77 auto& d = *dp; in TEST_CASE()
133 dp.reset(); in TEST_CASE()
138 std::unique_ptr<Deque<LargeT>> dp(new Deque<LargeT>); in TEST_CASE() local
139 auto& d = *dp; in TEST_CASE()
197 dp.reset(); in TEST_CASE()
/llvm-project-15.0.7/llvm/test/MC/Disassembler/XCore/
H A Dxcore.txt115 # CHECK: set dp, r5
210 # CHECK: init t[r2]:dp, r3
455 # CHECK: ldaw r11, dp[63]
461 # CHECK: ldaw cp, dp[5]
503 # CHECK: ldw r10, dp[16]
506 # CHECK: ldw r10, dp[76]
509 # CHECK: ldw lr, dp[8]
512 # CHECK: ldw dp, dp[33221]
533 # CHECK: stw r8, dp[14]
536 # CHECK: stw r9, dp[654]
[all …]
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_deadlock_detector_test.cpp35 dp = new DeadlockDetector<BV>; in ScopedDD()
36 dp->clear(); in ScopedDD()
39 ~ScopedDD() { delete dp; } in ~ScopedDD()
40 DeadlockDetector<BV> *dp; member
48 DeadlockDetector<BV> &d = *sdd.dp; in RunBasicTest()
139 DeadlockDetector<BV> &d = *sdd.dp; in RunRemoveNodeTest()
245 DeadlockDetector<BV> &d = *sdd.dp; in RunMultipleEpochsTest()
290 DeadlockDetector<BV> &d = *sdd.dp; in RunCorrectEpochFlush()
322 DeadlockDetector<BV> &d = *sdd.dp; in RunTryLockTest()
349 DeadlockDetector<BV> &d = *sdd.dp; in RunOnFirstLockTest()
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/Hexagon/loop-idiom/
H A Dlcssa.ll33 %dp.addr.5 = phi i8* [ undef, %do.end329 ], [ %incdec.ptr332, %do.body330 ]
35 store i8 %0, i8* %dp.addr.5, align 1
36 %incdec.ptr332 = getelementptr inbounds i8, i8* %dp.addr.5, i32 1
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dcfence-double.ll9 define double @foo(double* %dp) {
11 %0 = load atomic double, double* %dp acquire, align 8
/llvm-project-15.0.7/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dp5-cxx0x-no-extra-copy.cpp29 double *dp = 0; in get_value_badly() local
30 T *tp = dp; in get_value_badly()
H A Dp5-cxx03-extra-copy.cpp31 double *dp = 0; in get_value_badly() local
33 …T *tp = dp; // expected-error{{cannot initialize a variable of type 'int *' with an lvalue of type… in get_value_badly()
/llvm-project-15.0.7/clang/test/OpenMP/
H A Ddispatch_ast_print.cpp65 int *dp = get_device_ptr(); in test_one() local
75 #pragma omp dispatch device(dev) is_device_ptr(dp) novariants(dev > 10) nocontext(dev > 5) in test_one()
76 foo(aaa, dp); in test_one()
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dconversion.m21 void use_double_prop(DoubleProp *dp) {
23 dp.d += local; // no warning
/llvm-project-15.0.7/llvm/test/Transforms/AtomicExpand/PowerPC/
H A Dcfence-double.ll7 define double @foo(double* %dp) {
16 %0 = load atomic double, double* %dp acquire, align 8

1234