1 /* Target-dependent globals.
2    Copyright (C) 2010-2016 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 "expmed.h"
27 #include "optabs-query.h"
28 #include "insn-config.h"
29 #include "regs.h"
30 #include "ira.h"
31 #include "ira-int.h"
32 #include "toplev.h"
33 #include "target-globals.h"
34 #include "flags.h"
35 #include "reload.h"
36 #include "libfuncs.h"
37 #include "cfgloop.h"
38 #include "builtins.h"
39 #include "gcse.h"
40 #include "bb-reorder.h"
41 #include "lower-subreg.h"
42 
43 #if SWITCHABLE_TARGET
44 struct target_globals default_target_globals = {
45   &default_target_flag_state,
46   &default_target_regs,
47   &default_target_rtl,
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,
55   &default_target_ira,
56   &default_target_ira_int,
57   &default_target_builtins,
58   &default_target_gcse,
59   &default_target_bb_reorder,
60   &default_target_lower_subreg
61 };
62 
63 struct target_globals *
save_target_globals(void)64 save_target_globals (void)
65 {
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);
84   init_reg_sets ();
85   target_reinit ();
86   return g;
87 }
88 
89 /* Like save_target_globals() above, but set *this_target_optabs
90    correctly when a previous function has changed
91    *this_target_optabs.  */
92 
93 struct target_globals *
save_target_globals_default_opts()94 save_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 
~target_globals()118 target_globals::~target_globals ()
119 {
120   /* default_target_globals points to static data so shouldn't be freed.  */
121   if (this != &default_target_globals)
122     {
123       ira_int->~target_ira_int ();
124       hard_regs->finalize ();
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 
142 #endif
143