]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/target-globals.c
alias.c: Reorder #include statements and remove duplicates.
[thirdparty/gcc.git] / gcc / target-globals.c
1 /* Target-dependent globals.
2 Copyright (C) 2010-2015 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
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.
10
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.
15
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/>. */
19
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "backend.h"
24 #include "rtl.h"
25 #include "tree.h"
26 #include "alloc-pool.h"
27 #include "expmed.h"
28 #include "optabs-query.h"
29 #include "insn-config.h"
30 #include "regs.h"
31 #include "ira.h"
32 #include "ira-int.h"
33 #include "alias.h"
34 #include "toplev.h"
35 #include "target-globals.h"
36 #include "flags.h"
37 #include "reload.h"
38 #include "dojump.h"
39 #include "explow.h"
40 #include "calls.h"
41 #include "varasm.h"
42 #include "stmt.h"
43 #include "expr.h"
44 #include "libfuncs.h"
45 #include "cfgloop.h"
46 #include "builtins.h"
47 #include "gcse.h"
48 #include "bb-reorder.h"
49 #include "lower-subreg.h"
50
51 #if SWITCHABLE_TARGET
52 struct target_globals default_target_globals = {
53 &default_target_flag_state,
54 &default_target_regs,
55 &default_target_rtl,
56 &default_target_recog,
57 &default_target_hard_regs,
58 &default_target_reload,
59 &default_target_expmed,
60 &default_target_optabs,
61 &default_target_libfuncs,
62 &default_target_cfgloop,
63 &default_target_ira,
64 &default_target_ira_int,
65 &default_target_builtins,
66 &default_target_gcse,
67 &default_target_bb_reorder,
68 &default_target_lower_subreg
69 };
70
71 struct target_globals *
72 save_target_globals (void)
73 {
74 struct target_globals *g = ggc_cleared_alloc <target_globals> ();
75 g->flag_state = XCNEW (struct target_flag_state);
76 g->regs = XCNEW (struct target_regs);
77 g->rtl = ggc_cleared_alloc<target_rtl> ();
78 g->recog = XCNEW (struct target_recog);
79 g->hard_regs = XCNEW (struct target_hard_regs);
80 g->reload = XCNEW (struct target_reload);
81 g->expmed = XCNEW (struct target_expmed);
82 g->optabs = XCNEW (struct target_optabs);
83 g->libfuncs = ggc_cleared_alloc<target_libfuncs> ();
84 g->cfgloop = XCNEW (struct target_cfgloop);
85 g->ira = XCNEW (struct target_ira);
86 g->ira_int = XCNEW (struct target_ira_int);
87 g->builtins = XCNEW (struct target_builtins);
88 g->gcse = XCNEW (struct target_gcse);
89 g->bb_reorder = XCNEW (struct target_bb_reorder);
90 g->lower_subreg = XCNEW (struct target_lower_subreg);
91 restore_target_globals (g);
92 init_reg_sets ();
93 target_reinit ();
94 return g;
95 }
96
97 /* Like save_target_globals() above, but set *this_target_optabs
98 correctly when a previous function has changed
99 *this_target_optabs. */
100
101 struct target_globals *
102 save_target_globals_default_opts ()
103 {
104 struct target_globals *globals;
105
106 if (optimization_current_node != optimization_default_node)
107 {
108 tree opts = optimization_current_node;
109 /* Temporarily switch to the default optimization node, so that
110 *this_target_optabs is set to the default, not reflecting
111 whatever a previous function used for the optimize
112 attribute. */
113 optimization_current_node = optimization_default_node;
114 cl_optimization_restore
115 (&global_options,
116 TREE_OPTIMIZATION (optimization_default_node));
117 globals = save_target_globals ();
118 optimization_current_node = opts;
119 cl_optimization_restore (&global_options,
120 TREE_OPTIMIZATION (opts));
121 return globals;
122 }
123 return save_target_globals ();
124 }
125
126 target_globals::~target_globals ()
127 {
128 /* default_target_globals points to static data so shouldn't be freed. */
129 if (this != &default_target_globals)
130 {
131 ira_int->~target_ira_int ();
132 hard_regs->finalize ();
133 XDELETE (flag_state);
134 XDELETE (regs);
135 XDELETE (recog);
136 XDELETE (hard_regs);
137 XDELETE (reload);
138 XDELETE (expmed);
139 XDELETE (optabs);
140 XDELETE (cfgloop);
141 XDELETE (ira);
142 XDELETE (ira_int);
143 XDELETE (builtins);
144 XDELETE (gcse);
145 XDELETE (bb_reorder);
146 XDELETE (lower_subreg);
147 }
148 }
149
150 #endif