HomeSort by relevance Sort by last modified time
    Searched defs:St (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/clang/test/OpenMP/
openmp_common.c 13 } St;
atomic_codegen.cpp 8 struct St {
10 St() {}
11 ~St() {}
17 St s;
20 // CHECK: invoke void @_ZN2StC1Ev(%struct.St* [[TEMP_ST_ADDR:%.+]])
21 // CHECK: [[SCALAR_ADDR:%.+]] = invoke dereferenceable(4) i32* @_ZN2St3getEv(%struct.St* [[TEMP_ST_ADDR]])
24 // CHECK: invoke void @_ZN2StD1Ev(%struct.St* [[TEMP_ST_ADDR]])
26 b = St().get();
27 // CHECK-DAG: invoke void @_ZN2StC1Ev(%struct.St* [[TEMP_ST_ADDR:%.+]])
28 // CHECK-DAG: [[SCALAR_ADDR:%.+]] = invoke dereferenceable(4) i32* @_ZN2St3getEv(%struct.St* [[TEMP_ST_ADDR]]
    [all...]
declare_simd_messages.cpp 201 struct St {
sections_firstprivate_codegen.cpp 11 struct St {
13 St() : a(0), b(0) {}
14 St(const St &st) : a(st.a + st.b), b(0) {}
15 ~St() {}
25 S(const S &s, St t = St()) : f(s.f + t.a) {
    [all...]
single_firstprivate_codegen.cpp 11 struct St {
13 St() : a(0), b(0) {}
14 St(const St &st) : a(st.a + st.b), b(0) {}
15 ~St() {}
25 S(const S &s, St t = St()) : f(s.f + t.a) {
    [all...]
for_firstprivate_codegen.cpp 11 struct St {
13 St() : a(0), b(0) {}
14 St(const St &st) : a(st.a + st.b), b(0) {}
15 ~St() {}
26 S(const S &s, St t = St()) : f(s.f + t.a) {
    [all...]
parallel_copyin_codegen.cpp 483 struct St {
485 St() : a(0), b(0) {}
486 St &operator=(const St &) { return *this; };
487 ~St() {}
492 static St s[2];
496 // ARRAY: call dereferenceable(8) %struct.St* @{{.+}}(%struct.St* %{{.+}}, %struct.St* dereferenceable(8) %{{.+}})
502 // TLS-ARRAY: call dereferenceable(8) %struct.St* @{{.+}}(%struct.St* %{{.+}}, %struct.St* dereferenceable(8) %{{.+}}
    [all...]
parallel_firstprivate_codegen.cpp 19 struct St {
21 St() : a(0), b(0) {}
22 St(const St &st) : a(st.a + st.b), b(0) {}
23 ~St() {}
87 S(const S &s, St t = St()) : f(s.f + t.a) {
    [all...]
single_codegen.cpp 210 struct St {
212 St() : a(0), b(0) {}
213 St &operator=(const St &) { return *this; };
214 ~St() {}
217 void array_func(int n, int a[n], St s[2]) {
224 // ARRAY: store %struct.St* %{{.+}}, %struct.St** %{{.+}},
task_firstprivate_codegen.cpp 460 struct St {
462 St() : a(0), b(0) {}
463 St(const St &) {}
464 ~St() {}
467 void array_func(int n, float a[n], St s[2]) {
471 // ARRAY: store %struct.St** %{{.+}}, %struct.St*** %{{.+}},
task_private_codegen.cpp 369 struct St {
371 St() : a(0), b(0) {}
372 St &operator=(const St &) { return *this; };
373 ~St() {}
376 void array_func(int n, float a[n], St s[2]) {
380 // ARRAY: store %struct.St** %{{.+}}, %struct.St*** %{{.+}},
taskloop_firstprivate_codegen.cpp 494 struct St {
496 St() : a(0), b(0) {}
497 St(const St &) {}
498 ~St() {}
501 void array_func(int n, float a[n], St s[2]) {
505 // ARRAY: store %struct.St** %{{.+}}, %struct.St*** %{{.+}},
taskloop_lastprivate_codegen.cpp 499 struct St {
501 St() : a(0), b(0) {}
502 St(const St &) {}
503 ~St() {}
506 void array_func(int n, float a[n], St s[2]) {
510 // ARRAY: store %struct.St** %{{.+}}, %struct.St*** %{{.+}},
513 // ARRAY: store %struct.St* %{{.+}}, %struct.St** %{{.+}}
    [all...]
taskloop_private_codegen.cpp 403 struct St {
405 St() : a(0), b(0) {}
406 St &operator=(const St &) { return *this; };
407 ~St() {}
410 void array_func(int n, float a[n], St s[2]) {
414 // ARRAY: store %struct.St** %{{.+}}, %struct.St*** %{{.+}},
taskloop_simd_firstprivate_codegen.cpp 494 struct St {
496 St() : a(0), b(0) {}
497 St(const St &) {}
498 ~St() {}
501 void array_func(int n, float a[n], St s[2]) {
505 // ARRAY: store %struct.St** %{{.+}}, %struct.St*** %{{.+}},
taskloop_simd_lastprivate_codegen.cpp 499 struct St {
501 St() : a(0), b(0) {}
502 St(const St &) {}
503 ~St() {}
506 void array_func(int n, float a[n], St s[2]) {
510 // ARRAY: store %struct.St** %{{.+}}, %struct.St*** %{{.+}},
513 // ARRAY: store %struct.St* %{{.+}}, %struct.St** %{{.+}}
    [all...]
taskloop_simd_private_codegen.cpp 403 struct St {
405 St() : a(0), b(0) {}
406 St &operator=(const St &) { return *this; };
407 ~St() {}
410 void array_func(int n, float a[n], St s[2]) {
414 // ARRAY: store %struct.St** %{{.+}}, %struct.St*** %{{.+}},
teams_firstprivate_codegen.cpp 26 struct St {
28 St() : a(0), b(0) {}
29 St(const St &st) : a(st.a + st.b), b(0) {}
30 ~St() {}
40 S(const S &s, St t = St()) : f(s.f + t.a) {
    [all...]
threadprivate_ast_print.cpp 13 struct St{
36 struct ST {
44 v = ST<T>::m;
72 extern template int ST<int>::m;
  /external/clang/test/CodeGenCXX/
attr-x86-interrupt.cpp 17 struct St {
ms-property.cpp 29 class St {
42 St<T> bar;
55 St<float> *p2 = 0;
61 // CHECK: call float @"\01?GetX@?$St@M@@QEAAMMM@Z"(%class.St* %{{.+}}, float 2.230000e+02, float 1.100000e+01)
64 // CHECK-NEXT: [[CALL:%.+]] = call float @"\01?PutX@?$St@M@@QEAAMMMM@Z"(%class.St* %{{.+}}, float 2.300000e+01, float 1.000000e+00, float [[J1]])
70 // CHECK-NEXT: [[GET:%.+]] = call float @"\01?GetX@?$St@M@@QEAAMMM@Z"(%class.St* %{{.+}}, float [[CONV]], float 1.000000e+00)
73 // CHECK-NEXT: call float @"\01?PutX@?$St@M@@QEAAMMMM@Z"(%class.St* %{{.+}}, float [[CONV]], float 1.000000e+00, float [[INC]]
    [all...]
  /external/clang/test/SemaCXX/
ms-property-error.cpp 12 class St {
17 ~St() {
29 St<float> *p2 = 0;
30 St<int> a; // expected-note {{in instantiation of member function 'St<int>::~St' requested here}}
ms-property.cpp 28 class St {
33 ~St() { x[0][0] = x[1][1]; }
42 St<float> *p2 = 0;
43 // CHECK: St<int> a;
44 St<int> a;
  /external/clang/test/CodeGen/
2003-09-30-StructLayout.c 7 struct St {
16 void func(struct St* A) {
  /external/clang/lib/StaticAnalyzer/Checkers/
UndefBranchChecker.cpp 31 ProgramStateRef St;
35 : St(std::move(S)), LCtx(L) {}
50 return St->getSVal(Ex, LCtx).isUndef();
90 ProgramStateRef St = N->getState();
94 St = PrevN->getState();
96 FindUndefExpr FindIt(St, Ctx.getLocationContext());

Completed in 442 milliseconds

1 2 3