revivie max_irg_visited
[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  * @version  $Id$
26  */
27 #ifndef FIRM_IR_IRPROG_T_H
28 #define FIRM_IR_IRPROG_T_H
29
30 #include "irprog.h"
31 #include "irtypes.h"
32 #include "pseudo_irg.h"
33 #include "ircgcons.h"
34 #include "irtypeinfo.h"
35 #include "irmemory.h"
36
37 #include "callgraph.h"
38 #include "field_temperature.h"
39 #include "execution_frequency.h"
40
41 #include "array.h"
42
43 /** Adds mode to the list of modes in irp. */
44 void add_irp_mode(ir_mode *mode);
45
46 /* inline functions */
47 static inline ir_type *
48 _get_segment_type(ir_segment_t segment)
49 {
50         assert(segment <= IR_SEGMENT_LAST);
51         return irp->segment_types[segment];
52 }
53
54 static inline ir_type *
55 _get_glob_type(void) {
56         return _get_segment_type(IR_SEGMENT_GLOBAL);
57 }
58
59 static inline ir_type *
60 _get_tls_type(void) {
61         return _get_segment_type(IR_SEGMENT_THREAD_LOCAL);
62 }
63
64 static inline int
65 _get_irp_n_irgs(void) {
66         assert(irp && irp->graphs);
67         if (get_visit_pseudo_irgs()) return get_irp_n_allirgs();
68         return ARR_LEN(irp->graphs);
69 }
70
71 static inline ir_graph *
72 _get_irp_irg(int pos){
73         if (get_visit_pseudo_irgs()) return get_irp_allirg(pos);
74         assert(0 <= pos && pos <= ARR_LEN(irp->graphs));
75         return irp->graphs[pos];
76 }
77
78
79 static inline int
80 _get_irp_n_types(void) {
81         assert(irp && irp->types);
82         return ARR_LEN(irp->types);
83 }
84
85 static inline ir_type *
86 _get_irp_type(int pos) {
87         assert(irp->types);
88         /* Don't set the skip_tid result so that no double entries are generated. */
89         return irp->types[pos];
90 }
91
92 static inline int
93 _get_irp_n_modes(void) {
94         assert(irp->modes);
95         return ARR_LEN(irp->modes);
96 }
97
98 static inline ir_mode *
99 _get_irp_mode(int pos) {
100         assert(irp && irp->modes);
101         return irp->modes[pos];
102 }
103
104 static inline int
105 _get_irp_n_opcodes(void) {
106         assert(irp && irp->opcodes);
107         return ARR_LEN(irp->opcodes);
108 }
109
110 static inline ir_op *
111 _get_irp_opcode(int pos) {
112         assert(irp && irp->opcodes);
113         return irp->opcodes[pos];
114 }
115
116 /** Returns a new, unique number to number nodes or the like. */
117 static inline long
118 get_irp_new_node_nr(void) {
119         assert(irp);
120         return irp->max_node_nr++;
121 }
122
123 static inline int
124 get_irp_new_irg_idx(void) {
125         assert(irp);
126         return irp->max_irg_idx++;
127 }
128
129 static inline ir_graph *
130 _get_const_code_irg(void) {
131         return irp->const_code_irg;
132 }
133
134 /** Returns a new, unique exception region number. */
135 static inline ir_exc_region_t
136 _get_irp_next_region_nr(void) {
137         assert(irp);
138         return ++irp->last_region_nr;
139 }
140
141 /** Returns a new, unique label number. */
142 static inline ir_label_t
143 _get_irp_next_label_nr(void) {
144         assert(irp);
145         return ++irp->last_label_nr;
146 }
147
148 void           set_irp_ip_outedges(ir_node ** ip_outedges);
149 ir_node**      get_irp_ip_outedges(void);
150
151 /** initializes ir_prog. Constructs only the basic lists */
152 void init_irprog_1(void);
153
154 /** Completes ir_prog. */
155 void init_irprog_2(void);
156
157 /* Inline functions. */
158 #define get_irp_n_irgs()          _get_irp_n_irgs()
159 #define get_irp_irg(pos)          _get_irp_irg(pos)
160 #define get_irp_n_types()         _get_irp_n_types()
161 #define get_irp_type(pos)         _get_irp_type(pos)
162 #define get_irp_n_modes()         _get_irp_n_modes()
163 #define get_irp_mode(pos)         _get_irp_mode(pos)
164 #define get_irp_n_opcodes()       _get_irp_n_opcodes()
165 #define get_irp_opcode(pos)       _get_irp_opcode(pos)
166 #define get_const_code_irg()      _get_const_code_irg()
167 #define get_segment_type(s)       _get_segment_type(s)
168 #define get_glob_type()           _get_glob_type()
169 #define get_tls_type()            _get_tls_type()
170 #define get_irp_next_region_nr()  _get_irp_next_region_nr()
171 #define get_irp_next_label_nr()   _get_irp_next_label_nr()
172
173 #endif