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