replaced malloc.h by stdlib.h and values.h by limits.g for better portability
[libfirm] / testprograms / if_while_example.c
1 /* (C) 1998 - 2000 by Universitaet Karlsruhe
2 * All rights reserved.
3 *
4 * Authors: Christian Schaefer, Goetz Lindenmaier
5 *
6 * testprogram.
7 */
8
9 # include <stdio.h>
10 # include <string.h>
11
12 # include "irvrfy.h"
13 # include "irdump.h"
14 # include "firm.h"
15
16 /**
17 *  This file constructs the ir for the following pseudo-program:
18 *
19 *  main() {
20 *    int a = 0;         // pos 0
21 *    int b = 1;         // pos 1
22 *    int h;             // pos 2
23 *
24 *    if (0 == 0)
25 *      { a = 2; }
26 *
27 *    while (0 == 0) loop {
28 *      h = a;
29 *      a = b;
30 *      b = h;
31 *    }
32 *
33 *    return a-b;
34 *  }
35 **/
36
37 int
38 main(void)
39 {
40   ir_graph *irg;
41   type *owner;
42   type *proc_main;
43   type     *prim_t_int;
44   entity *ent;
45   ir_node *b, *x, *r, *t, *f;
46
47   printf("\nCreating an IR graph: IF_WHILE_EXAMPLE...\n");
48
49   init_firm (NULL);
50   turn_off_edge_labels();
51
52   set_optimize(1);
53   set_opt_constant_folding(0);  /* so that the stupid tests are not optimized. */
54                                 /* if optimized no path to End remains!! */
55   set_opt_cse(1);
56   set_opt_dead_node_elimination (1);
57
58   /*** Make basic type information for primitive type int. ***/
59   prim_t_int = new_type_primitive(id_from_str ("int", 3), mode_Iu);
60
61 #define METHODNAME "main"
62 #define NRARGS 0
63 #define NRES 1
64
65   proc_main = new_type_method(id_from_str(METHODNAME, strlen(METHODNAME)),
66                               NRARGS, NRES);
67   set_method_res_type(proc_main, 0, prim_t_int);
68   owner = new_type_class (id_from_str ("IF_WHILE_EXAMPLE", 16));
69   ent = new_entity (owner, id_from_str ("main", 4), proc_main);
70   get_entity_ld_name(ent);
71
72   /* Generates start and end blocks and nodes and a first, initial block */
73   irg = new_ir_graph (ent, 4);
74
75   /* Generate two constants */
76   set_value (0, new_Const (mode_Iu, new_tarval_from_long (0, mode_Iu)));
77   set_value (1, new_Const (mode_Iu, new_tarval_from_long (1, mode_Iu)));
78   mature_block (get_irg_current_block(irg));
79
80   /* Generate a conditional branch */
81   x = new_Jmp();
82
83   /* generate the fall through block and add all cfg edges */
84   r = new_immBlock ();
85   add_in_edge (r, x);
86   mature_block (r);
87   x = new_Jmp ();
88
89   /* generate a block for the loop header and the conditional branch */
90   r = new_immBlock ();
91   add_in_edge (r, x);
92   x = new_Cond (new_Proj(new_Cmp(new_Const (mode_Iu, new_tarval_from_long (0, mode_Is)),
93                                  new_Const (mode_Iu, new_tarval_from_long (0, mode_Is))),
94                          mode_b, Eq));
95   f = new_Proj (x, mode_X, 0);
96   t = new_Proj (x, mode_X, 1);
97
98   /* generate the block for the loop body */
99   b = new_immBlock ();
100   add_in_edge (b,t);
101   x = new_Jmp ();
102   add_in_edge (r, x);
103   mature_block (r);
104
105   /* the code in the loop body,
106      as we are dealing with local variables only the dataflow edges
107      are manipulated */
108   set_value (2, get_value (0, mode_Iu));
109   set_value (0, get_value (1, mode_Iu));
110   set_value (1, get_value (2, mode_Iu));
111   mature_block (b);
112
113   /* generate the return block */
114   r = new_immBlock ();
115   add_in_edge (r, f);
116   mature_block (r);
117
118   {
119      ir_node *in[1];
120      in[0] = new_Sub (get_value (0, mode_Iu), get_value (1, mode_Iu), mode_Iu);
121
122      x = new_Return (get_store (), 1, in);
123   }
124
125   /* finalize the end block generated in new_ir_graph() */
126   add_in_edge (get_irg_end_block(irg), x);
127   mature_block (get_irg_end_block(irg));
128
129   finalize_cons (irg);
130
131   printf("Optimizing ...\n");
132
133   local_optimize_graph(irg);
134   dead_node_elimination(irg);
135
136   compute_outs(irg);
137
138   /* verify the graph */
139   irg_vrfy(irg);
140
141   /* output the vcg file */
142   printf("Done building the graph.  Dumping it with out-edges.\n");
143   dump_out_edges();
144   dump_ir_graph (irg);
145   printf("Use xvcg to view this graph:\n");
146   printf("/ben/goetz/bin/xvcg GRAPHNAME\n\n");
147
148   return (0);
149 }