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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
static void a(void) __attribute__ ((context(A, 0, 1)))
{
__context__(A, 1);
}
static void r(void) __attribute__ ((context(A, 1, 0)))
{
__context__(A, -1);
}
extern int condition, condition2;
static int tl(void) __attribute__ ((conditional_context(A, 0, 1, 0)))
{
if (condition) {
a();
return 1;
}
return 0;
}
static int tl2(void) __attribute__ ((conditional_context(A, 0, 0, 1)))
{
if (condition) {
a();
return 1;
}
return 0;
}
static int dummy(void)
{
return condition + condition2;
}
static int good_trylock1(void)
{
if (tl()) {
r();
}
}
static int good_trylock2(void)
{
if (tl()) {
r();
}
if (tl()) {
r();
}
}
static int good_trylock3(void)
{
a();
if (tl()) {
r();
}
r();
if (tl()) {
r();
}
}
static int good_trylock4(void)
{
a();
if (tl()) {
r();
}
if (tl()) {
r();
}
r();
}
static void bad_trylock1(void)
{
a();
if (dummy()) {
r();
}
r();
}
static int good_trylock5(void)
{
if (!tl2()) {
r();
}
}
static int good_trylock6(void)
{
if (!tl2()) {
r();
}
if (!tl2()) {
r();
}
}
static int good_trylock7(void)
{
a();
if (!tl2()) {
r();
}
r();
if (!tl2()) {
r();
}
}
static int good_trylock8(void)
{
a();
if (!tl2()) {
r();
}
if (!tl2()) {
r();
}
r();
}
static void bad_trylock2(void)
{
a();
if (!dummy()) {
r();
}
r();
}
static int good_switch(void)
{
switch (condition) {
case 1:
a();
break;
case 2:
a();
break;
case 3:
a();
break;
default:
a();
}
r();
}
static void bad_lock1(void)
{
r();
a();
}
/*
* check-name: Check -Wcontext with lock trylocks
*
* check-error-start
context-dynamic.c:83:6: warning: context problem in 'bad_trylock1': 'r' expected different context
context-dynamic.c:83:6: context 'A': wanted >= 1, got 0
context-dynamic.c:133:6: warning: context problem in 'bad_trylock2': 'r' expected different context
context-dynamic.c:133:6: context 'A': wanted >= 1, got 0
context-dynamic.c:156:6: warning: context problem in 'bad_lock1': 'r' expected different context
context-dynamic.c:156:6: context 'A': wanted >= 1, got 0
* check-error-end
*/
|