-
Notifications
You must be signed in to change notification settings - Fork 0
/
EvilUnit_contract_gcc.c
229 lines (199 loc) · 4.59 KB
/
EvilUnit_contract_gcc.c
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/*
* This file is part of EvilUnit.
*
* EvilUnit is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* EvilUnit is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License along
* with EvilUnit. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Copyright Jon Chesterfield. All rights reserved.
*/
#define CONTRACT_IMPLEMENTATION_LIBC_AVAILABLE __STDC_HOSTED__
#ifdef __clang__
#define CONTRACT_IMPLEMENTATION_CLANG_AVAILABLE 1
#define CONTRACT_IMPLEMENTATION_GCC_AVAILABLE 0
#elif defined(__GNUC__)
#define CONTRACT_IMPLEMENTATION_CLANG_AVAILABLE 0
#define CONTRACT_IMPLEMENTATION_GCC_AVAILABLE 1
#endif
#if !CONTRACT_IMPLEMENTATION_GCC_AVAILABLE
#define EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION EVILUNIT_CONTRACT_IMPLEMENTATION_NONE
#include "EvilUnit.h"
MODULE(evilunit_contract_gcc)
{
CHECK(1);
}
#else
#define EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION EVILUNIT_CONTRACT_IMPLEMENTATION_GCC
#include "EvilUnit.h"
EVILUNIT_INLINE_ATTRIBUTE unsigned long depth(void)
{
return *evilunit_contract_gcc_state_depth_pointer();
}
EVILUNIT_INLINE_ATTRIBUTE void depth_incr(void)
{
++(*evilunit_contract_gcc_state_depth_pointer());
}
EVILUNIT_INLINE_ATTRIBUTE void depth_decr(void)
{
--(*evilunit_contract_gcc_state_depth_pointer());
}
static MODULE(evilunit_contract_explicit_gcc)
{
enum {is_none = 0};
CHECK(depth() == 0);
TEST("setjmp without longjmp")
{
int x = 0;
if (EVILUNIT_CONTRACT_GCC_SETJUMP_IMPL() == 0)
{
CHECK(depth() == 1);
x = 1;
}
else
{
x = 0;
}
CHECK(x == 1);
CHECK(depth() == 1);
depth_decr();
CHECK(depth() == 0);
}
TEST("setjmp with longjmp")
{
int x = 0;
if (EVILUNIT_CONTRACT_GCC_SETJUMP_IMPL() == 0)
{
CHECK(depth() == 1);
x = 1;
evilunit_contract_gcc_longjump();
x = 2;
}
else
{
CHECK(depth() == 0);
x = 3;
}
CHECK(depth() == 0);
CHECK(x == (is_none ? 2 : 3));
}
TEST("longjump without setjmp")
{
CHECK(depth() == 0);
evilunit_contract_gcc_longjump();
CHECK(depth() == 0);
}
CHECK(depth() == 0);
}
static MODULE(evilunit_contract_default_gcc)
{
enum {is_none = 0};
CHECK(depth() == 0);
TEST("default setjmp without longjmp")
{
int x = 2;
if (EVILUNIT_CONTRACT_SETJUMP() == 0)
{
CHECK(depth() == 1);
x = 4;
}
else
{
x = 6;
}
CHECK(x == 4);
CHECK(depth() == 1);
depth_decr();
CHECK(depth() == 0);
}
TEST("default setjmp with longjmp")
{
int x = 2;
if (EVILUNIT_CONTRACT_SETJUMP() == 0)
{
CHECK(depth() == 1);
x = 4;
evilunit_contract_longjump();
x = 6;
}
else
{
CHECK(depth() == 0);
x = 8;
}
CHECK(x == (is_none ? 6 : 8));
CHECK(depth() == 0);
}
TEST("default longjump without setjmp")
{
CHECK(depth() == 0);
evilunit_contract_longjump();
CHECK(depth() == 0);
}
CHECK(depth() == 0);
}
static MODULE(evilunit_contract_cross_gcc)
{
enum {is_none = 0};
CHECK(depth() == 0);
TEST("cross default to explicit, default set")
{
int x = 2;
if (EVILUNIT_CONTRACT_SETJUMP() == 0)
{
CHECK(depth() == 1);
x = 4;
evilunit_contract_gcc_longjump();
x = 6;
}
else
{
CHECK(depth() == 0);
x = 8;
}
CHECK(x == (is_none ? 6 : 8));
CHECK(depth() == 0);
}
TEST("cross default to explicit, default jump")
{
int x = 2;
if (EVILUNIT_CONTRACT_GCC_SETJUMP_IMPL() == 0)
{
CHECK(depth() == 1);
x = 4;
evilunit_contract_longjump();
x = 6;
}
else
{
CHECK(depth() == 0);
x = 8;
}
CHECK(x == (is_none ? 6 : 8));
CHECK(depth() == 0);
}
CHECK(depth() == 0);
}
static MODULE(evilunit_contract_death_gcc)
{
CHECK(depth() == 0);
DEATH(evilunit_contract_longjump());
LIVES(3 == 4);
}
MODULE(evilunit_contract_gcc)
{
DEPENDS(evilunit_contract_explicit_gcc);
DEPENDS(evilunit_contract_default_gcc);
DEPENDS(evilunit_contract_cross_gcc);
DEPENDS(evilunit_contract_death_gcc);
}
#endif