added copyright headers
[libfirm] / ir / ir / irvrfy.c
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/irvrfy.c
4  * Purpose:     Check irnodes for correctness.
5  * Author:      Christian Schaefer
6  * Modified by: Goetz Lindenmaier. Till Riedel
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 1998-2003 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 #ifdef HAVE_CONFIG_H
14 # include <config.h>
15 #endif
16
17 # include "irgraph_t.h"
18 # include "irvrfy.h"
19 # include "irgwalk.h"
20
21 #ifdef NDEBUG
22 /*
23  * in RELEASE mode, returns ret if the expression expr evaluates to zero
24  * in ASSERT mode, asserts the expression expr (and the string string).
25  */
26 #define ASSERT_AND_RET(expr, string, ret)               if (!(expr)) return (ret)
27
28 /*
29  * in RELEASE mode, returns ret if the expression expr evaluates to zero
30  * in ASSERT mode, executes blk if the expression expr evaluates to zero and asserts
31  */
32 #define ASSERT_AND_RET_DBG(expr, string, ret, blk)      if (!(expr)) return (ret)
33 #else
34 #define ASSERT_AND_RET(expr, string, ret)               do { assert((expr) && string); if (!(expr)) return (ret); } while(0)
35 #define ASSERT_AND_RET_DBG(expr, string, ret, blk)      do { if (!(expr)) { { blk } assert(0 && string); return (ret); } } while(0)
36 #endif
37
38 /* @@@ replace use of array "in" by access functions. */
39 ir_node **get_irn_in(ir_node *node);
40
41 INLINE static int
42 vrfy_Proj_proj(ir_node *p, ir_graph *irg) {
43   ir_node *pred;
44   ir_mode *mode;
45   int proj;
46
47   pred = skip_nop(get_Proj_pred(p));
48   assert(get_irn_mode(pred) == mode_T);
49   mode = get_irn_mode(p);
50   proj = get_Proj_proj(p);
51
52   switch (get_irn_opcode(pred)) {
53     case iro_Start:
54       ASSERT_AND_RET(
55           (
56            (proj == pns_initial_exec   && mode == mode_X) ||
57            (proj == pns_global_store   && mode == mode_M) ||
58            (proj == pns_frame_base     && mode_is_reference(mode)) ||
59            (proj == pns_globals        && mode_is_reference(mode)) ||
60            (proj == pns_args           && mode == mode_T) ||
61            (proj == pns_value_arg_base && mode_is_reference(mode))
62           ),
63           "wrong Proj from Start", 0);
64       break;
65
66     case iro_Cond:
67       ASSERT_AND_RET( (proj >= 0 && mode == mode_X), "wrong Proj from Cond", 0);
68       break;
69
70     case iro_Raise:
71       ASSERT_AND_RET(
72           ((proj == 0 && mode == mode_X) ||
73            (proj == 1 && mode == mode_M)),
74           "wrong Proj from Raise", 0);
75       break;
76
77     case iro_InstOf:
78       ASSERT_AND_RET( (proj >= 0 && mode == mode_X), "wrong Proj from InstOf", 0);
79       break;
80
81     case iro_Call:
82       ASSERT_AND_RET(
83           ((proj == 0 && mode == mode_M) ||
84            (proj == 1 && mode == mode_X) ||
85            (proj == 2 && mode == mode_T) ||
86            (proj == 3 && mode == mode_M)),
87           "wrong Proj from Call", 0);
88       break;
89
90     case iro_Quot:
91       ASSERT_AND_RET(
92           ((proj == 0 && mode == mode_M) ||
93            (proj == 1 && mode == mode_X) ||
94            (proj == 2 && mode_is_float(mode))),
95           "wrong Proj from Quot", 0);
96       break;
97
98     case iro_DivMod:
99       ASSERT_AND_RET(
100           ((proj == 0 && mode == mode_M) ||
101            (proj == 1 && mode == mode_X) ||
102            (proj == 2 && mode == mode_Is) ||
103            (proj == 3 && mode_is_int(mode))),
104           "wrong Proj from DivMod", 0);
105       break;
106
107     case iro_Div:
108     case iro_Mod:
109       ASSERT_AND_RET(
110           ((proj == 0 && mode == mode_M) ||
111            (proj == 1 && mode == mode_X) ||
112            (proj == 2 && mode_is_int(mode))),
113           "wrong Proj from Div or Mod", 0);
114       break;
115
116     case iro_Cmp:
117       ASSERT_AND_RET(
118           (proj >= 0 && proj <= 15 && mode == mode_b),
119           "wrong Proj from Cmp", 0);
120       break;
121
122     case iro_Load:
123       ASSERT_AND_RET(
124           ((proj == 0 && mode == mode_M) ||
125            (proj == 1 && mode == mode_X) ||
126            (proj == 2 && mode_is_data(mode))),
127           "wrong Proj from Load", 0);
128       break;
129
130     case iro_Store:
131       ASSERT_AND_RET(
132           ((proj == 0 && mode == mode_M) ||
133            (proj == 1 && mode == mode_X)),
134           "wrong Proj from Store", 0);
135       break;
136
137     case iro_Alloc:
138       ASSERT_AND_RET(
139           (
140            (proj == 0 && mode == mode_M) ||
141            (proj == 1 /* && mode == mode_X*/) ||
142            (proj == 2 && mode_is_reference(mode))
143           ),
144           "wrong Proj from Alloc", 0);
145       break;
146
147     case iro_Proj:
148       {
149         type *mt; /* A method type */
150         pred = skip_nop(get_Proj_pred(pred));
151         ASSERT_AND_RET((get_irn_mode(pred) == mode_T), "Proj from something not a tuple", 0);
152         switch (get_irn_opcode(pred))
153         {
154           case iro_Start:
155             {
156               ASSERT_AND_RET(
157                   (proj >= 0 && mode_is_data(mode)),
158                   "wrong Proj from Proj from Start", 0);
159               mt = get_entity_type(get_irg_ent(irg));
160               ASSERT_AND_RET(
161                   (proj < get_method_n_params(mt)),
162                   "More Projs for args than args in type", 0);
163               if ((mode_is_reference(mode)) && is_compound_type(get_method_param_type(mt, proj)))
164                 /* value argument */ break;
165
166               ASSERT_AND_RET(
167                   (mode == get_type_mode(get_method_param_type(mt, proj))),
168                   "Mode of Proj from Start doesn't match mode of param type.", 0);
169             }
170             break;
171
172           case iro_Call:
173             {
174               ASSERT_AND_RET(
175                   (proj >= 0 && mode_is_data(mode)),
176                   "wrong Proj from Proj from Call", 0);
177               mt = get_Call_type(pred);
178               ASSERT_AND_RET(
179                   (proj < get_method_n_ress(mt)),
180                   "More Projs for results than results in type.", 0);
181               if ((mode_is_reference(mode)) && is_compound_type(get_method_res_type(mt, proj)))
182                 /* value result */ break;
183
184               ASSERT_AND_RET(
185                   (mode == get_type_mode(get_method_res_type(mt, proj))),
186                   "Mode of Proj from Call doesn't match mode of result type.", 0);
187             }
188             break;
189
190           case iro_Tuple:
191             /* We don't test */
192             break;
193
194           default:
195             ASSERT_AND_RET(0, "Unknown opcode", 0);
196         }
197         break;
198
199       }
200     case iro_Tuple:
201       /* We don't test */
202       break;
203
204     case iro_CallBegin:
205       break;
206
207     case iro_EndReg:
208       break;
209
210     case iro_EndExcept:
211       break;
212
213     default:
214       ASSERT_AND_RET(0, "Unknown opcode", 0);
215   }
216
217   /* all went ok */
218   return 1;
219 }
220
221 int irn_vrfy_irg(ir_node *n, ir_graph *irg)
222 {
223   int i;
224   int opcode, opcode1;
225   ir_mode *mymode, *op1mode = NULL, *op2mode, *op3mode;
226   int op_is_symmetric = 1;  /*  0: asymmetric
227 1: operands have identical modes
228 2: modes of operands == mode of this node */
229   type *mt; /* A method type */
230
231   ir_node **in;
232
233   if (! interprocedural_view) {
234     /*
235      * do NOT check placement in interprocedural view, as we don't always know
236      * the "right" graph ...
237      */
238     ASSERT_AND_RET(node_is_in_irgs_storage(irg, n), "Node is not stored on proper IR graph!", 0);
239   }
240
241   opcode = get_irn_opcode (n);
242
243   /* We don't want to test nodes whose predecessors are Bad or Unknown,
244      as we would have to special case that for each operation. */
245   if (opcode != iro_Phi && opcode != iro_Block)
246     for (i = 0; i < get_irn_arity(n); i++) {
247       opcode1 = get_irn_opcode(get_irn_n(n, i));
248       if (opcode1 == iro_Bad || opcode1 == iro_Unknown)
249         return 1;
250     }
251
252   mymode = get_irn_mode (n);
253   in = get_irn_in (n);
254
255   switch (opcode)
256   {
257     case iro_Start:
258       ASSERT_AND_RET(
259           /* Start: BB --> X x M x ref x data1 x ... x datan x ref */
260           mymode == mode_T, "Start node", 0
261           );
262       break;
263
264     case iro_Jmp:
265       ASSERT_AND_RET(
266           /* Jmp: BB --> X */
267           mymode == mode_X, "Jmp node", 0
268           );
269       break;
270
271     case iro_Break:
272       ASSERT_AND_RET(
273           /* Jmp: BB --> X */
274           mymode == mode_X, "Jmp node", 0
275           );
276       break;
277
278     case iro_Cond:
279       op1mode = get_irn_mode(in[1]);
280       ASSERT_AND_RET(
281           /* Cond: BB x b --> X x X */
282           (op1mode == mode_b ||
283            /* Cond: BB x int --> X^n */
284            mode_is_int(op1mode) ),  "Cond node", 0
285           );
286       ASSERT_AND_RET(mymode == mode_T, "Cond mode is not a tuple", 0);
287       break;
288
289     case iro_Return:
290       op1mode = get_irn_mode(in[1]);
291       /* Return: BB x M x data1 x ... x datan --> X */
292       /* printf("mode: %s, code %s\n", ID_TO_STR(n->mode->name), ID_TO_STR(n->op->name));*/
293       ASSERT_AND_RET( op1mode == mode_M, "Return node", 0 );  /* operand M */
294       for (i=2; i < get_irn_arity(n); i++) {
295         ASSERT_AND_RET( mode_is_data(get_irn_mode(in[i])), "Return node", 0 );  /* operand datai */
296       };
297       ASSERT_AND_RET( mymode == mode_X, "Result X", 0 );   /* result X */
298       /* Compare returned results with result types of method type */
299       mt = get_entity_type(get_irg_ent(irg));
300       ASSERT_AND_RET( get_Return_n_ress(n) == get_method_n_ress(mt),
301           "Number of results for Return doesn't match number of results in type.", 0 );
302       for (i = 0; i < get_Return_n_ress(n); i++)
303         ASSERT_AND_RET(
304             get_irn_mode(get_Return_res(n, i)) == get_type_mode(get_method_res_type(mt, i)),
305             "Mode of result for Return doesn't match mode of result type.", 0);
306       break;
307
308     case iro_Raise:
309       op1mode = get_irn_mode(in[1]);
310       op2mode = get_irn_mode(in[2]);
311       ASSERT_AND_RET(
312           /* Sel: BB x M x ref --> X x M */
313           op1mode == mode_M && mode_is_reference(op2mode) &&
314           mymode == mode_T, "Raise node", 0
315           );
316       break;
317
318     case iro_Const:
319       ASSERT_AND_RET(
320           /* Const: BB --> data */
321           (mode_is_data (mymode) ||
322            mymode == mode_b)      /* we want boolean constants for static evaluation */
323           ,"Const node", 0        /* of Cmp. */
324           );
325       break;
326
327     case iro_SymConst:
328       ASSERT_AND_RET(
329           /* SymConst: BB --> int*/
330           (mode_is_int(mymode) ||
331            /* SymConst: BB --> ref */
332            mode_is_reference(mymode))
333           ,"SymConst node", 0);
334       break;
335
336     case iro_Sel:
337       op1mode = get_irn_mode(in[1]);
338       op2mode = get_irn_mode(in[2]);
339       ASSERT_AND_RET(
340           /* Sel: BB x M x ref x int^n --> ref */
341           (op1mode == mode_M && op2mode == mymode && mode_is_reference(mymode)),
342           "Sel node", 0
343           );
344       for (i=3; i < get_irn_arity(n); i++)
345       {
346         ASSERT_AND_RET(mode_is_int(get_irn_mode(in[i])), "Sel node", 0);
347       }
348       break;
349
350     case iro_InstOf:
351       ASSERT_AND_RET(mode_T == mymode, "mode of Instof is not a tuple", 0);
352       ASSERT_AND_RET(mode_is_data(op1mode), "Instof not on data", 0);
353       break;
354
355     case iro_Call:
356       op1mode = get_irn_mode(in[1]);
357       op2mode = get_irn_mode(in[2]);
358       /* Call: BB x M x ref x data1 x ... x datan
359          --> M x datan+1 x ... x data n+m */
360       ASSERT_AND_RET( op1mode == mode_M && mode_is_reference(op2mode), "Call node", 0 );  /* operand M x ref */
361       for (i=3; i < get_irn_arity(n); i++) {
362         ASSERT_AND_RET( mode_is_data(get_irn_mode(in[i])), "Call node", 0 );  /* operand datai */
363       };
364       ASSERT_AND_RET( mymode == mode_T, "Call result not a tuple", 0 );   /* result T */
365       /* Compare arguments of node with those of type */
366       mt = get_Call_type(n);
367
368       if (get_method_variadicity(mt) == variadic) {
369         ASSERT_AND_RET(
370             get_Call_n_params(n) >= get_method_n_params(mt),
371             "Number of args for Call doesn't match number of args in variadic type.",
372             0);
373       }
374       else {
375         ASSERT_AND_RET(
376             get_Call_n_params(n) == get_method_n_params(mt),
377             "Number of args for Call doesn't match number of args in non variadic type.",
378             0);
379       }
380
381       for (i = 0; i < get_method_n_params(mt); i++) {
382         ASSERT_AND_RET_DBG(
383             get_irn_mode(get_Call_param(n, i)) == get_type_mode(get_method_param_type(mt, i)),
384             "Mode of arg for Call doesn't match mode of arg type.", 0,
385             {
386               int i;
387
388               fprintf(stderr, "Assertion for Call type-check failed: %s(", get_type_name(mt));
389               for (i = 0; i < get_method_n_params(mt); ++i) {
390                 fprintf(stderr, "%s ", get_mode_name(get_type_mode(get_method_param_type(mt, i))));
391               }
392               fprintf(stderr, ") != CALL(");
393
394               for (i = 0; i < get_Call_n_params(n); ++i) {
395                 fprintf(stderr, "%s ", get_mode_name(get_irn_mode(get_Call_param(n, i))));
396               }
397               fprintf(stderr, ")\n");
398
399             }
400             );
401       }
402       break;
403
404     case iro_Add:
405       op1mode = get_irn_mode(in[1]);
406       op2mode = get_irn_mode(in[2]);
407       ASSERT_AND_RET(
408           (
409            /* common Add: BB x numP x numP --> numP */
410            (op1mode == mymode && op2mode == op1mode && mode_is_numP(mymode)) ||
411            /* Pointer Add: BB x ref x int --> ref */
412            (mode_is_reference(op1mode) && mode_is_int(op2mode) && op1mode == mymode) ||
413            /* Pointer Add: BB x int x ref --> ref */
414            (mode_is_int(op1mode) && op2mode == mymode && mode_is_reference(mymode))
415           ),
416           "Add node", 0
417           );
418       if (mode_is_reference(op1mode) != mode_is_reference(op2mode)) {
419         /* BB x ref x int --> ref or BB x int x ref --> ref */
420         op_is_symmetric = 0; /* ArmRoq */
421       } else {
422         /* BB x num x num --> num or BB x ref x ref */
423         op_is_symmetric = 2;
424       }
425       break;
426
427     case iro_Sub:
428       op1mode = get_irn_mode(in[1]);
429       op2mode = get_irn_mode(in[2]);
430       ASSERT_AND_RET(
431           /* common Sub: BB x numP x numP --> numP */
432           ((mymode ==op1mode && mymode == op2mode && mode_is_numP(op1mode)) ||
433            /* Pointer Sub: BB x ref x int --> ref */
434            (op1mode == mymode && mode_is_int(op2mode) && mode_is_reference(mymode)) ||
435            /* Pointer Sub: BB x int x ref --> ref */
436            (mode_is_int(op1mode) && op2mode == mymode && mode_is_reference(mymode)) ||
437            /* Pointer Sub: BB x ref x ref --> int */
438            (op1mode == op2mode && mode_is_reference(op2mode) && mode_is_int(mymode))),
439           "Sub node", 0
440           );
441       if (mode_is_reference(op1mode) != mode_is_reference(op2mode)) {
442         op_is_symmetric = 0; /* ArmRoq */
443       } else {
444         op_is_symmetric = 2;
445       }
446       break;
447
448     case iro_Minus:
449       op1mode = get_irn_mode(in[1]);
450       ASSERT_AND_RET(
451           /* Minus: BB x float --> float */
452           op1mode == mymode && get_mode_sort(op1mode) == irms_float_number, "Minus node", 0
453           );
454       op_is_symmetric = 2;
455       break;
456
457     case iro_Mul:
458       op1mode = get_irn_mode(in[1]);
459       op2mode = get_irn_mode(in[2]);
460       ASSERT_AND_RET(
461           /* Mul: BB x int1 x int1 --> int2 */
462           ((mode_is_int(op1mode)   && op2mode == op1mode && mode_is_int(mymode)) ||
463            (mode_is_float(op1mode) && op2mode == op1mode && mymode == op1mode)),
464           "Mul node",0
465           );
466       op_is_symmetric = 2;
467       break;
468
469     case iro_Quot:
470       op1mode = get_irn_mode(in[1]);
471       op2mode = get_irn_mode(in[2]);
472       op3mode = get_irn_mode(in[3]);
473       ASSERT_AND_RET(
474           /* Quot: BB x M x float x float --> M x X x float */
475           op1mode == mode_M && op2mode == op3mode &&
476           get_mode_sort(op2mode) == irms_float_number &&
477           mymode == mode_T,
478           "Quot node",0
479           );
480       op_is_symmetric = 2;
481       break;
482
483     case iro_DivMod:
484       op1mode = get_irn_mode(in[1]);
485       op2mode = get_irn_mode(in[2]);
486       op3mode = get_irn_mode(in[3]);
487       ASSERT_AND_RET(
488           /* DivMod: BB x M x int x int --> M x X x int x int */
489           op1mode == mode_M &&
490           mode_is_int(op2mode) &&
491           op3mode == op2mode &&
492           mymode == mode_T,
493           "DivMod node", 0
494           );
495       op_is_symmetric = 1;
496       break;
497
498     case iro_Div:
499     case iro_Mod:
500       op1mode = get_irn_mode(in[1]);
501       op2mode = get_irn_mode(in[2]);
502       op3mode = get_irn_mode(in[3]);
503       ASSERT_AND_RET(
504           /* Div or Mod: BB x M x int x int --> M x X x int */
505           op1mode == mode_M &&
506           op2mode == op3mode &&
507           mode_is_int(op2mode) &&
508           mymode == mode_T,
509           "Div or Mod node", 0
510           );
511       op_is_symmetric = 1;
512       break;
513
514     case iro_Abs:
515       op1mode = get_irn_mode(in[1]);
516       ASSERT_AND_RET(
517           /* Abs: BB x num --> num */
518           op1mode == mymode &&
519           mode_is_num (op1mode),
520           "Abs node",0
521           );
522       op_is_symmetric = 2;
523       break;
524
525     case iro_And:
526     case iro_Or:
527     case iro_Eor:
528       op1mode = get_irn_mode(in[1]);
529       op2mode = get_irn_mode(in[2]);
530       ASSERT_AND_RET(
531           /* And or Or or Eor: BB x int x int --> int */
532           mode_is_int(mymode) &&
533           op2mode == op1mode &&
534           mymode == op2mode,
535           "And, Or or Eor node", 0
536           );
537       op_is_symmetric = 2;
538       break;
539
540     case iro_Not:
541       op1mode = get_irn_mode(in[1]);
542       ASSERT_AND_RET(
543           /* Not: BB x int --> int */
544           mode_is_int(mymode) &&
545           mymode == op1mode,
546           "Not node", 0
547           );
548       op_is_symmetric = 2;
549       break;
550
551
552     case iro_Cmp:
553       op1mode = get_irn_mode(in[1]);
554       op2mode = get_irn_mode(in[2]);
555       ASSERT_AND_RET(
556           /* Cmp: BB x datab x datab --> b16 */
557           mode_is_data (op1mode) &&
558           op2mode == op1mode &&
559           mymode == mode_T,
560           "Cmp node", 0
561           );
562       break;
563
564     case iro_Shl:
565     case iro_Shr:
566     case iro_Shrs:
567       op1mode = get_irn_mode(in[1]);
568       op2mode = get_irn_mode(in[2]);
569       assert(
570           /* Shl, Shr or Shrs: BB x int x int_u --> int */
571           mode_is_int(op1mode) &&
572           mode_is_int(op2mode) &&
573           !mode_is_signed(op2mode) &&
574           mymode == op1mode &&
575           "Shl, Shr, Shr or Rot node"
576           );
577       break;
578
579     case iro_Rot:
580       op1mode = get_irn_mode(in[1]);
581       op2mode = get_irn_mode(in[2]);
582       ASSERT_AND_RET(
583           /* Rot: BB x int x int --> int */
584           mode_is_int(op1mode) &&
585           mode_is_int(op2mode) &&
586           mymode == op1mode,
587           "Rot node",0
588           );
589       break;
590
591     case iro_Conv:
592       op1mode = get_irn_mode(in[1]);
593       ASSERT_AND_RET(
594           /* Conv: BB x datab1 --> datab2 */
595           mode_is_datab(op1mode) && mode_is_data(mymode),
596           "Conv node", 0
597           );
598       break;
599
600     case iro_Cast:
601       op1mode = get_irn_mode(in[1]);
602       ASSERT_AND_RET(
603           /* Conv: BB x datab1 --> datab2 */
604           mode_is_data(op1mode) && op1mode == mymode,
605           "Cast node", 0
606           );
607       break;
608
609     case iro_Phi:
610       /* Phi: BB x dataM^n --> dataM */
611       /* for some reason "<=" aborts. int there a problem with get_store? */
612       for (i=1; i < get_irn_arity(n); i++) {
613         if (!is_Bad(in[i]) && (get_irn_op(in[i]) != op_Unknown))
614           ASSERT_AND_RET( get_irn_mode(in[i]) == mymode, "Phi node", 0);
615       };
616       ASSERT_AND_RET( mode_is_dataM(mymode), "Phi node", 0 );
617       break;
618
619     case iro_Load:
620       op1mode = get_irn_mode(in[1]);
621       op2mode = get_irn_mode(in[2]);
622       ASSERT_AND_RET(
623           /* Load: BB x M x ref --> M x X x data */
624           op1mode == mode_M && mode_is_reference(op2mode),
625           "Load node", 0
626           );
627       ASSERT_AND_RET( mymode == mode_T, "Load node", 0 );
628       break;
629
630     case iro_Store:
631       op1mode = get_irn_mode(in[1]);
632       op2mode = get_irn_mode(in[2]);
633       op3mode = get_irn_mode(in[3]);
634       ASSERT_AND_RET(
635           /* Load: BB x M x ref data --> M x X */
636           op1mode == mode_M && mode_is_reference(op2mode) && mode_is_data(op3mode),
637           "Store node", 0
638           );
639       ASSERT_AND_RET(mymode == mode_T, "Store node", 0);
640       break;
641
642     case iro_Alloc:
643       op1mode = get_irn_mode(in[1]);
644       op2mode = get_irn_mode(in[2]);
645       ASSERT_AND_RET(
646           /* Alloc: BB x M x int_u --> M x X x ref */
647           op1mode == mode_M &&
648           mode_is_int(op2mode) &&
649           !mode_is_signed(op2mode) &&
650           mymode == mode_T,
651           "Alloc node", 0
652           );
653       break;
654
655     case iro_Free:
656       op1mode = get_irn_mode(in[1]);
657       op2mode = get_irn_mode(in[2]);
658       ASSERT_AND_RET(
659           /* Free: BB x M x ref --> M */
660           op1mode == mode_M && mode_is_reference(op2mode) &&
661           mymode == mode_M,
662           "Free node",0
663           );
664       break;
665
666     case iro_Sync:
667       /* Sync: BB x M^n --> M */
668       for (i=1; i < get_irn_arity(n); i++) {
669         ASSERT_AND_RET( get_irn_mode(in[i]) == mode_M, "Sync node", 0 );
670       };
671       ASSERT_AND_RET( mymode == mode_M, "Sync node", 0 );
672       break;
673
674     case iro_Proj:
675       return vrfy_Proj_proj(n, irg);
676       break;
677
678     default:
679       break;
680   }
681
682   /* All went ok */
683   return 1;
684 }
685
686 int irn_vrfy(ir_node *n)
687 {
688   return irn_vrfy_irg(n, current_ir_graph);
689 }
690
691 /*******************************************************************/
692 /* Verify the whole graph.                                         */
693 /*******************************************************************/
694
695 static void vrfy_wrap(ir_node *node, void *env)
696 {
697   int *res = env;
698
699   *res = irn_vrfy(node);
700 }
701
702 int irg_vrfy(ir_graph *irg)
703 {
704   int res = 1;
705   ir_graph *rem;
706
707   rem = current_ir_graph;
708   current_ir_graph = irg;
709
710   assert(get_irg_pinned(irg) == pinned);
711
712   irg_walk(irg->end, vrfy_wrap, NULL, &res);
713
714   current_ir_graph = rem;
715
716   return res;
717 }