Type fixed
[libfirm] / ir / ir / irgraph.c
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/irgraph.c
4  * Purpose:     Entry point to the representation of procedure code.
5  * Author:      Martin Trapp, Christian Schaefer
6  * Modified by: Goetz Lindenmaier
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 1998-2003 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 #ifdef HAVE_CONFIG_H
14 # include <config.h>
15 #endif
16
17 # include <string.h>
18
19 # include "ircons.h"
20 # include "irgraph_t.h"
21 # include "irprog_t.h"
22 # include "iropt_t.h"
23 # include "array.h"
24 # include "irgmod.h"
25 # include "mangle.h"
26
27 ir_graph *current_ir_graph;
28 INLINE ir_graph *get_current_ir_graph(void) {
29   return current_ir_graph;
30 }
31 INLINE void set_current_ir_graph(ir_graph *graph) {
32   current_ir_graph = graph;
33 }
34
35
36 bool interprocedural_view = false;
37 INLINE bool get_interprocedural_view(void) {
38   return interprocedural_view;
39 }
40 INLINE void set_interprocedural_view(bool state) {
41   interprocedural_view = state;
42 }
43
44 static ident* frame_type_suffix = NULL;
45 void init_irgraph(void) {
46   frame_type_suffix = id_from_str(FRAME_TP_SUFFIX, strlen(FRAME_TP_SUFFIX));
47 }
48
49 #if USE_EXPLICIT_PHI_IN_STACK
50 /* really defined in ircons.c */
51 typedef struct Phi_in_stack Phi_in_stack;
52 Phi_in_stack *new_Phi_in_stack();
53 void free_Phi_in_stack(Phi_in_stack *s);
54 #endif
55
56 /* Allocates a list of nodes:
57     - The start block containing a start node and Proj nodes for it's four
58       results (X, M, P, Tuple).
59     - The end block containing an end node. This block is not matured after
60       new_ir_graph as predecessors need to be added to it.
61     - The current block, which is empty and also not matured.
62    Further it allocates several datastructures needed for graph construction
63    and optimization.
64 */
65 ir_graph *
66 new_ir_graph (entity *ent, int n_loc)
67 {
68   ir_graph *res;
69   ir_node *first_block;
70   ir_node *projX;
71
72   res = (ir_graph *) malloc (sizeof (ir_graph));
73   res->kind=k_ir_graph;
74
75   current_ir_graph = res;
76   add_irp_irg(res);          /* remember this graph global. */
77
78 /**
79   * initialized for each graph. **/
80 #if PRECISE_EXC_CONTEXT
81   res->n_loc = n_loc + 1 + 1; /* number of local variables that are never
82                                  dereferenced in this graph plus one for
83                                  the store plus one for links to fragile
84                                  operations.  n_loc is not the number of
85                                  parameters to the procedure!  */
86 #else
87   res->n_loc = n_loc + 1;  /* number of local variables that are never
88                               dereferenced in this graph plus one for
89                               the store. This is not the number of parameters
90                               to the procedure!  */
91 #endif
92
93   res->visited = 0;     /* visited flag, for the ir walker */
94   res->block_visited=0; /* visited flag, for the 'block'-walker */
95
96 #if USE_EXPLICIT_PHI_IN_STACK
97   res->Phi_in_stack = new_Phi_in_stack();  /* A stack needed for automatic Phi
98                                 generation */
99 #endif
100   res->kind = k_ir_graph;
101   res->obst      = (struct obstack *) xmalloc (sizeof (struct obstack));
102   obstack_init (res->obst);
103   res->value_table = new_identities (); /* value table for global value
104                                            numbering for optimizing use in
105                                            iropt.c */
106   res->outs = NULL;
107
108   res->phase_state = phase_building;
109   res->pinned = pinned;
110   res->outs_state = no_outs;
111   res->dom_state = no_dom;
112   res->typeinfo_state = irg_typeinfo_none;
113
114   /** Type information for the procedure of the graph **/
115   res->ent = ent;
116   set_entity_irg(ent, res);
117
118 /**
119       contain "inner" methods as in Pascal. **/
120   res->frame_type = new_type_class(mangle(get_entity_ident(ent), frame_type_suffix));
121   /* Remove type from type list.  Must be treated differently than other types. */
122   remove_irp_type_from_list(res->frame_type);
123
124   /** Nodes needed in every graph **/
125   res->end_block = new_immBlock ();
126   res->end       = new_End ();
127
128   res->start_block = new_immBlock ();
129   res->start   = new_Start ();
130   res->bad     = new_ir_node (NULL, res, res->start_block, op_Bad, mode_T, 0, NULL);
131   //res->unknown = new_ir_node (NULL, res, res->start_block, op_Unknown, mode_T, 0, NULL);
132
133   /* Proj results of start node */
134   projX        = new_Proj (res->start, mode_X, pns_initial_exec);
135   set_store (new_Proj (res->start, mode_M, pns_global_store));
136   res->frame   = new_Proj (res->start, mode_P_mach, pns_frame_base);
137   res->globals = new_Proj (res->start, mode_P_mach, pns_globals);
138   res->args    = new_Proj (res->start, mode_T, pns_args);
139 #ifdef DEBUG_libfirm
140   res->graph_nr = get_irp_new_node_nr();
141 #endif
142
143
144   add_in_edge(res->start_block, projX);
145   /*
146    * The code generation needs it. leave it in now.
147    * Use of this edge is matter of discussion, unresolved. Also possible:
148    * add_in_edge(res->start_block, res->start_block), but invalid typed.
149    */
150   mature_block (res->current_block);
151
152   /** Make a block to start with **/
153   first_block = new_immBlock ();
154   add_in_edge (first_block, projX);
155
156   return res;
157 }
158
159
160 /* Make a rudimentary ir graph for the constant code.
161    Must look like a correct irg, spare everything else. */
162 ir_graph *new_const_code_irg(void) {
163   ir_graph *res;
164   ir_node *projX;
165
166   res = (ir_graph *) malloc (sizeof(*res));
167   memset(res, 0, sizeof(*res));
168
169   current_ir_graph = res;
170   res->n_loc = 1;      /* Only the memory. */
171   res->visited = 0;     /* visited flag, for the ir walker */
172   res->block_visited=0; /* visited flag, for the 'block'-walker */
173 #if USE_EXPLICIT_PHI_IN_STACK
174   res->Phi_in_stack = NULL;
175 #endif
176   res->kind = k_ir_graph;
177   res->obst      = (struct obstack *) xmalloc (sizeof (struct obstack));
178   obstack_init (res->obst);
179   res->phase_state = phase_building;
180   res->pinned = pinned;
181   res->value_table = new_identities (); /* value table for global value
182                                            numbering for optimizing use in
183                                            iropt.c */
184   res->ent = NULL;
185   res->frame_type = NULL;
186   res->start_block = new_immBlock ();
187   res->end_block = new_immBlock ();
188   res->end       = new_End ();
189   mature_block(get_cur_block());
190   res->bad = new_ir_node (NULL, res, res->start_block, op_Bad, mode_T, 0, NULL);
191   //res->unknown = new_ir_node (NULL, res, res->start_block, op_Unknown, mode_T, 0, NULL);
192   res->start   = new_Start ();
193
194   /* Proj results of start node */
195   projX        = new_Proj (res->start, mode_X, pns_initial_exec);
196   set_store (new_Proj (res->start, mode_M, pns_global_store));
197   add_in_edge(res->start_block, projX);
198   mature_block (res->current_block);
199   add_in_edge (new_immBlock (), projX);
200   mature_block(get_cur_block());
201   /* Set the visited flag high enough that the block will never be visited. */
202   set_irn_visited(get_cur_block(), -1);
203   set_Block_block_visited(get_cur_block(), -1);
204   set_Block_block_visited(res->start_block, -1);
205   set_irn_visited(res->start_block, -1);
206   set_irn_visited(res->bad, -1);
207   return res;
208 }
209
210 /* Frees the passed irgraph.
211    Deallocates all nodes in this graph and the ir_graph structure.
212    Sets the field irgraph in the corresponding entity to NULL.
213    Does not remove the irgraph from the list in irprog (requires
214    inefficient search, call remove_irp_irg by hand).
215    Does not free types, entities or modes that are used only by this
216    graph, nor the entity standing for this graph. */
217 void free_ir_graph (ir_graph *irg) {
218   set_entity_irg(irg->ent, NULL);
219   irg->kind = k_BAD;
220   free(irg->obst);
221 #if USE_EXPLICIT_PHI_IN_STACK
222   free_Phi_in_stack(irg->Phi_in_stack);
223 #endif
224   free(irg);
225 }
226
227 /* access routines for all ir_graph attributes:
228    templates:
229    {attr type} get_irg_{attribute name} (ir_graph *irg);
230    void set_irg_{attr name} (ir_graph *irg, {attr type} {attr}); */
231
232 int
233 is_ir_graph(void *thing) {
234   assert(thing);
235   if (get_kind(thing) == k_ir_graph)
236     return 1;
237   else
238     return 0;
239 }
240
241 /* Outputs a unique number for this node */
242
243 INLINE long
244 get_irg_graph_nr(ir_graph *irg) {
245   assert(irg);
246 #ifdef DEBUG_libfirm
247   return irg->graph_nr;
248 #else
249   return 0;
250 #endif
251 }
252
253 ir_node *
254 get_irg_start_block (ir_graph *irg)
255 {
256   return irg->start_block;
257 }
258
259 void
260 set_irg_start_block (ir_graph *irg, ir_node *node)
261 {
262   irg->start_block = node;
263 }
264
265 ir_node *
266 get_irg_start (ir_graph *irg)
267 {
268   return irg->start;
269 }
270
271 void
272 set_irg_start(ir_graph *irg, ir_node *node)
273 {
274   irg->start = node;
275 }
276
277 ir_node *
278 get_irg_end_block (ir_graph *irg)
279 {
280   return irg->end_block;
281 }
282
283 void
284 set_irg_end_block (ir_graph *irg, ir_node *node)
285 {
286   irg->end_block = node;
287 }
288
289 ir_node *
290 get_irg_end (ir_graph *irg)
291 {
292   return irg->end;
293 }
294
295 void
296 set_irg_end (ir_graph *irg, ir_node *node)
297 {
298   irg->end = node;
299 }
300
301 ir_node *
302 get_irg_cstore (ir_graph *irg)
303 {
304   return irg->cstore;
305 }
306
307 void
308 set_irg_cstore (ir_graph *irg, ir_node *node)
309 {
310   irg->cstore = node;
311 }
312
313 ir_node *
314 get_irg_frame (ir_graph *irg)
315 {
316   return irg->frame;
317 }
318
319 void
320 set_irg_frame (ir_graph *irg, ir_node *node)
321 {
322   irg->frame = node;
323 }
324
325 ir_node *
326 get_irg_globals (ir_graph *irg)
327 {
328   return irg->globals;
329 }
330
331 void
332 set_irg_globals (ir_graph *irg, ir_node *node)
333 {
334   irg->globals = node;
335 }
336
337 ir_node *
338 get_irg_args (ir_graph *irg)
339 {
340   return irg->args;
341 }
342
343 void
344 set_irg_args (ir_graph *irg, ir_node *node)
345 {
346   irg->args = node;
347 }
348
349 ir_node *
350 get_irg_bad (ir_graph *irg)
351 {
352   return irg->bad;
353 }
354
355 void
356 set_irg_bad (ir_graph *irg, ir_node *node)
357 {
358   irg->bad = node;
359 }
360
361 /* GL removed: we need unknown with mode for analyses.
362 ir_node *
363 get_irg_unknown (ir_graph *irg)
364 {
365   return irg->unknown;
366 }
367
368 void
369 set_irg_unknown (ir_graph *irg, ir_node *node)
370 {
371   irg->unknown = node;
372 }
373 */
374
375 ir_node *
376 get_irg_current_block (ir_graph *irg)
377 {
378   return irg->current_block;
379 }
380
381 void
382 set_irg_current_block (ir_graph *irg, ir_node *node)
383 {
384   irg->current_block = node;
385 }
386
387 entity *
388 get_irg_ent (ir_graph *irg)
389 {
390   assert(irg && irg->ent);
391   return irg->ent;
392 }
393
394 void
395 set_irg_ent (ir_graph *irg, entity *ent)
396 {
397   irg->ent = ent;
398 }
399
400 type *
401 get_irg_frame_type (ir_graph *irg)
402 {
403   assert(irg && irg->frame_type);
404   return irg->frame_type;
405 }
406
407 void
408 set_irg_frame_type (ir_graph *irg, type *ftp)
409 {
410   assert(is_class_type(ftp));
411   irg->frame_type = ftp;
412 }
413
414
415 /* To test for a frame type */
416 int
417 is_frame_type(type *ftp) {
418   int i;
419   if (is_class_type(ftp)) {
420     for (i = 0; i < get_irp_n_irgs(); i++) {
421       type *frame_tp = get_irg_frame_type(get_irp_irg(i));
422       if (ftp == frame_tp) return true;
423     }
424   }
425   return false;
426 }
427
428 int
429 get_irg_n_locs (ir_graph *irg)
430 {
431 #if PRECISE_EXC_CONTEXT
432   return irg->n_loc - 1 - 1;
433 #else
434   return irg->n_loc - 1;
435 #endif
436 }
437
438 void
439 set_irg_n_loc (ir_graph *irg, int n_loc)
440 {
441 #if PRECISE_EXC_CONTEXT
442   irg->n_loc = n_loc + 1 + 1;
443 #else
444   irg->n_loc = n_loc + 1;
445 #endif
446 }
447
448
449
450 /* Returns the obstack associated with the graph. */
451 struct obstack *get_irg_obstack(ir_graph *irg) {
452   return irg->obst;
453 }
454
455 /*
456  * Returns true if the node n is allocated on the storage of graph irg.
457  *
458  * Implementation is GLIBC specific as is uses the internal _obstack_chunk implementation.
459  */
460 int node_is_in_irgs_storage(ir_graph *irg, ir_node *n)
461 {
462   struct _obstack_chunk *p;
463
464   /*
465    * checks wheater the ir_node pointer i on the obstack.
466    * A more sophisticated check would test the "whole" ir_node
467    */
468   for (p = irg->obst->chunk; p; p = p->prev) {
469     if (((char *)p->contents <= (char *)n) && ((char *)n < (char *)p->limit))
470       return 1;
471   }
472
473   return 0;
474 }
475
476 irg_phase_state
477 get_irg_phase_state (ir_graph *irg) {
478   return irg->phase_state;
479 }
480
481 void
482 set_irg_phase_low(ir_graph *irg) {
483   irg->phase_state = phase_low;
484 }
485
486 op_pinned
487 get_irg_pinned (ir_graph *irg) {
488   return irg->pinned;
489 }
490
491 irg_outs_state
492 get_irg_outs_state(ir_graph *irg) {
493   return irg->outs_state;
494 }
495
496 void
497 set_irg_outs_inconsistent(ir_graph *irg) {
498   irg->outs_state = outs_inconsistent;
499 }
500
501 irg_dom_state
502 get_irg_dom_state(ir_graph *irg) {
503   return irg->dom_state;
504 }
505
506 void
507 set_irg_dom_inconsistent(ir_graph *irg) {
508   irg->dom_state = dom_inconsistent;
509 }
510
511 irg_loopinfo_state
512 get_irg_loopinfo_state(ir_graph *irg) {
513   assert(0 && "not implemented");
514   return 999;
515 }
516
517 void
518 set_irg_loopinfo_inconsistent(ir_graph *irg) {
519   assert(0 && "not implemented");
520 }
521
522 INLINE void
523 set_irg_pinned (ir_graph *irg, op_pinned p) {
524   irg->pinned = p;
525 }
526
527 INLINE void
528 set_irg_link (ir_graph *irg, void *thing) {
529   irg->link = thing;
530 }
531
532 INLINE void *
533 get_irg_link (ir_graph *irg) {
534   return irg->link;
535 }
536
537 /* maximum visited flag content of all ir_graph visited fields. */
538 static int max_irg_visited = 0;
539
540 unsigned long
541 get_irg_visited (ir_graph *irg)
542 {
543   return irg->visited;
544 }
545
546 void
547 set_irg_visited (ir_graph *irg, unsigned long visited)
548 {
549   irg->visited = visited;
550   if (irg->visited > max_irg_visited) {
551     max_irg_visited = irg->visited;
552   }
553 }
554
555 void
556 inc_irg_visited (ir_graph *irg)
557 {
558   if (++irg->visited > max_irg_visited) {
559     max_irg_visited = irg->visited;
560   }
561 }
562
563 unsigned long
564 get_max_irg_visited(void)
565 {
566   /*
567   int i;
568   for(i = 0; i < get_irp_n_irgs(); i++)
569   assert(max_irg_visited >= get_irg_visited(get_irp_irg(i)));
570    */
571   return max_irg_visited;
572 }
573
574 void set_max_irg_visited(int val) {
575   max_irg_visited = val;
576 }
577
578 unsigned long
579 inc_max_irg_visited(void)
580 {
581   /*
582   int i;
583   for(i = 0; i < get_irp_n_irgs(); i++)
584   assert(max_irg_visited >= get_irg_visited(get_irp_irg(i)));
585   */
586   max_irg_visited++;
587   return max_irg_visited;
588 }
589
590 unsigned long
591 get_irg_block_visited (ir_graph *irg)
592 {
593   return irg->block_visited;
594 }
595
596 void
597 set_irg_block_visited (ir_graph *irg, unsigned long visited)
598 {
599   irg->block_visited = visited;
600 }
601
602 void
603 inc_irg_block_visited (ir_graph *irg)
604 {
605   ++irg->block_visited;
606 }