finish support for custom backend node attributes, separate x87 attributes from norma...
[libfirm] / ir / be / beverify.c
1 /*
2  * Copyright (C) 1995-2007 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
22  * @brief       Various verify routines that check a scheduled graph for correctness.
23  * @author      Matthias Braun
24  * @date        05.05.2006
25  * @version     $Id$
26  */
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include <limits.h>
32
33 #include "bitset.h"
34 #include "set.h"
35 #include "array.h"
36
37 #include "irnode.h"
38 #include "irgraph.h"
39 #include "irgwalk.h"
40 #include "irprintf.h"
41 #include "irdump_t.h"
42 #include "iredges.h"
43
44 #include "beverify.h"
45 #include "belive.h"
46 #include "besched_t.h"
47 #include "benode_t.h"
48 #include "beirg_t.h"
49 #include "beintlive_t.h"
50
51 static int my_values_interfere(const ir_node *a, const ir_node *b);
52
53 typedef struct be_verify_register_pressure_env_t_ {
54         ir_graph                    *irg;                 /**< the irg to verify */
55          be_lv_t                    *lv;                  /**< Liveness information. */
56         const arch_env_t            *arch_env;            /**< an architecture environment */
57         const arch_register_class_t *cls;                 /**< the register class to check for */
58         int                         registers_available;  /**< number of available registers */
59         int                         problem_found;        /**< flag indicating if a problem was found */
60 } be_verify_register_pressure_env_t;
61
62 /**
63  * Print all nodes of a pset into a file.
64  */
65 static void print_living_values(FILE *F, pset *live_nodes) {
66         ir_node *node;
67
68         ir_fprintf(F, "\t");
69         foreach_pset(live_nodes, node) {
70                 ir_fprintf(F, "%+F ", node);
71         }
72         ir_fprintf(F, "\n");
73 }
74
75 /**
76  * Check if number of live nodes never exceeds the number of available registers.
77  */
78 static void verify_liveness_walker(ir_node *block, void *data) {
79         be_verify_register_pressure_env_t *env = (be_verify_register_pressure_env_t *)data;
80         pset    *live_nodes = pset_new_ptr_default();
81         ir_node *irn;
82         int pressure;
83
84         /* collect register pressure info, start with end of a block */
85         be_liveness_end_of_block(env->lv, env->arch_env, env->cls, block, live_nodes);
86
87         pressure = pset_count(live_nodes);
88         if(pressure > env->registers_available) {
89                 ir_fprintf(stderr, "Verify Warning: Register pressure too high at end of block %+F(%s) (%d/%d):\n",
90                         block, get_irg_dump_name(env->irg), pressure, env->registers_available);
91                 print_living_values(stderr, live_nodes);
92                 env->problem_found = 1;
93         }
94
95         sched_foreach_reverse(block, irn) {
96                 if (is_Phi(irn))
97                         break;
98
99                 be_liveness_transfer(env->arch_env, env->cls, irn, live_nodes);
100
101                 pressure = pset_count(live_nodes);
102
103                 if(pressure > env->registers_available) {
104                         ir_fprintf(stderr, "Verify Warning: Register pressure too high before node %+F in %+F(%s) (%d/%d):\n",
105                                 irn, block, get_irg_dump_name(env->irg), pressure, env->registers_available);
106                         print_living_values(stderr, live_nodes);
107                         env->problem_found = 1;
108                 }
109         }
110         del_pset(live_nodes);
111 }
112
113 /**
114  * Start a walk over the irg and check the register pressure.
115  */
116 int be_verify_register_pressure(const be_irg_t *birg,
117                                 const arch_register_class_t *cls,
118                                 ir_graph *irg) {
119         be_verify_register_pressure_env_t env;
120
121         env.lv                  = be_liveness(irg);
122         env.irg                 = irg;
123         env.arch_env            = birg->main_env->arch_env;
124         env.cls                 = cls;
125         env.registers_available = env.cls->n_regs - be_put_ignore_regs(birg, env.cls, NULL);
126         env.problem_found       = 0;
127
128         irg_block_walk_graph(irg, verify_liveness_walker, NULL, &env);
129         be_liveness_free(env.lv);
130
131         return ! env.problem_found;
132 }
133
134
135
136 //---------------------------------------------------------------------------
137
138
139
140 typedef struct be_verify_schedule_env_t_ {
141         int      problem_found;     /**< flags indicating if there was a problem */
142         bitset_t *scheduled;        /**< bitset of scheduled nodes */
143         ir_graph *irg;              /**< the irg to check */
144         const arch_env_t *arch_env; /**< the arch_env */
145 } be_verify_schedule_env_t;
146
147 /**
148  * Simple schedule checker.
149  */
150 static void verify_schedule_walker(ir_node *block, void *data) {
151         be_verify_schedule_env_t *env = (be_verify_schedule_env_t*) data;
152         ir_node *node;
153         int non_phi_found  = 0;
154         int cfchange_found = 0;
155         // TODO ask arch about delay branches
156         int delay_branches = 0;
157         int last_timestep = INT_MIN;
158
159         /*
160          * Tests for the following things:
161          *   1. Make sure that all phi nodes are scheduled at the beginning of the block
162          *   2. There is 1 or no control flow changing node scheduled and exactly delay_branches operations after it.
163          *   3. No value is defined after it has been used
164          */
165         sched_foreach(block, node) {
166                 int i, arity;
167                 int timestep;
168
169                 // this node is scheduled
170                 if(bitset_is_set(env->scheduled, get_irn_idx(node))) {
171                         ir_fprintf(stderr, "Verify warning: %+F appears to be schedule twice\n");
172                         env->problem_found = 1;
173                 }
174                 bitset_set(env->scheduled, get_irn_idx(node));
175
176                 // Check that scheduled nodes are in the correct block
177                 if(get_nodes_block(node) != block) {
178                         ir_fprintf(stderr, "Verify warning: %+F is in block %+F but scheduled in %+F\n", node, get_nodes_block(node), block);
179                         env->problem_found = 1;
180                 }
181
182                 // Check that timesteps are increasing
183                 timestep = sched_get_time_step(node);
184                 if(timestep <= last_timestep) {
185                         ir_fprintf(stderr, "Verify warning: Schedule timestep did not increase at node %+F\n",
186                                    node);
187                         env->problem_found = 1;
188                 }
189                 last_timestep = timestep;
190
191                 // Check that phis come before any other node
192                 if (is_Phi(node)) {
193                         if (non_phi_found) {
194                                 ir_fprintf(stderr, "Verify Warning: Phi node %+F scheduled after non-Phi nodes in block %+F (%s)\n",
195                                         node, block, get_irg_dump_name(env->irg));
196                                 env->problem_found = 1;
197                         }
198                 } else {
199                         non_phi_found = 1;
200                 }
201
202                 // Check for control flow changing nodes
203                 if (is_cfop(node) && get_irn_opcode(node) != iro_Start) {
204                         /* check, that only one CF operation is scheduled */
205                         if (cfchange_found == 1) {
206                                 ir_fprintf(stderr, "Verify Warning: More than 1 control flow changing node (%+F) scheduled in block %+F (%s)\n",
207                                         node, block, get_irg_dump_name(env->irg));
208                                 env->problem_found = 1;
209                         }
210                         cfchange_found = 1;
211                 } else if (cfchange_found) {
212                         // proj and keepany aren't real instructions...
213                         if(!is_Proj(node) && !be_is_Keep(node)) {
214                                 /* check for delay branches */
215                                 if (delay_branches == 0) {
216                                         ir_fprintf(stderr, "Verify Warning: Node %+F scheduled after control flow changing node (+delay branches) in block %+F (%s)\n",
217                                                 node, block, get_irg_dump_name(env->irg));
218                                         env->problem_found = 1;
219                                 } else {
220                                         delay_branches--;
221                                 }
222                         }
223                 }
224
225                 // Check that all uses come before their definitions
226                 if(!is_Phi(node)) {
227                         int nodetime = sched_get_time_step(node);
228                         for(i = 0, arity = get_irn_arity(node); i < arity; ++i) {
229                                 ir_node *arg = get_irn_n(node, i);
230                                 if(get_nodes_block(arg) != block
231                                    || !sched_is_scheduled(arg))
232                                         continue;
233
234                                 if(sched_get_time_step(arg) >= nodetime) {
235                                         ir_fprintf(stderr, "Verify Warning: Value %+F used by %+F before it was defined in block %+F (%s)\n",
236                                                    arg, node, block, get_irg_dump_name(env->irg));
237                                         env->problem_found = 1;
238                                 }
239                         }
240                 }
241
242                 // Check that no dead nodes are scheduled
243                 if(get_irn_n_edges(node) == 0) {
244                         ir_fprintf(stderr, "Verify warning: Node %+F is dead but scheduled in block %+F (%s)\n",
245                                    node, block, get_irg_dump_name(env->irg));
246                         env->problem_found = 1;
247                 }
248         }
249
250         /* check that all delay branches are filled (at least with NOPs) */
251         if (cfchange_found && delay_branches != 0) {
252                 ir_fprintf(stderr, "Verify warning: Not all delay slots filled after jump (%d/%d) in block %+F (%s)\n",
253                         block, get_irg_dump_name(env->irg));
254                 env->problem_found = 1;
255         }
256 }
257
258 static int should_be_scheduled(be_verify_schedule_env_t *env, ir_node *node) {
259         if(is_Block(node))
260                 return -1;
261
262         if(get_irn_mode(node) == mode_M) {
263                 if(is_Proj(node))
264                         return -1;
265                 if(is_Phi(node) || is_Sync(node) || is_Pin(node))
266                         return 0;
267         }
268         if(is_Proj(node)) {
269                 if(get_irn_mode(node) == mode_X)
270                         return 0;
271                 return should_be_scheduled(env, get_Proj_pred(node));
272         }
273         if(be_is_Keep(node) && get_irn_opcode(get_nodes_block(node)) == iro_Bad)
274                 return 0;
275
276         switch(get_irn_opcode(node)) {
277         case iro_End:
278         case iro_NoMem:
279         case iro_Bad:
280         case iro_Unknown:
281                 return 0;
282         default:
283                 break;
284         }
285
286         if(arch_irn_get_flags(env->arch_env, node) & arch_irn_flags_ignore)
287                 return -1;
288
289         return 1;
290 }
291
292 static void check_schedule(ir_node *node, void *data) {
293         be_verify_schedule_env_t *env = data;
294         int should_be;
295         int scheduled;
296
297         should_be = should_be_scheduled(env, node);
298         if(should_be == -1)
299                 return;
300
301         scheduled = bitset_is_set(env->scheduled, get_irn_idx(node)) ? 1 : 0;
302         should_be = should_be ? 1 : 0;
303         if(should_be != scheduled) {
304                 ir_fprintf(stderr, "Verify warning: Node %+F in block %+F(%s) should%s be scheduled\n",
305                         node, get_nodes_block(node), get_irg_dump_name(env->irg), should_be ? "" : " not");
306                 env->problem_found = 1;
307         }
308 }
309
310 /**
311  * Start a walk over the irg and check schedule.
312  */
313 int be_verify_schedule(const be_irg_t *birg)
314 {
315         be_verify_schedule_env_t env;
316
317         env.problem_found = 0;
318         env.irg           = be_get_birg_irg(birg);
319         env.scheduled     = bitset_alloca(get_irg_last_idx(env.irg));
320         env.arch_env      = birg->main_env->arch_env;
321
322         irg_block_walk_graph(env.irg, verify_schedule_walker, NULL, &env);
323         // check if all nodes are scheduled
324         irg_walk_graph(env.irg, check_schedule, NULL, &env);
325
326         return ! env.problem_found;
327 }
328
329
330
331 //---------------------------------------------------------------------------
332
333
334
335 typedef struct _spill_t {
336         ir_node *spill;
337         ir_entity *ent;
338 } spill_t;
339
340 typedef struct {
341         const arch_env_t *arch_env;
342         ir_graph *irg;
343         set *spills;
344         ir_node **reloads;
345         int problem_found;
346 } be_verify_spillslots_env_t;
347
348 static int cmp_spill(const void* d1, const void* d2, size_t size) {
349         const spill_t* s1 = d1;
350         const spill_t* s2 = d2;
351         return s1->spill != s2->spill;
352 }
353
354 static spill_t *find_spill(be_verify_spillslots_env_t *env, ir_node *node) {
355         spill_t spill;
356
357         spill.spill = node;
358         return set_find(env->spills, &spill, sizeof(spill), HASH_PTR(node));
359 }
360
361 static spill_t *get_spill(be_verify_spillslots_env_t *env, ir_node *node, ir_entity *ent) {
362         spill_t spill, *res;
363         int hash = HASH_PTR(node);
364
365         spill.spill = node;
366         res = set_find(env->spills, &spill, sizeof(spill), hash);
367
368         if(res == NULL) {
369                 spill.ent = ent;
370                 res = set_insert(env->spills, &spill, sizeof(spill), hash);
371         }
372
373         return res;
374 }
375
376 static ir_node *get_memory_edge(const ir_node *node) {
377         int i, arity;
378         ir_node *result = NULL;
379
380         arity = get_irn_arity(node);
381         for(i = arity - 1; i >= 0; --i) {
382                 ir_node *arg = get_irn_n(node, i);
383                 if(get_irn_mode(arg) == mode_M) {
384                         assert(result == NULL);
385                         result = arg;
386                 }
387         }
388
389         return result;
390 }
391
392 static
393 void collect(be_verify_spillslots_env_t *env, ir_node *node, ir_node *reload, ir_entity* ent);
394
395 static
396 void be_check_entity(be_verify_spillslots_env_t *env, ir_node *node, ir_entity *ent) {
397         if(ent == NULL) {
398                 ir_fprintf(stderr, "Verify warning: Node %+F in block %+F(%s) should have an entity assigned\n",
399                            node, get_nodes_block(node), get_irg_dump_name(env->irg));
400         }
401 }
402
403 static
404 void collect_spill(be_verify_spillslots_env_t *env, ir_node *node, ir_node *reload, ir_entity* ent) {
405         ir_entity *spillent = arch_get_frame_entity(env->arch_env, node);
406         be_check_entity(env, node, spillent);
407         get_spill(env, node, ent);
408
409         if(spillent != ent) {
410                 ir_fprintf(stderr, "Verify warning: Spill %+F has different entity than reload %+F in block %+F(%s)\n",
411                         node, reload, get_nodes_block(node), get_irg_dump_name(env->irg));
412                 env->problem_found = 1;
413         }
414 }
415
416 static void collect_memperm(be_verify_spillslots_env_t *env, ir_node *node, ir_node *reload, ir_entity* ent) {
417         int i, arity;
418         spill_t spill, *res;
419         int hash = HASH_PTR(node);
420         int out;
421         ir_node* memperm;
422         ir_entity *spillent;
423
424         assert(is_Proj(node));
425
426         memperm = get_Proj_pred(node);
427         out = get_Proj_proj(node);
428
429         spillent = be_get_MemPerm_out_entity(memperm, out);
430         be_check_entity(env, memperm, spillent);
431         if(spillent != ent) {
432                 ir_fprintf(stderr, "Verify warning: MemPerm %+F has different entity than reload %+F in block %+F(%s)\n",
433                         node, reload, get_nodes_block(node), get_irg_dump_name(env->irg));
434                 env->problem_found = 1;
435         }
436
437         spill.spill = node;
438         res = set_find(env->spills, &spill, sizeof(spill), hash);
439         if(res != NULL) {
440                 return;
441         }
442
443         spill.ent = spillent;
444         res = set_insert(env->spills, &spill, sizeof(spill), hash);
445
446         for(i = 0, arity = be_get_MemPerm_entity_arity(memperm); i < arity; ++i) {
447                 ir_node* arg = get_irn_n(memperm, i + 1);
448                 ir_entity* argent = be_get_MemPerm_in_entity(memperm, i);
449
450                 collect(env, arg, memperm, argent);
451         }
452 }
453
454 static void collect_memphi(be_verify_spillslots_env_t *env, ir_node *node, ir_node *reload, ir_entity *ent) {
455         int i, arity;
456         spill_t spill, *res;
457         int hash = HASH_PTR(node);
458
459         assert(is_Phi(node));
460
461         spill.spill = node;
462         res = set_find(env->spills, &spill, sizeof(spill), hash);
463         if(res != NULL) {
464                 return;
465         }
466
467         spill.ent = ent;
468         res = set_insert(env->spills, &spill, sizeof(spill), hash);
469
470         // is 1 of the arguments a spill?
471         for(i = 0, arity = get_irn_arity(node); i < arity; ++i) {
472                 ir_node* arg = get_irn_n(node, i);
473                 collect(env, arg, reload, ent);
474         }
475 }
476
477 static void collect(be_verify_spillslots_env_t *env, ir_node *node, ir_node *reload, ir_entity* ent) {
478         if(be_is_Spill(node)) {
479                 collect_spill(env, node, reload, ent);
480         } else if(is_Proj(node)) {
481                 collect_memperm(env, node, reload, ent);
482         } else if(is_Phi(node) && get_irn_mode(node) == mode_M) {
483                 collect_memphi(env, node, reload, ent);
484         } else {
485                 // Disabled for now, spills might get transformed by the backend
486 #if 0
487                 ir_fprintf(stderr, "Verify warning: No spill, memperm or memphi attached to node %+F found from node %+F in block %+F(%s)\n",
488                         node, reload, get_nodes_block(node), get_irg_dump_name(env->irg));
489                 env->problem_found = 1;
490 #endif
491         }
492 }
493
494 /**
495  * This walker function searches for reloads and collects all the spills
496  * and memphis attached to them.
497  */
498 static void collect_spills_walker(ir_node *node, void *data) {
499         be_verify_spillslots_env_t *env = data;
500         const arch_env_t *arch_env = env->arch_env;
501
502         // @@@ ia32_classify returns classification of Proj_pred :-/
503         if(is_Proj(node))
504                 return;
505
506         if(arch_irn_class_is(arch_env, node, reload)) {
507                 ir_node *spill = get_memory_edge(node);
508                 ir_entity *ent;
509
510                 if(spill == NULL) {
511                         ir_fprintf(stderr, "Verify warning: No spill attached to reload %+F in block %+F(%s)\n",
512                                    node, get_nodes_block(node), get_irg_dump_name(env->irg));
513                         env->problem_found = 1;
514                         return;
515                 }
516                 ent = arch_get_frame_entity(env->arch_env, node);
517                 be_check_entity(env, node, ent);
518
519                 collect(env, spill, node, ent);
520                 ARR_APP1(ir_node*, env->reloads, node);
521         }
522 }
523
524 static void check_spillslot_interference(be_verify_spillslots_env_t *env) {
525         int spillcount = set_count(env->spills);
526         spill_t **spills = alloca(spillcount * sizeof(spills[0]));
527         spill_t *spill;
528         int i;
529
530         for(spill = set_first(env->spills), i = 0; spill != NULL; spill = set_next(env->spills), ++i) {
531                 spills[i] = spill;
532         }
533
534         for(i = 0; i < spillcount; ++i) {
535                 spill_t *sp1 = spills[i];
536                 int i2;
537
538                 for(i2 = i+1; i2 < spillcount; ++i2) {
539                         spill_t *sp2 = spills[i2];
540
541                         if(sp1->ent != sp2->ent)
542                                 continue;
543
544                         if(my_values_interfere(sp1->spill, sp2->spill)) {
545                                 ir_fprintf(stderr, "Verify warning: Spillslots for %+F in block %+F(%s) and %+F in block %+F(%s) interfere\n",
546                                         sp1->spill, get_nodes_block(sp1->spill), get_irg_dump_name(env->irg),
547                                         sp2->spill, get_nodes_block(sp2->spill), get_irg_dump_name(env->irg));
548                                 env->problem_found = 1;
549                                 my_values_interfere(sp1->spill, sp2->spill);
550                         }
551                 }
552         }
553 }
554
555 static void check_lonely_spills(ir_node *node, void *data) {
556         be_verify_spillslots_env_t *env = data;
557
558         if(be_is_Spill(node) || (is_Proj(node) && be_is_MemPerm(get_Proj_pred(node)))) {
559                 spill_t *spill = find_spill(env, node);
560                 if(be_is_Spill(node)) {
561                         ir_entity *ent = arch_get_frame_entity(env->arch_env, node);
562                         be_check_entity(env, node, ent);
563                 }
564
565                 if(spill == NULL) {
566                         ir_fprintf(stderr, "Verify warning: Node %+F in block %+F(%s) not connected to a reaload\n",
567                                    node, get_nodes_block(node), get_irg_dump_name(env->irg));
568                 }
569         }
570 }
571
572 int be_verify_spillslots(const arch_env_t *arch_env, ir_graph *irg)
573 {
574         be_verify_spillslots_env_t env;
575
576         env.arch_env = arch_env;
577         env.irg = irg;
578         env.spills = new_set(cmp_spill, 10);
579         env.reloads = NEW_ARR_F(ir_node*, 0);
580         env.problem_found = 0;
581
582         irg_walk_graph(irg, collect_spills_walker, NULL, &env);
583         irg_walk_graph(irg, check_lonely_spills, NULL, &env);
584
585         check_spillslot_interference(&env);
586
587         DEL_ARR_F(env.reloads);
588         del_set(env.spills);
589
590         return ! env.problem_found;
591 }
592
593
594
595 //---------------------------------------------------------------------------
596
597
598
599 /**
600  * Check, if two values interfere.
601  * @param a The first value.
602  * @param b The second value.
603  * @return 1, if a and b interfere, 0 if not.
604  */
605 static int my_values_interfere(const ir_node *a, const ir_node *b) {
606         const ir_edge_t *edge;
607         ir_node *bb;
608         int a2b = value_dominates(a, b);
609         int b2a = value_dominates(b, a);
610
611         /* If there is no dominance relation, they do not interfere. */
612         if(!a2b && !b2a)
613                 return 0;
614
615         /*
616          * Adjust a and b so, that a dominates b if
617          * a dominates b or vice versa.
618          */
619         if(b2a) {
620                 const ir_node *t = a;
621                 a = b;
622                 b = t;
623         }
624
625         bb = get_nodes_block(b);
626
627         /*
628          * Look at all usages of a.
629          * If there's one usage of a in the block of b, then
630          * we check, if this use is dominated by b, if that's true
631          * a and b interfere. Note that b must strictly dominate the user,
632          * since if b is the last user of in the block, b and a do not
633          * interfere.
634          * Uses of a not in b's block can be disobeyed, because the
635          * check for a being live at the end of b's block is already
636          * performed.
637          */
638         foreach_out_edge(a, edge) {
639                 const ir_node *user = get_edge_src_irn(edge);
640                 if(b == user)
641                         continue;
642
643                 if(get_irn_opcode(user) == iro_End)
644                         continue;
645
646                 // in case of phi arguments we compare with the block the value comes from
647                 if(is_Phi(user)) {
648                         ir_node *phiblock = get_nodes_block(user);
649                         if(phiblock == bb)
650                                 continue;
651                         user = get_irn_n(phiblock, get_edge_src_pos(edge));
652                 }
653
654                 if(value_dominates(b, user))
655                         return 1;
656         }
657
658         return 0;
659 }
660
661
662
663 //---------------------------------------------------------------------------
664
665
666
667 typedef struct _be_verify_register_allocation_env_t {
668         const arch_env_t *arch_env;
669         ir_graph *irg;
670         be_lv_t *lv;
671         int problem_found;
672 } be_verify_register_allocation_env_t;
673
674 static void check_register_constraints(ir_node *node, be_verify_register_allocation_env_t *env) {
675         const arch_env_t      *arch_env = env->arch_env;
676         const arch_register_t *reg;
677         int                   i, arity;
678
679         /* verify output register */
680         if (arch_get_irn_reg_class(arch_env, node, -1) != NULL) {
681                 reg = arch_get_irn_register(arch_env, node);
682                 if (reg == NULL) {
683                         ir_fprintf(stderr, "Verify warning: Node %+F in block %+F(%s) should have a register assigned\n",
684                                         node, get_nodes_block(node), get_irg_dump_name(env->irg));
685                         env->problem_found = 1;
686                 }
687                 else if (! arch_register_type_is(reg, joker) && !arch_reg_is_allocatable(arch_env, node, -1, reg)) {
688                         ir_fprintf(stderr, "Verify warning: Register %s assigned as output of %+F not allowed (register constraint) in block %+F(%s)\n",
689                                         reg->name, node, get_nodes_block(node), get_irg_dump_name(env->irg));
690                         env->problem_found = 1;
691                 }
692         }
693
694         /* verify input register */
695         arity = get_irn_arity(node);
696         for (i = 0; i < arity; ++i) {
697                 ir_node *pred = get_irn_n(node, i);
698
699                 if (is_Unknown(pred))
700                         continue;
701
702                 if (is_Bad(pred)) {
703                         ir_fprintf(stderr, "Verify warning: %+F in block %+F(%s) has Bad as input %d\n",
704                                 node, get_nodes_block(node), get_irg_dump_name(env->irg), i);
705                         env->problem_found = 1;
706                         continue;
707                 }
708
709                 if (arch_get_irn_reg_class(arch_env, node, i) == NULL)
710                         continue;
711
712                 reg = arch_get_irn_register(arch_env, pred);
713                 if (reg == NULL) {
714                         ir_fprintf(stderr, "Verify warning: Node %+F in block %+F(%s) should have a register assigned\n",
715                                    pred, get_nodes_block(pred), get_irg_dump_name(env->irg));
716                         env->problem_found = 1;
717                         continue;
718                 }
719                 else if (! arch_register_type_is(reg, joker) && ! arch_reg_is_allocatable(arch_env, node, i, reg)) {
720                         ir_fprintf(stderr, "Verify warning: Register %s as input %d of %+F not allowed (register constraint) in block %+F(%s)\n",
721                                    reg->name, i, node, get_nodes_block(node), get_irg_dump_name(env->irg));
722                         env->problem_found = 1;
723                 }
724         }
725 }
726
727 static void check_register_allocation(be_verify_register_allocation_env_t *env,
728                                       const arch_register_class_t *regclass, pset *nodes) {
729         const arch_env_t      *arch_env  = env->arch_env;
730         const arch_register_t *reg       = NULL;
731         int                   fail       = 0;
732         bitset_t              *registers = bitset_alloca(arch_register_class_n_regs(regclass));
733         ir_node               *node;
734
735         foreach_pset(nodes, node) {
736                 if (arch_get_irn_reg_class(arch_env, node, -1) != regclass)
737                         continue;
738
739                 reg = arch_get_irn_register(arch_env, node);
740
741                 /* this problem is already reported in 'check_register_constraints' */
742                 if (! reg)
743                         continue;
744
745                 if (bitset_is_set(registers, reg->index)) {
746                         pset_break(nodes);
747                         fail = 1;
748                         break;
749                 }
750                 bitset_set(registers, reg->index);
751         }
752
753         if (fail) {
754                 ir_fprintf(stderr, "Verify warning: Register %s assigned more than once in block %+F(%s)\n",
755                                reg->name, get_nodes_block(node), get_irg_dump_name(env->irg));
756                 env->problem_found = 1;
757
758                 foreach_pset(nodes, node) {
759                         if (arch_get_irn_register(arch_env, node) == reg) {
760                                 ir_fprintf(stderr, "  at node %+F\n", node);
761                         }
762                 }
763         }
764 }
765
766 static void verify_block_register_allocation(ir_node *block, void *data) {
767         be_verify_register_allocation_env_t *env = data;
768         const arch_env_t *arch_env = env->arch_env;
769         const arch_isa_t *isa = arch_env->isa;
770         int i, nregclasses;
771
772         nregclasses = arch_isa_get_n_reg_class(isa);
773         for (i = 0; i < nregclasses; ++i) {
774                 const arch_register_class_t *regclass = arch_isa_get_reg_class(isa, i);
775                 ir_node *node;
776                 pset *live_nodes = pset_new_ptr_default();
777
778                 be_liveness_end_of_block(env->lv, env->arch_env, regclass, block, live_nodes);
779                 check_register_allocation(env, regclass, live_nodes);
780
781                 sched_foreach_reverse(block, node) {
782                         if (is_Phi(node))
783                                 break;
784
785                         be_liveness_transfer(env->arch_env, regclass, node, live_nodes);
786                         check_register_allocation(env, regclass, live_nodes);
787                         check_register_constraints(node, env);
788                 }
789
790                 del_pset(live_nodes);
791         }
792 }
793
794 int be_verify_register_allocation(const arch_env_t *arch_env, ir_graph *irg) {
795         be_verify_register_allocation_env_t env;
796
797         env.arch_env = arch_env;
798         env.irg = irg;
799         env.lv = be_liveness(irg);
800         env.problem_found = 0;
801
802         irg_block_walk_graph(irg, verify_block_register_allocation, NULL, &env);
803
804         be_liveness_free(env.lv);
805
806         return !env.problem_found;
807 }
808
809
810
811 //---------------------------------------------------------------------------
812
813
814
815 typedef struct _verify_out_dead_nodes_env {
816         ir_graph *irg;
817         bitset_t *reachable;
818         int problem_found;
819 } verify_out_dead_nodes_env;
820
821 static void check_out_edges(ir_node *node, verify_out_dead_nodes_env *env) {
822         ir_graph *irg = env->irg;
823         const ir_edge_t* edge;
824
825         if(irn_visited(node))
826                 return;
827         mark_irn_visited(node);
828
829         foreach_out_edge(node, edge) {
830                 ir_node* src = get_edge_src_irn(edge);
831
832                 if(!bitset_is_set(env->reachable, get_irn_idx(src)) && !is_Block(node)) {
833                         ir_fprintf(stderr, "Verify warning: Node %+F in block %+F(%s) only reachable through out edges from %+F\n",
834                                    src, get_nodes_block(src), get_irg_dump_name(irg), node);
835                         env->problem_found = 1;
836                         continue;
837                 }
838
839                 check_out_edges(src, env);
840         }
841 }
842
843 static void set_reachable(ir_node *node, void* data)
844 {
845         bitset_t* reachable = data;
846         bitset_set(reachable, get_irn_idx(node));
847 }
848
849 int be_verify_out_edges(ir_graph *irg) {
850         verify_out_dead_nodes_env env;
851
852         env.irg           = irg;
853         env.reachable     = bitset_alloca(get_irg_last_idx(irg));
854         env.problem_found = edges_verify(irg);
855
856         irg_walk_in_or_dep_graph(irg, set_reachable, NULL, env.reachable);
857         irg_walk_anchors(irg, set_reachable, NULL, env.reachable);
858         inc_irg_visited(irg);
859         check_out_edges(get_irg_start(irg), &env);
860
861         return ! env.problem_found;
862 }