1 /* Target-dependent globals.
2 Copyright (C) 2010 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"
24 #include "insn-config.h"
28 #include "target-globals.h"
32 #include "hard-reg-set.h"
42 #include "bb-reorder.h"
45 struct target_globals default_target_globals
= {
46 &default_target_flag_state
,
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
62 struct target_globals
*
63 save_target_globals (void)
65 struct target_globals
*g
;
67 g
= ggc_alloc_target_globals ();
68 g
->flag_state
= XCNEW (struct target_flag_state
);
69 g
->regs
= XCNEW (struct target_regs
);
70 g
->rtl
= ggc_alloc_cleared_target_rtl ();
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_alloc_cleared_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 restore_target_globals (g
);