use tv_t.h instead of tv.h
[libfirm] / ir / ir / irprog.c
index 5c46830..b30dac8 100644 (file)
  */
 
 #ifdef HAVE_CONFIG_H
-# include <config.h>
+# include "config.h"
 #endif
 
+#ifdef HAVE_STRING_H
 # include <string.h>
+#endif
 
 # include "irprog_t.h"
 # include "irgraph_t.h"
+# include "pseudo_irg.h"
 # include "array.h"
 # include "obst.h"
 # include "typegmod.h"
 
 #define GLOBAL_TYPE_NAME "GlobalType"
+#define INITAL_PROG_NAME "no_name_set"
 
 /* A variable from where everything in the ir can be accessed. */
 ir_prog *irp;
-ir_prog *get_irp() { return irp; }
+ir_prog *get_irp(void) { return irp; }
 
 /* initializes ir_prog. Calles the constructor for an ir_prog. */
 void init_irprog(void) {
   new_ir_prog ();
 }
 
-INLINE void remove_irp_type_from_list (type *typ) {
+void remove_irp_type_from_list (type *typ) {
   int i;
   assert(typ);
 #if 0
@@ -43,7 +47,7 @@ INLINE void remove_irp_type_from_list (type *typ) {
 #endif
     if (irp->types[i] == typ) {
       for(; i < (ARR_LEN (irp->types)) - 1; i++) {
-       irp->types[i] = irp->types[i+1];
+        irp->types[i] = irp->types[i+1];
       }
       ARR_SETLEN(type*, irp->types, (ARR_LEN(irp->types)) - 1);
       break;
@@ -56,35 +60,37 @@ INLINE void remove_irp_type_from_list (type *typ) {
 ir_prog *new_ir_prog (void) {
   ir_prog *res;
 
-  res = (ir_prog *) malloc (sizeof(ir_prog));
-  memset(res, 0, sizeof(res));
+  res = xmalloc (sizeof(*res));
+  memset(res, 0, sizeof(*res));
   irp = res;
-  /* res->obst      = (struct obstack *) xmalloc (sizeof (struct obstack)); */
-  res->graphs = NEW_ARR_F (ir_graph *, 0);
+  /* res->obst      = xmalloc (sizeof(*res->obst)); */
+  res->graphs        = NEW_ARR_F (ir_graph *, 0);
+  res->pseudo_graphs = NEW_ARR_F (ir_graph *, 0);
   res->types  = NEW_ARR_F (type *, 0);
-  res->name   = new_id_from_str("no_name_set");
+  res->name   = new_id_from_str(INITAL_PROG_NAME);
 
 #ifdef DEBUG_libfirm
   res->max_node_nr = 0;
 #endif
 
-  res->glob_type = new_type_class(new_id_from_chars (GLOBAL_TYPE_NAME,
-                                              strlen(GLOBAL_TYPE_NAME)));
+  res->glob_type = new_type_class(new_id_from_str (GLOBAL_TYPE_NAME));
   /* Remove type from type list.  Must be treated differently than
      other types. */
   remove_irp_type_from_list(res->glob_type);
 
   res->const_code_irg = new_const_code_irg();
 
-  res->outs_state = outs_none;
-  res->ip_outedges = NULL;
+  res->outs_state   = outs_none;
+  res->ip_outedges  = NULL;
+  res->trouts_state = outs_none;
+  res->class_cast_state = ir_class_casts_transitive;
 
   return res;
 }
 
 /* frees all memory used by irp.  Types in type list, irgs in irg
     list and entities in global type must be freed by hand before. */
-void     free_ir_prog() {
+void     free_ir_prog(void) {
   free_type(irp->glob_type);
   /* @@@ * free_ir_graph(irp->const_code_irg); * ?? End has no in?? */
   DEL_ARR_F(irp->graphs);
@@ -98,7 +104,7 @@ void     free_ir_prog() {
 
 
 /* Access the main routine of the compiled program. */
-ir_graph *get_irp_main_irg() {
+ir_graph *get_irp_main_irg(void) {
   assert (irp);
   return irp->main_irg;
 }
@@ -120,19 +126,37 @@ void add_irp_irg(ir_graph *irg) {
 }
 
 /* Removes irg from the list or irgs, shrinks the list by one. */
-void remove_irp_irg(ir_graph *irg){
-  int i;
+void remove_irp_irg_from_list(ir_graph *irg){
+  int i, found = false;
   assert(irg);
-  free_ir_graph(irg);
   for (i = 0; i < (ARR_LEN (irp->graphs)); i++) {
     if (irp->graphs[i] == irg) {
+      found = true;
       for(; i < (ARR_LEN (irp->graphs)) - 1; i++) {
-       irp->graphs[i] = irp->graphs[i+1];
+        irp->graphs[i] = irp->graphs[i+1];
       }
       ARR_SETLEN(ir_graph*, irp->graphs, (ARR_LEN(irp->graphs)) - 1);
       break;
     }
   }
+  if (!found) {
+    for (i = 0; i < (ARR_LEN (irp->pseudo_graphs)); i++) {
+      if (irp->pseudo_graphs[i] == irg) {
+             for(; i < (ARR_LEN (irp->pseudo_graphs)) - 1; i++) {
+               irp->pseudo_graphs[i] = irp->pseudo_graphs[i+1];
+             }
+             ARR_SETLEN(ir_graph*, irp->pseudo_graphs, (ARR_LEN(irp->pseudo_graphs)) - 1);
+             break;
+      }
+    }
+  }
+}
+
+/* Removes irg from the list or irgs, shrinks the list by one. */
+void remove_irp_irg(ir_graph *irg){
+  assert(irg);
+  free_ir_graph(irg);
+  remove_irp_irg_from_list(irg);
 }
 
 int (get_irp_n_irgs)(void) {
@@ -146,10 +170,28 @@ ir_graph *(get_irp_irg)(int pos){
 void set_irp_irg(int pos, ir_graph *irg) {
   assert (irp && irg);
   assert (pos < (ARR_LEN((irp)->graphs)));
-  /* Strangely the first element of the array is NULL.  Why??  */
   irp->graphs[pos] = irg;
 }
 
+/* Gets the number of graphs _and_ pseudo graphs. */
+int       get_irp_n_allirgs(void) {
+  /* We can not call get_irp_n_irgs, as we end up in a recursion ... */
+  return ARR_LEN((irp)->graphs) + get_irp_n_pseudo_irgs();
+}
+
+/* Returns the ir graph at position pos of all graphs (including
+ pseudo graphs).  Visits first graphs, then pseudo graphs. */
+ir_graph *get_irp_allirg(int pos) {
+  int n_irgs = ARR_LEN((irp)->graphs);
+  assert(0 <= pos);
+  if (pos < n_irgs) {
+    return (irp)->graphs[pos];
+  } else {
+    return get_irp_pseudo_irg(pos-n_irgs);
+  }
+}
+
+
 /* Adds type to the list of types in irp. */
 void add_irp_type(type *typ) {
   assert (typ != NULL);
@@ -172,7 +214,6 @@ type *(get_irp_type) (int pos) {
 void  set_irp_type(int pos, type *typ) {
   assert (irp && typ);
   assert (pos < (ARR_LEN((irp)->types)));
-  /* Strangely the first element of the array is NULL.  Why??  */
   irp->types[pos] = typ;
 }
 
@@ -188,6 +229,9 @@ int get_irp_new_node_nr() {
 void   set_irp_prog_name(ident *name) {
   irp->name = name;
 }
+int irp_prog_name_is_set(void) {
+  return irp->name != new_id_from_str(INITAL_PROG_NAME);
+}
 ident *get_irp_prog_ident(void) {
   return irp->name;
 }
@@ -201,6 +245,13 @@ ir_graph *(get_const_code_irg)(void)
   return __get_const_code_irg();
 }
 
+irg_phase_state get_irp_phase_state(void) {
+  return irp->phase_state;
+}
+void           set_irp_phase_state(irg_phase_state s) {
+  irp->phase_state = s;
+}
+
 irg_outs_state get_irp_ip_outs_state() {
   return irp->outs_state;
 }
@@ -211,10 +262,19 @@ void set_irp_ip_outs_inconsistent() {
 
 void      set_irp_ip_outedges(ir_node ** ip_outedges)
 {
-  irp -> ip_outedges = ip_outedges;
+  irp->ip_outedges = ip_outedges;
 }
 
 ir_node** get_irp_ip_outedges(void)
 {
-  return(irp -> ip_outedges);
+  return irp->ip_outedges;
+}
+
+
+irg_callee_info_state get_irp_callee_info_state(void) {
+  return irp->callee_info_state;
+}
+
+void set_irp_callee_info_state(irg_callee_info_state s) {
+  irp->callee_info_state = s;
 }