OSDN Git Service

677aa94dddf5f983e52fc6d3dd51d68d10d2c51c
[pf3gnuchains/gcc-fork.git] / gcc / target-globals.h
1 /* Target-dependent globals.
2    Copyright (C) 2010  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 #ifndef TARGET_GLOBALS_H
21 #define TARGET_GLOBALS_H 1
22
23 #if SWITCHABLE_TARGET
24 extern struct target_flag_state *this_target_flag_state;
25 extern struct target_regs *this_target_regs;
26 extern struct target_rtl *this_target_rtl;
27 extern struct target_hard_regs *this_target_hard_regs;
28 extern struct target_reload *this_target_reload;
29
30 struct GTY(()) target_globals {
31   struct target_flag_state *GTY((skip)) flag_state;
32   struct target_regs *GTY((skip)) regs;
33   struct target_rtl *rtl;
34   struct target_hard_regs *GTY((skip)) hard_regs;
35   struct target_reload *GTY((skip)) reload;
36 };
37
38 extern struct target_globals default_target_globals;
39
40 extern struct target_globals *save_target_globals (void);
41
42 static inline void
43 restore_target_globals (struct target_globals *g)
44 {
45   this_target_flag_state = g->flag_state;
46   this_target_regs = g->regs;
47   this_target_rtl = g->rtl;
48   this_target_hard_regs = g->hard_regs;
49   this_target_reload = g->reload;
50 }
51 #endif
52
53 #endif