f9b825fb1b2a23ba80ee6a3b31653a0924ae225d
[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 void collect(be_verify_spillslots_env_t *env, ir_node *node, ir_node *reload, ir_entity* ent);
393
394 static void check_entity(be_verify_spillslots_env_t *env, ir_node *node, ir_entity *ent) {
395         if(ent == NULL) {
396                 ir_fprintf(stderr, "Verify warning: Node %+F in block %+F(%s) should have an entity assigned\n",
397                            node, get_nodes_block(node), get_irg_dump_name(env->irg));
398         }
399 }
400
401 static void collect_spill(be_verify_spillslots_env_t *env, ir_node *node, ir_node *reload, ir_entity* ent) {
402         ir_entity *spillent = arch_get_frame_entity(env->arch_env, node);
403         check_entity(env, node, spillent);
404         get_spill(env, node, ent);
405
406         if(spillent != ent) {
407                 ir_fprintf(stderr, "Verify warning: Spill %+F has different entity than reload %+F in block %+F(%s)\n",
408                         node, reload, get_nodes_block(node), get_irg_dump_name(env->irg));
409                 env->problem_found = 1;
410         }
411 }
412
413 static void collect_memperm(be_verify_spillslots_env_t *env, ir_node *node, ir_node *reload, ir_entity* ent) {
414         int i, arity;
415         spill_t spill, *res;
416         int hash = HASH_PTR(node);
417         int out;
418         ir_node* memperm;
419         ir_entity *spillent;
420
421         assert(is_Proj(node));
422
423         memperm = get_Proj_pred(node);
424         out = get_Proj_proj(node);
425
426         spillent = be_get_MemPerm_out_entity(memperm, out);
427         check_entity(env, memperm, spillent);
428         if(spillent != ent) {
429                 ir_fprintf(stderr, "Verify warning: MemPerm %+F has different entity than reload %+F in block %+F(%s)\n",
430                         node, reload, get_nodes_block(node), get_irg_dump_name(env->irg));
431                 env->problem_found = 1;
432         }
433
434         spill.spill = node;
435         res = set_find(env->spills, &spill, sizeof(spill), hash);
436         if(res != NULL) {
437                 return;
438         }
439
440         spill.ent = spillent;
441         res = set_insert(env->spills, &spill, sizeof(spill), hash);
442
443         for(i = 0, arity = be_get_MemPerm_entity_arity(memperm); i < arity; ++i) {
444                 ir_node* arg = get_irn_n(memperm, i + 1);
445                 ir_entity* argent = be_get_MemPerm_in_entity(memperm, i);
446
447                 collect(env, arg, memperm, argent);
448         }
449 }
450
451 static void collect_memphi(be_verify_spillslots_env_t *env, ir_node *node, ir_node *reload, ir_entity *ent) {
452         int i, arity;
453         spill_t spill, *res;
454         int hash = HASH_PTR(node);
455
456         assert(is_Phi(node));
457
458         spill.spill = node;
459         res = set_find(env->spills, &spill, sizeof(spill), hash);
460         if(res != NULL) {
461                 return;
462         }
463
464         spill.ent = ent;
465         res = set_insert(env->spills, &spill, sizeof(spill), hash);
466
467         // is 1 of the arguments a spill?
468         for(i = 0, arity = get_irn_arity(node); i < arity; ++i) {
469                 ir_node* arg = get_irn_n(node, i);
470                 collect(env, arg, reload, ent);
471         }
472 }
473
474 static void collect(be_verify_spillslots_env_t *env, ir_node *node, ir_node *reload, ir_entity* ent) {
475         if(be_is_Spill(node)) {
476                 collect_spill(env, node, reload, ent);
477         } else if(is_Proj(node)) {
478                 collect_memperm(env, node, reload, ent);
479         } else if(is_Phi(node) && get_irn_mode(node) == mode_M) {
480                 collect_memphi(env, node, reload, ent);
481         } else {
482                 // Disabled for now, spills might get transformed by the backend
483 #if 0
484                 ir_fprintf(stderr, "Verify warning: No spill, memperm or memphi attached to node %+F found from node %+F in block %+F(%s)\n",
485                         node, reload, get_nodes_block(node), get_irg_dump_name(env->irg));
486                 env->problem_found = 1;
487 #endif
488         }
489 }
490
491 /**
492  * This walker function searches for reloads and collects all the spills
493  * and memphis attached to them.
494  */
495 static void collect_spills_walker(ir_node *node, void *data) {
496         be_verify_spillslots_env_t *env = data;
497         const arch_env_t *arch_env = env->arch_env;
498
499         // @@@ ia32_classify returns classification of Proj_pred :-/
500         if(is_Proj(node))
501                 return;
502
503         if(arch_irn_class_is(arch_env, node, reload)) {
504                 ir_node *spill = get_memory_edge(node);
505                 ir_entity *ent;
506
507                 if(spill == NULL) {
508                         ir_fprintf(stderr, "Verify warning: No spill attached to reload %+F in block %+F(%s)\n",
509                                    node, get_nodes_block(node), get_irg_dump_name(env->irg));
510                         env->problem_found = 1;
511                         return;
512                 }
513                 ent = arch_get_frame_entity(env->arch_env, node);
514                 check_entity(env, node, ent);
515
516                 collect(env, spill, node, ent);
517                 ARR_APP1(ir_node*, env->reloads, node);
518         }
519 }
520
521 static void check_spillslot_interference(be_verify_spillslots_env_t *env) {
522         int spillcount = set_count(env->spills);
523         spill_t **spills = alloca(spillcount * sizeof(spills[0]));
524         spill_t *spill;
525         int i;
526
527         for(spill = set_first(env->spills), i = 0; spill != NULL; spill = set_next(env->spills), ++i) {
528                 spills[i] = spill;
529         }
530
531         for(i = 0; i < spillcount; ++i) {
532                 spill_t *sp1 = spills[i];
533                 int i2;
534
535                 for(i2 = i+1; i2 < spillcount; ++i2) {
536                         spill_t *sp2 = spills[i2];
537
538                         if(sp1->ent != sp2->ent)
539                                 continue;
540
541                         if(my_values_interfere(sp1->spill, sp2->spill)) {
542                                 ir_fprintf(stderr, "Verify warning: Spillslots for %+F in block %+F(%s) and %+F in block %+F(%s) interfere\n",
543                                         sp1->spill, get_nodes_block(sp1->spill), get_irg_dump_name(env->irg),
544                                         sp2->spill, get_nodes_block(sp2->spill), get_irg_dump_name(env->irg));
545                                 env->problem_found = 1;
546                                 my_values_interfere(sp1->spill, sp2->spill);
547                         }
548                 }
549         }
550 }
551
552 static void check_lonely_spills(ir_node *node, void *data) {
553         be_verify_spillslots_env_t *env = data;
554
555         if(be_is_Spill(node) || (is_Proj(node) && be_is_MemPerm(get_Proj_pred(node)))) {
556                 spill_t *spill = find_spill(env, node);
557                 if(be_is_Spill(node)) {
558                         ir_entity *ent = arch_get_frame_entity(env->arch_env, node);
559                         check_entity(env, node, ent);
560                 }
561
562                 if(spill == NULL) {
563                         ir_fprintf(stderr, "Verify warning: Node %+F in block %+F(%s) not connected to a reaload\n",
564                                    node, get_nodes_block(node), get_irg_dump_name(env->irg));
565                 }
566         }
567 }
568
569 int be_verify_spillslots(const arch_env_t *arch_env, ir_graph *irg)
570 {
571         be_verify_spillslots_env_t env;
572
573         env.arch_env = arch_env;
574         env.irg = irg;
575         env.spills = new_set(cmp_spill, 10);
576         env.reloads = NEW_ARR_F(ir_node*, 0);
577         env.problem_found = 0;
578
579         irg_walk_graph(irg, collect_spills_walker, NULL, &env);
580         irg_walk_graph(irg, check_lonely_spills, NULL, &env);
581
582         check_spillslot_interference(&env);
583
584         DEL_ARR_F(env.reloads);
585         del_set(env.spills);
586
587         return ! env.problem_found;
588 }
589
590
591
592 //---------------------------------------------------------------------------
593
594
595
596 /**
597  * Check, if two values interfere.
598  * @param a The first value.
599  * @param b The second value.
600  * @return 1, if a and b interfere, 0 if not.
601  */
602 static int my_values_interfere(const ir_node *a, const ir_node *b) {
603         const ir_edge_t *edge;
604         ir_node *bb;
605         int a2b = value_dominates(a, b);
606         int b2a = value_dominates(b, a);
607
608         /* If there is no dominance relation, they do not interfere. */
609         if(!a2b && !b2a)
610                 return 0;
611
612         /*
613          * Adjust a and b so, that a dominates b if
614          * a dominates b or vice versa.
615          */
616         if(b2a) {
617                 const ir_node *t = a;
618                 a = b;
619                 b = t;
620         }
621
622         bb = get_nodes_block(b);
623
624         /*
625          * Look at all usages of a.
626          * If there's one usage of a in the block of b, then
627          * we check, if this use is dominated by b, if that's true
628          * a and b interfere. Note that b must strictly dominate the user,
629          * since if b is the last user of in the block, b and a do not
630          * interfere.
631          * Uses of a not in b's block can be disobeyed, because the
632          * check for a being live at the end of b's block is already
633          * performed.
634          */
635         foreach_out_edge(a, edge) {
636                 const ir_node *user = get_edge_src_irn(edge);
637                 if(b == user)
638                         continue;
639
640                 if(get_irn_opcode(user) == iro_End)
641                         continue;
642
643                 // in case of phi arguments we compare with the block the value comes from
644                 if(is_Phi(user)) {
645                         ir_node *phiblock = get_nodes_block(user);
646                         if(phiblock == bb)
647                                 continue;
648                         user = get_irn_n(phiblock, get_edge_src_pos(edge));
649                 }
650
651                 if(value_dominates(b, user))
652                         return 1;
653         }
654
655         return 0;
656 }
657
658
659
660 //---------------------------------------------------------------------------
661
662
663
664 typedef struct _be_verify_register_allocation_env_t {
665         const arch_env_t *arch_env;
666         ir_graph *irg;
667         be_lv_t *lv;
668         int problem_found;
669 } be_verify_register_allocation_env_t;
670
671 static void check_register_constraints(ir_node *node, be_verify_register_allocation_env_t *env) {
672         const arch_env_t      *arch_env = env->arch_env;
673         const arch_register_t *reg;
674         int                   i, arity;
675
676         /* verify output register */
677         if (arch_get_irn_reg_class(arch_env, node, -1) != NULL) {
678                 reg = arch_get_irn_register(arch_env, node);
679                 if (reg == NULL) {
680                         ir_fprintf(stderr, "Verify warning: Node %+F in block %+F(%s) should have a register assigned\n",
681                                         node, get_nodes_block(node), get_irg_dump_name(env->irg));
682                         env->problem_found = 1;
683                 }
684                 else if (! arch_register_type_is(reg, joker) && !arch_reg_is_allocatable(arch_env, node, -1, reg)) {
685                         ir_fprintf(stderr, "Verify warning: Register %s assigned as output of %+F not allowed (register constraint) in block %+F(%s)\n",
686                                         reg->name, node, get_nodes_block(node), get_irg_dump_name(env->irg));
687                         env->problem_found = 1;
688                 }
689         }
690
691         /* verify input register */
692         arity = get_irn_arity(node);
693         for (i = 0; i < arity; ++i) {
694                 ir_node *pred = get_irn_n(node, i);
695
696                 if (is_Unknown(pred))
697                         continue;
698
699                 if (is_Bad(pred)) {
700                         ir_fprintf(stderr, "Verify warning: %+F in block %+F(%s) has Bad as input %d\n",
701                                 node, get_nodes_block(node), get_irg_dump_name(env->irg), i);
702                         env->problem_found = 1;
703                         continue;
704                 }
705
706                 if (arch_get_irn_reg_class(arch_env, node, i) == NULL)
707                         continue;
708
709                 reg = arch_get_irn_register(arch_env, pred);
710                 if (reg == NULL) {
711                         ir_fprintf(stderr, "Verify warning: Node %+F in block %+F(%s) should have a register assigned\n",
712                                    pred, get_nodes_block(pred), get_irg_dump_name(env->irg));
713                         env->problem_found = 1;
714                         continue;
715                 }
716                 else if (! arch_register_type_is(reg, joker) && ! arch_reg_is_allocatable(arch_env, node, i, reg)) {
717                         ir_fprintf(stderr, "Verify warning: Register %s as input %d of %+F not allowed (register constraint) in block %+F(%s)\n",
718                                    reg->name, i, node, get_nodes_block(node), get_irg_dump_name(env->irg));
719                         env->problem_found = 1;
720                 }
721         }
722 }
723
724 static void check_register_allocation(be_verify_register_allocation_env_t *env,
725                                       const arch_register_class_t *regclass, pset *nodes) {
726         const arch_env_t      *arch_env  = env->arch_env;
727         const arch_register_t *reg       = NULL;
728         int                   fail       = 0;
729         bitset_t              *registers = bitset_alloca(arch_register_class_n_regs(regclass));
730         ir_node               *node;
731
732         foreach_pset(nodes, node) {
733                 if (arch_get_irn_reg_class(arch_env, node, -1) != regclass)
734                         continue;
735
736                 reg = arch_get_irn_register(arch_env, node);
737
738                 /* this problem is already reported in 'check_register_constraints' */
739                 if (! reg)
740                         continue;
741
742                 if (bitset_is_set(registers, reg->index)) {
743                         pset_break(nodes);
744                         fail = 1;
745                         break;
746                 }
747                 bitset_set(registers, reg->index);
748         }
749
750         if (fail) {
751                 ir_fprintf(stderr, "Verify warning: Register %s assigned more than once in block %+F(%s)\n",
752                                reg->name, get_nodes_block(node), get_irg_dump_name(env->irg));
753                 env->problem_found = 1;
754
755                 foreach_pset(nodes, node) {
756                         if (arch_get_irn_register(arch_env, node) == reg) {
757                                 ir_fprintf(stderr, "  at node %+F\n", node);
758                         }
759                 }
760         }
761 }
762
763 static void verify_block_register_allocation(ir_node *block, void *data) {
764         be_verify_register_allocation_env_t *env = data;
765         const arch_env_t *arch_env = env->arch_env;
766         const arch_isa_t *isa = arch_env->isa;
767         int i, nregclasses;
768
769         nregclasses = arch_isa_get_n_reg_class(isa);
770         for (i = 0; i < nregclasses; ++i) {
771                 const arch_register_class_t *regclass = arch_isa_get_reg_class(isa, i);
772                 ir_node *node;
773                 pset *live_nodes = pset_new_ptr_default();
774
775                 be_liveness_end_of_block(env->lv, env->arch_env, regclass, block, live_nodes);
776                 check_register_allocation(env, regclass, live_nodes);
777
778                 sched_foreach_reverse(block, node) {
779                         if (is_Phi(node))
780                                 break;
781
782                         be_liveness_transfer(env->arch_env, regclass, node, live_nodes);
783                         check_register_allocation(env, regclass, live_nodes);
784                         check_register_constraints(node, env);
785                 }
786
787                 del_pset(live_nodes);
788         }
789 }
790
791 int be_verify_register_allocation(const arch_env_t *arch_env, ir_graph *irg) {
792         be_verify_register_allocation_env_t env;
793
794         env.arch_env = arch_env;
795         env.irg = irg;
796         env.lv = be_liveness(irg);
797         env.problem_found = 0;
798
799         irg_block_walk_graph(irg, verify_block_register_allocation, NULL, &env);
800
801         be_liveness_free(env.lv);
802
803         return !env.problem_found;
804 }
805
806
807
808 //---------------------------------------------------------------------------
809
810
811
812 typedef struct _verify_out_dead_nodes_env {
813         ir_graph *irg;
814         bitset_t *reachable;
815         int problem_found;
816 } verify_out_dead_nodes_env;
817
818 static void check_out_edges(ir_node *node, verify_out_dead_nodes_env *env) {
819         ir_graph *irg = env->irg;
820         const ir_edge_t* edge;
821
822         if(irn_visited(node))
823                 return;
824         mark_irn_visited(node);
825
826         foreach_out_edge(node, edge) {
827                 ir_node* src = get_edge_src_irn(edge);
828
829                 if(!bitset_is_set(env->reachable, get_irn_idx(src)) && !is_Block(node)) {
830                         ir_fprintf(stderr, "Verify warning: Node %+F in block %+F(%s) only reachable through out edges from %+F\n",
831                                    src, get_nodes_block(src), get_irg_dump_name(irg), node);
832                         env->problem_found = 1;
833                         continue;
834                 }
835
836                 check_out_edges(src, env);
837         }
838 }
839
840 static void set_reachable(ir_node *node, void* data)
841 {
842         bitset_t* reachable = data;
843         bitset_set(reachable, get_irn_idx(node));
844 }
845
846 int be_verify_out_edges(ir_graph *irg) {
847         verify_out_dead_nodes_env env;
848
849         env.irg           = irg;
850         env.reachable     = bitset_alloca(get_irg_last_idx(irg));
851         env.problem_found = edges_verify(irg);
852
853         irg_walk_in_or_dep_graph(irg, set_reachable, NULL, env.reachable);
854         irg_walk_anchors(irg, set_reachable, NULL, env.reachable);
855         inc_irg_visited(irg);
856         check_out_edges(get_irg_start(irg), &env);
857
858         return ! env.problem_found;
859 }