]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/target-globals.h
Update libbid according to the latest Intel Decimal Floating-Point Math Library.
[thirdparty/gcc.git] / gcc / target-globals.h
CommitLineData
3bd36029 1/* Target-dependent globals.
a945c346 2 Copyright (C) 2010-2024 Free Software Foundation, Inc.
3bd36029
RS
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
8Software Foundation; either version 3, or (at your option) any later
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
16You should have received a copy of the GNU General Public License
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
19
20#ifndef TARGET_GLOBALS_H
21#define TARGET_GLOBALS_H 1
22
23#if SWITCHABLE_TARGET
99b1c316 24extern class target_flag_state *this_target_flag_state;
939dcd0d 25extern struct target_regs *this_target_regs;
5fb0e246 26extern struct target_rtl *this_target_rtl;
4cc8d9d2 27extern struct target_recog *this_target_recog;
6642445b 28extern struct target_hard_regs *this_target_hard_regs;
bd785b44 29extern struct target_function_abi_info *this_target_function_abi_info;
d474db84 30extern struct target_reload *this_target_reload;
462f85ce 31extern struct target_expmed *this_target_expmed;
4bcbfa03 32extern struct target_optabs *this_target_optabs;
3e9c326a 33extern struct target_libfuncs *this_target_libfuncs;
4391924a 34extern struct target_cfgloop *this_target_cfgloop;
afcc66c4 35extern struct target_ira *this_target_ira;
99b1c316 36extern class target_ira_int *this_target_ira_int;
fa19795e 37extern struct target_builtins *this_target_builtins;
7c6811fe 38extern struct target_gcse *this_target_gcse;
76ee381a 39extern struct target_bb_reorder *this_target_bb_reorder;
af4ba423 40extern struct target_lower_subreg *this_target_lower_subreg;
09a85191 41extern struct target_constraints *this_target_constraints;
e83b8e2e 42#endif
3bd36029 43
6c1dae73
MS
44class GTY(()) target_globals {
45public:
1942d1a9
RS
46 ~target_globals ();
47
99b1c316 48 class target_flag_state *GTY((skip)) flag_state;
1942d1a9 49 struct target_regs *GTY((skip)) regs;
5fb0e246 50 struct target_rtl *rtl;
1942d1a9
RS
51 struct target_recog *GTY((skip)) recog;
52 struct target_hard_regs *GTY((skip)) hard_regs;
bd785b44 53 struct target_function_abi_info *GTY((skip)) function_abi_info;
1942d1a9
RS
54 struct target_reload *GTY((skip)) reload;
55 struct target_expmed *GTY((skip)) expmed;
4bcbfa03 56 struct target_optabs *GTY((skip)) optabs;
3e9c326a 57 struct target_libfuncs *libfuncs;
4391924a 58 struct target_cfgloop *GTY((skip)) cfgloop;
1942d1a9 59 struct target_ira *GTY((skip)) ira;
99b1c316 60 class target_ira_int *GTY((skip)) ira_int;
fa19795e 61 struct target_builtins *GTY((skip)) builtins;
7c6811fe 62 struct target_gcse *GTY((skip)) gcse;
76ee381a 63 struct target_bb_reorder *GTY((skip)) bb_reorder;
af4ba423 64 struct target_lower_subreg *GTY((skip)) lower_subreg;
09a85191 65 struct target_constraints *GTY((skip)) constraints;
3bd36029
RS
66};
67
e83b8e2e 68#if SWITCHABLE_TARGET
99b1c316 69extern class target_globals default_target_globals;
3bd36029 70
99b1c316
MS
71extern class target_globals *save_target_globals (void);
72extern class target_globals *save_target_globals_default_opts (void);
3bd36029 73
cb3e0eac 74inline void
99b1c316 75restore_target_globals (class target_globals *g)
3bd36029
RS
76{
77 this_target_flag_state = g->flag_state;
1942d1a9 78 this_target_regs = g->regs;
5fb0e246 79 this_target_rtl = g->rtl;
1942d1a9
RS
80 this_target_recog = g->recog;
81 this_target_hard_regs = g->hard_regs;
bd785b44 82 this_target_function_abi_info = g->function_abi_info;
1942d1a9
RS
83 this_target_reload = g->reload;
84 this_target_expmed = g->expmed;
4bcbfa03 85 this_target_optabs = g->optabs;
3e9c326a 86 this_target_libfuncs = g->libfuncs;
4391924a 87 this_target_cfgloop = g->cfgloop;
1942d1a9
RS
88 this_target_ira = g->ira;
89 this_target_ira_int = g->ira_int;
fa19795e 90 this_target_builtins = g->builtins;
7c6811fe 91 this_target_gcse = g->gcse;
76ee381a 92 this_target_bb_reorder = g->bb_reorder;
af4ba423 93 this_target_lower_subreg = g->lower_subreg;
09a85191 94 this_target_constraints = g->constraints;
3bd36029
RS
95}
96#endif
97
98#endif