aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/testsuite/gcc.dg/overlay1.c
blob: a87dfa4151bea92cb369e5dbd6f4834fa3e4e432 (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
/* Check that store sinking does not break stack overlay */
/* { dg-do run } */
/* { dg-options "-O2 -fearly-stack-alloc" } */

extern void abort (void);

struct a;

typedef void (*func_t)(struct a*);

struct a {
  func_t impl;
};

struct b {
  struct a base;
};

void
a_impl (struct a *const this)
{
  abort();
}

void
b_impl (struct a * const this)
{
}

void __attribute__((noinline))
a_interface (struct a * const this)
{
  this->impl(this);
}

int
main(int argc, char **argv)
{
  {
  struct b obj1;

L1:
    if (argc > 400)
      return 0;
    obj1.base.impl = b_impl;

L2:
    a_interface (&obj1.base);
    obj1.base.impl = b_impl;
    obj1.base.impl = a_impl;
    if (argc > 200)
      return 0;
  }
  {
  struct b obj2;
    obj2.base.impl = a_impl;

L3:
    obj2.base.impl = b_impl;
    if (argc > 100)
      return 0;

L4:
    a_interface (&obj2.base);
    obj2.base.impl = b_impl;
    obj2.base.impl = a_impl;
  }

  return 0;
}