Corrected creation of the loop tree:
[libfirm] / ir / ir / irprog.c
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/irprog.c
4  * Purpose:     Entry point to the representation of a whole program.
5  * Author:      Goetz Lindenmaier
6  * Modified by:
7  * Created:     2000
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 2000-2003 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 #ifdef HAVE_CONFIG_H
14 # include <config.h>
15 #endif
16
17 # include <string.h>
18
19 # include "irprog_t.h"
20 # include "irgraph_t.h"
21 # include "array.h"
22 # include "obst.h"
23 # include "typegmod.h"
24
25 #define GLOBAL_TYPE_NAME "GlobalType"
26
27 /* A variable from where everything in the ir can be accessed. */
28 ir_prog *irp;
29 ir_prog *get_irp() { return irp; }
30
31 /* initializes ir_prog. Calles the constructor for an ir_prog. */
32 void init_irprog(void) {
33   new_ir_prog ();
34 }
35
36 INLINE void remove_irp_type_from_list (type *typ) {
37   int i;
38   assert(typ);
39   for (i = 1; i < (ARR_LEN (irp->types)); i++) {
40     if (irp->types[i] == typ) {
41       for(; i < (ARR_LEN (irp->types)) - 1; i++) {
42         irp->types[i] = irp->types[i+1];
43       }
44       ARR_SETLEN(type*, irp->types, (ARR_LEN(irp->types)) - 1);
45       break;
46     }
47   }
48 }
49
50 /* Create a new ir prog. Automatically called by init_firm through
51    init_irprog. */
52 ir_prog *new_ir_prog (void) {
53   ir_prog *res;
54
55   res = (ir_prog *) malloc (sizeof(ir_prog));
56   irp = res;
57   /* res->obst      = (struct obstack *) xmalloc (sizeof (struct obstack)); */
58   res->graphs = NEW_ARR_F (ir_graph *, 1);
59   res->types  = NEW_ARR_F (type *, 1);
60   res->name   = NULL;
61
62 #ifdef DEBUG_libfirm
63   res->max_node_nr = 0;
64 #endif
65
66   res->glob_type = new_type_class(id_from_str (GLOBAL_TYPE_NAME,
67                                                strlen(GLOBAL_TYPE_NAME)));
68   /* Remove type from type list.  Must be treated differently than
69      other types. */
70   remove_irp_type_from_list(res->glob_type);
71
72   res->const_code_irg = new_const_code_irg();
73
74
75   return res;
76 }
77
78 /** Functions to access the fields of ir_prog **/
79
80
81 /* Access the main routine of the compiled program. */
82 ir_graph *get_irp_main_irg() {
83   assert (irp);
84   return irp->main_irg;
85 }
86
87 void set_irp_main_irg(ir_graph *main_irg) {
88   assert (irp);
89   irp->main_irg = main_irg;
90 }
91
92 type *get_glob_type(void) {
93   assert(irp);
94   return irp->glob_type = skip_tid(irp->glob_type);
95 }
96
97 /* Adds irg to the list of ir graphs in irp. */
98 void add_irp_irg(ir_graph *irg) {
99   assert (irg != NULL);
100   assert(irp && irp->graphs);
101   ARR_APP1 (ir_graph *, irp->graphs, irg);
102 }
103
104 /* Removes irg from the list or irgs, shrinks the list by one. */
105 void remove_irp_irg(ir_graph *irg){
106   int i;
107   assert(irg);
108   free_ir_graph(irg);
109   for (i = 1; i < (ARR_LEN (irp->graphs)); i++) {
110     if (irp->graphs[i] == irg) {
111       for(; i < (ARR_LEN (irp->graphs)) - 1; i++) {
112         irp->graphs[i] = irp->graphs[i+1];
113       }
114       ARR_SETLEN(ir_graph*, irp->graphs, (ARR_LEN(irp->graphs)) - 1);
115       break;
116     }
117   }
118 }
119
120 int get_irp_n_irgs() {
121   assert (irp && irp->graphs);
122   /* Strangely the first element of the array is NULL.  Why??  */
123   return (ARR_LEN((irp)->graphs) - 1);
124 }
125
126 ir_graph *get_irp_irg(int pos){
127   assert (irp && irp->graphs);
128   /* Strangely the first element of the array is NULL.  Why??  */
129   return irp->graphs[pos+1];
130 }
131
132 void set_irp_irg(int pos, ir_graph *irg) {
133   assert (irp && irg);
134   assert (pos < (ARR_LEN((irp)->graphs) - 1));
135   /* Strangely the first element of the array is NULL.  Why??  */
136   irp->graphs[pos+1] = irg;
137 }
138
139 /* Adds type to the list of types in irp. */
140 void add_irp_type(type *typ) {
141   assert (typ != NULL);
142   assert(irp);
143   ARR_APP1 (type *, irp->types, typ);
144 }
145
146 void remove_irp_type(type *typ) {
147   remove_irp_type_from_list (typ);
148 }
149
150 int get_irp_n_types (void) {
151   assert (irp && irp->types);
152   /* Strangely the first element of the array is NULL.  Why??  */
153   return (ARR_LEN((irp)->types) - 1);
154 }
155
156 type *get_irp_type(int pos) {
157   assert (irp && irp->types);
158   /* Strangely the first element of the array is NULL.  Why??  */
159   /* Don't set the skip_tid result so that no double entries are generated. */
160   return skip_tid(irp->types[pos+1]);
161 }
162
163 void  set_irp_type(int pos, type *typ) {
164   assert (irp && typ);
165   assert (pos < (ARR_LEN((irp)->types) - 1));
166   /* Strangely the first element of the array is NULL.  Why??  */
167   irp->types[pos+1] = typ;
168 }
169
170 #ifdef DEBUG_libfirm
171 int get_irp_new_node_nr() {
172   assert(irp);
173   irp->max_node_nr = irp->max_node_nr + 1;
174   return irp->max_node_nr - 1;
175 }
176 #endif
177
178 /** File name / executable name or the like **/
179 void   set_irp_prog_name(ident *name) {
180   irp->name = name;
181 }
182 ident *get_irp_prog_ident(void) {
183   return irp->name;
184 }
185 const char  *get_irp_prog_name(void) {
186   return get_id_str(irp->name);
187 }
188
189
190 ir_graph *get_const_code_irg(void)
191 {
192   return irp->const_code_irg;
193 }