Disabled broken check on the inheritance representation.
[libfirm] / ir / tr / trverify.c
1 /*
2  * Copyright (C) 1995-2011 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file    tr_inheritance.c
22  * @brief   Check types and entities for correctness.
23  * @date    29.1.2003
24  * @author  Michael Beck, Goetz Lindenmaier
25  * @version $Id$
26  */
27 #include "config.h"
28
29 #include "irgraph_t.h"
30 #include "irflag_t.h"
31 #include "irprintf.h"
32 #include "irgwalk.h"
33 #include "error.h"
34 #include "tv.h"
35
36 #ifdef NDEBUG
37 /*
38  * in RELEASE mode, returns ret if the expression expr evaluates to zero
39  * in ASSERT mode, asserts the expression expr (and the string string).
40  */
41 #define ASSERT_AND_RET(expr, string, ret)       if (!(expr)) return (ret)
42
43 /*
44  * in RELEASE mode, returns ret if the expression expr evaluates to zero
45  * in ASSERT mode, executes blk if the expression expr evaluates to zero and asserts expr
46  */
47 #define ASSERT_AND_RET_DBG(expr, string, ret, blk)      if (!(expr)) return (ret)
48 #else
49 #define ASSERT_AND_RET(expr, string, ret) \
50 do { \
51   if (opt_do_node_verification == FIRM_VERIFICATION_ON) {\
52     assert((expr) && string); } \
53   if (!(expr)) { \
54     if (opt_do_node_verification == FIRM_VERIFICATION_REPORT) \
55       fprintf(stderr, #expr " : " string "\n"); \
56     firm_verify_failure_msg = #expr " && " string; \
57     return (ret); \
58   } \
59 } while (0)
60
61 #define ASSERT_AND_RET_DBG(expr, string, ret, blk) \
62 do { \
63   if (!(expr)) { \
64     firm_verify_failure_msg = #expr " && " string; \
65     if (opt_do_node_verification != FIRM_VERIFICATION_ERROR_ONLY) { blk; } \
66     if (opt_do_node_verification == FIRM_VERIFICATION_REPORT) \
67       fprintf(stderr, #expr " : " string "\n"); \
68     else if (opt_do_node_verification == FIRM_VERIFICATION_ON) { \
69       assert((expr) && string); \
70     } \
71     return (ret); \
72   } \
73 } while (0)
74
75 #endif /* NDEBUG */
76
77 #ifndef NDEBUG
78
79 static const char *firm_verify_failure_msg;
80
81 /**
82  * Show diagnostic if an entity overwrites another one not
83  * in direct superclasses.
84  */
85 static void show_ent_not_supertp(ir_entity *ent, ir_entity *ovw)
86 {
87         ir_type *owner = get_entity_owner(ent);
88         ir_type *ov_own = get_entity_owner(ovw);
89         size_t   i;
90
91         fprintf(stderr, "Type verification error:\n");
92         ir_fprintf(stderr, "Entity %+F::%+e owerwrites ", owner, ent);
93         ir_fprintf(stderr, "Entity %+F::%+e\n", ov_own, ovw);
94
95         ir_fprintf(stderr, "Supertypes of %+F:\n", owner);
96         for (i = 0; i < get_class_n_supertypes(owner); ++i) {
97                 ir_type *super = get_class_supertype(owner, i);
98                 ir_fprintf(stderr, " %+F:\n", super);
99         }
100 }
101
102 /**
103  * Show diagnostic if an entity overwrites a wrong number of things.
104  */
105 static void show_ent_overwrite_cnt(ir_entity *ent)
106 {
107         ir_type *owner = get_entity_owner(ent);
108         size_t i;
109         size_t j;
110         size_t k;
111         bool   found;
112         bool   show_stp = false;
113
114         fprintf(stderr, "Type verification error:\n");
115         ir_fprintf(stderr, "Entity %t::%e owerwrites\n", owner, ent);
116         for (i = 0; i < get_entity_n_overwrites(ent); ++i) {
117                 ir_entity *ovw = get_entity_overwrites(ent, i);
118                 ir_type *ov_own = get_entity_owner(ovw);
119                 size_t n_supertypes = get_class_n_supertypes(owner);
120
121                 ir_fprintf(stderr, "  %t::%e\n", ov_own, ovw);
122                 for (k = 0; k < i; ++k) {
123                         if (ovw == get_entity_overwrites(ent, k)) {
124                                 ir_fprintf(stderr, "  ->%t::%e entered more than once\n", ov_own, ovw);
125                                 break;
126                         }
127                 }
128
129                 found = false;
130                 for (j = 0; j < n_supertypes; ++j) {
131                         if (ov_own == get_class_supertype(owner, j)) {
132                                 show_stp = found = true;
133                                 break;
134                         }
135                 }
136                 if (! found)
137                         ir_fprintf(stderr, "  ->%t not in super types of %t\n", ov_own, owner);
138         }
139
140         if (show_stp) {
141                 ir_fprintf(stderr, "Supertypes of %t:\n", owner);
142                 for (i = 0; i < get_class_n_supertypes(owner); ++i) {
143                         ir_type *super = get_class_supertype(owner, i);
144                         ir_fprintf(stderr, " %t:\n", super);
145                 }
146         }
147 }
148
149 #endif /* #ifndef NDEBUG */
150
151 /**
152  * Check a class
153  */
154 static int check_class(ir_type *tp)
155 {
156         size_t i, n, j, m;
157
158         for (i = 0, n = get_class_n_members(tp); i < n; ++i) {
159                 ir_entity *mem = get_class_member(tp, i);
160
161                 ASSERT_AND_RET_DBG(
162                         tp == get_entity_owner(mem),
163                         "class member with wrong owner",
164                         error_ent_wrong_owner,
165                         ir_fprintf(stderr, "Type verification error:\n%+F %+e(owner %+F)\n",tp, mem, get_entity_owner(mem))
166                 );
167                 ASSERT_AND_RET_DBG(
168                         mem,
169                         "NULL members not allowed",
170                         error_null_mem,
171                         ir_fprintf(stderr, "Type verification error:\n%+F member %zu is NULL\n", tp, i)
172                 );
173
174                 ASSERT_AND_RET_DBG(
175                         get_entity_n_overwrites(mem) <= get_class_n_supertypes(tp),
176                         "wrong number of entity overwrites",
177                         error_wrong_ent_overwrites,
178                         show_ent_overwrite_cnt(mem)
179                 );
180
181 #if 0
182                 for (j = 0, m = get_entity_n_overwrites(mem); j < m; ++j) {
183                         ir_entity *ovw = get_entity_overwrites(mem, j);
184                         size_t    k, n_super;
185
186                         /* Check whether ovw is member of one of tp's supertypes. If so,
187                            the representation is correct. */
188                         for (k = 0, n_super = get_class_n_supertypes(tp); k < n_super; ++k) {
189                                 if (get_class_member_index(get_class_supertype(tp, k), ovw) != INVALID_MEMBER_INDEX) {
190                                         ASSERT_AND_RET_DBG(
191                                                 0,
192                                                 "overwrites an entity not contained in direct supertype",
193                                                 error_ent_not_cont,
194                                                 show_ent_not_supertp(mem, ovw)
195                                         );
196                                         break;
197                                 }
198                         }
199                 }
200 #endif
201
202         }
203         return 0;
204 }
205
206 /**
207  * Check an array.
208  */
209 static int check_array(const ir_type *tp)
210 {
211         size_t i, n_dim = get_array_n_dimensions(tp);
212
213         for (i = 0; i < n_dim; ++i) {
214                 ASSERT_AND_RET_DBG(
215                         has_array_lower_bound(tp, i) || has_array_upper_bound(tp, i),
216                         "array bound missing",
217                         1,
218                         ir_fprintf(stderr, "%+F in dimension %zu\n", tp, i)
219                 );
220         }
221         return 0;
222 }
223
224
225 /**
226  * Check a primitive.
227  */
228 static int check_primitive(ir_type *tp)
229 {
230         ASSERT_AND_RET_DBG(
231                 is_mode(get_type_mode(tp)),
232                 "Primitive type without mode",
233                 1,
234                 ir_fprintf(stderr, "%+F\n", tp)
235         );
236         return 0;
237 }
238
239
240 /*
241  * Checks a type.
242  *
243  * return
244  *  0   if no error encountered
245  */
246 int check_type(ir_type *tp)
247 {
248         switch (get_type_tpop_code(tp)) {
249         case tpo_class:
250                 return check_class(tp);
251         case tpo_array:
252                 return check_array(tp);
253         case tpo_primitive:
254                 return check_primitive(tp);
255         default: break;
256         }
257         return 0;
258 }
259
260 /**
261  * checks the visited flag
262  */
263 static int check_visited_flag(ir_graph *irg, ir_node *n)
264 {
265         ASSERT_AND_RET_DBG(
266                 get_irn_visited(n) <= get_irg_visited(irg),
267                 "Visited flag of node is larger than that of corresponding irg.",
268                 0,
269                 ir_fprintf(stderr, "%+F in %+F\n", n, irg)
270         );
271         return 1;
272 }
273
274 /**
275  * helper environment struct for constant_on_wrong_obstack()
276  */
277 typedef struct myenv {
278         int res;
279         ir_graph *irg;
280 } myenv;
281
282 /**
283  * called by the walker
284  */
285 static void on_irg_storage(ir_node *n, void *data)
286 {
287         myenv *env = (myenv*)data;
288
289         /* We also test whether the setting of the visited flag is legal. */
290         env->res = node_is_in_irgs_storage(env->irg, n) &&
291                    check_visited_flag(env->irg, n);
292 }
293
294 /**
295  * checks whether a given constant IR node is NOT on the
296  * constant IR graph.
297  */
298 static int constant_on_wrong_irg(ir_node *n)
299 {
300         myenv env;
301
302         env.res = 1;  /* on right obstack */
303         env.irg = get_const_code_irg();
304
305         irg_walk(n, on_irg_storage, NULL, (void *)&env);
306         return ! env.res;
307 }
308
309 static int initializer_constant_on_wrong_irg(ir_initializer_t *initializer)
310 {
311         switch (get_initializer_kind(initializer)) {
312         case IR_INITIALIZER_NULL:
313                 return 0;
314         case IR_INITIALIZER_TARVAL:
315                 return 0;
316         case IR_INITIALIZER_CONST:
317                 return constant_on_wrong_irg(get_initializer_const_value(initializer));
318         case IR_INITIALIZER_COMPOUND: {
319                 size_t i, n = get_initializer_compound_n_entries(initializer);
320                 for (i = 0; i < n; ++i) {
321                         ir_initializer_t *sub
322                                 = get_initializer_compound_value(initializer, i);
323                         if (initializer_constant_on_wrong_irg(sub))
324                                 return 1;
325                 }
326                 return 0;
327         }
328         }
329         panic("invalid initializer in initializer_on_wrong_irg");
330 }
331
332 /**
333  * Check if constants node are NOT on the constant IR graph.
334  *
335  * @return NON-zero if an entity initializer constant is NOT on
336  * the current_ir_graph's obstack.
337  */
338 static int constants_on_wrong_irg(ir_entity *ent)
339 {
340         if (ent->initializer != NULL) {
341                 return initializer_constant_on_wrong_irg(ent->initializer);
342         } else if (entity_has_compound_ent_values(ent)) {
343                 size_t i, n;
344                 for (i = 0, n = get_compound_ent_n_values(ent); i < n; ++i) {
345                         if (constant_on_wrong_irg(get_compound_ent_value(ent, i)))
346                                 return 1;
347                 }
348         }
349         return 0;
350 }
351
352 /*
353  * Check an entity. Currently, we check only if initialized constants
354  * are build on the const irg graph.
355  *
356  * @return
357  *  0   if no error encountered
358  *  != 0    a trverify_error_codes code
359  */
360 int check_entity(ir_entity *ent)
361 {
362         ir_type *tp = get_entity_type(ent);
363
364         current_ir_graph =  get_const_code_irg();
365         ASSERT_AND_RET_DBG(
366                 constants_on_wrong_irg(ent) == 0,
367                 "Contants placed on wrong IRG",
368                 error_const_on_wrong_irg,
369                 ir_fprintf(stderr, "%+e not on %+F\n", ent, current_ir_graph)
370         );
371
372         /* Originally, this test assumed, that only method entities have
373            pecularity_inherited.  As I changed this, I have to test for method type
374            before doing the test. */
375         if (get_entity_peculiarity(ent) == peculiarity_existent
376             && is_method_entity(ent)) {
377
378                 ir_entity *impl = get_SymConst_entity(get_atomic_ent_value(ent));
379                 ASSERT_AND_RET_DBG(
380                         impl != NULL,
381                         "inherited method entities must have constant pointing to existent entity.",
382                         error_inherited_ent_without_const,
383                         ir_fprintf(stderr, "%+e points to %+e\n", ent, impl)
384                 );
385         }
386
387         if (is_atomic_entity(ent) && ent->initializer != NULL) {
388                 ir_mode *mode = NULL;
389                 ir_initializer_t *initializer = ent->initializer;
390                 switch (initializer->kind) {
391                 case IR_INITIALIZER_CONST:
392                         mode = get_irn_mode(get_initializer_const_value(initializer));
393                         break;
394                 case IR_INITIALIZER_TARVAL:
395                         mode = get_tarval_mode(get_initializer_tarval_value(initializer));
396                         break;
397                 case IR_INITIALIZER_NULL:
398                 case IR_INITIALIZER_COMPOUND:
399                         break;
400                 }
401                 ASSERT_AND_RET_DBG(
402                         mode == NULL || mode == get_type_mode(tp),
403                         "Mode of constant in entity must match type.",
404                         error_ent_const_mode,
405                         ir_fprintf(stderr, "%+e, type %+F(%+F)\n",
406                         ent, tp, get_type_mode(tp))
407                 );
408         }
409         return no_error;
410 }
411
412 /*
413  * check types and entities
414  */
415 static void check_tore(type_or_ent tore, void *env)
416 {
417         int *res = (int*)env;
418         assert(tore.ent);
419         if (is_type(tore.typ)) {
420                 *res = check_type(tore.typ);
421         } else {
422                 assert(is_entity(tore.ent));
423                 *res = check_entity(tore.ent);
424         }
425 }
426
427 /*
428  * Verify types and entities.
429  */
430 int tr_verify(void)
431 {
432         static ident *empty = NULL;
433         int           res = no_error;
434         ir_type      *constructors;
435         ir_type      *destructors;
436         ir_type      *thread_locals;
437         size_t        i, n;
438         ir_segment_t  s;
439
440         if (empty == NULL)
441                 empty = new_id_from_chars("", 0);
442
443         type_walk(check_tore, NULL, &res);
444
445         for (s = IR_SEGMENT_FIRST; s <= IR_SEGMENT_LAST; ++s) {
446                 const ir_type *type = get_segment_type(s);
447                 size_t         e;
448                 for (e = 0; e < get_compound_n_members(type); ++e) {
449                         ir_entity *entity = get_compound_member(type, e);
450                         ASSERT_AND_RET(get_entity_ld_ident(entity) != NULL ||
451                                         get_entity_visibility(entity) == ir_visibility_private,
452                                         "segment members must have a name or visibility_private",
453                                         1);
454                 }
455         }
456
457         constructors = get_segment_type(IR_SEGMENT_CONSTRUCTORS);
458         for (i = 0, n = get_compound_n_members(constructors); i < n; ++i) {
459                 const ir_entity *entity = get_compound_member(constructors, i);
460                 ASSERT_AND_RET(get_entity_linkage(entity) & IR_LINKAGE_HIDDEN_USER,
461                                "entity without LINKAGE_HIDDEN_USER in constructors is pointless",
462                                1);
463                 /* Mach-O doesn't like labels in this section */
464                 ASSERT_AND_RET(get_entity_ld_ident(entity),
465                                "entity in constructors should have ld_ident=''", 1);
466         }
467         destructors = get_segment_type(IR_SEGMENT_DESTRUCTORS);
468         for (i = 0, n = get_compound_n_members(destructors); i < n; ++i) {
469                 const ir_entity *entity = get_compound_member(destructors, i);
470                 ASSERT_AND_RET(get_entity_linkage(entity) & IR_LINKAGE_HIDDEN_USER,
471                                "entity without LINKAGE_HIDDEN_USER in destructors is pointless",
472                                1);
473                 /* Mach-O doesn't like labels in this section */
474                 ASSERT_AND_RET(get_entity_ld_ident(entity),
475                                "entity in destructors should have ld_ident=''", 1);
476         }
477         thread_locals = get_segment_type(IR_SEGMENT_THREAD_LOCAL);
478         for (i = 0, n = get_compound_n_members(thread_locals); i < n; ++i) {
479                 const ir_entity *entity = get_compound_member(thread_locals, i);
480                 /* this is odd and should not be allowed I think */
481                 ASSERT_AND_RET(!is_method_entity(entity),
482                                "method in THREAD_LOCAL segment", 1);
483                 ASSERT_AND_RET(! (get_entity_linkage(entity) & IR_LINKAGE_CONSTANT),
484                                "thread locals must not be constant", 1);
485         }
486
487         return res;
488 }