pto_name.c
[libfirm] / ir / ana2 / pto_init.c
1 /* -*- c -*- */
2
3 /*
4    Project:     libFIRM
5    File name:   ir/ana/pto_init.c
6    Purpose:     Initialisation Functions
7    Author:      Florian
8    Modified by:
9    Created:     Sat Nov 13 19:35:27 CET 2004
10    CVS-ID:      $Id$
11    Copyright:   (c) 1999-2004 Universität Karlsruhe
12    Licence:     This file is protected by the GPL -  GNU GENERAL PUBLIC LICENSE.
13 */
14
15 #ifdef HAVE_CONFIG_H
16 # include "config.h"
17 #endif
18
19 /*
20  pto_init: Initialisation Functions
21 */
22
23 # include <obstack.h>
24 # include <string.h>
25
26 # include "pto.h"
27 # include "pto_init.h"
28 # include "pto_debug.h"
29 # include "pto_comp.h"
30 # include "pto_name.h"
31 # include "pto_util.h"
32
33 # include "typewalk.h"
34 # include "irgwalk.h"
35 # include "xmalloc.h"
36
37 /* Local Defines: */
38 # define obstack_chunk_alloc xmalloc
39 # define obstack_chunk_free  free
40
41 /* Local Data Types: */
42 typedef struct init_env_str
43 {
44   int n_ctxs;
45 } init_env_t;
46
47 typedef struct reset_env_str
48 {
49   int ctx_idx;
50 } reset_env_t;
51
52 /* Local Variables: */
53 extern struct obstack *qset_obst; /* from pto_name */
54
55 static struct obstack *pto_obst = NULL; /* all pto_t's go onto this one */
56
57 /* Local Prototypes: */
58
59 /* ===================================================
60    Local Implementation:
61    =================================================== */
62 /* Allocate a new pto */
63 static pto_t *new_pto (ir_node *node)
64 {
65   pto_t *pto = obstack_alloc (pto_obst, sizeof (pto_t));
66   pto->values = qset_new (N_INITIAL_OJBS, qset_obst);
67
68   return (pto);
69 }
70
71 /* Allocate a new alloc_pto */
72 static alloc_pto_t *new_alloc_pto (ir_node *alloc, int n_ctxs)
73 {
74   assert (iro_Alloc == get_irn_opcode (alloc));
75
76   int i;
77   alloc_pto_t *alloc_pto = obstack_alloc (pto_obst, sizeof (alloc_pto_t));
78   type *tp = get_Alloc_type (alloc);
79
80   alloc_pto->ptos = (pto_t**) obstack_alloc (pto_obst, n_ctxs * sizeof (pto_t*));
81
82   for (i = 0; i < n_ctxs; i ++) {
83     desc_t *desc = new_name (tp, alloc);
84     alloc_pto->ptos [i] = new_pto (alloc);
85     qset_insert (alloc_pto->ptos [i]->values, desc);
86   }
87
88   return (alloc_pto);
89 }
90
91 /* Allocate a new pto for a symconst */
92 static pto_t* new_symconst_pto (ir_node *symconst)
93 {
94   assert (iro_SymConst == get_irn_opcode (symconst));
95
96   pto_t *pto = new_pto (symconst);
97   entity *ent = get_SymConst_entity (symconst);
98   desc_t *desc = NULL;
99
100   /*
101   const char *ent_name = (char*) get_entity_name (ent);
102   const char *own_name = (char*) get_type_name (get_entity_owner (ent));
103   HERE3 ("start", own_name, ent_name);
104   */
105   /* Ok, so if the symconst has a pointer-to-mumble, it's some address
106      calculation, but if it's the mumble itself, it's just the same,
107      except it's presumably a constant of mumble. In any case, we need to
108      branch on this.  "How's that for object fucking oriented? --jwz" */
109   if (is_pointer_type (get_entity_type (ent))) {
110     desc = new_ent_name (ent);
111   } else if (is_class_type (get_entity_type (ent))) {
112     desc = new_name (get_entity_type (ent), symconst);
113   } else {
114     fprintf (stderr, "%s: not handled: %s[%li] (\"%s\")\n",
115              __FUNCTION__,
116              get_op_name (get_irn_op (symconst)),
117              get_irn_node_nr (symconst),
118              get_entity_name (ent));
119     assert (0 && "something not handled");
120   }
121
122   qset_insert (pto->values, desc);
123
124   /* HERE3 ("end", own_name, ent_name); */
125
126   return (pto);
127 }
128
129 /* Allocate a new pto for a constant */
130 static pto_t *new_const_pto (ir_node *cnst)
131 {
132   assert (iro_Const == get_irn_opcode (cnst));
133   assert (mode_P == get_irn_mode (cnst));
134
135   static pto_t *cnst_pto = NULL;
136
137   /* since 'store's and 'load's via a NULL pointer are hardly ever
138      successful, we get away with an empty set */
139
140   tarval *tv = get_Const_tarval (cnst);
141
142   assert (tv == get_tarval_null (mode_P));
143
144   if (NULL == cnst_pto) {
145     cnst_pto = new_pto (cnst);
146   }
147
148   return (cnst_pto);
149 }
150
151
152 /* Helper to pto_init --- clear the link fields of class types */
153 static void clear_type_link (type_or_ent *thing, void *__unused)
154 {
155   if (is_type (thing)) {
156     type *tp = (type*) thing;
157
158     if (is_class_type (tp)) {
159       DBGPRINT (1, (stdout, "%s (\"%s\")\n",
160                     __FUNCTION__, get_type_name (tp)));
161
162       set_type_link (tp, NULL);
163     }
164   } else if (is_entity (thing)) {
165     entity *ent = (entity*) thing;
166
167     DBGPRINT (1, (stdout, "%s (\"%s\")\n",
168                   __FUNCTION__, get_entity_name (ent)));
169
170     set_entity_link (ent, NULL);
171   }
172 }
173
174 /* Helper to pto_init_graph --- clear the links of the given node */
175 static void clear_node_link (ir_node *node, void *__unused)
176 {
177   set_irn_link (node, NULL);
178 }
179
180 /* Helper to pto_init_graph --- clear the links of all nodes */
181 static void clear_graph_links (ir_graph *graph)
182 {
183   irg_walk_graph (graph, clear_node_link, NULL, NULL);
184 }
185
186 /* Reset ALL the pto values for a new pass */
187 static void reset_node_pto (ir_node *node, void *env)
188 {
189   reset_env_t *reset_env = (reset_env_t*) env;
190   int ctx_idx = reset_env->ctx_idx;
191   const opcode op = get_irn_opcode (node);
192
193   /* HERE ("start"); */
194
195   switch (op) {
196   case (iro_Load):
197     /* case (iro_Const): */
198   case (iro_Call):
199   case (iro_Block):             /* END BLOCK only */
200   case (iro_Phi): {
201     /* allocate 'empty' pto values */
202     pto_t *pto = new_pto (node);
203     set_node_pto (node, pto);
204   } break;
205
206   case (iro_Alloc): {
207     /* set alloc to 'right' current pto */
208
209     /* HERE ("alloc"); */
210
211     alloc_pto_t *alloc_pto = (alloc_pto_t*) get_irn_link (node);
212     alloc_pto->curr_pto = alloc_pto->ptos [ctx_idx];
213
214     DBGPRINT (1, (stdout, "%s: setting pto of \"%s[%li]\" for ctx %i\n",
215                   __FUNCTION__,
216                   OPNAME (node),
217                   OPNUM (node),
218                   ctx_idx));
219
220     assert (alloc_pto->curr_pto);
221   } break;
222   case (iro_Const):
223   case (iro_SymConst): {
224       /* nothing, leave as-is */
225     } break;
226
227   default: {
228     /* basically, nothing */
229     DBGPRINT (2, (stdout, "%s: resetting pto of \"%s[%li]\"\n",
230                   __FUNCTION__,
231                   OPNAME (node),
232                   OPNUM (node)));
233     set_node_pto (node, NULL);
234   } break;
235   }
236
237   /* HERE ("end"); */
238 }
239
240 /* Temporary fix until we get 'real' ptos: Allocate some dummy for pto */
241 static void init_pto (ir_node *node, void *env)
242 {
243   init_env_t *init_env = (init_env_t*) env;
244   int n_ctxs = init_env->n_ctxs;
245
246   const opcode op = get_irn_opcode (node);
247
248   switch (op) {
249   case (iro_SymConst): {
250     if (mode_P == get_irn_mode (node)) {
251       /* debugging only */
252       entity *ent = get_SymConst_entity (node);
253       if (is_class_type (get_entity_type (ent)) ||
254           is_pointer_type (get_entity_type (ent))) {
255         DBGPRINT (1, (stdout, "%s: new name \"%s\" for \"%s[%li]\"\n",
256                       __FUNCTION__,
257                       get_entity_name (ent),
258                       OPNAME (node),
259                       OPNUM (node)));
260
261         pto_t *symconst_pto = new_symconst_pto (node);
262         set_node_pto (node, symconst_pto);
263       }
264     }
265   } break;
266   case (iro_Alloc): {
267     type *tp = get_Alloc_type (node); /* debugging only */
268     alloc_pto_t *alloc_pto = new_alloc_pto (node, n_ctxs);
269     set_alloc_pto (node, alloc_pto);
270
271     DBGPRINT (1, (stdout, "%s: %i names \"%s\" for \"%s[%li]\"\n",
272                   __FUNCTION__,
273                   n_ctxs,
274                   get_type_name (tp),
275                   OPNAME (node),
276                   OPNUM (node)));
277   } break;
278
279   case (iro_Const): {
280     if (mode_P == get_irn_mode (node)) {
281       pto_t *pto = new_const_pto (node);
282       set_node_pto (node, pto);
283     }
284   } break;
285
286   case (iro_Load):
287   case (iro_Call):
288   case (iro_Phi):
289     /* nothing --- handled by reset_node_pto on each pass */
290     break;
291   default: {
292     /* nothing */
293   } break;
294   }
295 }
296
297
298 /* Initialise the given graph for a new pass run */
299 static void pto_init_graph_allocs (ir_graph *graph)
300 {
301   graph_info_t *ginfo = ecg_get_info (graph);
302   int n_ctxs = ginfo->n_ctxs;
303
304   init_env_t *init_env = xmalloc (sizeof (init_env_t));
305   init_env->n_ctxs = n_ctxs;
306
307   /* HERE ("start"); */
308
309   irg_walk_graph (graph, init_pto, NULL, init_env);
310
311   memset (init_env, 0x00, sizeof (init_env_t));
312   free (init_env);
313
314   /* HERE ("end"); */
315 }
316
317 /* ===================================================
318    Exported Implementation:
319    =================================================== */
320 /* "Fake" the arguments to the main method */
321 void fake_main_args (ir_graph *graph)
322 {
323   /* HERE ("start"); */
324
325   entity *ent = get_irg_entity (graph);
326   type *mtp = get_entity_type (ent);
327   ir_node **args = find_irg_args (graph);
328   type *ctp = get_method_param_type (mtp, 1); /* ctp == char[]*[]* */
329
330   /* 'main' has signature 'void(int, char[]*[]*)' */
331   assert (NULL == args [2]);
332
333   assert (is_pointer_type (ctp));
334
335   ctp = get_pointer_points_to_type (ctp); /* ctp == char[]*[] */
336
337   assert (is_array_type (ctp));
338
339   desc_t *arg_desc = new_name (ctp, args [1]);
340   pto_t *arg_pto = new_pto (args [1]);
341   /* todo: simulate 'store' to arg1[] ?!? */
342   qset_insert (arg_pto->values, arg_desc);
343
344   set_node_pto (args [1], arg_pto);
345
346   DBGPRINT (1, (stdout, "%s:%i (%s[%li])\n",
347                 __FUNCTION__, __LINE__, OPNAME (args [1]), OPNUM (args [1])));
348
349 # ifdef TEST_MAIN_TYPE
350   ctp = get_array_element_type (ctp); /* ctp == char[]* */
351
352   assert (is_pointer_type (ctp));
353
354   ctp = get_pointer_points_to_type (ctp); /* ctp == char[] */
355
356   assert (is_array_type (ctp));
357
358   ctp = get_array_element_type (ctp); /* ctp == char */
359
360   assert (is_primitive_type (ctp));
361 # endif /* defined  TEST_MAIN_TYPE */
362
363   /* HERE ("end"); */
364 }
365
366 /* Initialise the Init module */
367 void pto_init_init ()
368 {
369   pto_obst = (struct obstack*) xmalloc (sizeof (struct obstack));
370
371   obstack_init (pto_obst);
372 }
373
374 /* Cleanup the Init module */
375 void pto_init_cleanup ()
376 {
377   obstack_free (pto_obst, NULL);
378   memset (pto_obst, 0x00, sizeof (struct obstack));
379   free (pto_obst);
380   pto_obst = NULL;
381 }
382
383
384 /* Initialise the Names of the Types/Entities */
385 void pto_init_type_names ()
386 {
387   /* HERE ("start"); */
388   type_walk (clear_type_link, NULL, NULL);
389   /* HERE ("end"); */
390 }
391
392 /* Initialise the given graph for a new pass run */
393 void pto_init_graph (ir_graph *graph)
394 {
395   graph_info_t *ginfo = ecg_get_info (graph);
396   const int n_ctxs = ginfo->n_ctxs;
397
398   /* only for debugging stuff: */
399   entity *ent = get_irg_entity (graph);
400   const char *ent_name = (char*) get_entity_name (ent);
401   const char *own_name = (char*) get_type_name (get_entity_owner (ent));
402
403   DBGPRINT (0, (stdout, "%s: init \"%s.%s\" for %i ctxs\n", __FUNCTION__,
404                 own_name, ent_name, n_ctxs));
405
406   /* HERE ("start"); */
407
408   clear_graph_links     (graph);
409   pto_init_graph_allocs (graph);
410
411   /* HERE ("end"); */
412 }
413
414 /* Reset the given graph for a new pass run */
415 void pto_reset_graph_pto (ir_graph *graph, int ctx_idx)
416 {
417   /* HERE ("start"); */
418
419   reset_env_t *reset_env = (reset_env_t*) xmalloc (sizeof (reset_env_t));
420   reset_env->ctx_idx = ctx_idx;
421
422   irg_walk_graph (graph, reset_node_pto, NULL, reset_env);
423
424   memset (reset_env, 0x00, sizeof (reset_env_t));
425   free (reset_env);
426   /* HERE ("end"); */
427 }
428
429 \f
430 /*
431   $Log$
432   Revision 1.9  2004/12/15 09:18:18  liekweg
433   pto_name.c
434
435   Revision 1.8  2004/12/02 16:17:51  beck
436   fixed config.h include
437
438   Revision 1.7  2004/11/30 14:47:54  liekweg
439   fix initialisation; do correct iteration
440
441   Revision 1.6  2004/11/26 16:00:41  liekweg
442   recognize class consts vs. ptr-to-class consts
443
444   Revision 1.5  2004/11/24 14:53:56  liekweg
445   Bugfixes
446
447   Revision 1.4  2004/11/20 21:21:56  liekweg
448   Finalise initialisation
449
450   Revision 1.3  2004/11/18 16:37:07  liekweg
451   rewrite
452
453
454 */