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