remove Bound node
[libfirm] / ir / ir / irprog_t.h
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief    Entry point to the representation of a whole program 0-- private header.
23  * @author   Goetz Lindenmaier
24  * @date     2000
25  */
26 #ifndef FIRM_IR_IRPROG_T_H
27 #define FIRM_IR_IRPROG_T_H
28
29 #include "irprog.h"
30 #include "irtypes.h"
31 #include "irtypeinfo.h"
32 #include "irmemory.h"
33
34 #include "callgraph.h"
35
36 #include "array.h"
37
38 /* Inline functions. */
39 #define get_irp_n_irgs()                 get_irp_n_irgs_()
40 #define get_irp_irg(pos)                 get_irp_irg_(pos)
41 #define get_irp_n_types()                get_irp_n_types_()
42 #define get_irp_type(pos)                get_irp_type_(pos)
43 #define get_const_code_irg()             get_const_code_irg_()
44 #define get_segment_type(s)              get_segment_type_(s)
45 #define get_glob_type()                  get_glob_type_()
46 #define get_tls_type()                   get_tls_type_()
47 #define get_irp_next_label_nr()          get_irp_next_label_nr_()
48
49 /* inline functions */
50 static inline ir_type *get_segment_type_(ir_segment_t segment)
51 {
52         assert(segment <= IR_SEGMENT_LAST);
53         return irp->segment_types[segment];
54 }
55
56 static inline ir_type *get_glob_type_(void)
57 {
58         return get_segment_type_(IR_SEGMENT_GLOBAL);
59 }
60
61 static inline ir_type *get_tls_type_(void)
62 {
63         return get_segment_type_(IR_SEGMENT_THREAD_LOCAL);
64 }
65
66 static inline size_t get_irp_n_irgs_(void)
67 {
68         return ARR_LEN(irp->graphs);
69 }
70
71 static inline ir_graph *get_irp_irg_(size_t pos)
72 {
73         assert(pos < ARR_LEN(irp->graphs));
74         return irp->graphs[pos];
75 }
76
77 static inline size_t get_irp_n_types_(void)
78 {
79         return ARR_LEN(irp->types);
80 }
81
82 static inline ir_type *get_irp_type_(size_t pos)
83 {
84         assert(pos < ARR_LEN(irp->types));
85         /* Don't set the skip_tid result so that no double entries are generated. */
86         return irp->types[pos];
87 }
88
89 /** Returns a new, unique number to number nodes or the like. */
90 static inline long get_irp_new_node_nr(void)
91 {
92         return irp->max_node_nr++;
93 }
94
95 static inline size_t get_irp_new_irg_idx(void)
96 {
97         return irp->max_irg_idx++;
98 }
99
100 static inline ir_graph *get_const_code_irg_(void)
101 {
102         return irp->const_code_irg;
103 }
104
105 /** Returns a new, unique label number. */
106 static inline ir_label_t get_irp_next_label_nr_(void)
107 {
108         return ++irp->last_label_nr;
109 }
110
111 void      set_irp_ip_outedges(ir_node ** ip_outedges);
112 ir_node** get_irp_ip_outedges(void);
113
114 /** initializes ir_prog. Constructs only the basic lists */
115 void init_irprog_1(void);
116
117 /** Completes ir_prog. */
118 void init_irprog_2(void);
119
120 /** Adds type to the list of types in irp. */
121 void add_irp_type(ir_type *typ);
122
123 /** Removes type from the list of types, deallocates it and
124     shrinks the list by one. */
125 void remove_irp_type(ir_type *typ);
126
127 /** Adds irg to the list of ir graphs in the current irp. */
128 FIRM_API void add_irp_irg(ir_graph *irg);
129
130 /** Removes irg from the list of irgs and
131     shrinks the list by one. */
132 FIRM_API void remove_irp_irg(ir_graph *irg);
133
134 #endif