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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/* { dg-do compile { target { musttail && { c || c++11 } } } } */
/* { dg-options "-Wextra" } */
int foo (int, void *);
int bar (int, int *);
struct S { int a, b, c; };
struct T { int d; struct S e; };
int
baz (int x, void *y)
{
[[gnu::musttail]] return bar (2, &x); /* { dg-warning "address of parameter 'x' passed to 'musttail' call argument" } */
}
int
qux (int x, void *y)
{
__label__ lab;
lab:;
if (*(int *) y == 1)
[[gnu::musttail]] return foo (1, &&lab); /* { dg-warning "address of label passed to 'musttail' call argument" } */
if (x == 1)
[[gnu::musttail]] return foo (3, 0);
else if (x == 2)
{
{
int a = 42;
bar (4, &a);
}
[[gnu::musttail]] return bar (5, 0);
}
else if (x == 3)
{
int a = 42;
bar (4, &a);
[[gnu::musttail]] return bar (6, 0); /* { dg-warning "address of automatic variable 'a' can escape to 'musttail' call" } */
}
else if (x == 4)
{
int a = 42;
[[gnu::musttail]] return bar (7, &a); /* { dg-warning "address of automatic variable 'a' passed to 'musttail' call argument" } */
}
else if (x == 5)
{
struct T b;
[[gnu::musttail]] return bar (8, &b.e.b); /* { dg-warning "address of automatic variable 'b' passed to 'musttail' call argument" } */
}
else if (x == 6)
{
struct T b;
bar (9, &b.e.a);
[[gnu::musttail]] return bar (10, 0); /* { dg-warning "address of automatic variable 'b' can escape to 'musttail' call" } */
}
else if (x == 7)
{
{
struct T b;
bar (9, &b.e.a);
}
[[gnu::musttail]] return bar (11, 0);
}
else if (x == 8)
{
{
int a = 42;
bar (4, &a);
}
[[gnu::musttail]] return foo (12, 0);
}
else if (x == 9)
{
int a = 42;
bar (4, &a);
[[gnu::musttail]] return foo (13, 0); /* { dg-warning "address of automatic variable 'a' can escape to 'musttail' call" } */
}
else if (x == 10)
{
int a = 42;
[[gnu::musttail]] return foo (14, &a); /* { dg-warning "address of automatic variable 'a' passed to 'musttail' call argument" } */
}
else if (x == 11)
{
struct T b;
[[gnu::musttail]] return foo (15, &b.e.b); /* { dg-warning "address of automatic variable 'b' passed to 'musttail' call argument" } */
}
else if (x == 12)
{
struct T b;
bar (9, &b.e.a);
[[gnu::musttail]] return foo (16, 0); /* { dg-warning "address of automatic variable 'b' can escape to 'musttail' call" } */
}
else if (x == 13)
{
{
struct T b;
bar (9, &b.e.a);
}
[[gnu::musttail]] return foo (17, 0);
}
return 0;
}
int
corge (int x, void *y)
{
if (*(int *) y == 1)
bar (18, &x);
[[gnu::musttail]] return bar (2, 0); /* { dg-warning "address of parameter 'x' can escape to 'musttail' call" } */
}
|