]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/coretypes.h
diagnostics: Support for -finput-charset [PR93067]
[thirdparty/gcc.git] / gcc / coretypes.h
CommitLineData
4977bab6 1/* GCC core type declarations.
99dee823 2 Copyright (C) 2002-2021 Free Software Foundation, Inc.
4977bab6
ZW
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
9dcd6f09 8Software Foundation; either version 3, or (at your option) any later
4977bab6
ZW
9version.
10
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
15
748086b7
JJ
16Under Section 7 of GPL version 3, you are granted additional
17permissions described in the GCC Runtime Library Exception, version
183.1, as published by the Free Software Foundation.
19
20You should have received a copy of the GNU General Public License and
21a copy of the GCC Runtime Library Exception along with this program;
22see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
9dcd6f09 23<http://www.gnu.org/licenses/>. */
4977bab6
ZW
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
d1b38208 40#ifndef GTY
4977bab6 41#define GTY(x) /* nothing - marker for gengtype */
d1b38208 42#endif
4977bab6
ZW
43
44#ifndef USED_FOR_TARGET
45
a9243bfc
RB
46typedef int64_t gcov_type;
47typedef uint64_t gcov_type_unsigned;
4484a35a 48
54994253 49struct bitmap_obstack;
99b1c316
MS
50class bitmap_head;
51typedef class bitmap_head *bitmap;
52typedef const class bitmap_head *const_bitmap;
7a8cba34
SB
53struct simple_bitmap_def;
54typedef struct simple_bitmap_def *sbitmap;
55typedef const struct simple_bitmap_def *const_sbitmap;
4977bab6
ZW
56struct rtx_def;
57typedef struct rtx_def *rtx;
a57193e8 58typedef const struct rtx_def *const_rtx;
d21cefc2 59class scalar_mode;
501623d4 60class scalar_int_mode;
e386a52f 61class scalar_float_mode;
a97390bf 62class complex_mode;
b660eccf 63class fixed_size_mode;
490d0f6c 64template<typename> class opt_mode;
16d22000 65typedef opt_mode<scalar_mode> opt_scalar_mode;
501623d4 66typedef opt_mode<scalar_int_mode> opt_scalar_int_mode;
857c7b46 67typedef opt_mode<scalar_float_mode> opt_scalar_float_mode;
99b1c316 68template<typename> struct pod_mode;
382615c6 69typedef pod_mode<scalar_mode> scalar_mode_pod;
bf862c53 70typedef pod_mode<scalar_int_mode> scalar_int_mode_pod;
b660eccf 71typedef pod_mode<fixed_size_mode> fixed_size_mode_pod;
15f8d3ab
DM
72
73/* Subclasses of rtx_def, using indentation to show the class
6f983e60 74 hierarchy, along with the relevant invariant.
15f8d3ab 75 Where possible, keep this list in the same order as in rtl.def. */
99b1c316
MS
76struct rtx_def;
77 struct rtx_expr_list; /* GET_CODE (X) == EXPR_LIST */
78 struct rtx_insn_list; /* GET_CODE (X) == INSN_LIST */
79 struct rtx_sequence; /* GET_CODE (X) == SEQUENCE */
80 struct rtx_insn;
81 struct rtx_debug_insn; /* DEBUG_INSN_P (X) */
82 struct rtx_nonjump_insn; /* NONJUMP_INSN_P (X) */
83 struct rtx_jump_insn; /* JUMP_P (X) */
84 struct rtx_call_insn; /* CALL_P (X) */
85 struct rtx_jump_table_data; /* JUMP_TABLE_DATA_P (X) */
86 struct rtx_barrier; /* BARRIER_P (X) */
87 struct rtx_code_label; /* LABEL_P (X) */
88 struct rtx_note; /* NOTE_P (X) */
15f8d3ab 89
4977bab6
ZW
90struct rtvec_def;
91typedef struct rtvec_def *rtvec;
a57193e8 92typedef const struct rtvec_def *const_rtvec;
807e902e
KZ
93struct hwivec_def;
94typedef struct hwivec_def *hwivec;
95typedef const struct hwivec_def *const_hwivec;
4977bab6
ZW
96union tree_node;
97typedef union tree_node *tree;
7eba871a 98typedef const union tree_node *const_tree;
355fe088
TS
99struct gimple;
100typedef gimple *gimple_seq;
84562394 101struct gimple_stmt_iterator;
538dd0b7
DM
102
103/* Forward decls for leaf gimple subclasses (for individual gimple codes).
104 Keep this in the same order as the corresponding codes in gimple.def. */
105
106struct gcond;
107struct gdebug;
108struct ggoto;
109struct glabel;
110struct gswitch;
111struct gassign;
112struct gasm;
113struct gcall;
114struct gtransaction;
115struct greturn;
116struct gbind;
117struct gcatch;
118struct geh_filter;
119struct geh_mnt;
120struct geh_else;
121struct gresx;
122struct geh_dispatch;
123struct gphi;
124struct gtry;
125struct gomp_atomic_load;
126struct gomp_atomic_store;
127struct gomp_continue;
128struct gomp_critical;
d9a6bd32 129struct gomp_ordered;
538dd0b7
DM
130struct gomp_for;
131struct gomp_parallel;
132struct gomp_task;
133struct gomp_sections;
134struct gomp_single;
135struct gomp_target;
136struct gomp_teams;
137
4df3629e
DM
138/* Subclasses of symtab_node, using indentation to show the class
139 hierarchy. */
140
99b1c316 141struct symtab_node;
4df3629e 142 struct cgraph_node;
99b1c316 143 struct varpool_node;
ff6686d2 144struct cgraph_edge;
4df3629e 145
d6b5193b
RS
146union section;
147typedef union section section;
46625112 148struct gcc_options;
ab442df7
MM
149struct cl_target_option;
150struct cl_optimization;
7a9bf9a4
JM
151struct cl_option;
152struct cl_decoded_option;
5f20c657 153struct cl_option_handlers;
1ebe4b4f 154struct diagnostic_context;
99b1c316 155class pretty_printer;
4bc1899b 156class diagnostic_event_id_t;
3ac6b5cf 157typedef const char * (*diagnostic_input_charset_callback)(const char *);
4977bab6 158
148909bc
RS
159template<typename T> struct array_traits;
160
161/* Provides a read-only bitmap view of a single integer bitmask or an
162 array of integer bitmasks, or of a wrapper around such bitmasks. */
163template<typename T, typename Traits = array_traits<T>,
164 bool has_constant_size = Traits::has_constant_size>
165class bitmap_view;
166
09e881c9
BE
167/* Address space number for named address space support. */
168typedef unsigned char addr_space_t;
169
170/* The value of addr_space_t that represents the generic address space. */
171#define ADDR_SPACE_GENERIC 0
172#define ADDR_SPACE_GENERIC_P(AS) ((AS) == ADDR_SPACE_GENERIC)
173
52bca999
SB
174/* The major intermediate representations of GCC. */
175enum ir_type {
176 IR_GIMPLE,
177 IR_RTL_CFGRTL,
178 IR_RTL_CFGLAYOUT
179};
180
e150159c
SS
181/* Provide forward struct declaration so that we don't have to include
182 all of cpplib.h whenever a random prototype includes a pointer.
5950c3c9
BE
183 Note that the cpp_reader and cpp_token typedefs remain part of
184 cpplib.h. */
e150159c
SS
185
186struct cpp_reader;
5950c3c9 187struct cpp_token;
e150159c 188
61b60ed0
ZW
189/* The thread-local storage model associated with a given VAR_DECL
190 or SYMBOL_REF. This isn't used much, but both trees and RTL refer
191 to it, so it's here. */
192enum tls_model {
c2f7fa15 193 TLS_MODEL_NONE,
feb60f03
NS
194 TLS_MODEL_EMULATED,
195 TLS_MODEL_REAL,
196 TLS_MODEL_GLOBAL_DYNAMIC = TLS_MODEL_REAL,
61b60ed0
ZW
197 TLS_MODEL_LOCAL_DYNAMIC,
198 TLS_MODEL_INITIAL_EXEC,
199 TLS_MODEL_LOCAL_EXEC
200};
201
c713ddc0
BS
202/* Types of ABI for an offload compiler. */
203enum offload_abi {
204 OFFLOAD_ABI_UNSET,
205 OFFLOAD_ABI_LP64,
206 OFFLOAD_ABI_ILP32
207};
208
22063dbc
ML
209/* Types of profile update methods. */
210enum profile_update {
211 PROFILE_UPDATE_SINGLE,
4d209853
ML
212 PROFILE_UPDATE_ATOMIC,
213 PROFILE_UPDATE_PREFER_ATOMIC
22063dbc
ML
214};
215
ea0b1252
ML
216/* Type of profile reproducibility methods. */
217enum profile_reproducibility {
218 PROFILE_REPRODUCIBILITY_SERIAL,
219 PROFILE_REPRODUCIBILITY_PARALLEL_RUNS,
220 PROFILE_REPRODUCIBILITY_MULTITHREADED
221};
222
5a99796b
ML
223/* Type of -fstack-protector-*. */
224enum stack_protector {
225 SPCT_FLAG_DEFAULT = 1,
226 SPCT_FLAG_ALL = 2,
227 SPCT_FLAG_STRONG = 3,
228 SPCT_FLAG_EXPLICIT = 4
229};
230
6ba74c2d
RH
231/* Types of unwind/exception handling info that can be generated. */
232
233enum unwind_info_type
234{
235 UI_NONE,
236 UI_SJLJ,
237 UI_DWARF2,
bf1431e3
TG
238 UI_TARGET,
239 UI_SEH
6ba74c2d
RH
240};
241
f16d3f39
JH
242/* Callgraph node profile representation. */
243enum node_frequency {
244 /* This function most likely won't be executed at all.
245 (set only when profile feedback is available or via function attribute). */
246 NODE_FREQUENCY_UNLIKELY_EXECUTED,
247 /* For functions that are known to be executed once (i.e. constructors, destructors
248 and main function. */
249 NODE_FREQUENCY_EXECUTED_ONCE,
250 /* The default value. */
251 NODE_FREQUENCY_NORMAL,
252 /* Optimize this function hard
253 (set only when profile feedback is available or via function attribute). */
254 NODE_FREQUENCY_HOT
255};
256
d95ab70a
RS
257/* Ways of optimizing code. */
258enum optimization_type {
259 /* Prioritize speed over size. */
260 OPTIMIZE_FOR_SPEED,
261
262 /* Only do things that are good for both size and speed. */
263 OPTIMIZE_FOR_BOTH,
264
265 /* Prioritize size over speed. */
266 OPTIMIZE_FOR_SIZE
267};
268
76b0cbf8
RS
269/* Enumerates a padding direction. */
270enum pad_direction {
271 /* No padding is required. */
272 PAD_NONE,
273
274 /* Insert padding above the data, i.e. at higher memeory addresses
275 when dealing with memory, and at the most significant end when
276 dealing with registers. */
277 PAD_UPWARD,
278
279 /* Insert padding below the data, i.e. at lower memeory addresses
280 when dealing with memory, and at the least significant end when
281 dealing with registers. */
282 PAD_DOWNWARD
283};
284
647a1567
RH
285/* Possible initialization status of a variable. When requested
286 by the user, this information is tracked and recorded in the DWARF
287 debug information, along with the variable's location. */
288enum var_init_status
289{
290 VAR_INIT_STATUS_UNKNOWN,
291 VAR_INIT_STATUS_UNINITIALIZED,
292 VAR_INIT_STATUS_INITIALIZED
293};
294
a8b85ce9
MG
295/* Names for the different levels of -Wstrict-overflow=N. The numeric
296 values here correspond to N. */
297enum warn_strict_overflow_code
298{
299 /* Overflow warning that should be issued with -Wall: a questionable
300 construct that is easy to avoid even when using macros. Example:
301 folding (x + CONSTANT > x) to 1. */
302 WARN_STRICT_OVERFLOW_ALL = 1,
303 /* Overflow warning about folding a comparison to a constant because
304 of undefined signed overflow, other than cases covered by
305 WARN_STRICT_OVERFLOW_ALL. Example: folding (abs (x) >= 0) to 1
306 (this is false when x == INT_MIN). */
307 WARN_STRICT_OVERFLOW_CONDITIONAL = 2,
308 /* Overflow warning about changes to comparisons other than folding
309 them to a constant. Example: folding (x + 1 > 1) to (x > 0). */
310 WARN_STRICT_OVERFLOW_COMPARISON = 3,
311 /* Overflow warnings not covered by the above cases. Example:
312 folding ((x * 10) / 5) to (x * 2). */
313 WARN_STRICT_OVERFLOW_MISC = 4,
314 /* Overflow warnings about reducing magnitude of constants in
315 comparison. Example: folding (x + 2 > y) to (x + 1 >= y). */
316 WARN_STRICT_OVERFLOW_MAGNITUDE = 5
317};
318
eee33510
AM
319/* The type of an alias set. Code currently assumes that variables of
320 this type can take the values 0 (the alias set which aliases
321 everything) and -1 (sometimes indicating that the alias set is
322 unknown, sometimes indicating a memory barrier) and -2 (indicating
323 that the alias set should be set to a unique value but has not been
324 set yet). */
325typedef int alias_set_type;
f16d3f39 326
99b1c316
MS
327class edge_def;
328typedef class edge_def *edge;
329typedef const class edge_def *const_edge;
a3710436
JH
330struct basic_block_def;
331typedef struct basic_block_def *basic_block;
332typedef const struct basic_block_def *const_basic_block;
10692477 333
fcb87c50
MM
334#if !defined (GENERATOR_FILE)
335# define OBSTACK_CHUNK_SIZE memory_block_pool::block_size
336# define obstack_chunk_alloc mempool_obstack_chunk_alloc
337# define obstack_chunk_free mempool_obstack_chunk_free
338#else
339# define OBSTACK_CHUNK_SIZE 0
340# define obstack_chunk_alloc xmalloc
341# define obstack_chunk_free free
342#endif
343
19a9ba64
AM
344#define gcc_obstack_init(OBSTACK) \
345 obstack_specify_allocation ((OBSTACK), OBSTACK_CHUNK_SIZE, 0, \
346 obstack_chunk_alloc, \
347 obstack_chunk_free)
10692477 348
a87cf97e
JR
349/* enum reg_class is target specific, so it should not appear in
350 target-independent code or interfaces, like the target hook declarations
351 in target.h. */
352typedef int reg_class_t;
353
05555c4a
DM
354class rtl_opt_pass;
355
356namespace gcc {
357 class context;
358}
359
ab23f5d9 360typedef std::pair <tree, tree> tree_pair;
ac2cfa6c 361typedef std::pair <const char *, int> string_int_pair;
ab23f5d9 362
4a4412b9
DM
363/* Define a name->value mapping. */
364template <typename ValueType>
365struct kv_pair
366{
367 const char *const name; /* the name of the value */
368 const ValueType value; /* the value of the name */
369};
370
4977bab6
ZW
371#else
372
373struct _dont_use_rtx_here_;
374struct _dont_use_rtvec_here_;
f3955ea3 375struct _dont_use_rtx_insn_here_;
4977bab6
ZW
376union _dont_use_tree_here_;
377#define rtx struct _dont_use_rtx_here_ *
a57193e8 378#define const_rtx struct _dont_use_rtx_here_ *
4977bab6 379#define rtvec struct _dont_use_rtvec_here *
a57193e8 380#define const_rtvec struct _dont_use_rtvec_here *
f3955ea3 381#define rtx_insn struct _dont_use_rtx_insn_here_
4977bab6 382#define tree union _dont_use_tree_here_ *
a57193e8 383#define const_tree union _dont_use_tree_here_ *
4977bab6 384
d21cefc2 385typedef struct scalar_mode scalar_mode;
501623d4 386typedef struct scalar_int_mode scalar_int_mode;
e386a52f 387typedef struct scalar_float_mode scalar_float_mode;
a97390bf 388typedef struct complex_mode complex_mode;
e386a52f 389
4977bab6
ZW
390#endif
391
d33d9e47
AI
392/* Classes of functions that compiler needs to check
393 whether they are present at the runtime or not. */
394enum function_class {
395 function_c94,
396 function_c99_misc,
397 function_c99_math_complex,
22869a37 398 function_sincos,
0fa00483
JM
399 function_c11_misc,
400 function_c2x_misc
d33d9e47
AI
401};
402
2eff1470
AM
403/* Enumerate visibility settings. This is deliberately ordered from most
404 to least visibility. */
405enum symbol_visibility
406{
407 VISIBILITY_DEFAULT,
408 VISIBILITY_PROTECTED,
409 VISIBILITY_HIDDEN,
410 VISIBILITY_INTERNAL
411};
412
42e02b20
JG
413/* enums used by the targetm.excess_precision hook. */
414
415enum flt_eval_method
416{
417 FLT_EVAL_METHOD_UNPREDICTABLE = -1,
418 FLT_EVAL_METHOD_PROMOTE_TO_FLOAT = 0,
419 FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE = 1,
420 FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE = 2,
421 FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16 = 16
422};
423
424enum excess_precision_type
425{
426 EXCESS_PRECISION_TYPE_IMPLICIT,
427 EXCESS_PRECISION_TYPE_STANDARD,
428 EXCESS_PRECISION_TYPE_FAST
429};
430
f20a6c57
JH
431/* Level of size optimization. */
432
433enum optimize_size_level
434{
435 /* Do not optimize for size. */
436 OPTIMIZE_SIZE_NO,
437 /* Optimize for size but not at extreme performance costs. */
438 OPTIMIZE_SIZE_BALANCED,
439 /* Optimize for size as much as possible. */
440 OPTIMIZE_SIZE_MAX
441};
442
0823efed
DN
443/* Support for user-provided GGC and PCH markers. The first parameter
444 is a pointer to a pointer, the second a cookie. */
445typedef void (*gt_pointer_operator) (void *, void *);
446
9771b263
DN
447#if !defined (HAVE_UCHAR)
448typedef unsigned char uchar;
449#endif
4977bab6 450
b0e84cf7
RS
451/* Most source files will require the following headers. */
452#if !defined (USED_FOR_TARGET)
453#include "insn-modes.h"
ecb9f223
AM
454#include "signop.h"
455#include "wide-int.h"
b0e84cf7 456#include "wide-int-print.h"
e535b963
RS
457
458/* On targets that don't need polynomial offsets, target-specific code
459 should be able to treat poly_int like a normal constant, with a
460 conversion operator going from the former to the latter. We also
461 allow this for gencondmd.c for all targets, so that we can treat
462 machine_modes as enums without causing build failures. */
463#if (defined (IN_TARGET_CODE) \
464 && (defined (USE_ENUM_MODES) || NUM_POLY_INT_COEFFS == 1))
465#define POLY_INT_CONVERSION 1
466#else
467#define POLY_INT_CONVERSION 0
468#endif
469
470#include "poly-int.h"
471#include "poly-int-types.h"
b0e84cf7
RS
472#include "insn-modes-inline.h"
473#include "machmode.h"
ecb9f223 474#include "double-int.h"
e6de5335 475#include "align.h"
b0e84cf7
RS
476/* Most host source files will require the following headers. */
477#if !defined (GENERATOR_FILE)
1751a78e 478#include "iterator-utils.h"
ecb9f223
AM
479#include "real.h"
480#include "fixed-value.h"
13fdf2e2
AM
481#include "hash-table.h"
482#include "hash-set.h"
abb226c9
AM
483#include "input.h"
484#include "is-a.h"
fcb87c50 485#include "memory-block.h"
1a817418 486#include "dumpfile.h"
b0e84cf7 487#endif
13fdf2e2 488#endif /* GENERATOR_FILE && !USED_FOR_TARGET */
ecb9f223 489
9771b263 490#endif /* coretypes.h */