]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/coretypes.h
Merge from trunk.
[thirdparty/gcc.git] / gcc / coretypes.h
1 /* GCC core type declarations.
2 Copyright (C) 2002-2013 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
19
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
24
25 /* Provide forward declarations of core types which are referred to by
26 most of the compiler. This allows header files to use these types
27 (e.g. in function prototypes) without concern for whether the full
28 definitions are visible. Some other declarations that need to be
29 universally visible are here, too.
30
31 In the context of tconfig.h, most of these have special definitions
32 which prevent them from being used except in further type
33 declarations. This is a kludge; the right thing is to avoid
34 including the "tm.h" header set in the context of tconfig.h, but
35 we're not there yet. */
36
37 #ifndef GCC_CORETYPES_H
38 #define GCC_CORETYPES_H
39
40 #ifndef GTY
41 #define GTY(x) /* nothing - marker for gengtype */
42 #endif
43
44 #ifndef USED_FOR_TARGET
45
46 typedef HOST_WIDEST_INT gcov_type;
47 typedef unsigned HOST_WIDEST_INT gcov_type_unsigned;
48
49 struct bitmap_head_def;
50 typedef struct bitmap_head_def *bitmap;
51 typedef const struct bitmap_head_def *const_bitmap;
52 struct simple_bitmap_def;
53 typedef struct simple_bitmap_def *sbitmap;
54 typedef const struct simple_bitmap_def *const_sbitmap;
55 struct rtx_def;
56 typedef struct rtx_def *rtx;
57 typedef const struct rtx_def *const_rtx;
58 struct rtvec_def;
59 typedef struct rtvec_def *rtvec;
60 typedef const struct rtvec_def *const_rtvec;
61 struct hwivec_def;
62 typedef struct hwivec_def *hwivec;
63 typedef const struct hwivec_def *const_hwivec;
64 union tree_node;
65 typedef union tree_node *tree;
66 typedef const union tree_node *const_tree;
67 typedef struct gimple_statement_base *gimple;
68 typedef const struct gimple_statement_base *const_gimple;
69 typedef gimple gimple_seq;
70 struct gimple_stmt_iterator_d;
71 typedef struct gimple_stmt_iterator_d gimple_stmt_iterator;
72 union section;
73 typedef union section section;
74 struct gcc_options;
75 struct cl_target_option;
76 struct cl_optimization;
77 struct cl_option;
78 struct cl_decoded_option;
79 struct cl_option_handlers;
80 struct diagnostic_context;
81 struct pretty_printer;
82
83 /* Address space number for named address space support. */
84 typedef unsigned char addr_space_t;
85
86 /* The value of addr_space_t that represents the generic address space. */
87 #define ADDR_SPACE_GENERIC 0
88 #define ADDR_SPACE_GENERIC_P(AS) ((AS) == ADDR_SPACE_GENERIC)
89
90 /* The major intermediate representations of GCC. */
91 enum ir_type {
92 IR_GIMPLE,
93 IR_RTL_CFGRTL,
94 IR_RTL_CFGLAYOUT
95 };
96
97 /* Provide forward struct declaration so that we don't have to include
98 all of cpplib.h whenever a random prototype includes a pointer.
99 Note that the cpp_reader and cpp_token typedefs remain part of
100 cpplib.h. */
101
102 struct cpp_reader;
103 struct cpp_token;
104
105 /* The thread-local storage model associated with a given VAR_DECL
106 or SYMBOL_REF. This isn't used much, but both trees and RTL refer
107 to it, so it's here. */
108 enum tls_model {
109 TLS_MODEL_NONE,
110 TLS_MODEL_EMULATED,
111 TLS_MODEL_REAL,
112 TLS_MODEL_GLOBAL_DYNAMIC = TLS_MODEL_REAL,
113 TLS_MODEL_LOCAL_DYNAMIC,
114 TLS_MODEL_INITIAL_EXEC,
115 TLS_MODEL_LOCAL_EXEC
116 };
117
118 /* Types of unwind/exception handling info that can be generated. */
119
120 enum unwind_info_type
121 {
122 UI_NONE,
123 UI_SJLJ,
124 UI_DWARF2,
125 UI_TARGET,
126 UI_SEH
127 };
128
129 /* Callgraph node profile representation. */
130 enum node_frequency {
131 /* This function most likely won't be executed at all.
132 (set only when profile feedback is available or via function attribute). */
133 NODE_FREQUENCY_UNLIKELY_EXECUTED,
134 /* For functions that are known to be executed once (i.e. constructors, destructors
135 and main function. */
136 NODE_FREQUENCY_EXECUTED_ONCE,
137 /* The default value. */
138 NODE_FREQUENCY_NORMAL,
139 /* Optimize this function hard
140 (set only when profile feedback is available or via function attribute). */
141 NODE_FREQUENCY_HOT
142 };
143
144 /* Possible initialization status of a variable. When requested
145 by the user, this information is tracked and recorded in the DWARF
146 debug information, along with the variable's location. */
147 enum var_init_status
148 {
149 VAR_INIT_STATUS_UNKNOWN,
150 VAR_INIT_STATUS_UNINITIALIZED,
151 VAR_INIT_STATUS_INITIALIZED
152 };
153
154
155 struct edge_def;
156 typedef struct edge_def *edge;
157 typedef const struct edge_def *const_edge;
158 struct basic_block_def;
159 typedef struct basic_block_def *basic_block;
160 typedef const struct basic_block_def *const_basic_block;
161
162 #define obstack_chunk_alloc ((void *(*) (long)) xmalloc)
163 #define obstack_chunk_free ((void (*) (void *)) free)
164 #define OBSTACK_CHUNK_SIZE 0
165 #define gcc_obstack_init(OBSTACK) \
166 _obstack_begin ((OBSTACK), OBSTACK_CHUNK_SIZE, 0, \
167 obstack_chunk_alloc, \
168 obstack_chunk_free)
169
170 /* enum reg_class is target specific, so it should not appear in
171 target-independent code or interfaces, like the target hook declarations
172 in target.h. */
173 typedef int reg_class_t;
174
175 class rtl_opt_pass;
176
177 namespace gcc {
178 class context;
179 }
180
181 #else
182
183 struct _dont_use_rtx_here_;
184 struct _dont_use_rtvec_here_;
185 union _dont_use_tree_here_;
186 #define rtx struct _dont_use_rtx_here_ *
187 #define const_rtx struct _dont_use_rtx_here_ *
188 #define rtvec struct _dont_use_rtvec_here *
189 #define const_rtvec struct _dont_use_rtvec_here *
190 #define tree union _dont_use_tree_here_ *
191 #define const_tree union _dont_use_tree_here_ *
192
193 #endif
194
195 /* Classes of functions that compiler needs to check
196 whether they are present at the runtime or not. */
197 enum function_class {
198 function_c94,
199 function_c99_misc,
200 function_c99_math_complex,
201 function_sincos
202 };
203
204 /* Memory model types for the __atomic* builtins.
205 This must match the order in libstdc++-v3/include/bits/atomic_base.h. */
206 enum memmodel
207 {
208 MEMMODEL_RELAXED = 0,
209 MEMMODEL_CONSUME = 1,
210 MEMMODEL_ACQUIRE = 2,
211 MEMMODEL_RELEASE = 3,
212 MEMMODEL_ACQ_REL = 4,
213 MEMMODEL_SEQ_CST = 5,
214 MEMMODEL_LAST = 6
215 };
216
217 /* Suppose that higher bits are target dependent. */
218 #define MEMMODEL_MASK ((1<<16)-1)
219
220 /* Support for user-provided GGC and PCH markers. The first parameter
221 is a pointer to a pointer, the second a cookie. */
222 typedef void (*gt_pointer_operator) (void *, void *);
223
224 #if !defined (HAVE_UCHAR)
225 typedef unsigned char uchar;
226 #endif
227
228 #endif /* coretypes.h */