Asserts in irvrfy that verify the mode of Proj nodes. For Start,
[libfirm] / testprograms / while_example.c
1 /* Copyright (C) 2001 by Universitaet Karlsruhe
2 ** All rights reserved.
3 **
4 ** Authors: Goetz Lindenmaier
5 **
6 ** testprogram.
7 */
8
9 # include "irdump.h"
10 # include "firm.h"
11 # include "irnode.h"
12
13 /**
14 ***  This file constructs the ir for the following pseudo-program:
15 ***
16 ***  main(int a) {        // pos 0
17 ***    int b = 1;         // pos 1
18 ***    int h;             // pos 2
19 ***
20 ***    while (0 == 2) loop {
21 ***      h = a;
22 ***      a = b;
23 ***      b = h;
24 ***    }
25 ***
26 ***    return a-b;
27 ***  }
28 **/
29
30 int
31 main(void)
32 {
33   type *prim_t_int;
34   ir_graph *irg;
35   type *owner;
36   type *proc_main;
37   entity *ent;
38   ir_node *b, *x, *r, *t, *f;
39
40   printf("\nCreating an IR graph: WHILE_EXAMPLE...\n");
41
42   init_firm ();
43
44   set_optimize(1);
45   set_opt_constant_folding(1);
46   set_opt_cse(1);
47   set_opt_dead_node_elimination (1);
48
49   prim_t_int = new_type_primitive(id_from_str ("int", 3), mode_i);
50
51 #define METHODNAME "main"
52 #define NRARGS 1
53 #define NRES 0
54
55   proc_main = new_type_method(id_from_str(METHODNAME, strlen(METHODNAME)),
56                               NRARGS, NRES);
57   set_method_param_type(proc_main, 0, prim_t_int);
58
59   owner = new_type_class (id_from_str ("WHILE_EXAMPLE", 16));
60   ent = new_entity (owner, id_from_str ("main", 4), proc_main);
61
62   /* Generates start and end blocks and nodes and a first, initial block */
63   irg = new_ir_graph (ent, 4);
64
65   /* Generate two constants */
66   set_value (0, new_Proj(get_irg_args(irg), mode_i, 0));
67   set_value (1, new_Const (mode_i, tarval_from_long (mode_i, 1)));
68   x = new_Jmp();
69   mature_block (get_irg_current_block(irg));
70
71   /* generate a block for the loop header and the conditional branch */
72   r = new_immBlock ();
73   add_in_edge (r, x);
74   x = new_Cond (new_Proj(new_Cmp(new_Const (mode_i, tarval_from_long (mode_i, 0)),
75                                  new_Const (mode_i, tarval_from_long (mode_i, 0))),
76                          mode_b, Eq));
77   f = new_Proj (x, mode_X, 0);
78   t = new_Proj (x, mode_X, 1);
79
80   /* generate the block for the loop body */
81   b = new_immBlock ();
82   add_in_edge (b, t);
83   x = new_Jmp ();
84   add_in_edge (r, x);
85
86   /* The code in the loop body,
87      as we are dealing with local variables only the dataflow edges
88      are manipulated. */
89   set_value (2, get_value (0, mode_i));
90   set_value (0, get_value (1, mode_i));
91   set_value (1, get_value (2, mode_i));
92   mature_block (b);
93   mature_block (r);
94
95   /* generate the return block */
96   r = new_immBlock ();
97   add_in_edge (r, f);
98   mature_block (r);
99
100   {
101      ir_node *in[1];
102      in[0] = new_Sub (get_value (0, mode_i), get_value (1, mode_i), mode_i);
103
104      x = new_Return (get_store (), 1, in);
105   }
106
107   /* finalize the end block generated in new_ir_graph() */
108   add_in_edge (get_irg_end_block(irg), x);
109   mature_block (get_irg_end_block(irg));
110
111   printf("Optimizing ...\n");
112
113   local_optimize_graph(irg),
114   dead_node_elimination(irg);
115
116   /* verify the graph */
117   irg_vrfy(irg);
118
119   /* output the vcg file */
120   printf("Done building the graph.  Dumping it.\n");
121   dump_ir_block_graph (irg);
122   printf("Use xvcg to view this graph:\n");
123   printf("/ben/goetz/bin/xvcg GRAPHNAME\n\n");
124
125   return (0);
126 }