expanded pto, added initialisation, added debugging printing
authorFlorian Liekweg <liekweg@ipd.info.uni-karlsruhe.de>
Thu, 4 Nov 2004 14:58:38 +0000 (14:58 +0000)
committerFlorian Liekweg <liekweg@ipd.info.uni-karlsruhe.de>
Thu, 4 Nov 2004 14:58:38 +0000 (14:58 +0000)
[r4277]

ir/ana2/pto.c
ir/ana2/pto.h
ir/ana2/pto_util.c
ir/ana2/pto_util.h

index 649e932..c0b2f78 100644 (file)
 
 # include "pto.h"
 # include "pto_util.h"
+# include "pto_init.h"
 
 # include "entity.h"
 
-# include "irnode_t.h"
-# include "irprog_t.h"
+# include "irnode.h"
+# include "irprog.h"
 
 /* # include "eset.h" */
 # include "irgraph.h"
 # include "trvrfy.h"
 # include "xmalloc.h"
 
+# include "typewalk.h"
 # include "irmemwalk.h"
 
-# ifndef TRUE
-#  define TRUE 1
-#  define FALSE 0
-# endif /* not defined TRUE */
-
-typedef struct pto_str
-{
-  int *dummy;
-} pto_t;
+# define DBGPRINT(lvl, msg) if (get_pto_verbose () > lvl) { fprintf msg; }
 
 /*
   Local Protos
 */
 static void pto_node (ir_node*, void*);
+static void pto_node_pre  (ir_node*, void*);
+static void pto_node_post (ir_node*, void*);
 
 /*
-   Le Flag
-*/
-static int verbose = TRUE;
-
-/*
-Create a new pto value
+   Get the pto infos of a node
 */
-static pto_t *new_pto (void)
+static pto_t *get_pto (ir_node *node)
 {
-  pto_t *pto = (pto_t*) xmalloc (sizeof (pto_t));
 
-  return (pto);
-}
 
+  return ((pto_t*) get_irn_link (node));
+}
 
 /*
-   Get the pto infos of a node
+  Propagate pto values up to the given node, and return the propagated
+  value.  This recursion has to stop at important nodes, such as
+  loads and allocs, where pto is computed differently (albeit this may
+  involve more calls to this function for a different ptr value).
 */
-static pto_t *get_pto (ir_node *node)
-{
-  return ((pto_t*) node->link);
-}
-
 static pto_t *compute_pto (ir_node *node, void *env)
 {
   pto_t *node_pto = get_pto (node);
 
   if (NULL == node_pto) {
+    DBGPRINT (1, (stdout, "%s: must compute pto for %s[%li]\n",
+             __FUNCTION__,
+             get_op_name (get_irn_op (node)),
+             get_irn_node_nr (node)));
+
     pto_node (node, env);
 
     node_pto = get_pto (node);
@@ -89,11 +82,54 @@ static pto_t *compute_pto (ir_node *node, void *env)
   return (node_pto);
 }
 
-static void set_pto (ir_node *node, pto_t *ptrs)
+/*
+  Transfer the actual arguments to the given call's formal arguments
+*/
+static void set_call_args (ir_node *call, ir_graph *graph, void *env)
+{
+  ir_node **args = find_irg_args (graph);
+  int i;
+
+  const int n_call_args = get_irn_arity (call);
+
+  /* call: M x meth_ptr x Arg x Arg x ... x Arg */
+  /* projT(start): Arg x Arg x ... x Arg */
+  /* projM(start): M */
+
+  for (i = 2; i < n_call_args; i ++) {
+    if (NULL != args [i-2]) {
+      if (mode_P == get_irn_mode (args [i-2])) {
+        pto_t *arg_pto = compute_pto (get_irn_n (call, i), env);
+        /* off-by-one because of ProjT bd */
+        set_pto (args [i-2], arg_pto);
+      } else {
+        /* nothing */
+      }
+    }
+  }
+  free (args);
+}
+
+/*
+  Transfer the return value of a call to the callR node
+*/
+static void get_call_ret (ir_node *call, ir_graph *graph, void *env)
 {
-  node->link = (void*) ptrs;
+  entity *ent = get_irg_ent (graph);
+  type *ent_tp = get_entity_type (ent);
+
+  if (0 != get_method_n_ress (ent_tp)) {
+    type *ent_ret_tp = get_method_res_type (ent_tp, 0);
+
+    if (mode_P == get_type_mode (ent_ret_tp)) {
+      pto_t *res_pto = get_pto (get_irg_end_block (graph));
+
+      set_pto (call, res_pto);
+    }
+  }
 }
 
+
 /*
   Take care of a single proj node.  Basically a multiplex/dispatch for the
   different node types that a proj can have as a predecessor.
@@ -102,20 +138,15 @@ static void pto_node_proj (ir_node *proj, void *env)
 {
   /*
     pto for proj({proj(start),load,call,alloc,raise?,...}) node
-
-    so far:
-    whatever it is we have in front of us, it's analyzed.
-    todo:
-    we just pick up the pointer.
   */
   ir_node *in = get_Proj_pred (proj);
   const opcode in_op = get_irn_opcode (in);
   const long proj_proj = get_Proj_proj (proj);
 
-  fprintf (stdout, "%s: --> Proj[%li] (%s)\n",
-           __FUNCTION__,
-           get_irn_node_nr (proj),
-           get_op_name (get_irn_op (in)));
+  DBGPRINT (3, (stdout, "%s: --> Proj[%li] (%s)\n",
+                __FUNCTION__,
+                get_irn_node_nr (proj),
+                get_op_name (get_irn_op (in))));
 
   switch (in_op) {
   case (iro_Start): {
@@ -152,8 +183,10 @@ static void pto_node_proj (ir_node *proj, void *env)
     if (pn_Call_M_regular == proj_proj) {
       /* ProjM(call) -- nothing */
     } else if (pn_Call_T_result == proj_proj) {
-    /* copy return value of call */
-      set_pto (proj, compute_pto (in, env));
+      /* copy return value of call */
+      pto_t *call_pto = get_pto (in);   /* get result from call */
+      assert (call_pto);
+      set_pto (proj, call_pto);
     } else if (pn_Call_P_value_res_base == proj_proj) {
       /* wtf? */
       assert (0 && "what's with pn_Call_P_value_res_base?");
@@ -167,12 +200,23 @@ static void pto_node_proj (ir_node *proj, void *env)
     const ir_node *in_in = get_Proj_pred (in);
     const opcode in_in_op = get_irn_opcode (in_in);
 
-    assert (iro_Start == in_in_op && "proj (proj (X)) but not X != Start");
-    /* proj(proj(start)) - make sure the arguments are initialised */
-    fprintf (stdout, "pto (proj(%li)) = 0x%08x\n",
-             get_irn_node_nr (proj),
-             (int) get_pto (proj));
-    set_pto (proj, NULL);
+    switch (in_in_op) {
+    case (iro_Call): {
+      /* projP (projT (call)) */
+      /* copy from projT to projP */
+      pto_t *in_pto = compute_pto (in, env);
+      set_pto (proj, in_pto);
+    } break;
+    case (iro_Start): {
+      /* proj(proj(start)) - make sure the arguments are initialised */
+      assert (get_pto (proj));
+    } break;
+    default: {
+      DBGPRINT (1, (stdout, "%s:%i: proj(proj(%s)) not handled\n",
+                    __FILE__, __LINE__, get_op_name (get_irn_op (in_in))));
+      assert (0);
+    }
+    }
   } break;
 
   case (iro_Cast): {
@@ -183,7 +227,8 @@ static void pto_node_proj (ir_node *proj, void *env)
   } break;
 
   default: {
-    fprintf (stderr, "Opcode %s of Node %ld not handled\n",
+    fprintf (stderr, "%s: opcode %s of Node %ld not handled\n",
+             __FUNCTION__,
              get_op_name (get_irn_op (in)),
              get_irn_node_nr (in));
 
@@ -191,10 +236,106 @@ static void pto_node_proj (ir_node *proj, void *env)
   }
   }
 
-  if (verbose) {
-    fprintf (stdout, "---> Proj (%s)\n", get_op_name (get_irn_op (in)));
+  DBGPRINT (2, (stdout, "%s: Proj (%s)\n",
+                __FUNCTION__,
+                get_op_name (get_irn_op (in))));
+}
+
+static void pto_node_obj_load (ir_node *load, ir_node *ptr,
+                               entity *ent, void *env)
+{
+  /*
+    pto for obj load node
+
+    so far:
+    load.ptr analysed
+    todo:
+    look up
+  */
+  const char *ent_name = (char*) get_entity_name (ent);
+  const char *own_name = (char*) get_type_name (get_entity_owner (ent));
+
+  DBGPRINT (1, (stdout, "%s for (%s[%li])\n",
+           __FUNCTION__,
+           get_op_name (get_irn_op (ptr)),
+           get_irn_node_nr (ptr)));
+  if (! is_pointer_type (get_entity_type (ent))) {
+    return;
   }
 
+  DBGPRINT (2, (stdout, "%s: obj load from ent (0x%08x) \"%s.%s\"\n",
+                __FUNCTION__,
+                (int) ent,
+                own_name,
+                ent_name));
+
+  pto_t *ptr_objs = compute_pto (ptr, env);
+  qset_t *objs = ptr_objs->objs;
+
+  pto_t *res = pto_new_empty (load);
+
+  /* todo: iterate over 'objs' ... for each obj in objs, perform
+     lookup using 'ent' ... assemble results in new qset ... return
+     that as the new value */
+
+  obj_desc_t *obj_desc = (obj_desc_t*) qset_start (objs);
+
+  while (NULL != obj_desc) {
+    qset_t *cnts = pto_lookup (obj_desc, ent);
+
+    pto_add_all_names (res, cnts);
+
+    obj_desc = (obj_desc_t*) qset_next (objs);
+  }
+
+  set_pto (load, res);
+}
+
+static void pto_node_arr_load (ir_node *load, ir_node *ptr,
+                               entity *ent, void *env)
+{
+  /*
+    pto for array load node
+
+    so far:
+    load.ptr analysed or can be computed on-the-fly
+    todo:
+    look up
+  */
+  const char *ent_name = (char*) get_entity_name (ent);
+  const char *own_name = (char*) get_type_name (get_entity_owner (ent));
+
+  /* load from array */
+  DBGPRINT (1, (stdout, "%s for (%s[%li])\n",
+                __FUNCTION__,
+                get_op_name (get_irn_op (ptr)),
+                get_irn_node_nr (ptr)));
+
+  if (! is_pointer_type (get_entity_type (ent))) {
+    return;
+  }
+
+  DBGPRINT (2, (stdout, "%s: array load from ent (0x%08x) \"%s.%s\"\n",
+                __FUNCTION__,
+                (int) ent,
+                own_name,
+                ent_name));
+
+  pto_t *ptr_objs =  compute_pto (ptr, env);
+  qset_t *objs = ptr_objs->objs;
+  pto_t *res = pto_new_empty (load);
+
+  obj_desc_t *obj_desc = (obj_desc_t*) qset_start (objs);
+
+  while (NULL != obj_desc) {
+    qset_t *cnts = pto_lookup (obj_desc, NULL);
+
+    pto_add_all_names (res, cnts);
+
+    obj_desc = (obj_desc_t*) qset_next (objs);
+  }
+
+  set_pto (load, res);
 }
 
 static void pto_node_load (ir_node *load, void *env)
@@ -203,40 +344,116 @@ static void pto_node_load (ir_node *load, void *env)
     pto for load node
 
     so far:
-    load.ptr analysed
+    load.ptr analysed or can be computed on-the-fly
     todo:
     look up
   */
-
-  /* right now, just copy something */
   ir_node *ptr = get_Load_ptr (load);
   const opcode op = get_irn_opcode (ptr);
   entity *ent = NULL;
 
-  if (iro_Sel == op) {
-    ent = get_Sel_entity (ptr);
-  } else if (iro_SymConst == op) {
-    ent = get_SymConst_entity (ptr);
-  } else if (iro_Proj == op) {
+  /* check the funny cases */
+  if (iro_Proj == op) {
     /* then it's an unused Load(this) (or whatever) and we don't need to look at it */
-    ent = NULL;
+    DBGPRINT (1, (stderr, "%s: %s[%li] ignored\n",
+                  __FUNCTION__,
+                  get_op_name (get_irn_op (ptr)),
+                  get_irn_node_nr (ptr)));
+    return;
   } else if (iro_Cast == op) {
-    /* then it's  whatever and we don't know where to look at */
-    ent = NULL;
+    /* then it's  (whatever) and we don't know where to look at */
+    DBGPRINT (1, (stderr, "%s: %s[%li] ignored\n",
+                  __FUNCTION__,
+                  get_op_name (get_irn_op (ptr)),
+                  get_irn_node_nr (ptr)));
+    return;
+  }
+
+  ent = get_ptr_ent (ptr);
+
+  assert (ent);
+
+  /* array load or obj load? */
+  if ((iro_Sel == op) && (3 == get_irn_arity (ptr))) {
+    pto_node_arr_load (load, ptr, ent,  env);
   } else {
-    fprintf (stdout, "%s: %s[%li] not handled\n",
-             __FUNCTION__,
-             get_op_name (get_irn_op (ptr)),
-             get_irn_node_nr (ptr));
-    assert (0 && "told ya");
+    pto_node_obj_load (load, ptr, ent, env);
   }
 
-  if (NULL != ent) {
-    pto_t *ptr_pto = compute_pto (ptr, env);
+}
+
+static void pto_node_obj_store (ir_node *store,
+                                ir_node *ptr,
+                                entity *ent,
+                                ir_node *val,
+                                void *env)
+{
+  /*
+    pto for obj store node
+
+    so far: ptr analysed or can be computed on-the-fly
+    todo:
+    update
+  */
+
+
+  const char *ent_name = (char*) get_entity_name (ent);
+  const char *own_name = (char*) get_type_name (get_entity_owner (ent));
+
+  DBGPRINT (1, (stdout, "%s: obj store from ent (0x%08x) \"%s.%s\"\n",
+                __FUNCTION__,
+                (int) ent, own_name, ent_name));
 
+  pto_t *ptr_pto = compute_pto (ptr, env);
+  pto_t *val_pto = compute_pto (val, env);
+  qset_t *objs = ptr_pto->objs;
+  qset_t *vals = val_pto->objs;
+
+  obj_desc_t *obj_desc = (obj_desc_t*) qset_start (objs);
+
+  while (NULL != obj_desc) {
+    qset_t *cnts = pto_lookup (obj_desc, ent);
+
+    qset_insert_all (cnts, vals);
 
-    /* todo: use 'ent' to look up */
-    set_pto (load, ptr_pto);      /* for now */
+    obj_desc = (obj_desc_t*) qset_next (objs);
+  }
+}
+
+static void pto_node_arr_store (ir_node *store,
+                                ir_node *ptr,
+                                entity *ent,
+                                ir_node *val,
+                                void *env)
+{
+  /*
+    pto for array store node
+
+    so far: ptr analysed or can be computed on-the-fly
+    todo:
+    update
+  */
+
+  const char *ent_name = (char*) get_entity_name (ent);
+  const char *own_name = (char*) get_type_name (get_entity_owner (ent));
+
+  DBGPRINT (1, (stdout, "%s: array store from ent (0x%08x) \"%s.%s\"\n",
+                __FUNCTION__,
+                (int) ent, own_name, ent_name));
+
+  pto_t *ptr_pto = compute_pto (ptr, env);
+  pto_t *val_pto = compute_pto (val, env);
+  qset_t *objs = ptr_pto->objs;
+  qset_t *vals = val_pto->objs;
+
+  obj_desc_t *obj_desc = (obj_desc_t*) qset_start (objs);
+
+  while (NULL != obj_desc) {
+    qset_t *cnts = pto_lookup (obj_desc, NULL);
+
+    qset_insert_all (cnts, vals);
+
+    obj_desc = (obj_desc_t*) qset_next (objs);
   }
 }
 
@@ -245,31 +462,27 @@ static void pto_node_store (ir_node *store, void *env)
   /*
     pto for store node
 
-    so far:
-    ptr analysed
+    so far: ptr analysed or can be computed on-the-fly
     todo:
     update
   */
 
-  /* right now, just copy something */
   ir_node *ptr = get_Store_ptr (store);
+  ir_node *val = get_Store_value (store);
   const opcode op = get_irn_opcode (ptr);
-  entity *ent = NULL;
+  entity *ent = get_ptr_ent (ptr);
 
-  if (iro_Sel == op) {
-    ent = get_Sel_entity (ptr);
-  } else if (iro_SymConst == op) {
-    ent = get_SymConst_entity (ptr);
+  if (mode_P != get_irn_mode (val)) {
+    return;
+  }
+
+  /* array load or obj load? */
+  if ((iro_Sel == op) && (3 == get_irn_arity (ptr))) {
+    pto_node_arr_store (store, ptr, ent, val, env);
   } else {
-    fprintf (stdout, "%s: opcode %s not handled\n",
-             __FUNCTION__, get_op_name (get_irn_op (ptr)));
-    assert (0 && "told ya");
+    pto_node_obj_store (store, ptr, ent, val, env);
   }
 
-  pto_t *ptr_pto = compute_pto (ptr, env);
-  /* todo: use 'ent' to look up */
-  fprintf (stdout, "%s: pto (store[%li]) = 0x%08d\n",
-           __FUNCTION__, get_irn_node_nr (ptr), (int) ptr_pto);
 }
 
 static void pto_node_alloc (ir_node *alloc, void *env)
@@ -277,14 +490,14 @@ static void pto_node_alloc (ir_node *alloc, void *env)
   /*
     pto for alloc node
 
-    so far:
-    nothing
+    so far: nothing to do
     todo:
     invent new name
  */
 
-  pto_t *alloc_pto = (pto_t*) xmalloc (sizeof (pto_t));
+  type *tp = get_Alloc_type (alloc);
 
+  pto_t *alloc_pto = pto_new_name (alloc, tp);
   set_pto (alloc, alloc_pto);
 }
 
@@ -293,8 +506,7 @@ static void pto_node_free (ir_node *free, void *env)
   /*
     pto for free node
 
-    so far:
-    ptr analysed
+    so far: ptr analysed or can be computed on-the-fly
     todo:
     nothing, actually
  */
@@ -310,8 +522,7 @@ static void pto_node_raise (ir_node *raise, void *env)
   /*
     pto for raise node
 
-    so far:
-    ptr analysed
+    so far: ptr analysed or can be computed on-the-fly
     todo:
 
  */
@@ -329,10 +540,9 @@ static void pto_node_sel (ir_node *sel, void *env)
   /*
     pto for sel node
 
-    so far:
-    input selected
+    so far: input selected or can be computed on-the-fly
     todo:
-    just copy
+    just copy (the selected entity is used in the load/store)
   */
 
   ir_node *sel_in = get_Sel_ptr (sel);
@@ -349,24 +559,42 @@ static void pto_node_sel (ir_node *sel, void *env)
   set_pto (sel, sel_pto);
 }
 
-# ifdef UNSINN
 static void pto_node_call (ir_node *call, void *env)
 {
-  int i;
-  int n_ins = get_irn_arity (call);
-  ir_node *in = NULL;
-
-  for (i = 0; i < n_ins; i ++) {
-    in = get_irn_n (call, i);
-
-    if (mode_P == get_irn_mode (in)) {
-      fprintf (stdout, "--> IN CALL Node (%ld) (%s)\n",
-               get_irn_node_nr (in),
-               get_op_name (get_irn_op (in)));
+  ir_graph *graph = NULL;
+  ir_node *ptr = get_Call_ptr (call);
+  entity *ent = get_ptr_ent (ptr);
+
+  DBGPRINT (0, (stdout, "%s (%s[%li])\n",
+                __FUNCTION__,
+                get_op_name (get_irn_op (call)),
+                get_irn_node_nr (call)));
+
+
+  const char *ent_name = (char*) get_entity_name (ent);
+  const char *own_name = (char*) get_type_name (get_entity_owner (ent));
+
+  /* Todo:  Iterate over all graphs in 'get_implementing_graphs' */
+  graph = get_entity_irg (ent);
+  if (NULL != graph) {
+    if (! get_irg_is_mem_visited (graph)) {
+      DBGPRINT (1, (stdout, " -> visit  graph (0x%08x) of \"%s.%s\"\n",
+                    (int) graph, own_name, ent_name));
+
+      /* compute call arguments */
+      set_call_args (call, graph, env);
+      /* traverse callEd */
+      irg_walk_mem (graph, pto_node_pre, pto_node_post, NULL);
+      /* maybe get result from called graph */
+      get_call_ret (call, graph, env);
     }
+  } else {
+    DBGPRINT (0, (stdout, "%s:%i: Warning: no graph for ent \"%s.%s\"\n",
+                  __FILE__, __LINE__, own_name, ent_name));
+    DBGPRINT (0, (stdout, "%s:%i: Warning: no graph for call call[%li]\n",
+                  __FILE__, __LINE__, get_irn_node_nr (call)));
   }
 }
-# endif /* defined UNSINN */
 
 static void pto_node_ret (ir_node *ret, void *env)
 {
@@ -379,15 +607,19 @@ static void pto_node_ret (ir_node *ret, void *env)
     just copy
   */
 
-  if (mode_P == get_irn_mode (ret)) {
-    ir_node *ret_in = get_Return_res_arr (ret) [0];
+  if ((0 != get_Return_n_ress (ret)) &&
+      (mode_P == get_irn_mode (get_Return_res (ret, 0)))) {
+    ir_node *ret_in = get_Return_res (ret, 0);
 
     pto_t *ret_pto = compute_pto (ret_in, env);
 
+    DBGPRINT (4, (stdout, "--> Return Node (%ld) (%s)\n",
+                  get_irn_node_nr (ret),
+                  get_op_name (get_irn_op (ret))));
+
     set_pto (ret, ret_pto);
   } else {
-    /* set_pto (ret, NULL); */
-    /* nothing! */
+    /* nothing to do! */
   }
 }
 
@@ -397,9 +629,9 @@ static void pto_node_phi (ir_node *phi, void *env)
     pto for phi node
 
     so far:
-    all ins present (or?)
+    all ins present or can be computed on-the-fly
     todo:
-
+    collect ins
   */
 
   int i;
@@ -410,20 +642,28 @@ static void pto_node_phi (ir_node *phi, void *env)
     return;
   }
 
+  assert (0 && "test phi");
+
+  pto_t *phi_pto = get_pto (phi);
+
+  if (NULL == phi_pto) {
+    phi_pto = pto_new_empty (phi);
+    set_pto (phi, phi_pto);
+  }
+
   for (i = 0; i < n_ins; i ++) {
     in = get_irn_n (phi, i);
 
     pto_t *in_pto = compute_pto (in, env);
 
-    fprintf (stdout, "--> IN PHI Node (%ld) (%s) (pto = 0x%08x)\n",
-             get_irn_node_nr (in),
-             get_op_name (get_irn_op (in)),
-             (int) in_pto);
+    DBGPRINT (1, (stdout, "%s: IN PHI Node (%ld) (%s) (pto = 0x%08x)\n",
+                  __FUNCTION__,
+                  get_irn_node_nr (in),
+                  get_op_name (get_irn_op (in)),
+                  (int) in_pto));
 
-    /* must 'merge', but just set something now: */
-    set_pto (phi, in_pto);
+    qset_insert_all (phi_pto->objs, in_pto->objs);
   }
-
 }
 
 static void pto_node_cnst (ir_node *cnst, void *env)
@@ -431,12 +671,12 @@ static void pto_node_cnst (ir_node *cnst, void *env)
   /*
     pto for const node
 
-    so far:
-
+    so far: nothing
     todo:
     if this represents something nameable, name it
   */
-  pto_t *cnst_pto = new_pto ();
+  type *tp = get_Const_type (cnst);
+  pto_t *cnst_pto = pto_new_name (cnst, tp);
 
 
   set_pto (cnst, cnst_pto);
@@ -447,17 +687,56 @@ static void pto_node_sym_cnst (ir_node *sym_cnst, void *env)
   /*
     pto for const node
 
-    so far:
-
+    so far: nothing
     todo:
     if this represents something nameable, name it
   */
-  pto_t *sym_cnst_pto = new_pto ();
+  type *tp = get_entity_type (get_SymConst_entity (sym_cnst));
 
+  if (is_class_type (tp)) {
+  pto_t *sym_cnst_pto = pto_new_name (sym_cnst, tp);
 
   set_pto (sym_cnst, sym_cnst_pto);
+  } else {
+    /* nothing to do */
+  }
 }
 
+static void pto_node_end_block (ir_node *end, void *env)
+{
+  /*
+    pto for const node
+
+    so far: all returns are set or can be computed on-the-fly
+    todo:
+    collect results, set to node.
+  */
+  type *tp = get_entity_type (get_irg_entity (get_irn_irg (end)));
+
+    DBGPRINT (2, (stdout, "%s: End Block (%ld) (%s)\n",
+                  __FUNCTION__,
+                  get_irn_node_nr (end),
+                  get_op_name (get_irn_op (end))));
+
+  if (0 != get_method_n_ress (tp)) {
+    tp = get_method_res_type (tp, 0);
+
+    if (mode_P == get_type_mode (tp)) {
+      int i;
+      int n_ins = get_irn_arity (end);
+      pto_t *end_pto = pto_new_name (end, get_pointer_points_to_type (tp));
+
+      for (i = 0; i < n_ins; i ++) {
+        ir_node *ret = get_irn_n (end, i);
+
+        pto_t *ret_pto = get_pto (ret);
+        assert (ret_pto);
+      }
+
+      set_pto (end, end_pto);
+    }
+  }
+}
 
 /*
   Take care of a single node.  Basically a multiplex/dispatch for the
@@ -467,11 +746,10 @@ static void pto_node (ir_node *node, void *env)
 {
   const opcode op = get_irn_opcode (node);
 
-  if (verbose) {
-    fprintf (stdout, "-> Node (%ld) (%s)\n",
-             get_irn_node_nr (node),
-             get_op_name (get_irn_op (node)));
-  }
+  DBGPRINT (1, (stdout, "%s (%s[%li])\n",
+                __FUNCTION__,
+                get_op_name (get_irn_op (node)),
+                get_irn_node_nr (node)));
 
   switch (op) {
   case (iro_Start): {
@@ -504,10 +782,8 @@ static void pto_node (ir_node *node, void *env)
 
   } break;
   case (iro_Call): {
-    assert (0 && "calls must be handled in main loop");
-    /* pto_node_call (node, env); */
-    /* also, we should at best look at the ProjV hanging off a call */
-
+    /* assert (0 && "calls must be handled in main loop"); */
+    pto_node_call (node, env);
   } break;
   case (iro_Return): {
     if (0 < get_Return_n_ress (node)) {
@@ -530,172 +806,159 @@ static void pto_node (ir_node *node, void *env)
     pto_t *cast_pto = compute_pto (get_Cast_op (node), env);
     set_pto (node, cast_pto);
   } break;
+  case (iro_Block): {
+    /* End Block ONLY */
+    pto_node_end_block (node, env);
+  } break;
+  /* all the uninteresting stuff */
   case (iro_Div):
   case (iro_Quot):
   case (iro_Mod):
   case (iro_DivMod):
     set_pto (node, NULL);
     break;
+    /* stopgap measure */
   default: {
-    fprintf (stdout, "%s: not handled: node[%li].op = %s\n",
-             __FUNCTION__,
-             get_irn_node_nr (node),
-             get_op_name (get_irn_op (node)));
+    DBGPRINT (0, (stdout, "%s: not handled: node[%li].op = %s\n",
+                  __FUNCTION__,
+                  get_irn_node_nr (node),
+                  get_op_name (get_irn_op (node))));
     assert (0 && "something not handled");
   }
   }
 }
+static void pto_node_pre (ir_node *node, void *env)
+{
+  DBGPRINT (1, (stdout, "%s (%s[%li])\n",
+                __FUNCTION__,
+                get_op_name (get_irn_op (node)),
+                get_irn_node_nr (node)));
+
+  pto_init_node (node);
+}
 
 static void pto_node_post (ir_node *node, void *env)
 {
-  const opcode op = get_irn_opcode (node);
+  DBGPRINT (1, (stdout, "%s (%s[%li])\n",
+                __FUNCTION__,
+                get_op_name (get_irn_op (node)),
+                get_irn_node_nr (node)));
 
+  pto_node (node, env);
+}
 
-  if (iro_Call == op) {
-    ir_node *call = node;
-    entity *ent = NULL;
-    type *ent_tp = NULL;
-    ir_graph *graph = NULL;
-    ir_node *ptr = get_Call_ptr (call);
+static int pto_verbose = 0;
 
-    if (verbose) {
-      fprintf (stdout, "POST MEM Call Node (%ld)\n",
-               get_irn_node_nr (call));
-    }
+/*
+  Helper to pto_init --- clear the link fields of class types
+*/
+static void clear_type_link (type_or_ent *thing, void *__unused)
+{
+  if (is_type (thing)) {
+    type *tp = (type*) thing;
 
-    if (iro_Sel == get_irn_opcode (ptr)) {
-      ent = get_Sel_entity (ptr);
-    } else if (iro_SymConst == get_irn_opcode (ptr)) {
-      if (get_SymConst_kind(ptr) == symconst_addr_ent) {
-        ent = get_SymConst_entity (ptr);
-      }
+    if (is_class_type (tp)) {
+      DBGPRINT (4, (stdout, "%s (\"%s\")\n",
+                    __FUNCTION__, get_type_name (tp)));
+
+      set_type_link (tp, NULL);
     }
+  }
+}
 
-    assert (NULL != ent && "No ent to call");
-
-    /* Todo:  Iterate over all graphs in 'get_implementing_graphs' */
-    graph = get_entity_irg (ent);
-    if (NULL != graph) {
-      const char *ent_name = (char*) get_entity_name (ent);
-      const char *own_name = (char*) get_type_name (get_entity_owner (ent));
-
-      if (! get_irg_is_mem_visited (graph)) {
-        if (verbose) {
-          fprintf (stdout, " -> visit  graph (0x%08x) of \"%s.%s\"\n",
-                   (int) graph,
-                   own_name,
-                   ent_name);
-        }
-
-        if (TRUE) {
-          ent_tp = get_entity_type (ent);
-          const long n_args =
-            get_method_n_params (ent_tp);
-          ir_node **args = find_irg_args (graph);
-          int i;
-
-          const int n_call_args = get_irn_arity (call);
-
-          assert (n_call_args == n_call_args);
-
-          /* Set args for graph */
-
-          for (i = 0; i < n_args; i ++) {
-            if (NULL != args [i]) {
-              if (mode_P == get_irn_mode (args [i])) {
-                pto_t *arg_pto = compute_pto (get_irn_n (call, i+1), env);
-                /* off-by-one because of ProjT bd */
-                set_pto (args [i], arg_pto);
-              } else {
-                /* set_pto (args [i], NULL); */
-                /* nothing */
-              }
-            }
-          }
-          free (args);
-        }
-
-        irg_walk_mem (graph, NULL, pto_node_post, NULL);
-
-        /* maybe get result from called graph */
-        if (0 != get_method_n_ress (ent_tp)) {
-          type *ent_ret_tp = get_method_res_type (ent_tp, 0);
-
-          if (mode_P == get_type_mode (ent_ret_tp)) {
-            pto_t *res_pto = get_pto (get_irg_end (graph));
-            set_pto (call, res_pto);
-          }
-        } else {
-          fprintf (stdout, "%s:%i: no return value for \"%s.%s\"\n",
-                   __FUNCTION__, __LINE__,
-                   get_type_name (get_entity_owner (ent)),
-                   get_entity_name (ent));
-        }
-      }
-    } else {
-      if (verbose) {
-        fprintf (stdout, "%s:%i: Warning: no graph for ent \"%s.%s\"\n",
-                 __FUNCTION__, __LINE__,
-                 get_type_name (get_entity_owner (ent)),
-                 get_entity_name (ent));
+/*
+  Helper to pto_cleanup --- deallocate the field closure lists and clear the link fields of class types
+*/
+static void free_field_list (type_or_ent *thing, void *__unused)
+{
+  if (is_type) {
+    type *tp = (type*) thing;
+
+    if (is_class_type (tp)) {
+      if (NULL != get_type_link (tp)) {
+        entity **fields = (entity**) get_type_link (tp);
+
+        free (fields);
       }
+
+      set_type_link (tp, NULL);
     }
-  } else {
-    /* anyway: */
-    pto_node (node, env);
   }
 }
 
+
+void set_pto (ir_node *node, pto_t *pto)
+{
+  check_pto (pto);
+
+  set_irn_link (node, (void*) pto);
+}
+
+int get_pto_verbose ()
+{
+  return (pto_verbose);
+}
+
+void set_pto_verbose (int verbose)
+{
+  pto_verbose = verbose;
+}
+
+/*
+  Initialise Pto
+*/
+void pto_init ()
+{
+  type_walk (clear_type_link, NULL, NULL);
+}
+
+
 /*
   Run Pto
 */
 void pto_run (int do_verbose)
 {
   /* int i; */
-  verbose = do_verbose;
+  set_pto_verbose (do_verbose);
 
-  if (verbose) {
-    fprintf (stdout, "START PTO\n");
-  }
+  DBGPRINT (0, (stdout, "START PTO\n"));
 
   ir_graph *graph = get_irp_main_irg ();
 
-  if (verbose) {
-    fprintf (stdout, "START GRAPH (0x%08x) of \"%s.%s\"\n",
-             (int) graph,
-             get_type_name (get_entity_owner (get_irg_entity (graph))),
-             get_entity_name (get_irg_entity (graph)));
-  }
+  DBGPRINT (0, (stdout, "START GRAPH (0x%08x) of \"%s.%s\"\n",
+                (int) graph,
+                get_type_name (get_entity_owner (get_irg_entity (graph))),
+                get_entity_name (get_irg_entity (graph))));
 
-  if (TRUE) {
-    pto_t *main_pto = new_pto ();
-    const long n_args =
-      get_method_n_params (get_entity_type (get_irg_entity (graph)));
+  /* Set args for main graph */
+  {
+    type *meth_tp = get_entity_type (get_irg_entity (graph));
+    type *param_tp = get_method_param_type (meth_tp, 1);
+    param_tp = get_pointer_points_to_type (param_tp);
+
+    const long n_args =         /* wtf? */
+      get_method_n_params (meth_tp);
     ir_node **args = find_irg_args (graph);
+    pto_t *main_pto = pto_new_name (args [1], param_tp);
     int i;
 
-    /*
-      Todo:  Set args for MAIN graph!!!
-    */
-
     for (i = 0; i < n_args; i ++) {
-      fprintf (stdout, "arg [%i] = %ld\n", i,
-               args [i] ? get_irn_node_nr (args [i]) : -1);
+      DBGPRINT (2, (stdout, "arg [%i] = %s[%ld]\n",
+                    i,
+                    args [i] ? get_op_name (get_irn_op (args [i])) : "none",
+                    args [i] ? get_irn_node_nr (args [i]) : -1));
     }
     set_pto (args [1], main_pto);
 
     free (args);
   }
 
-  irg_walk_mem (graph, NULL, pto_node_post, NULL);
+  irg_walk_mem (graph, pto_node_pre, pto_node_post, NULL);
 
-  if (verbose) {
-    fprintf (stdout, "END   GRAPH (0x%08x)\n", (int) graph);
-  }
+  DBGPRINT (0, (stdout, "END   GRAPH (0x%08x)\n", (int) graph));
+  DBGPRINT (0, (stdout, "END   PTO\n"));
 
-  if (verbose) {
-    fprintf (stdout, "END   PTO\n");
-  }
+  obj_desc_list_all (NULL);
 }
 
 /*
@@ -703,13 +966,16 @@ void pto_run (int do_verbose)
 */
 void pto_cleanup ()
 {
-  /* TODO */
+  type_walk (free_field_list, NULL, NULL);
 }
 
 
 \f
 /*
  * $Log$
+ * Revision 1.4  2004/11/04 14:58:38  liekweg
+ * expanded pto, added initialisation, added debugging printing
+ *
  * Revision 1.3  2004/10/25 11:59:45  liekweg
  * Copy Only works
  *
index 21f11b8..6eab823 100644 (file)
 # ifndef _PTO_H_
 # define _PTO_H_
 
+# include "pto_util.h"
+
+void pto_init (void);
 void pto_run (int);
 void pto_cleanup (void);
 
+# ifndef TRUE
+#  define TRUE 1
+#  define FALSE 0
+# endif /* not defined TRUE */
+
+void set_pto (ir_node*, pto_t*);
+int get_pto_verbose (void);
+void set_pto_verbose (int);
+
 # endif /* not defined _PTO_H_ */
 
 \f
 /*
  * $Log$
+ * Revision 1.4  2004/11/04 14:58:38  liekweg
+ * expanded pto, added initialisation, added debugging printing
+ *
  * Revision 1.3  2004/10/25 11:59:45  liekweg
  * Copy Only works
  *
index ef7a1ab..ffd66a8 100644 (file)
 # include "pto_util.h"
 
 # include <malloc.h>
+# include <assert.h>
+# include <string.h>
+# include <obstack.h>
 
 # include "irnode.h"
 # include "irgwalk.h"
 # include "xmalloc.h"
+# include "entity.h"
+
+int get_pto_verbose (void);     /* grrr, can't include pto.h */
+
+# define DBGPRINT(lvl, msg) if (get_pto_verbose () > lvl) { fprintf msg; }
+
+static int pto_id = 0;          /* only for pto_t->kind */
+
+static obj_desc_t *obj_descrs = NULL; /* list of all descrs */
+
+/*
+  See whether the given entity is a field.
+*/
+static int is_field (entity *ent)
+{
+  type *tp = get_entity_type (ent);
+
+  if (is_primitive_type (tp) || is_pointer_type (tp)) {
+    return (TRUE);
+  } else {
+    return (FALSE);
+  }
+}
+
+/*
+  Helper to collect_fields(type*): collect all fields of the given
+  clazz and its super classes into the given obstack.
+*/
+# define obstack_chunk_alloc xmalloc
+# define obstack_chunk_free free
+
+static void _collect_fields (type *clazz, struct obstack *obst)
+{
+  int n_members = get_class_n_members (clazz);
+  int n_supers  = get_class_n_supertypes (clazz);
+  int i;
+
+  for (i = 0; i < n_members; i ++) {
+    entity *ent = get_class_member (clazz, i);
+
+    if (is_field (ent)) {
+      obstack_ptr_grow (obst, ent);
+
+      DBGPRINT (4, (stdout, "%s: add entity \"%s.%s\"\n",
+                    __FUNCTION__,
+                    get_type_name (clazz),
+                    get_entity_name (ent)));
+    }
+  }
+
+  for (i = 0; i < n_supers; i ++) {
+    type *s_clazz = get_class_supertype (clazz, i);
+
+    _collect_fields (s_clazz, obst);
+  }
+}
+
+/*
+  Collect the fields of the given class and its super classes into an array.
+  The last entry of the array is written NULL.
+*/
+static entity **collect_fields (type *clazz)
+{
+  if (NULL != get_type_link (clazz)) {
+    DBGPRINT (3, (stdout, "%s: reusing field list for \"%s\"\n",
+                  __FUNCTION__, get_type_name (clazz)));
+
+    return ((entity **) get_type_link (clazz));
+  } else {
+    DBGPRINT (2, (stdout, "%s: new field list for \"%s\"\n",
+                  __FUNCTION__, get_type_name (clazz)));
+  }
+
+  struct obstack obst;
+
+  obstack_init (&obst);
+
+  _collect_fields (clazz, &obst);
+
+  /* append terminating NULL */
+  int *the_null = NULL;
+  obstack_ptr_grow (&obst, the_null);
+
+  int n_fields = obstack_object_size (&obst) / sizeof (void*);
+
+  entity ** fields = (entity**) xmalloc (n_fields * sizeof (entity*));
+  void *tmp = obstack_finish (&obst);
+
+  memcpy (fields, tmp, n_fields * sizeof (entity*));
+
+  obstack_free (&obst, NULL);
+
+  set_type_link (clazz, (void*) fields);
+
+  return (fields);
+}
+# undef obstack_chunk_alloc
+# undef obstack_chunk_free
+
 
 /*
   Environment for find_irg_args
@@ -51,6 +153,266 @@ static void find_irg_arg (ir_node *node, void *env)
   }
 }
 
+/*
+  Print the given obj desc to stdout
+*/
+static void obj_desc_print (obj_desc_t *obj)
+{
+  if (obj_kind_obj == obj->kind) {
+    /* object desc */
+    obj_obj_desc_t *obj_obj = (obj_obj_desc_t*) obj;
+    int i;
+
+    fprintf (stdout, "obj desc 0x%08x for type \"%s\"\n",
+             (int) obj, get_type_name (obj->tp));
+
+    for (i = 0; i < obj_obj->n_fields; i ++) {
+      fprintf (stdout, " \"%s\" -> ", get_entity_name (obj_obj->fields [i]));
+      qset_print (obj_obj->vals [i], stdout);
+    }
+
+  } else if (obj_kind_array == obj->kind) {
+    /* array desc */
+    obj_arr_desc_t *obj_arr = (obj_arr_desc_t*) obj;
+
+    fprintf (stdout, "arr desc 0x%08x for type \"%s\"\n",
+             (int) obj, get_type_name (obj->tp));
+
+    fprintf (stdout, " [] -> ");
+    qset_print (obj_arr->val, stdout);
+  } else {
+    fprintf (stderr, "%s:%i: Invalid desc\n", __FILE__, __LINE__);
+  }
+}
+
+/*
+  Get the entity of a ptr
+*/
+entity *get_ptr_ent (ir_node *ptr)
+{
+  entity *ent = NULL;
+  const opcode ptr_op = get_irn_opcode (ptr);
+  switch (ptr_op) {
+  case (iro_Sel): {
+    ent = get_Sel_entity (ptr);
+  } break;
+
+  case (iro_SymConst): {
+    ent = get_SymConst_entity (ptr);
+  } break;
+
+  default: {
+    fprintf (stderr, "%s: no ent for ptr=%s[%ld]\n",
+             __FUNCTION__,
+             get_op_name (get_irn_op (ptr)),
+             get_irn_node_nr (ptr));
+    assert (0);
+  }
+  }
+
+  return (ent);
+}
+
+
+/*
+  Ctors for the pto types
+*/
+
+/*
+  Create a new Object Description for the given type
+*/
+obj_desc_t *obj_desc_new (type *tp)
+{
+  int i;
+  obj_desc_t *res = NULL;
+
+  if (is_array_type (tp)) {
+    obj_arr_desc_t *arr_res = (obj_arr_desc_t*) xmalloc (sizeof (obj_arr_desc_t));
+
+    arr_res->val = qset_new (N_INITIAL_OBJS);
+
+    res = (obj_desc_t*) arr_res;
+    res->kind = obj_kind_array;
+
+    DBGPRINT (0, (stdout, "%s: new ARRAY desc 0x%08x for %s\n",
+             __FUNCTION__, (int) res, get_type_name (tp)));
+  } else if (is_class_type (tp)) {
+    obj_obj_desc_t *obj_res = (obj_obj_desc_t*) xmalloc (sizeof (obj_obj_desc_t));
+    int n_fields = 0;
+    entity **tmp;
+
+    DBGPRINT (0, (stdout, "%s: new CLAZZ desc 0x%08x for %s\n",
+             __FUNCTION__, (int) obj_res, get_type_name (tp)));
+
+    obj_res->fields = collect_fields (tp);
+
+    /* grr, must count */
+    for (tmp = obj_res->fields; NULL != *tmp; tmp ++) {
+      n_fields ++;
+    }
+    obj_res->n_fields = n_fields;
+
+    obj_res->vals = (qset_t **) xmalloc (n_fields * sizeof (qset_t*));
+
+    for (i = 0; i < n_fields; i ++) {
+      obj_res->vals [i] = qset_new (N_INITIAL_OBJS);
+    }
+
+    res = (obj_desc_t*) obj_res;
+    res->kind = obj_kind_obj;
+  } else {
+    assert (0 && "unknown type");
+  }
+
+  res->tp = tp;
+
+  res->next = obj_descrs;
+  obj_descrs = res;
+# ifdef PTO_DUMMY
+  res->is_dummy = FALSE;
+# endif /* defined PTO_DUMMY */
+
+  return (res);
+}
+
+# ifdef PTO_DUMMY
+/*
+  Mark an obj desc as a dummy
+*/
+void obj_desc_set_dummy (obj_desc_t *obj_desc)
+{
+  obj_desc->is_dummy = TRUE;
+}
+
+/*
+  Say whether an obj desc is a dummy
+*/
+int obj_desc_is_dummy (obj_desc_t *obj_desc)
+{
+  return (obj_desc->is_dummy);
+}
+# endif /* defined PTO_DUMMY */
+
+/*
+  Deallocate an obj desc
+*/
+void obj_desc_delete (obj_desc_t *obj_desc)
+{
+  if (obj_kind_obj == obj_desc->kind) {
+    /* object desc */
+    obj_obj_desc_t *obj_obj = (obj_obj_desc_t*) obj_desc;
+    int i;
+
+    memset (obj_obj->fields, 0x00, obj_obj->n_fields * sizeof (entity*));
+    free (obj_obj->fields);
+
+    for (i = 0; i < obj_obj->n_fields; i ++) {
+      qset_delete (obj_obj->vals [i]);
+    }
+
+    memset (obj_obj->vals, 0x00, obj_obj->n_fields * sizeof (entity*));
+    free (obj_obj->vals);
+
+    memset (obj_obj, 0x00, sizeof (obj_obj_desc_t));
+
+    free (obj_obj);
+  } else {
+    /* array desc */
+    obj_arr_desc_t *obj_arr = (obj_arr_desc_t*) obj_desc;
+
+    qset_delete (obj_arr->val);
+
+    memset (obj_arr, 0x00, sizeof (obj_arr_desc_t));
+
+    free (obj_arr);
+  }
+}
+
+/*
+  List all obj descs that have been created.  If tp is given non-NULL,
+  only descs for this type are listed, else all types are listed.
+*/
+void obj_desc_list_all (type *tp)
+{
+  obj_desc_t *cur = obj_descrs;
+
+  while (NULL != cur) {
+    if ((NULL == tp) || (tp == cur->tp)) {
+      obj_desc_print (cur);
+    }
+
+    cur = cur->next;
+  }
+}
+
+/*
+  Create a new pto value containing no names.
+*/
+pto_t *pto_new_empty (ir_node *node)
+{
+  pto_t *pto = (pto_t*) xmalloc (sizeof (pto_t));
+
+  pto->kind = &pto_id;
+  pto->node = node;
+  pto->objs = qset_new (N_INITIAL_OBJS);
+
+  return (pto);
+}
+
+/*
+  Create a new pto value containing a name of the given type.
+*/
+pto_t *pto_new_name (ir_node *node, type *tp)
+{
+  pto_t *pto = pto_new_empty (node);
+  obj_desc_t *desc = obj_desc_new (tp);
+
+  qset_insert (pto->objs, desc);
+
+  return (pto);
+}
+
+/*
+  Deallocate a pto
+*/
+void pto_delete (pto_t *pto)
+{
+  qset_delete (pto->objs);
+
+  memset (pto, 0x00, sizeof (pto_t));
+
+  free (pto);
+}
+
+
+/*
+  Pto types misc ops
+*/
+/*
+  Sanity checking on a pto_t
+*/
+void check_pto (pto_t *pto)
+{
+  assert (&pto_id == pto->kind);
+}
+
+/*
+  Add the given name to the given pto.
+*/
+void pto_add_name (pto_t *pto, obj_desc_t *obj)
+{
+  qset_insert (pto->objs, obj);
+}
+
+/*
+  Add all the given names to the given pto.
+*/
+void pto_add_all_names (pto_t *pto, qset_t *objs)
+{
+  qset_insert_all (pto->objs, objs);
+}
+
+
 /*
   Find the arguments of a graph. For a method that has n args, the
   result array has 'n+1' entries, the last of which is written NULL.
@@ -82,10 +444,72 @@ ir_node **find_irg_args (ir_graph *graph)
   return (args);
 }
 
+/*
+  Perform a lookup of the contents of the given field in the given pto
+*/
+qset_t *pto_lookup (obj_desc_t *obj_desc, entity *ent)
+{
+  qset_t *res = NULL;
+
+  if (obj_kind_obj == obj_desc->kind) {
+    /* obj lookup */
+    obj_obj_desc_t *obj_obj = (obj_obj_desc_t*) obj_desc;
+    int i;
+
+    assert (NULL != ent);
+
+    for (i = 0; NULL != obj_obj->fields [i]; i ++) {
+      if (obj_obj->fields [i] == ent) {
+        break;
+      }
+    }
+
+    assert (obj_obj->fields [i]); /* this *must* find a field */
+
+    res = obj_obj->vals [i];
+  } else {
+    /* array lookup */
+    obj_arr_desc_t *arr_obj = (obj_arr_desc_t*) obj_desc;
+
+    assert (NULL == ent);
+
+    res = arr_obj->val;
+  }
+
+  return (res);
+}
+
+/*
+  Enter the given ptr values into the given field of the given pto
+*/
+void pto_enter (obj_desc_t *obj_desc, entity *ent, pto_t *pto)
+{
+  if (obj_kind_obj == obj_desc) {
+    /* obj enter */
+    obj_obj_desc_t *obj_obj = (obj_obj_desc_t*) obj_desc;
+    int i;
+
+    for (i = 0; NULL != obj_obj->fields [i]; i ++) {
+      if (obj_obj->fields [i] == ent) {
+        break;
+      }
+    }
+
+    assert (obj_obj->fields [i]); /* this *must* find a field */
+
+    qset_insert_all (obj_obj->vals [i], pto->objs);
+  } else {
+    /* array enter */
+    assert (0 && "array enter not yet implemented");
+  }
+}
 
 \f
 /*
   $Log$
+  Revision 1.3  2004/11/04 14:58:38  liekweg
+  expanded pto, added initialisation, added debugging printing
+
   Revision 1.2  2004/10/25 11:59:45  liekweg
   Copy Only works
 
index 0a868cf..7f95ae5 100644 (file)
 # define _PTO_UTIL_H_
 
 # include "irgraph.h"
+# include "qset.h"
 
-/*
-  Find the arguments of a graph. For a method that has n args, the
+# define N_INITIAL_OBJS         5
+
+typedef enum obj_kind_enum {
+  obj_kind_obj,
+  obj_kind_array,
+} obj_kind_t;
+
+typedef struct obj_desc_str
+{
+  obj_kind_t kind;              /* written obj_kind_obj or obj_kind_array */
+  struct obj_desc_str *next;    /* link all descrs into a linked list */
+# ifdef PTO_DUMMY
+  int is_dummy;                 /* allow to filter out dummy objects */
+# endif /* defined PTO_DUMMY */
+  type *tp;                     /* type of described object */
+} obj_desc_t;
+
+typedef struct obj_obj_desc_str
+{
+  obj_kind_t kind;              /* always written obj_kind_obj */
+  struct obj_desc_str *next;    /* link all descrs into a linked list */
+# ifdef PTO_DUMMY
+  int is_dummy;                 /* allow to filter out dummy objects */
+# endif /* defined PTO_DUMMY */
+  type *tp;                     /* type of described object */
+  entity **fields;              /* fields of described object */
+  int n_fields;                 /* number of fields */
+  qset_t **vals;                /* qsets of values of the fields */
+} obj_obj_desc_t;
+
+typedef struct obj_arr_desc_str
+{
+  obj_kind_t kind;              /* always written obj_kind_array */
+  struct obj_desc_str *next;    /* link all descrs into a linked list */
+# ifdef PTO_DUMMY
+  int is_dummy;                 /* allow to filter out dummy objects */
+# endif /* defined PTO_DUMMY */
+  type *tp;                     /* (array) type of described object */
+  qset_t *val;                  /* all values of 'the' 'field' */
+} obj_arr_desc_t;
+
+typedef struct pto_str
+{
+  void *kind;                   /* always written to &pto_id */
+  ir_node *node;                /* Rubbish: node for which this pto_t was constructed */
+  qset_t *objs;                 /* qset of obj_desc_t* */
+} pto_t;
+
+
+/* Get the entity of a ptr */
+entity *get_ptr_ent (ir_node*);
+
+/* Ctors for the pto types */
+obj_desc_t *obj_desc_new (type*);
+
+# ifdef PTO_DUMMY
+/* Mark an obj desc as a dummy */
+void obj_desc_set_dummy (obj_desc_t*);
+
+/* Say whether an obj desc is a dummy */
+int obj_desc_is_dummy (obj_desc_t*);
+# endif /* defined PTO_DUMMY */
+
+
+/* Deallocate an obj desc */
+void obj_desc_delete (obj_desc_t*);
+
+/* List all obj descs that have been created.  If tp is given non-NULL,
+  only descs for this type are listed, else all types are listed. */
+void obj_desc_list_all (type*);
+
+/* Create a new pto value containing a name of the given type. */
+pto_t *pto_new_name (ir_node*, type*);
+
+/* Create a new pto value containing no names. */
+pto_t *pto_new_empty (ir_node*);
+
+/* Deallocate a pto */
+void pto_delete (pto_t*);
+
+/* Sanity checking on a pto_t */
+void check_pto (pto_t*);
+
+/*   Add the given name to the given pto. */
+void pto_add_name (pto_t*, obj_desc_t*);
+
+/* Add all the given names to the given pto. */
+void pto_add_all_names (pto_t*, qset_t*);
+
+
+/* Find the arguments of a graph. For a method that has n args, the
   result array has 'n+1' entries, the last of which is written NULL.
-*/
+  If an argument is not used, it is also written NULL in this array. */
 ir_node **find_irg_args (ir_graph*);
+/* int is_field (entity*); */
+
+
+/* Perform a lookup of the contents of the given field in the given pto */
+qset_t *pto_lookup (obj_desc_t*, entity*);
 
 # endif /* not defined _PTO_UTIL_H_ */
 
 \f
 /*
   $Log$
+  Revision 1.2  2004/11/04 14:58:38  liekweg
+  expanded pto, added initialisation, added debugging printing
+
   Revision 1.1  2004/10/22 15:10:51  liekweg
   moved utils to pto_util