flag for strength reduction verbosity
[libfirm] / ir / tr / entity.c
index d287609..7c337b5 100644 (file)
@@ -10,9 +10,7 @@
  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
  */
 
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
+#include "firm_common_t.h"
 
 # include <stdlib.h>
 # include <stddef.h>
 # include "mangle.h"
 # include "typegmod.h"
 # include "array.h"
+
 /* All this is needed to build the constant node for methods: */
 # include "irprog_t.h"
 # include "ircons.h"
 # include "tv_t.h"
 
+#if DEBUG_libfirm
+# include "irdump.h"  /* for output if errors occur. */
+#endif
+
+# include "callgraph.h"  /* for dumping debug output */
+
 /*******************************************************************/
 /** general                                                       **/
 /*******************************************************************/
@@ -108,6 +113,8 @@ new_entity (type *owner, ident *name, type *type)
   }
   res->irg = NULL;
 
+  res->accesses = NULL;
+
 #ifdef DEBUG_libfirm
   res->nr = get_irp_new_node_nr();
 #endif
@@ -197,7 +204,6 @@ copy_entity_name (entity *old, ident *new_name) {
 void
 free_entity (entity *ent) {
   assert(ent && ent->kind == k_entity);
-  free_tarval_entity(ent);
   free_entity_attrs(ent);
   ent->kind = k_BAD;
   free(ent);
@@ -347,6 +353,11 @@ set_entity_variability (entity *ent, ent_variability var)
     ent->values    = NEW_ARR_F(ir_node *, 0);
     ent->val_paths = NEW_ARR_F(compound_graph_path *, 0);
   }
+  if ((is_atomic_type(ent->type)) &&
+      (ent->variability == variability_uninitialized) && (var != variability_uninitialized)) {
+    /* Set default constant value. */
+    ent->value = new_rd_Unknown(get_const_code_irg(), get_type_mode(ent->type));
+  }
 
   if ((is_compound_type(ent->type)) &&
       (var == variability_uninitialized) && (ent->variability != variability_uninitialized)) {
@@ -659,11 +670,16 @@ add_compound_ent_value(entity *ent, ir_node *val, entity *member) {
   path = new_compound_graph_path(owner_tp, 1);
   path->nodes[0] = member;
   if (is_array_type(owner_tp)) {
+    int max;
+    int i;
+
     assert(get_array_n_dimensions(owner_tp) == 1 && has_array_lower_bound(owner_tp, 0));
-    int max = get_array_lower_bound_int(owner_tp, 0) -1;
-    for (int i = 0; i < get_compound_ent_n_values(ent); ++i) {
+    max = get_array_lower_bound_int(owner_tp, 0) -1;
+    for (i = 0; i < get_compound_ent_n_values(ent); ++i) {
       int index = get_compound_graph_path_array_index(get_compound_ent_value_path(ent, i), 0);
-      if (index > max) max = index;
+      if (index > max) {
+        max = index;
+      }
     }
     path->arr_indicees[0] = max + 1;
   }
@@ -748,10 +764,10 @@ int  get_compound_ent_value_offset_bits(entity *ent, int pos) {
       int size  = get_mode_size_bits (get_type_mode(node_tp));
       int align = get_mode_align_bits(get_type_mode(node_tp));
       if (size < align)
-       size = align;
+    size = align;
       else {
-       assert(size % align == 0);
-       /* ansonsten aufrunden */
+    assert(size % align == 0);
+    /* ansonsten aufrunden */
       }
       offset += size * get_compound_graph_path_array_index(path, i);
     } else {
@@ -851,14 +867,14 @@ void compute_compound_ent_array_indicees(entity *ent) {
       type *elem_tp = get_entity_type(node);
 
       if (is_array_type(elem_tp)) {
-       assert(get_array_n_dimensions(elem_tp) == 1 && "other not implemented");
-       int dim = 0;
-       if (!has_array_lower_bound(elem_tp, dim) || !has_array_upper_bound(elem_tp, dim)) {
-         if (!unknown_bound_entity) unknown_bound_entity = node;
-         if (node != unknown_bound_entity) return;
-       }
-
-       init_index(elem_tp);
+    assert(get_array_n_dimensions(elem_tp) == 1 && "other not implemented");
+    int dim = 0;
+    if (!has_array_lower_bound(elem_tp, dim) || !has_array_upper_bound(elem_tp, dim)) {
+      if (!unknown_bound_entity) unknown_bound_entity = node;
+      if (node != unknown_bound_entity) return;
+    }
+
+    init_index(elem_tp);
       }
     }
   }
@@ -871,7 +887,7 @@ void compute_compound_ent_array_indicees(entity *ent) {
       entity *node = get_compound_graph_path_node(path, j);
       type *owner_tp = get_entity_owner(node);
       if (is_array_type(owner_tp))
-       set_compound_graph_path_array_index (path, j, get_next_index(node));
+    set_compound_graph_path_array_index (path, j, get_next_index(node));
     }
   }
 
@@ -920,7 +936,7 @@ void sort_compound_ent_values(entity *ent) {
     assert(pos < size);
     assert(permutation[pos] == 0 && "two values with the same offset");
     permutation[pos] = i + 1;         /* We initialized with 0, so we can not distinguish entry 0.
-                                        So inc all entries by one. */
+                     So inc all entries by one. */
     //fprintf(stderr, "i: %d, pos: %d \n", i, pos);
   }
 
@@ -1171,6 +1187,7 @@ entity *resolve_ent_polymorphy(type *dynamic_class, entity* static_ent) {
   assert(static_ent && static_ent->kind == k_entity);
 
   res = resolve_ent_polymorphy2(dynamic_class, static_ent);
+#if DEBUG_libfirm
   if (!res) {
     printf(" Could not find entity "); DDME(static_ent);
     printf("  in "); DDMT(dynamic_class);
@@ -1179,115 +1196,7 @@ entity *resolve_ent_polymorphy(type *dynamic_class, entity* static_ent) {
     dump_type(get_entity_owner(static_ent));
     dump_type(dynamic_class);
   }
+#endif
   assert(res);
   return res;
 }
-
-
-
-/*******************************************************************/
-/** Debug aides                                                   **/
-/*******************************************************************/
-
-
-#if 1 || DEBUG_libfirm
-int dump_node_opcode(FILE *F, ir_node *n); /* from irdump.c */
-
-#define X(a)    case a: printf(#a); break
-void dump_entity (entity *ent) {
-  int i, j;
-  type *owner = get_entity_owner(ent);
-  type *type  = get_entity_type(ent);
-  assert(ent && ent->kind == k_entity);
-  printf("entity %s (%ld)\n", get_entity_name(ent), get_entity_nr(ent));
-  printf("  type:  %s (%ld)\n", get_type_name(type),  get_type_nr(type));
-  printf("  owner: %s (%ld)\n", get_type_name(owner), get_type_nr(owner));
-
-  if (get_entity_n_overwrites(ent) > 0) {
-    printf("  overwrites:\n");
-    for (i = 0; i < get_entity_n_overwrites(ent); ++i) {
-      entity *ov = get_entity_overwrites(ent, i);
-      printf("    %d: %s of class %s\n", i, get_entity_name(ov), get_type_name(get_entity_owner(ov)));
-    }
-  } else {
-    printf("  Does not overwrite other entities. \n");
-  }
-  if (get_entity_n_overwrittenby(ent) > 0) {
-    printf("  overwritten by:\n");
-    for (i = 0; i < get_entity_n_overwrittenby(ent); ++i) {
-      entity *ov = get_entity_overwrittenby(ent, i);
-      printf("    %d: %s of class %s\n", i, get_entity_name(ov), get_type_name(get_entity_owner(ov)));
-    }
-  } else {
-    printf("  Is not overwriten by other entities. \n");
-  }
-
-  printf("  allocation:  ");
-  switch (get_entity_allocation(ent)) {
-    X(allocation_dynamic);
-    X(allocation_automatic);
-    X(allocation_static);
-    X(allocation_parameter);
-  }
-
-  printf("\n  visibility:  ");
-  switch (get_entity_visibility(ent)) {
-    X(visibility_local);
-    X(visibility_external_visible);
-    X(visibility_external_allocated);
-  }
-
-  printf("\n  variability: ");
-  switch (get_entity_variability(ent)) {
-    X(variability_uninitialized);
-    X(variability_initialized);
-    X(variability_part_constant);
-    X(variability_constant);
-  }
-
-  if (get_entity_variability(ent) != variability_uninitialized) {
-    if (is_atomic_entity(ent)) {
-      printf("\n  atomic value: ");
-      dump_node_opcode(stdout, get_atomic_ent_value(ent));
-    } else {
-      printf("\n  compound values:");
-      for (i = 0; i < get_compound_ent_n_values(ent); ++i) {
-       compound_graph_path *path = get_compound_ent_value_path(ent, i);
-       entity *ent0 = get_compound_graph_path_node(path, 0);
-       printf("\n    %3d ", get_entity_offset_bits(ent0));
-       if (get_type_state(type) == layout_fixed)
-         printf("(%3d) ",   get_compound_ent_value_offset_bits(ent, i));
-       printf("%s", get_entity_name(ent0));
-       for (j = 0; j < get_compound_graph_path_length(path); ++j) {
-         entity *node = get_compound_graph_path_node(path, j);
-         printf(".%s", get_entity_name(node));
-         if (is_array_type(get_entity_owner(node)))
-           printf("[%d]", get_compound_graph_path_array_index(path, j));
-       }
-       printf("\t = ");
-       dump_node_opcode(stdout, get_compound_ent_value(ent, i));
-      }
-    }
-  }
-
-  printf("\n  volatility:  ");
-  switch (get_entity_volatility(ent)) {
-    X(volatility_non_volatile);
-    X(volatility_is_volatile);
-  }
-
-  printf("\n  peculiarity: %s", get_peculiarity_string(get_entity_peculiarity(ent)));
-  printf("\n  ld_name: %s", ent->ld_name ? get_entity_ld_name(ent) : "no yet set");
-  printf("\n  offset:  %d", get_entity_offset_bits(ent));
-  if (is_method_type(get_entity_type(ent))) {
-    if (get_entity_irg(ent))   /* can be null */
-      { printf("\n  irg = %ld", get_irg_graph_nr(get_entity_irg(ent))); }
-    else
-      { printf("\n  irg = NULL"); }
-  }
-  printf("\n\n");
-}
-#undef X
-#else  /* DEBUG_libfirm */
-void dump_entity (entity *ent) {}
-#endif /* DEBUG_libfirm */