*** empty log message ***
[libfirm] / testprograms / cond_example.c
1 /* Copyright (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
11 # include "irdump.h"
12 # include "firm.h"
13
14 /**
15 ***  This file constructs the ir for the following pseudo-program:
16 ***
17 ***  main(int a) {
18 ***    if ((a > 2) && (a < 10))
19 ***      { a = 1; }
20 ***
21 ***    return a;
22 **/
23
24 int main(int argc, char **argv)
25 {
26   ir_graph *irg;          /* this variable contains the irgraph */
27   type_class *owner;      /* the class in which this method is defined */
28   type_method *method;    /* the type of this method */
29   entity *ent;            /* represents this method as entity of owner */
30   ir_node *x, *x_then, *arg1, *c2, *c10, *cmpGt, *cmpLt, *and, *f, *t, *b;
31
32   printf("\nCreating an IR graph: COND_EXAMPLE...\n");
33
34   /* init library */
35   init_firm ();
36
37   /* FIRM was designed for oo languages where all methods belong to a class.
38    * For imperative languages like C we view a file as a large class containing
39    * all functions as methods in this file.
40    * Therefore we define a class "COND_EXAMPLE" with a method main as an
41    * entity.
42    */
43 #define CLASSNAME "COND_EXAMPLE"
44 #define ENTITYNAME "main"
45
46   owner = new_type_class (id_from_str (CLASSNAME, strlen(CLASSNAME)));
47   method = new_type_method (id_from_str("main", 4), 0, 2);
48   ent = new_entity ((type *)owner, id_from_str (ENTITYNAME, strlen(ENTITYNAME)), (type *)method);
49
50
51   /* Generates the basic graph for the method represented by entity ent, that
52    * is, generates start and end blocks and nodes and a first, initial block.
53    * The constructor needs to know how many local variables the method has.
54    */
55 #define NUM_OF_LOCAL_VARS 1
56
57   irg = new_ir_graph (ent, NUM_OF_LOCAL_VARS);
58
59   /* get the first argument a of method main - see irgraph.h */
60   arg1 = new_Proj(get_irg_args(irg), mode_i, 0);
61
62   /* arg1 as first first local variable - makes things simple */
63   set_value(0, arg1);
64
65   /* the expression that evaluates the condition */
66   /* cmpGt = a > 2 */
67   c2 = new_Const (mode_i, tarval_from_long (mode_i, 2));
68   cmpGt = new_Proj(new_Cmp(get_value(0, mode_i), c2), mode_b, Gt);
69   cmpGt = new_Conv(cmpGt, mode_i);
70
71   /* cmpLt = a < 10 */
72   c10 = new_Const (mode_i, tarval_from_long (mode_i, 10));
73   cmpLt = new_Proj(new_Cmp(get_value(0, mode_i), c10), mode_b, Lt);
74   cmpLt = new_Conv(cmpLt, mode_i);
75
76   /* cmpGt && cmpLt */
77   and = new_And(cmpGt, cmpLt, mode_i);
78   /* compare result and 0 because we have no cast from integer to bool */
79   and = new_Cmp(and, new_Const (mode_i, tarval_from_long (mode_i, 0)));
80   and = new_Proj(and, mode_b, Ne);
81
82   /* the conditional branch */
83   x = new_Cond (and);
84   f = new_Proj (x, mode_X, 0); /* if condition is false */
85   t = new_Proj (x, mode_X, 1); /* if condition is true */
86
87   mature_block (get_irg_current_block(irg));
88
89   /* generate and fill the then block */
90   b = new_immBlock ();
91   add_in_edge (b, t);
92   set_value (0, new_Const (mode_i, tarval_from_long (mode_i, 1)));
93   mature_block (b);
94   x_then = new_Jmp ();
95
96   /* generate the fall through block and add all cfg edges */
97   b = new_immBlock ();
98   add_in_edge (b, x_then);
99   add_in_edge (b, f);
100
101
102   /* Generate the return node into current region. */
103   {
104     ir_node *in[1]; /* this is the array containing the return parameters */
105     in[0] = get_value(0, mode_i);
106     x = new_Return (get_store(), 1, in);
107   }
108   /* Now generate all instructions for this block and all its predecessor blocks
109    * so we can mature it. */
110   mature_block (get_irg_current_block(irg));
111
112   /* This adds the in edge of the end block which originates at the
113      return statement. The return node passes controlflow to the end block.*/
114   add_in_edge (get_irg_end_block(irg), x);
115   /* Now we can mature the end block as all it's predecessors are known. */
116   mature_block (get_irg_end_block(irg));
117
118   printf("Optimizing ...\n");
119   dead_node_elimination(irg);
120
121   /* verify the graph */
122   irg_vrfy(irg);
123
124   printf("Done building the graph.  Dumping it.\n");
125   dump_ir_block_graph (irg);
126   printf("Use xvcg to view this graph:\n");
127   printf("/ben/goetz/bin/xvcg GRAPHNAME\n\n");
128
129   return (0);
130 }