Added exception markings to graph and cfg dumps --flo
[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 "irprog_t.h"
16 # include "irgraph_t.h"
17 # include "array.h"
18 # include "obst.h"
19 # include "typegmod.h"
20
21 #define GLOBAL_TYPE_NAME "GlobalType"
22
23 /* A variable from where everything in the ir can be accessed. */
24 ir_prog *irp;
25
26 /* initializes ir_prog. Calles the constructor for an ir_prog. */
27 void init_irprog(void) {
28   new_ir_prog ();
29 }
30
31 /* Create a new ir prog. Automatically called by init_firm through
32    init_irprog. */
33 ir_prog *new_ir_prog (void) {
34   ir_prog *res;
35
36   res = (ir_prog *) malloc (sizeof(ir_prog));
37   irp = res;
38   /* res->obst      = (struct obstack *) xmalloc (sizeof (struct obstack)); */
39   res->graphs = NEW_ARR_F (ir_graph *, 1);
40   res->types  = NEW_ARR_F (type *, 1);
41   res->glob_type = new_type_class(id_from_str (GLOBAL_TYPE_NAME,
42                                                strlen(GLOBAL_TYPE_NAME)));
43   add_irp_type(res->glob_type);
44
45   res->const_code_irg = new_const_code_irg();
46
47 #ifdef DEBUG_libfirm
48   res->max_node_nr = 1;
49 #endif
50
51   return res;
52 }
53
54 /** Functions to access the fields of ir_prog **/
55
56
57 /* Access the main routine of the compiled program. */
58 ir_graph *get_irp_main_irg() {
59   assert (irp);
60   return irp->main_irg;
61 }
62
63 void set_irp_main_irg(ir_graph *main_irg) {
64   assert (irp);
65   irp->main_irg = main_irg;
66 }
67
68 type *get_glob_type(void) {
69   assert(irp);
70   return irp->glob_type = skip_tid(irp->glob_type);
71 }
72
73 /* Adds irg to the list of ir graphs in irp. */
74 void add_irp_irg(ir_graph *irg) {
75   assert (irg != NULL);
76   assert(irp && irp->graphs);
77   ARR_APP1 (ir_graph *, irp->graphs, irg);
78 }
79
80 /* Removes irg from the list or irgs, shrinks the list by one.
81    @@@ does not work properly. */
82 void remove_irp_irg(ir_graph *irg){
83   int i;
84   assert(irg);
85   for (i = 1; i < (ARR_LEN (irp->graphs))-1; i++)
86     if (irp->graphs[i+1] == irg) {
87       for(i++; i < (ARR_LEN (irp->graphs)) - 1; i++)
88         irp->graphs[i] = irp->graphs[i+1];
89       ARR_SETLEN(ir_graph*, irp->graphs, (ARR_LEN(irp->graphs)) - 1);
90       break;
91     }
92 }
93
94 int get_irp_n_irgs() {
95   assert (irp && irp->graphs);
96   /* Strangely the first element of the array is NULL.  Why??  */
97   return (ARR_LEN((irp)->graphs) - 1);
98 }
99
100 ir_graph *get_irp_irg(int pos){
101   assert (irp && irp->graphs);
102   /* Strangely the first element of the array is NULL.  Why??  */
103   return irp->graphs[pos+1];
104 }
105
106 void set_irp_irg(int pos, ir_graph *irg) {
107   assert (irp && irg);
108   assert (pos < (ARR_LEN((irp)->graphs) - 1));
109   /* Strangely the first element of the array is NULL.  Why??  */
110   irp->graphs[pos+1] = irg;
111 }
112
113 /* Adds type to the list of types in irp. */
114 void add_irp_type(type *typ) {
115   assert (typ != NULL);
116   assert(irp);
117   ARR_APP1 (type *, irp->types, typ);
118 }
119
120 int get_irp_n_types (void) {
121   assert (irp && irp->types);
122   /* Strangely the first element of the array is NULL.  Why??  */
123   return (ARR_LEN((irp)->types) - 1);
124 }
125
126 type *get_irp_type(int pos) {
127   assert (irp && irp->types);
128   /* Strangely the first element of the array is NULL.  Why??  */
129   /* Don't set the skip_tid result so that no double entries are generated. */
130   return skip_tid(irp->types[pos+1]);
131 }
132
133 void  set_irp_type(int pos, type *typ) {
134   assert (irp && typ);
135   assert (pos < (ARR_LEN((irp)->types) - 1));
136   /* Strangely the first element of the array is NULL.  Why??  */
137   irp->types[pos+1] = typ;
138 }
139
140 #ifdef DEBUG_libfirm
141 int get_irp_new_node_nr() {
142   assert(irp);
143   irp->max_node_nr = irp->max_node_nr + 1;
144   return irp->max_node_nr - 1;
145 }
146 #endif
147
148 ir_graph *get_const_code_irg()
149 {
150   return irp->const_code_irg;
151 }