75d130dbbeb103075c6d9d382f6b721758cc6bed
[libfirm] / testprograms / empty.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 ***    return;
23 ***  }
24 **/
25
26 int main(int argc, char **argv)
27 {
28   ir_graph *irg;          /* this variable contains the irgraph */
29   type_class *owner;      /* the class in which this method is defined */
30   type_method *proc_main; /* type information for the method main */
31   entity *ent;            /* represents this method as entity of owner */
32   ir_node *x;
33
34   printf("creating an IR graph: EMPTY...\n");
35
36   /* init library */
37   init_firm ();
38
39   set_opt_dead_node_elimination (0);
40
41   /* FIRM was designed for oo languages where all methods belong to a class.
42    * For imperative languages like C we view a file as a large class containing
43    * all functions as methods in this file.
44    * (Therefore we define a class "empty" according to the file name
45    *  with a method main as an entity.)
46    * This class now is automatically generated.
47    */
48 #define METHODNAME "main"
49 #define NRARGS 0
50 #define NRES 0
51
52   owner = get_glob_type();
53   proc_main = new_type_method(id_from_str(METHODNAME, strlen(METHODNAME)),
54                               NRARGS, NRES);
55   ent = new_entity ((type *)owner,
56                     id_from_str (METHODNAME, strlen(METHODNAME)),
57                     (type *)proc_main);
58
59   /* Generates the basic graph for the method represented by entity ent, that
60    * is, generates start and end blocks and nodes and a first, initial block.
61    * The constructor needs to know how many local variables the method has.
62    */
63 #define NUM_OF_LOCAL_VARS 0
64
65   irg = new_ir_graph (ent, NUM_OF_LOCAL_VARS);
66
67
68   /* The constructor new_ir_graph() generated a region to place nodes in.
69    * This region is accessible via the attribut current_block of irg and
70    * it is not matured.
71    * Generate the return node into this region. The Return node is needed to
72    * return at least the store. */
73   {
74     ir_node *in[0]; /* this is the array containing the return parameters */
75     x = new_Return (get_store(), 0, in);
76   }
77   /* Now generate all instructions for this block and all its predecessor blocks
78    * so we can mature it. */
79   mature_block (irg->current_block);
80
81   /* This adds the in edge of the end block which originates at the return statement.
82    * The return node passes controlflow to the end block.  */
83   add_in_edge (irg->end_block, x);
84   /* Now we can mature the end block as all it's predecessors are known. */
85   mature_block (irg->end_block);
86
87   /* verify the graph */
88   irg_vrfy(irg);
89   dead_node_elimination(irg);
90
91   printf("\nDone building the graph.  Dumping it.\n");
92   dump_ir_block_graph (irg);
93
94   printf("use xvcg to view this graph:\n");
95   printf("/ben/goetz/bin/xvcg GRAPHNAME\n");
96
97   return (0);
98 }