aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/libgomp/testsuite/libgomp.c++/ctor-10.C
blob: f46e45ec4187032f9d201eba1cc20ba9cfdab1fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// { dg-do run }
// { dg-require-effective-target tls_runtime }

#include <omp.h>
#include <assert.h>

#define N 10
#define THR 4

struct B
{
  B();
  B(const B &);
  ~B();
  B& operator=(const B &);
  void doit();
  static B *base;
  static B *threadbase;
#pragma omp threadprivate(threadbase)
};

B *B::base;
B *B::threadbase;
static unsigned cmask[THR];
static unsigned dmask[THR];

B::B()
{
  assert (base == 0);
}

B::B(const B &b)
{
  unsigned index = &b - base;
  assert (index < N);
  cmask[omp_get_thread_num()] |= 1u << index;
}

B::~B()
{
  if (threadbase)
    {
      unsigned index = this - threadbase;
      assert (index < N);
      dmask[omp_get_thread_num()] |= 1u << index;
    }
}

void foo()
{
  B b[N];

  B::base = b;

  #pragma omp parallel firstprivate(b)
    {
      assert (omp_get_num_threads () == THR);
      B::threadbase = b;
    }

  B::threadbase = 0;
}

int main()
{
  omp_set_dynamic (0);
  omp_set_num_threads (THR);
  foo();

  for (int i = 0; i < THR; ++i)
    {
      unsigned xmask = (1u << N) - 1;
      assert (cmask[i] == xmask);
      assert (dmask[i] == xmask);
    }

  return 0;
}