removed warnings
[libfirm] / ir / ir / irdump.c
index e009ef6..b301db0 100644 (file)
@@ -1,9 +1,9 @@
 /* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
-** All rights reserved.
-**
-** Authors: Martin Trapp, Christian Schaefer
-**
-** irdump.h: dumping of an intermediate representation graph
+* All rights reserved.
+*
+* Authors: Martin Trapp, Christian Schaefer
+*
+* irdump.h: dumping of an intermediate representation graph
 */
 
 /* $Id$ */
@@ -28,7 +28,7 @@
 # include "typewalk.h"
 # include "irouts.h"
 # include "irdom.h"
-# include "common_t.h"
+# include "firm_common_t.h"
 # include  "irloop.h"
 
 # include "exc.h"
@@ -59,7 +59,7 @@
 #define ENT_OWN_EDGE_ATTR    "class: 4 label: \"owner\" color: black"
 #define METH_PAR_EDGE_ATTR   "class: 5 label: \"param %d\" color: green"
 #define METH_RES_EDGE_ATTR   "class: 6 label: \"res %d\" color: green"
-#define TYPE_SUPER_EDGE_ATTR "class: 7 label: \"supertype\" color: blue"
+#define TYPE_SUPER_EDGE_ATTR "class: 7 label: \"supertype\" color: red"
 #define UNION_EDGE_ATTR      "class: 8 label: \"component\" color: blue"
 #define PTR_PTS_TO_EDGE_ATTR "class: 9 label: \"points to\" color:green"
 #define ARR_ELT_TYPE_EDGE_ATTR "class: 10 label: \"arr elt tp\" color:green"
@@ -101,10 +101,10 @@ static INLINE bool dump_const_local_set() {
 }
 
 /* A global variable to record output of the Bad node. */
-int Bad_dumped;
+static int Bad_dumped;
 
-void dump_ir_blocks_nodes (ir_node *n, void *env);
-void dump_whole_node (ir_node *n, void* env);
+static void dump_ir_blocks_nodes (ir_node *n, void *env);
+static void dump_whole_node(ir_node *n, void* env);
 
 /*******************************************************************/
 /* routines to dump information about a single node                */
@@ -112,7 +112,7 @@ void dump_whole_node (ir_node *n, void* env);
 
 
 
-INLINE void
+static INLINE void
 dump_node_opcode (ir_node *n)
 {
   assert(n && n->op);
@@ -130,10 +130,10 @@ dump_node_opcode (ir_node *n)
       assert(get_kind(get_SymConst_type(n)) == k_type);
       assert(get_type_ident(get_SymConst_type(n)));
       xfprintf (F, "SymC %I ", get_type_ident(get_SymConst_type(n)));
-      if (get_SymConst_kind == type_tag)
-       xfprintf (F, "tag");
+      if (get_SymConst_kind(n) == type_tag)
+        xfprintf (F, "tag");
       else
-       xfprintf (F, "size");
+        xfprintf (F, "size");
     }
 
   /* Filter */
@@ -146,7 +146,7 @@ dump_node_opcode (ir_node *n)
   }
 }
 
-INLINE void
+static INLINE void
 dump_node_mode (ir_node *n)
 {
   switch (n->op->code) {
@@ -170,15 +170,11 @@ dump_node_mode (ir_node *n)
     xfprintf (F, "%I", get_mode_ident(n->mode));
     break;
   default:
+    ;
   }
 }
 
-void dump_node_loop_info(ir_node *n) {
-  //  if (get_irn_loop(n))
-  //  xfprintf(F, "\n in loop %d", get_loop_depth(get_irn_loop(n)));
-}
-
-INLINE void
+static INLINE void
 dump_node_nodeattr (ir_node *n)
 {
   switch (n->op->code) {
@@ -202,10 +198,11 @@ dump_node_nodeattr (ir_node *n)
     xfprintf (F, "%I", get_entity_ident(get_Sel_entity(n)));
     } break;
   default:
+    ;
   } /* end switch */
 }
 
-INLINE void
+static INLINE void
 dump_node_vcgattr (ir_node *n)
 {
   switch (n->op->code) {
@@ -234,7 +231,7 @@ dump_node_vcgattr (ir_node *n)
   }
 }
 
-bool pred_in_wrong_graph(ir_node *n, int pos, pmap *irgmap) {
+static bool pred_in_wrong_graph(ir_node *n, int pos, pmap *irgmap) {
   ir_node *block = (is_Block(n)) ? n : get_nodes_Block(n);
 
   if (irgmap &&
@@ -257,7 +254,7 @@ bool is_constlike_node(ir_node *n) {
 }
 
 
-void dump_const_node_local(ir_node *n, pmap *irgmap) {
+static void dump_const_node_local(ir_node *n, pmap *irgmap) {
   int i;
   if (!dump_const_local_set()) return;
   /* Use visited flag to avoid outputting nodes twice.
@@ -292,7 +289,7 @@ void dump_const_node_local(ir_node *n, pmap *irgmap) {
   }
 }
 
-void
+static void
 dump_node (ir_node *n, pmap * map) {
   if (dump_const_local_set() && is_constlike_node(n)) return;
 
@@ -312,7 +309,7 @@ dump_node (ir_node *n, pmap * map) {
   dump_const_node_local(n, map);
 }
 
-void
+static void
 dump_ir_node (ir_node *n)
 {
   /* dump this node */
@@ -507,7 +504,7 @@ dump_ir_node (ir_node *n)
 
 
 /* dump the edge to the block this node belongs to */
-void
+static void
 dump_ir_block_edge(ir_node *n)  {
   if (dump_const_local_set() && is_constlike_node(n)) return;
   if (is_no_Block(n)) {
@@ -519,7 +516,7 @@ dump_ir_block_edge(ir_node *n)  {
   }
 }
 
-void print_edge_vcgattr(ir_node *from, int to) {
+static void print_edge_vcgattr(ir_node *from, int to) {
   assert(from);
 
   if (is_backedge(from, to)) xfprintf (F, BACK_EDGE_ATTR);
@@ -531,7 +528,7 @@ void print_edge_vcgattr(ir_node *from, int to) {
   case iro_Start:   break;
   case iro_End:
     if (to >= 0) {
-      if (get_irn_mode(get_End_keepalive(from, to)) == mode_R)
+      if (get_irn_mode(get_End_keepalive(from, to)) == mode_BB)
        xfprintf (F, CF_EDGE_ATTR);
       if (get_irn_mode(get_End_keepalive(from, to)) == mode_X)
        xfprintf (F, MEM_EDGE_ATTR);
@@ -602,11 +599,12 @@ void print_edge_vcgattr(ir_node *from, int to) {
   case iro_Unknown: break;
   case iro_Id:     break;
   default:
+    ;
   }
 }
 
 /* dump edges to our inputs */
-void
+static void
 dump_ir_data_edges(ir_node *n)  {
   int i, visited = get_irn_visited(n);
 
@@ -635,7 +633,7 @@ dump_ir_data_edges(ir_node *n)  {
 }
 
 /* dump out edges */
-void
+static void
 dump_out_edge (ir_node *n, void* env) {
   int i;
   for (i = 0; i < get_irn_n_outs(n); i++) {
@@ -688,7 +686,7 @@ void dump_loop_info(ir_graph *irg) {
 
 
 /* dumps the edges between nodes and their type or entity attributes. */
-void dump_node2type_edges (ir_node *n, void *env)
+static void dump_node2type_edges (ir_node *n, void *env)
 {
   assert(n);
 
@@ -735,28 +733,31 @@ void dump_node2type_edges (ir_node *n, void *env)
 }
 
 
-void dump_const_expression(ir_node *value) {
+static void dump_const_expression(ir_node *value) {
   ir_graph *rem = current_ir_graph;
+  int rem_dump_const_local = dump_const_local;
+  dump_const_local = 0;
   current_ir_graph = get_const_code_irg();
   irg_walk(value, dump_ir_blocks_nodes, NULL, get_nodes_Block(value));
   set_irg_visited(current_ir_graph, get_irg_visited(current_ir_graph) -1);
   current_ir_graph = rem;
+  dump_const_local = rem_dump_const_local;
 }
 
 
-void print_type_info(type *tp) {
+static void print_type_info(type *tp) {
   if (get_type_state(tp) == layout_undefined) {
     xfprintf(F, "state: layout_undefined\n");
   } else {
     xfprintf(F, "state: layout_fixed,\n");
   }
   if (get_type_mode(tp))
-    xfprintf(F, "mode: %s,\n", get_mode_name(get_type_mode(tp)));
+    xfprintf(F, "mode: %I,\n", get_mode_ident(get_type_mode(tp)));
   xfprintf(F, "size: %dB,\n", get_type_size(tp));
 }
 
 
-void print_typespecific_info(type *tp) {
+static void print_typespecific_info(type *tp) {
   switch (get_type_tpop_code(tp)) {
   case tpo_class:
     {
@@ -791,7 +792,7 @@ void print_typespecific_info(type *tp) {
   } /* switch type */
 }
 
-void print_type_node(type *tp) {
+static void print_type_node(type *tp) {
   xfprintf (F, "node: {title: \"%p\" ", tp);
   xfprintf (F, "label: \"%I %I\"", get_type_tpop_nameid(tp), get_type_ident(tp));
   xfprintf (F, "info1: \"");
@@ -801,8 +802,51 @@ void print_type_node(type *tp) {
   xfprintf (F, "}\n");
 }
 
+void dump_entity_node(entity *ent) {
+  xfprintf (F, "node: {title: \"%p\" ", ent);
+  xfprintf (F, DEFAULT_TYPE_ATTRIBUTE);
+  xfprintf (F, "label: ");
+  xfprintf (F, "\"ent %I\" " ENTITY_NODE_ATTR , get_entity_ident(ent));
+  fprintf (F, "\n info1:\"\nallocation:  ");
+  switch (get_entity_allocation(ent)) {
+    case dynamic_allocated:   fprintf (F, "dynamic allocated");   break;
+    case automatic_allocated: fprintf (F, "automatic allocated"); break;
+    case static_allocated:    fprintf (F, "static allocated");    break;
+    case parameter_allocated: fprintf (F, "parameter allocated"); break;
+  }
+  fprintf (F, "\nvisibility:  ");
+  switch (get_entity_visibility(ent)) {
+    case local:              fprintf (F, "local");             break;
+    case external_visible:   fprintf (F, "external_visible");  break;
+    case external_allocated: fprintf (F, "external_allocate"); break;
+  }
+  fprintf (F, "\nvariability: ");
+  switch (get_entity_variability(ent)) {
+    case uninitialized: fprintf (F, "uninitialized");break;
+    case initialized:   fprintf (F, "initialized");  break;
+    case part_constant: fprintf (F, "part_constant");break;
+    case constant:      fprintf (F, "constant");     break;
+  }
+  fprintf (F, "\nvolatility:  ");
+  switch (get_entity_volatility(ent)) {
+    case non_volatile: fprintf (F, "non_volatile"); break;
+    case is_volatile:  fprintf (F, "is_volatile");  break;
+  }
+  fprintf (F, "\npeculiarity: ");
+  switch (get_entity_peculiarity(ent)) {
+    case description: fprintf (F, "description"); break;
+    case inherited:   fprintf (F, "inherited");   break;
+    case existent:    fprintf (F, "existent");    break;
+  }
+  xfprintf(F, "\nname:    %I\nld_name: %I", get_entity_ident(ent), get_entity_ld_ident(ent));
+  fprintf(F, "\noffset:  %d", get_entity_offset(ent));
+  if (is_method_type(get_entity_type(ent)))
+    xfprintf (F, "\nirg = %p ", get_entity_irg(ent));
+  xfprintf(F, "\"\n}\n");
+}
+
 /* dumps a type or entity and it's edges. */
-void
+static void
 dump_type_info (type_or_ent *tore, void *env) {
   int i = 0;  /* to shutup gcc */
 
@@ -814,38 +858,7 @@ dump_type_info (type_or_ent *tore, void *env) {
       entity *ent = (entity *)tore;
       ir_node *value;
       /* The node */
-      xfprintf (F, "node: {title: \"%p\" ", tore);
-      xfprintf (F, DEFAULT_TYPE_ATTRIBUTE);
-      xfprintf (F, "label: ");
-      xfprintf (F, "\"ent %I\" " ENTITY_NODE_ATTR , get_entity_ident(ent));
-      switch (get_entity_allocation(ent)) {
-        case dynamic_allocated:   fprintf (F, " info1:\"dynamic allocated\n");   break;
-        case automatic_allocated: fprintf (F, " info1:\"automatic allocated\n"); break;
-        case static_allocated:    fprintf (F, " info1:\"static allocated\n");    break;
-      }
-      switch (get_entity_visibility(ent)) {
-       case local:              fprintf (F, "local\n");             break;
-       case external_visible:   fprintf (F, "external_visible\n");  break;
-       case external_allocated: fprintf (F, "external_allocate\n"); break;
-      }
-      switch (get_entity_variability(ent)) {
-       case uninitialized: fprintf (F, "uninitialized\n");break;
-       case initialized:   fprintf (F, "initialized\n");  break;
-       case part_constant: fprintf (F, "part_constant\n");break;
-       case constant:      fprintf (F, "constant\n");     break;
-      }
-      switch (get_entity_volatility(ent)) {
-       case non_volatile: fprintf (F, "non_volatile\n"); break;
-       case is_volatile:  fprintf (F, "is_volatile\n");  break;
-      }
-      switch (get_entity_peculiarity(ent)) {
-       case description: fprintf (F, "description\n"); break;
-        case inherited:   fprintf (F, "inherited\n"); break;
-       case existent:    fprintf (F, "existent\n");    break;
-      }
-      if (is_method_type(get_entity_type(ent)))
-       xfprintf (F, "\n irg = %p ", get_entity_irg(ent));
-      xfprintf(F, "\"}\n");
+      dump_entity_node(ent);
       /* The Edges */
       /* skip this to reduce graph.  Member edge of type is parallel to this edge. *
       xfprintf (F, "edge: { sourcename: \"%p\" targetname: \"%p\" "
@@ -948,7 +961,54 @@ dump_type_info (type_or_ent *tore, void *env) {
     break; /* case k_type */
   default:
     {
-      printf(" *** irdump,  %s(l.%i), faulty type.\n", __FUNCTION__, __LINE__);
+      printf(" *** irdump,  dump_type_info(l.%i), faulty type.\n", __LINE__);
+    } break;
+  } /* switch kind_or_entity */
+}
+
+/* dumps a class type node and a superclass edge.
+   If env != null dumps entities of classes and overwrites edges. */
+static void
+dump_class_hierarchy_node (type_or_ent *tore, void *env) {
+  int i = 0;  /* to shutup gcc */
+
+  /* dump this type or entity */
+  switch (get_kind(tore)) {
+  case k_entity: {
+    entity *ent = (entity *)tore;
+    if (get_entity_owner(ent) == get_glob_type()) break;
+    if ((env) && is_class_type(get_entity_owner(ent))) {
+      /* The node */
+      dump_entity_node(ent);
+      /* The edges */
+      xfprintf (F, "edge: { sourcename: \"%p\" targetname: \"%p\" "
+                TYPE_MEMBER_EDGE_ATTR "}\n", get_entity_owner(ent), ent);
+      for(i = 0; i < get_entity_n_overwrites(ent); i++)
+       xfprintf (F, "edge: { sourcename: \"%p\" targetname: \"%p\" "
+                 ENT_OVERWRITES_EDGE_ATTR "}\n",
+                 ent, get_entity_overwrites(ent, i));
+    }
+  } break; /* case k_entity */
+  case k_type:
+    {
+      type *tp = (type *)tore;
+      if (tp == get_glob_type()) break;
+      switch (get_type_tpop_code(tp)) {
+        case tpo_class: {
+         print_type_node(tp);
+         /* and now the edges */
+         for (i=0; i < get_class_n_supertypes(tp); i++)
+           xfprintf (F, "edge: { sourcename: \"%p\" targetname: \"%p\" "
+                     TYPE_SUPER_EDGE_ATTR "}\n",
+                     tp, get_class_supertype(tp, i));
+        } break;
+        default: break;
+      } /* switch type */
+    }
+    break; /* case k_type */
+  default:
+    {
+      printf(" *** irdump,  dump_class_hierarchy_node(l.%i), faulty type.\n", __LINE__);
     } break;
   } /* switch kind_or_entity */
 }
@@ -957,7 +1017,7 @@ dump_type_info (type_or_ent *tore, void *env) {
 /* open and close vcg file                                              */
 /************************************************************************/
 
-void vcg_open (ir_graph *irg, char *suffix) {
+static void vcg_open (ir_graph *irg, char *suffix) {
   char *fname;  /* filename to put the vcg information in */
   const char *cp;
   ident *id;
@@ -1016,7 +1076,7 @@ void vcg_open (ir_graph *irg, char *suffix) {
   xfprintf (F, "\n");          /* a separator */
 }
 
-void vcg_open_name (const char *name) {
+static void vcg_open_name (const char *name) {
   char *fname;  /* filename to put the vcg information in */
   int len;
   char label[4];
@@ -1067,7 +1127,7 @@ void vcg_open_name (const char *name) {
   xfprintf (F, "\n");          /* a separator */
 }
 
-void
+static void
 vcg_close () {
   xfprintf (F, "}\n");  /* print footer */
   fclose (F);           /* close vcg file */
@@ -1077,12 +1137,12 @@ vcg_close () {
 /* routines to dump a graph, blocks as conventional nodes.              */
 /************************************************************************/
 
-int node_floats(ir_node *n) {
+static int node_floats(ir_node *n) {
   return ((get_op_pinned(get_irn_op(n)) == floats) &&
          (get_irg_pinned(current_ir_graph) == floats));
 }
 
-void
+static void
 dump_whole_node (ir_node *n, void* env) {
   dump_node(n, NULL);
   if (!node_floats(n)) dump_ir_block_edge(n);
@@ -1116,7 +1176,7 @@ dump_ir_graph (ir_graph *irg)
 /* the following routines dump the nodes as attached to the blocks.    */
 /***********************************************************************/
 
-void
+static void
 dump_ir_blocks_nodes (ir_node *n, void *env) {
   ir_node *block = (ir_node *)env;
 
@@ -1128,7 +1188,7 @@ dump_ir_blocks_nodes (ir_node *n, void *env) {
     Bad_dumped = 1;
 }
 
-void
+static void
 dump_ir_block (ir_node *block, void *env) {
   ir_graph *irg = (ir_graph *)env;
 
@@ -1161,7 +1221,7 @@ dump_ir_block (ir_node *block, void *env) {
 }
 
 
-void
+static void
 dump_blockless_nodes (ir_node *n, void *env) {
   if (is_no_Block(n) && get_irn_op(get_nodes_Block(n)) == op_Bad) {
     dump_node(n, NULL);
@@ -1177,7 +1237,7 @@ dump_blockless_nodes (ir_node *n, void *env) {
   }
 }
 
-void dump_ir_block_graph_2  (ir_graph *irg)
+static void dump_ir_block_graph_2  (ir_graph *irg)
 {
   Bad_dumped = 0;
   /* walk over the blocks in the graph */
@@ -1214,7 +1274,7 @@ dump_ir_block_graph (ir_graph *irg)
 /***********************************************************************/
 
 
-void
+static void
 dump_block_to_cfg (ir_node *block, void *env) {
   int i;
   ir_node *pred;
@@ -1316,6 +1376,17 @@ dump_all_types (void)
   vcg_close();
 }
 
+void
+dump_class_hierarchy (bool entities)
+{
+  vcg_open_name ("class_hierarchy");
+  if (entities)
+    type_walk(dump_class_hierarchy_node, NULL, (void *)1);
+  else
+    type_walk(dump_class_hierarchy_node, NULL, NULL);
+  vcg_close();
+}
+
 /***********************************************************************/
 /* dumps a graph with type information                                 */
 /***********************************************************************/
@@ -1371,7 +1442,7 @@ dump_ir_block_graph_w_types (ir_graph *irg)
 /*  dump_type_graph                                                    */
 /*  dump_ir_graph_w_types                                              */
 /***********************************************************************/
-void dump_all_ir_graphs (void dump_graph(ir_graph*)) {
+void dump_all_ir_graphs (dump_graph_func *dump_graph) {
   int i;
   for (i=0; i < get_irp_n_irgs(); i++) {
     dump_graph(get_irp_irg(i));
@@ -1394,8 +1465,8 @@ void turn_off_constant_entity_values() {
   const_entities = 0;
 }
 
-void dump_keepalive_edges() {
-  dump_keepalive = 1;
+void dump_keepalive_edges(bool b) {
+  dump_keepalive = b;
 }
 
 void dump_out_edges() {
@@ -1471,7 +1542,7 @@ static void dump_cg_ir_block(ir_node * block, void * env) {
   xfprintf(F, "}\n\n");
 }
 
-void d_cg_block_graph(ir_graph *irg, ir_node **arr, pmap *irgmap) {
+static void d_cg_block_graph(ir_graph *irg, ir_node **arr, pmap *irgmap) {
   int i;
 
   xfprintf(F, "graph: { title: \"%p\" label: \"%I\" status:clustered color:white \n",
@@ -1501,7 +1572,7 @@ void dump_cg_block_graph(ir_graph * irg) {
 
   vcg_open(irg, "");
 
-  irg_walk_graph(irg, clear_link, (irg_walk_func) collect_blocks_floats_cg, map);
+  irg_walk_graph(irg, clear_link, (irg_walk_func *) collect_blocks_floats_cg, map);
   for (entry = pmap_first(map); entry; entry = pmap_next(map))
     pmap_insert(map2, entry->key, entry->value);
   for (entry = pmap_first(map); entry; entry = pmap_next(map)) {
@@ -1574,7 +1645,7 @@ void dump_cg_graph(ir_graph * irg) {
   pmap_entry * entry;
   vcg_open(irg, "");
 
-  irg_walk_graph(irg, clear_link, (irg_walk_func) collect_blocks_floats_cg, map);
+  irg_walk_graph(irg, clear_link, (irg_walk_func *) collect_blocks_floats_cg, map);
   for (entry = pmap_first(map); entry; entry = pmap_next(map))
     pmap_insert(map2, entry->key, entry->value);
   for (entry = pmap_first(map); entry; entry = pmap_next(map)) {