]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/selftest.h
Introduce dump_location_t
[thirdparty/gcc.git] / gcc / selftest.h
1 /* A self-testing framework, for use by -fself-test.
2 Copyright (C) 2015-2018 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20 #ifndef GCC_SELFTEST_H
21 #define GCC_SELFTEST_H
22
23 /* The selftest code should entirely disappear in a production
24 configuration, hence we guard all of it with #if CHECKING_P. */
25
26 #if CHECKING_P
27
28 namespace selftest {
29
30 /* A struct describing the source-location of a selftest, to make it
31 easier to track down failing tests. */
32
33 struct location
34 {
35 location (const char *file, int line, const char *function)
36 : m_file (file), m_line (line), m_function (function) {}
37
38 const char *m_file;
39 int m_line;
40 const char *m_function;
41 };
42
43 /* A macro for use in selftests and by the ASSERT_ macros below,
44 constructing a selftest::location for the current source location. */
45
46 #define SELFTEST_LOCATION \
47 (::selftest::location (__FILE__, __LINE__, __FUNCTION__))
48
49 /* The entrypoint for running all tests. */
50
51 extern void run_tests ();
52
53 /* Record the successful outcome of some aspect of the test. */
54
55 extern void pass (const location &loc, const char *msg);
56
57 /* Report the failed outcome of some aspect of the test and abort. */
58
59 extern void fail (const location &loc, const char *msg)
60 ATTRIBUTE_NORETURN;
61
62 /* As "fail", but using printf-style formatted output. */
63
64 extern void fail_formatted (const location &loc, const char *fmt, ...)
65 ATTRIBUTE_PRINTF_2 ATTRIBUTE_NORETURN;
66
67 /* Implementation detail of ASSERT_STREQ. */
68
69 extern void assert_streq (const location &loc,
70 const char *desc_val1, const char *desc_val2,
71 const char *val1, const char *val2);
72
73 /* Implementation detail of ASSERT_STR_CONTAINS. */
74
75 extern void assert_str_contains (const location &loc,
76 const char *desc_haystack,
77 const char *desc_needle,
78 const char *val_haystack,
79 const char *val_needle);
80
81 /* A named temporary file for use in selftests.
82 Usable for writing out files, and as the base class for
83 temp_source_file.
84 The file is unlinked in the destructor. */
85
86 class named_temp_file
87 {
88 public:
89 named_temp_file (const char *suffix);
90 ~named_temp_file ();
91 const char *get_filename () const { return m_filename; }
92
93 private:
94 char *m_filename;
95 };
96
97 /* A class for writing out a temporary sourcefile for use in selftests
98 of input handling. */
99
100 class temp_source_file : public named_temp_file
101 {
102 public:
103 temp_source_file (const location &loc, const char *suffix,
104 const char *content);
105 };
106
107 /* Various selftests involving location-handling require constructing a
108 line table and one or more line maps within it.
109
110 For maximum test coverage we want to run these tests with a variety
111 of situations:
112 - line_table->default_range_bits: some frontends use a non-zero value
113 and others use zero
114 - the fallback modes within line-map.c: there are various threshold
115 values for source_location/location_t beyond line-map.c changes
116 behavior (disabling of the range-packing optimization, disabling
117 of column-tracking). We can exercise these by starting the line_table
118 at interesting values at or near these thresholds.
119
120 The following struct describes a particular case within our test
121 matrix. */
122
123 struct line_table_case;
124
125 /* A class for overriding the global "line_table" within a selftest,
126 restoring its value afterwards. At most one instance of this
127 class can exist at once, due to the need to keep the old value
128 of line_table as a GC root. */
129
130 class line_table_test
131 {
132 public:
133 /* Default constructor. Override "line_table", using sane defaults
134 for the temporary line_table. */
135 line_table_test ();
136
137 /* Constructor. Override "line_table", using the case described by C. */
138 line_table_test (const line_table_case &c);
139
140 /* Destructor. Restore the saved line_table. */
141 ~line_table_test ();
142 };
143
144 /* Run TESTCASE multiple times, once for each case in our test matrix. */
145
146 extern void
147 for_each_line_table_case (void (*testcase) (const line_table_case &));
148
149 /* Read the contents of PATH into memory, returning a 0-terminated buffer
150 that must be freed by the caller.
151 Fail (and abort) if there are any problems, with LOC as the reported
152 location of the failure. */
153
154 extern char *read_file (const location &loc, const char *path);
155
156 /* A helper function for writing tests that interact with the
157 garbage collector. */
158
159 extern void forcibly_ggc_collect ();
160
161 /* Convert a path relative to SRCDIR/gcc/testsuite/selftests
162 to a real path (either absolute, or relative to pwd).
163 The result should be freed by the caller. */
164
165 extern char *locate_file (const char *path);
166
167 /* The path of SRCDIR/testsuite/selftests. */
168
169 extern const char *path_to_selftest_files;
170
171 /* selftest::test_runner is an implementation detail of selftest::run_tests,
172 exposed here to allow plugins to run their own suites of tests. */
173
174 class test_runner
175 {
176 public:
177 test_runner (const char *name);
178 ~test_runner ();
179
180 private:
181 const char *m_name;
182 long m_start_time;
183 };
184
185 /* Declarations for specific families of tests (by source file), in
186 alphabetical order. */
187 extern void attribute_c_tests ();
188 extern void bitmap_c_tests ();
189 extern void diagnostic_c_tests ();
190 extern void diagnostic_show_locus_c_tests ();
191 extern void dumpfile_c_tests ();
192 extern void edit_context_c_tests ();
193 extern void et_forest_c_tests ();
194 extern void fibonacci_heap_c_tests ();
195 extern void fold_const_c_tests ();
196 extern void function_tests_c_tests ();
197 extern void ggc_tests_c_tests ();
198 extern void gimple_c_tests ();
199 extern void hash_map_tests_c_tests ();
200 extern void hash_set_tests_c_tests ();
201 extern void input_c_tests ();
202 extern void predict_c_tests ();
203 extern void pretty_print_c_tests ();
204 extern void read_rtl_function_c_tests ();
205 extern void rtl_tests_c_tests ();
206 extern void sbitmap_c_tests ();
207 extern void selftest_c_tests ();
208 extern void simplify_rtx_c_tests ();
209 extern void spellcheck_c_tests ();
210 extern void spellcheck_tree_c_tests ();
211 extern void sreal_c_tests ();
212 extern void store_merging_c_tests ();
213 extern void tree_c_tests ();
214 extern void tree_cfg_c_tests ();
215 extern void typed_splay_tree_c_tests ();
216 extern void unique_ptr_tests_cc_tests ();
217 extern void vec_c_tests ();
218 extern void vec_perm_indices_c_tests ();
219 extern void wide_int_cc_tests ();
220
221 extern int num_passes;
222
223 } /* end of namespace selftest. */
224
225 /* Macros for writing tests. */
226
227 /* Evaluate EXPR and coerce to bool, calling
228 ::selftest::pass if it is true,
229 ::selftest::fail if it false. */
230
231 #define ASSERT_TRUE(EXPR) \
232 ASSERT_TRUE_AT (SELFTEST_LOCATION, (EXPR))
233
234 /* Like ASSERT_TRUE, but treat LOC as the effective location of the
235 selftest. */
236
237 #define ASSERT_TRUE_AT(LOC, EXPR) \
238 SELFTEST_BEGIN_STMT \
239 const char *desc_ = "ASSERT_TRUE (" #EXPR ")"; \
240 bool actual_ = (EXPR); \
241 if (actual_) \
242 ::selftest::pass ((LOC), desc_); \
243 else \
244 ::selftest::fail ((LOC), desc_); \
245 SELFTEST_END_STMT
246
247 /* Evaluate EXPR and coerce to bool, calling
248 ::selftest::pass if it is false,
249 ::selftest::fail if it true. */
250
251 #define ASSERT_FALSE(EXPR) \
252 ASSERT_FALSE_AT (SELFTEST_LOCATION, (EXPR))
253
254 /* Like ASSERT_FALSE, but treat LOC as the effective location of the
255 selftest. */
256
257 #define ASSERT_FALSE_AT(LOC, EXPR) \
258 SELFTEST_BEGIN_STMT \
259 const char *desc_ = "ASSERT_FALSE (" #EXPR ")"; \
260 bool actual_ = (EXPR); \
261 if (actual_) \
262 ::selftest::fail ((LOC), desc_); \
263 else \
264 ::selftest::pass ((LOC), desc_); \
265 SELFTEST_END_STMT
266
267 /* Evaluate VAL1 and VAL2 and compare them with ==, calling
268 ::selftest::pass if they are equal,
269 ::selftest::fail if they are non-equal. */
270
271 #define ASSERT_EQ(VAL1, VAL2) \
272 ASSERT_EQ_AT ((SELFTEST_LOCATION), (VAL1), (VAL2))
273
274 /* Like ASSERT_EQ, but treat LOC as the effective location of the
275 selftest. */
276
277 #define ASSERT_EQ_AT(LOC, VAL1, VAL2) \
278 SELFTEST_BEGIN_STMT \
279 const char *desc_ = "ASSERT_EQ (" #VAL1 ", " #VAL2 ")"; \
280 if ((VAL1) == (VAL2)) \
281 ::selftest::pass ((LOC), desc_); \
282 else \
283 ::selftest::fail ((LOC), desc_); \
284 SELFTEST_END_STMT
285
286 /* Evaluate VAL1 and VAL2 and compare them with known_eq, calling
287 ::selftest::pass if they are always equal,
288 ::selftest::fail if they might be non-equal. */
289
290 #define ASSERT_KNOWN_EQ(VAL1, VAL2) \
291 ASSERT_KNOWN_EQ_AT ((SELFTEST_LOCATION), (VAL1), (VAL2))
292
293 /* Like ASSERT_KNOWN_EQ, but treat LOC as the effective location of the
294 selftest. */
295
296 #define ASSERT_KNOWN_EQ_AT(LOC, VAL1, VAL2) \
297 SELFTEST_BEGIN_STMT \
298 const char *desc = "ASSERT_KNOWN_EQ (" #VAL1 ", " #VAL2 ")"; \
299 if (known_eq (VAL1, VAL2)) \
300 ::selftest::pass ((LOC), desc); \
301 else \
302 ::selftest::fail ((LOC), desc); \
303 SELFTEST_END_STMT
304
305 /* Evaluate VAL1 and VAL2 and compare them with !=, calling
306 ::selftest::pass if they are non-equal,
307 ::selftest::fail if they are equal. */
308
309 #define ASSERT_NE(VAL1, VAL2) \
310 SELFTEST_BEGIN_STMT \
311 const char *desc_ = "ASSERT_NE (" #VAL1 ", " #VAL2 ")"; \
312 if ((VAL1) != (VAL2)) \
313 ::selftest::pass (SELFTEST_LOCATION, desc_); \
314 else \
315 ::selftest::fail (SELFTEST_LOCATION, desc_); \
316 SELFTEST_END_STMT
317
318 /* Evaluate VAL1 and VAL2 and compare them with maybe_ne, calling
319 ::selftest::pass if they might be non-equal,
320 ::selftest::fail if they are known to be equal. */
321
322 #define ASSERT_MAYBE_NE(VAL1, VAL2) \
323 ASSERT_MAYBE_NE_AT ((SELFTEST_LOCATION), (VAL1), (VAL2))
324
325 /* Like ASSERT_MAYBE_NE, but treat LOC as the effective location of the
326 selftest. */
327
328 #define ASSERT_MAYBE_NE_AT(LOC, VAL1, VAL2) \
329 SELFTEST_BEGIN_STMT \
330 const char *desc = "ASSERT_MAYBE_NE (" #VAL1 ", " #VAL2 ")"; \
331 if (maybe_ne (VAL1, VAL2)) \
332 ::selftest::pass ((LOC), desc); \
333 else \
334 ::selftest::fail ((LOC), desc); \
335 SELFTEST_END_STMT
336
337 /* Evaluate LHS and RHS and compare them with >, calling
338 ::selftest::pass if LHS > RHS,
339 ::selftest::fail otherwise. */
340
341 #define ASSERT_GT(LHS, RHS) \
342 ASSERT_GT_AT ((SELFTEST_LOCATION), (LHS), (RHS))
343
344 /* Like ASSERT_GT, but treat LOC as the effective location of the
345 selftest. */
346
347 #define ASSERT_GT_AT(LOC, LHS, RHS) \
348 SELFTEST_BEGIN_STMT \
349 const char *desc_ = "ASSERT_GT (" #LHS ", " #RHS ")"; \
350 if ((LHS) > (RHS)) \
351 ::selftest::pass ((LOC), desc_); \
352 else \
353 ::selftest::fail ((LOC), desc_); \
354 SELFTEST_END_STMT
355
356 /* Evaluate LHS and RHS and compare them with <, calling
357 ::selftest::pass if LHS < RHS,
358 ::selftest::fail otherwise. */
359
360 #define ASSERT_LT(LHS, RHS) \
361 ASSERT_LT_AT ((SELFTEST_LOCATION), (LHS), (RHS))
362
363 /* Like ASSERT_LT, but treat LOC as the effective location of the
364 selftest. */
365
366 #define ASSERT_LT_AT(LOC, LHS, RHS) \
367 SELFTEST_BEGIN_STMT \
368 const char *desc_ = "ASSERT_LT (" #LHS ", " #RHS ")"; \
369 if ((LHS) < (RHS)) \
370 ::selftest::pass ((LOC), desc_); \
371 else \
372 ::selftest::fail ((LOC), desc_); \
373 SELFTEST_END_STMT
374
375 /* Evaluate VAL1 and VAL2 and compare them with strcmp, calling
376 ::selftest::pass if they are equal (and both are non-NULL),
377 ::selftest::fail if they are non-equal, or are both NULL. */
378
379 #define ASSERT_STREQ(VAL1, VAL2) \
380 SELFTEST_BEGIN_STMT \
381 ::selftest::assert_streq (SELFTEST_LOCATION, #VAL1, #VAL2, \
382 (VAL1), (VAL2)); \
383 SELFTEST_END_STMT
384
385 /* Like ASSERT_STREQ, but treat LOC as the effective location of the
386 selftest. */
387
388 #define ASSERT_STREQ_AT(LOC, VAL1, VAL2) \
389 SELFTEST_BEGIN_STMT \
390 ::selftest::assert_streq ((LOC), #VAL1, #VAL2, \
391 (VAL1), (VAL2)); \
392 SELFTEST_END_STMT
393
394 /* Evaluate HAYSTACK and NEEDLE and use strstr to determine if NEEDLE
395 is within HAYSTACK.
396 ::selftest::pass if NEEDLE is found.
397 ::selftest::fail if it is not found. */
398
399 #define ASSERT_STR_CONTAINS(HAYSTACK, NEEDLE) \
400 SELFTEST_BEGIN_STMT \
401 ::selftest::assert_str_contains (SELFTEST_LOCATION, #HAYSTACK, #NEEDLE, \
402 (HAYSTACK), (NEEDLE)); \
403 SELFTEST_END_STMT
404
405 /* Evaluate PRED1 (VAL1), calling ::selftest::pass if it is true,
406 ::selftest::fail if it is false. */
407
408 #define ASSERT_PRED1(PRED1, VAL1) \
409 SELFTEST_BEGIN_STMT \
410 const char *desc_ = "ASSERT_PRED1 (" #PRED1 ", " #VAL1 ")"; \
411 bool actual_ = (PRED1) (VAL1); \
412 if (actual_) \
413 ::selftest::pass (SELFTEST_LOCATION, desc_); \
414 else \
415 ::selftest::fail (SELFTEST_LOCATION, desc_); \
416 SELFTEST_END_STMT
417
418 #define SELFTEST_BEGIN_STMT do {
419 #define SELFTEST_END_STMT } while (0)
420
421 #endif /* #if CHECKING_P */
422
423 #endif /* GCC_SELFTEST_H */