1 /* Target-dependent globals.
2 Copyright (C) 2010-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
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
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
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
24 #include "insn-config.h"
28 #include "double-int.h"
37 #include "target-globals.h"
41 #include "hard-reg-set.h"
46 #include "statistics.h"
48 #include "fixed-value.h"
56 #include "insn-codes.h"
63 #include "bb-reorder.h"
64 #include "lower-subreg.h"
68 struct target_globals default_target_globals
= {
69 &default_target_flag_state
,
72 &default_target_recog
,
73 &default_target_hard_regs
,
74 &default_target_reload
,
75 &default_target_expmed
,
76 &default_target_optabs
,
77 &default_target_libfuncs
,
78 &default_target_cfgloop
,
80 &default_target_ira_int
,
81 &default_target_builtins
,
83 &default_target_bb_reorder
,
84 &default_target_lower_subreg
87 struct target_globals
*
88 save_target_globals (void)
90 struct target_globals
*g
= ggc_cleared_alloc
<target_globals
> ();
91 g
->flag_state
= XCNEW (struct target_flag_state
);
92 g
->regs
= XCNEW (struct target_regs
);
93 g
->rtl
= ggc_cleared_alloc
<target_rtl
> ();
94 g
->recog
= XCNEW (struct target_recog
);
95 g
->hard_regs
= XCNEW (struct target_hard_regs
);
96 g
->reload
= XCNEW (struct target_reload
);
97 g
->expmed
= XCNEW (struct target_expmed
);
98 g
->optabs
= XCNEW (struct target_optabs
);
99 g
->libfuncs
= ggc_cleared_alloc
<target_libfuncs
> ();
100 g
->cfgloop
= XCNEW (struct target_cfgloop
);
101 g
->ira
= XCNEW (struct target_ira
);
102 g
->ira_int
= XCNEW (struct target_ira_int
);
103 g
->builtins
= XCNEW (struct target_builtins
);
104 g
->gcse
= XCNEW (struct target_gcse
);
105 g
->bb_reorder
= XCNEW (struct target_bb_reorder
);
106 g
->lower_subreg
= XCNEW (struct target_lower_subreg
);
107 restore_target_globals (g
);
113 /* Like save_target_globals() above, but set *this_target_optabs
114 correctly when a previous function has changed
115 *this_target_optabs. */
117 struct target_globals
*
118 save_target_globals_default_opts ()
120 struct target_globals
*globals
;
122 if (optimization_current_node
!= optimization_default_node
)
124 tree opts
= optimization_current_node
;
125 /* Temporarily switch to the default optimization node, so that
126 *this_target_optabs is set to the default, not reflecting
127 whatever a previous function used for the optimize
129 optimization_current_node
= optimization_default_node
;
130 cl_optimization_restore
132 TREE_OPTIMIZATION (optimization_default_node
));
133 globals
= save_target_globals ();
134 optimization_current_node
= opts
;
135 cl_optimization_restore (&global_options
,
136 TREE_OPTIMIZATION (opts
));
139 return save_target_globals ();
142 target_globals::~target_globals ()
144 /* default_target_globals points to static data so shouldn't be freed. */
145 if (this != &default_target_globals
)
147 ira_int
->~target_ira_int ();
148 hard_regs
->finalize ();
149 XDELETE (flag_state
);
161 XDELETE (bb_reorder
);
162 XDELETE (lower_subreg
);