Initial revision
[libfirm] / testprograms / if_else_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  * das leere FIRM Programm
16  */
17
18 /**
19 ***  This file constructs the ir for the following pseudo-program:
20 ***
21 ***  main() {
22 ***    int a = 0;
23 ***    int b = 1;
24 ***
25 ***    if (a > 2)
26 ***      { a = b; }
27 ***    else
28 ***      { b = 2; }
29 ***
30 ***    return a, b;
31 **/
32
33 int main(int argc, char **argv)
34 {
35   ir_graph *irg;          /* this variable contains the irgraph */
36   type_class *owner;      /* the class in which this method is defined */
37   entity *ent;            /* represents this method as entity of owner */
38   ir_node *x, *x_then, *x_else, *c0, *c1, *c2, *cmpGt, *f, *t, *b;
39
40   printf("creating an IR graph: IF_ELSE_EXAMPLE...\n");
41
42   /* init library */
43   init_firm ();
44
45   /* FIRM was designed for oo languages where all methods belong to a class.
46    * For imperative languages like C we view a file as a large class containing
47    * all functions as methods in this file.
48    * Therefore we define a class "IF_ELSE_EXAMPLE" with a method main as an
49    * entity.
50    */
51 #define CLASSNAME "IF_ELSE_EXAMPLE"
52 #define ENTITYNAME "main"
53
54   owner = new_type_class (id_from_str (CLASSNAME, strlen(CLASSNAME)));
55   ent = new_entity ((type *)owner, id_from_str (ENTITYNAME, strlen(ENTITYNAME)), NULL);
56
57
58   /* Generates the basic graph for the method represented by entity ent, that
59    * is, generates start and end blocks and nodes and a first, initial block.
60    * The constructor needs to know how many local variables the method has.
61    */
62 #define NUM_OF_LOCAL_VARS 2
63
64   irg = new_ir_graph (ent, NUM_OF_LOCAL_VARS);
65
66   /* Generate two constants */
67   c0 = new_Const (mode_i, tarval_from_long (mode_i, 0));
68   c1 = new_Const (mode_i, tarval_from_long (mode_i, 1));
69
70   /* set a and b to constants */
71   set_value (0, c0);  /* this (0) is variable a */
72   set_value (1, c1);  /* this (1) is variable b */
73
74   /* the expression that evaluates the condition */
75   c2 = new_Const (mode_i, tarval_from_long (mode_i, 2));
76   cmpGt = new_Proj(new_Cmp(get_value(0, mode_i), c2), mode_b, Gt);
77
78   /* the conditional branch */
79   x = new_Cond (cmpGt);
80   f = new_Proj (x, mode_X, 0); /* if condition is false */
81   t = new_Proj (x, mode_X, 1); /* if condition is true */
82
83   mature_block (irg->current_block);
84
85   /* generate and fill the then block */
86   b = new_Block ();
87   add_in_edge (b, t);
88   set_value (0, get_value(1, mode_i));
89   mature_block (b);
90   x_then = new_Jmp ();
91
92   /* generate and fill the else block */
93   b = new_Block ();
94   add_in_edge (b, f);
95   set_value (1, new_Const (mode_i, tarval_from_long (mode_i, 2)));
96   mature_block (b);
97   x_else = new_Jmp ();
98
99   /* generate the join block and add all cfg edges */
100   b = new_Block ();
101   add_in_edge (b, x_then);
102   add_in_edge (b, x_else);
103
104
105   /* Generate the return node into current region. */
106   {
107     ir_node *in[2]; /* this is the array containing the return parameters */
108     in[0] = get_value(0, mode_i);
109     in[1] = get_value(1, mode_i);
110     x = new_Return (get_store(), 2, in);
111   }
112   /* Now generate all instructions for this block and all its predecessor blocks
113    * so we can mature it. */
114   mature_block (irg->current_block);
115
116   /* This adds the in edge of the end block which originates at the return statement.
117    * The return node passes controlflow to the end block.  */
118   add_in_edge (irg->end_block, x);
119   /* Now we can mature the end block as all it's predecessors are known. */
120   mature_block (irg->end_block);
121
122   printf("\nDone building the graph.  Dumping it.\n");
123   dump_ir_block_graph (irg);
124
125   printf("use xvcg to view this graph:\n");
126   printf("/ben/trapp/bin/i486/xvcg GRAPHNAME\n");
127
128   return (0);
129
130
131 }