]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/target.h
PR testsuite/92016 - Excess errors in Wstringop-overflow-17.c
[thirdparty/gcc.git] / gcc / target.h
CommitLineData
a767736d 1/* Data structure definitions for a generic GCC target.
fbd26352 2 Copyright (C) 2001-2019 Free Software Foundation, Inc.
a767736d 3
8c4c00c1 4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU General Public License as published by the
6 Free Software Foundation; either version 3, or (at your option) any
7 later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; see the file COPYING3. If not see
16 <http://www.gnu.org/licenses/>.
17
18 In other words, you are welcome to use, share and improve this program.
19 You are forbidden to forbid anyone else to use, share and improve
20 what you give them. Help stamp out software-hoarding! */
21
a767736d 22
23/* This file contains a data structure that describes a GCC target.
11ff5d0d 24 At present it is incomplete, but in future it should grow to
a767736d 25 contain most or all target machine and target O/S specific
26 information.
27
28 This structure has its initializer declared in target-def.h in the
29 form of large macro TARGET_INITIALIZER that expands to many smaller
30 macros.
31
32 The smaller macros each initialize one component of the structure,
33 and each has a default. Each target should have a file that
34 includes target.h and target-def.h, and overrides any inappropriate
35 defaults by undefining the relevant macro and defining a suitable
36 replacement. That file should then contain the definition of
57e4bbfb 37 "targetm" like so:
a767736d 38
57e4bbfb 39 struct gcc_target targetm = TARGET_INITIALIZER;
a767736d 40
41 Doing things this way allows us to bring together everything that
11ff5d0d 42 defines a GCC target. By supplying a default that is appropriate
43 to most targets, we can easily add new items without needing to
44 edit dozens of target configuration files. It should also allow us
45 to gradually reduce the amount of conditional compilation that is
46 scattered throughout GCC. */
a767736d 47
bcf3c70d 48#ifndef GCC_TARGET_H
49#define GCC_TARGET_H
50
17f446a0 51#include "insn-codes.h"
cea19dab 52#include "tm.h"
53#include "hard-reg-set.h"
7988d6e2 54
382ecba7 55#if CHECKING_P
39cba157 56
b3e7c666 57struct cumulative_args_t { void *magic; void *p; };
39cba157 58
382ecba7 59#else /* !CHECKING_P */
39cba157 60
61/* When using a GCC build compiler, we could use
62 __attribute__((transparent_union)) to get cumulative_args_t function
63 arguments passed like scalars where the ABI would mandate a less
64 efficient way of argument passing otherwise. However, that would come
382ecba7 65 at the cost of less type-safe !CHECKING_P compilation. */
39cba157 66
b3e7c666 67union cumulative_args_t { void *p; };
39cba157 68
382ecba7 69#endif /* !CHECKING_P */
39cba157 70
7c6733e8 71/* Types used by the record_gcc_switches() target function. */
b3e7c666 72enum print_switch_type
7c6733e8 73{
74 SWITCH_TYPE_PASSED, /* A switch passed on the command line. */
75 SWITCH_TYPE_ENABLED, /* An option that is currently enabled. */
76 SWITCH_TYPE_DESCRIPTIVE, /* Descriptive text, not a switch or option. */
77 SWITCH_TYPE_LINE_START, /* Please emit any necessary text at the start of a line. */
78 SWITCH_TYPE_LINE_END /* Please emit a line terminator. */
b3e7c666 79};
7c6733e8 80
0ec3791c 81/* Types of memory operation understood by the "by_pieces" infrastructure.
3e346f54 82 Used by the TARGET_USE_BY_PIECES_INFRASTRUCTURE_P target hook and
83 internally by the functions in expr.c. */
0ec3791c 84
85enum by_pieces_operation
86{
87 CLEAR_BY_PIECES,
88 MOVE_BY_PIECES,
89 SET_BY_PIECES,
3e346f54 90 STORE_BY_PIECES,
91 COMPARE_BY_PIECES
0ec3791c 92};
93
3e346f54 94extern unsigned HOST_WIDE_INT by_pieces_ninsns (unsigned HOST_WIDE_INT,
95 unsigned int,
96 unsigned int,
97 by_pieces_operation);
98
7c6733e8 99typedef int (* print_switch_fn_type) (print_switch_type, const char *);
100
101/* An example implementation for ELF targets. Defined in varasm.c */
102extern int elf_record_gcc_switches (print_switch_type type, const char *);
103
98155838 104/* Some places still assume that all pointer or address modes are the
105 standard Pmode and ptr_mode. These optimizations become invalid if
106 the target actually supports multiple different modes. For now,
107 we disable such optimizations on such targets, using this function. */
108extern bool target_default_pointer_address_modes_p (void);
109
67622758 110/* For hooks which use the MOVE_RATIO macro, this gives the legacy default
67cf9b55 111 behavior. */
67622758 112extern unsigned int get_move_ratio (bool);
113
a6c787e5 114struct stdarg_info;
6a1cdb4d 115struct spec_info_def;
2e851bb8 116struct hard_reg_set_container;
d09768a4 117struct cgraph_node;
118struct cgraph_simd_clone;
a6c787e5 119
4d58fa46 120/* The struct used by the secondary_reload target hook. */
b3e7c666 121struct secondary_reload_info
4d58fa46 122{
123 /* icode is actually an enum insn_code, but we don't want to force every
124 file that includes target.h to include optabs.h . */
125 int icode;
126 int extra_cost; /* Cost for using (a) scratch register(s) to be taken
127 into account by copy_cost. */
128 /* The next two members are for the use of the backward
129 compatibility hook. */
130 struct secondary_reload_info *prev_sri;
131 int t_icode; /* Actually an enum insn_code - see above. */
b3e7c666 132};
4d58fa46 133
9997bd27 134/* This is defined in sched-int.h . */
135struct _dep;
4d58fa46 136
d52fd16a 137/* This is defined in ddg.h . */
138struct ddg;
139
9ccaa774 140/* This is defined in cfgloop.h . */
2e966e2a 141class loop;
9ccaa774 142
e000adb9 143/* This is defined in ifcvt.h. */
144struct noce_if_info;
145
be97d4b6 146/* This is defined in tree-ssa-alias.h. */
2e966e2a 147class ao_ref;
be97d4b6 148
4db2b577 149/* This is defined in tree-vectorizer.h. */
2e966e2a 150class _stmt_vec_info;
4db2b577 151
75f3b169 152/* This is defined in calls.h. */
153class function_arg_info;
154
1008d2ec 155/* This is defined in function-abi.h. */
156class predefined_function_abi;
157
4db2b577 158/* These are defined in tree-vect-stmts.c. */
2e966e2a 159extern tree stmt_vectype (class _stmt_vec_info *);
160extern bool stmt_in_inner_loop_p (class _stmt_vec_info *);
4db2b577 161
0b09525f 162/* Assembler instructions for creating various kinds of integer object. */
163
164struct asm_int_op
165{
166 const char *hi;
db879ec7 167 const char *psi;
0b09525f 168 const char *si;
db879ec7 169 const char *pdi;
0b09525f 170 const char *di;
db879ec7 171 const char *pti;
0b09525f 172 const char *ti;
173};
174
559093aa 175/* Types of costs for vectorizer cost model. */
176enum vect_cost_for_stmt
177{
178 scalar_stmt,
179 scalar_load,
180 scalar_store,
181 vector_stmt,
182 vector_load,
72e995da 183 vector_gather_load,
559093aa 184 unaligned_load,
0822b158 185 unaligned_store,
559093aa 186 vector_store,
72e995da 187 vector_scatter_store,
559093aa 188 vec_to_scalar,
189 scalar_to_vec,
190 cond_branch_not_taken,
191 cond_branch_taken,
5df2530b 192 vec_perm,
d13adc77 193 vec_promote_demote,
194 vec_construct
559093aa 195};
196
f97dec81 197/* Separate locations for which the vectorizer cost model should
198 track costs. */
199enum vect_cost_model_location {
200 vect_prologue = 0,
201 vect_body = 1,
202 vect_epilogue = 2
203};
204
d37760c5 205class vec_perm_indices;
282dc861 206
3106770a 207/* The type to use for lists of vector sizes. */
208typedef vec<poly_uint64> vector_sizes;
209
210/* Same, but can be used to construct local lists that are
211 automatically freed. */
212typedef auto_vec<poly_uint64, 8> auto_vector_sizes;
213
0b09525f 214/* The target structure. This holds all the backend hooks. */
202d6e5f 215#define DEFHOOKPOD(NAME, DOC, TYPE, INIT) TYPE NAME;
216#define DEFHOOK(NAME, DOC, TYPE, PARAMS, INIT) TYPE (* NAME) PARAMS;
217#define DEFHOOK_UNDOC DEFHOOK
218#define HOOKSTRUCT(FRAGMENT) FRAGMENT
0b09525f 219
202d6e5f 220#include "target.def"
a767736d 221
57e4bbfb 222extern struct gcc_target targetm;
bcf3c70d 223
466432a3 224/* Return an estimate of the runtime value of X, for use in things
225 like cost calculations or profiling frequencies. Note that this
226 function should never be used in situations where the actual
227 runtime value is needed for correctness, since the function only
228 provides a rough guess. */
229
230static inline HOST_WIDE_INT
231estimated_poly_value (poly_int64 x)
232{
233 if (NUM_POLY_INT_COEFFS == 1)
234 return x.coeffs[0];
235 else
236 return targetm.estimated_poly_value (x);
237}
238
39cba157 239#ifdef GCC_TM_H
240
241#ifndef CUMULATIVE_ARGS_MAGIC
242#define CUMULATIVE_ARGS_MAGIC ((void *) &targetm.calls)
243#endif
244
245static inline CUMULATIVE_ARGS *
246get_cumulative_args (cumulative_args_t arg)
247{
382ecba7 248#if CHECKING_P
39cba157 249 gcc_assert (arg.magic == CUMULATIVE_ARGS_MAGIC);
382ecba7 250#endif /* CHECKING_P */
39cba157 251 return (CUMULATIVE_ARGS *) arg.p;
252}
253
254static inline cumulative_args_t
255pack_cumulative_args (CUMULATIVE_ARGS *arg)
256{
257 cumulative_args_t ret;
258
382ecba7 259#if CHECKING_P
39cba157 260 ret.magic = CUMULATIVE_ARGS_MAGIC;
382ecba7 261#endif /* CHECKING_P */
39cba157 262 ret.p = (void *) arg;
263 return ret;
264}
265#endif /* GCC_TM_H */
266
bcf3c70d 267#endif /* GCC_TARGET_H */