]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/target-globals.c
Update copyright years.
[thirdparty/gcc.git] / gcc / target-globals.c
CommitLineData
3bd36029 1/* Target-dependent globals.
818ab71a 2 Copyright (C) 2010-2016 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#include "config.h"
21#include "system.h"
22#include "coretypes.h"
c7131fb2 23#include "backend.h"
957060b5
AM
24#include "rtl.h"
25#include "tree.h"
957060b5
AM
26#include "expmed.h"
27#include "optabs-query.h"
3bd36029 28#include "insn-config.h"
957060b5
AM
29#include "regs.h"
30#include "ira.h"
31#include "ira-int.h"
3bd36029
RS
32#include "toplev.h"
33#include "target-globals.h"
34#include "flags.h"
d474db84 35#include "reload.h"
3e9c326a 36#include "libfuncs.h"
4391924a 37#include "cfgloop.h"
fa19795e 38#include "builtins.h"
7c6811fe 39#include "gcse.h"
76ee381a 40#include "bb-reorder.h"
af4ba423 41#include "lower-subreg.h"
3bd36029
RS
42
43#if SWITCHABLE_TARGET
44struct target_globals default_target_globals = {
939dcd0d 45 &default_target_flag_state,
5fb0e246 46 &default_target_regs,
6642445b 47 &default_target_rtl,
4cc8d9d2 48 &default_target_recog,
d474db84 49 &default_target_hard_regs,
462f85ce 50 &default_target_reload,
4bcbfa03 51 &default_target_expmed,
3e9c326a 52 &default_target_optabs,
4391924a 53 &default_target_libfuncs,
afcc66c4
RS
54 &default_target_cfgloop,
55 &default_target_ira,
fa19795e 56 &default_target_ira_int,
7c6811fe 57 &default_target_builtins,
76ee381a 58 &default_target_gcse,
af4ba423
KZ
59 &default_target_bb_reorder,
60 &default_target_lower_subreg
3bd36029
RS
61};
62
63struct target_globals *
64save_target_globals (void)
65{
1942d1a9
RS
66 struct target_globals *g = ggc_cleared_alloc <target_globals> ();
67 g->flag_state = XCNEW (struct target_flag_state);
68 g->regs = XCNEW (struct target_regs);
766090c2 69 g->rtl = ggc_cleared_alloc<target_rtl> ();
1942d1a9
RS
70 g->recog = XCNEW (struct target_recog);
71 g->hard_regs = XCNEW (struct target_hard_regs);
72 g->reload = XCNEW (struct target_reload);
73 g->expmed = XCNEW (struct target_expmed);
74 g->optabs = XCNEW (struct target_optabs);
766090c2 75 g->libfuncs = ggc_cleared_alloc<target_libfuncs> ();
1942d1a9
RS
76 g->cfgloop = XCNEW (struct target_cfgloop);
77 g->ira = XCNEW (struct target_ira);
78 g->ira_int = XCNEW (struct target_ira_int);
79 g->builtins = XCNEW (struct target_builtins);
80 g->gcse = XCNEW (struct target_gcse);
81 g->bb_reorder = XCNEW (struct target_bb_reorder);
82 g->lower_subreg = XCNEW (struct target_lower_subreg);
3bd36029 83 restore_target_globals (g);
77f55879 84 init_reg_sets ();
3bd36029
RS
85 target_reinit ();
86 return g;
87}
88
135204dd
AH
89/* Like save_target_globals() above, but set *this_target_optabs
90 correctly when a previous function has changed
91 *this_target_optabs. */
92
93struct target_globals *
94save_target_globals_default_opts ()
95{
96 struct target_globals *globals;
97
98 if (optimization_current_node != optimization_default_node)
99 {
100 tree opts = optimization_current_node;
101 /* Temporarily switch to the default optimization node, so that
102 *this_target_optabs is set to the default, not reflecting
103 whatever a previous function used for the optimize
104 attribute. */
105 optimization_current_node = optimization_default_node;
106 cl_optimization_restore
107 (&global_options,
108 TREE_OPTIMIZATION (optimization_default_node));
109 globals = save_target_globals ();
110 optimization_current_node = opts;
111 cl_optimization_restore (&global_options,
112 TREE_OPTIMIZATION (opts));
113 return globals;
114 }
115 return save_target_globals ();
116}
117
1942d1a9
RS
118target_globals::~target_globals ()
119{
120 /* default_target_globals points to static data so shouldn't be freed. */
121 if (this != &default_target_globals)
122 {
ad01608e 123 ira_int->~target_ira_int ();
6969eb0d 124 hard_regs->finalize ();
1942d1a9
RS
125 XDELETE (flag_state);
126 XDELETE (regs);
127 XDELETE (recog);
128 XDELETE (hard_regs);
129 XDELETE (reload);
130 XDELETE (expmed);
131 XDELETE (optabs);
132 XDELETE (cfgloop);
133 XDELETE (ira);
134 XDELETE (ira_int);
135 XDELETE (builtins);
136 XDELETE (gcse);
137 XDELETE (bb_reorder);
138 XDELETE (lower_subreg);
139 }
140}
141
3bd36029 142#endif