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