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"
27 #include "optabs-query.h"
28 #include "insn-config.h"
33 #include "target-globals.h"
40 #include "bb-reorder.h"
41 #include "lower-subreg.h"
44 struct target_globals default_target_globals
= {
45 &default_target_flag_state
,
48 &default_target_recog
,
49 &default_target_hard_regs
,
50 &default_target_reload
,
51 &default_target_expmed
,
52 &default_target_optabs
,
53 &default_target_libfuncs
,
54 &default_target_cfgloop
,
56 &default_target_ira_int
,
57 &default_target_builtins
,
59 &default_target_bb_reorder
,
60 &default_target_lower_subreg
63 struct target_globals
*
64 save_target_globals (void)
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
);
69 g
->rtl
= ggc_cleared_alloc
<target_rtl
> ();
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
);
75 g
->libfuncs
= ggc_cleared_alloc
<target_libfuncs
> ();
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
);
83 restore_target_globals (g
);
89 /* Like save_target_globals() above, but set *this_target_optabs
90 correctly when a previous function has changed
91 *this_target_optabs. */
93 struct target_globals
*
94 save_target_globals_default_opts ()
96 struct target_globals
*globals
;
98 if (optimization_current_node
!= optimization_default_node
)
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
105 optimization_current_node
= optimization_default_node
;
106 cl_optimization_restore
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
));
115 return save_target_globals ();
118 target_globals::~target_globals ()
120 /* default_target_globals points to static data so shouldn't be freed. */
121 if (this != &default_target_globals
)
123 ira_int
->~target_ira_int ();
124 hard_regs
->finalize ();
125 XDELETE (flag_state
);
137 XDELETE (bb_reorder
);
138 XDELETE (lower_subreg
);