* g++.dg/template/using30.C: Move ...
[official-gcc.git] / gcc / target-globals.c
blob2e03c5cb3bd482923d8dee504e1d358a73452cac
1 /* Target-dependent globals.
2 Copyright (C) 2010-2014 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
9 version.
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
14 for more details.
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/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "insn-config.h"
25 #include "machmode.h"
26 #include "tree.h"
27 #include "ggc.h"
28 #include "toplev.h"
29 #include "target-globals.h"
30 #include "flags.h"
31 #include "regs.h"
32 #include "rtl.h"
33 #include "hard-reg-set.h"
34 #include "reload.h"
35 #include "expmed.h"
36 #include "expr.h"
37 #include "insn-codes.h"
38 #include "optabs.h"
39 #include "libfuncs.h"
40 #include "cfgloop.h"
41 #include "ira-int.h"
42 #include "builtins.h"
43 #include "gcse.h"
44 #include "bb-reorder.h"
45 #include "lower-subreg.h"
46 #include "recog.h"
48 #if SWITCHABLE_TARGET
49 struct target_globals default_target_globals = {
50 &default_target_flag_state,
51 &default_target_regs,
52 &default_target_rtl,
53 &default_target_recog,
54 &default_target_hard_regs,
55 &default_target_reload,
56 &default_target_expmed,
57 &default_target_optabs,
58 &default_target_libfuncs,
59 &default_target_cfgloop,
60 &default_target_ira,
61 &default_target_ira_int,
62 &default_target_builtins,
63 &default_target_gcse,
64 &default_target_bb_reorder,
65 &default_target_lower_subreg
68 struct target_globals *
69 save_target_globals (void)
71 struct target_globals *g = ggc_cleared_alloc <target_globals> ();
72 g->flag_state = XCNEW (struct target_flag_state);
73 g->regs = XCNEW (struct target_regs);
74 g->rtl = ggc_cleared_alloc<target_rtl> ();
75 g->recog = XCNEW (struct target_recog);
76 g->hard_regs = XCNEW (struct target_hard_regs);
77 g->reload = XCNEW (struct target_reload);
78 g->expmed = XCNEW (struct target_expmed);
79 g->optabs = XCNEW (struct target_optabs);
80 g->libfuncs = ggc_cleared_alloc<target_libfuncs> ();
81 g->cfgloop = XCNEW (struct target_cfgloop);
82 g->ira = XCNEW (struct target_ira);
83 g->ira_int = XCNEW (struct target_ira_int);
84 g->builtins = XCNEW (struct target_builtins);
85 g->gcse = XCNEW (struct target_gcse);
86 g->bb_reorder = XCNEW (struct target_bb_reorder);
87 g->lower_subreg = XCNEW (struct target_lower_subreg);
88 restore_target_globals (g);
89 init_reg_sets ();
90 target_reinit ();
91 return g;
94 /* Like save_target_globals() above, but set *this_target_optabs
95 correctly when a previous function has changed
96 *this_target_optabs. */
98 struct target_globals *
99 save_target_globals_default_opts ()
101 struct target_globals *globals;
103 if (optimization_current_node != optimization_default_node)
105 tree opts = optimization_current_node;
106 /* Temporarily switch to the default optimization node, so that
107 *this_target_optabs is set to the default, not reflecting
108 whatever a previous function used for the optimize
109 attribute. */
110 optimization_current_node = optimization_default_node;
111 cl_optimization_restore
112 (&global_options,
113 TREE_OPTIMIZATION (optimization_default_node));
114 globals = save_target_globals ();
115 optimization_current_node = opts;
116 cl_optimization_restore (&global_options,
117 TREE_OPTIMIZATION (opts));
118 return globals;
120 return save_target_globals ();
123 target_globals::~target_globals ()
125 /* default_target_globals points to static data so shouldn't be freed. */
126 if (this != &default_target_globals)
128 ira_int->~target_ira_int ();
129 hard_regs->finalize ();
130 XDELETE (flag_state);
131 XDELETE (regs);
132 XDELETE (recog);
133 XDELETE (hard_regs);
134 XDELETE (reload);
135 XDELETE (expmed);
136 XDELETE (optabs);
137 XDELETE (cfgloop);
138 XDELETE (ira);
139 XDELETE (ira_int);
140 XDELETE (builtins);
141 XDELETE (gcse);
142 XDELETE (bb_reorder);
143 XDELETE (lower_subreg);
147 #endif