Update gcc-50 to SVN version 221572
[dragonfly.git] / contrib / gcc-5.0 / gcc / regset.h
1 /* Define regsets.
2    Copyright (C) 1987-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 #ifndef GCC_REGSET_H
21 #define GCC_REGSET_H
22
23 /* TODO: regset is just a bitmap in its implementation.  The compiler does
24    not consistently use one or the other, i.e. sometimes variables are
25    declared as bitmap but they are actually regsets and regset accessors
26    are used, and vice versa, or mixed (see e.g. spilled_regs in IRA).
27
28    This should be cleaned up, either by just dropping the regset type, or
29    by changing all bitmaps that are really regsets to the regset type.  For
30    the latter option, a good start would be to change everything allocated
31    on the reg_obstack to regset.  */
32
33 #include "bitmap.h"             /* For bitmap_iterator.  */
34 #include "hard-reg-set.h"
35
36 /* Head of register set linked list.  */
37 typedef bitmap_head regset_head;
38
39 /* A pointer to a regset_head.  */
40 typedef bitmap regset;
41
42 /* Allocate a register set with oballoc.  */
43 #define ALLOC_REG_SET(OBSTACK) BITMAP_ALLOC (OBSTACK)
44
45 /* Do any cleanup needed on a regset when it is no longer used.  */
46 #define FREE_REG_SET(REGSET) BITMAP_FREE (REGSET)
47
48 /* Initialize a new regset.  */
49 #define INIT_REG_SET(HEAD) bitmap_initialize (HEAD, &reg_obstack)
50
51 /* Clear a register set by freeing up the linked list.  */
52 #define CLEAR_REG_SET(HEAD) bitmap_clear (HEAD)
53
54 /* Copy a register set to another register set.  */
55 #define COPY_REG_SET(TO, FROM) bitmap_copy (TO, FROM)
56
57 /* Compare two register sets.  */
58 #define REG_SET_EQUAL_P(A, B) bitmap_equal_p (A, B)
59
60 /* `and' a register set with a second register set.  */
61 #define AND_REG_SET(TO, FROM) bitmap_and_into (TO, FROM)
62
63 /* `and' the complement of a register set with a register set.  */
64 #define AND_COMPL_REG_SET(TO, FROM) bitmap_and_compl_into (TO, FROM)
65
66 /* Inclusive or a register set with a second register set.  */
67 #define IOR_REG_SET(TO, FROM) bitmap_ior_into (TO, FROM)
68
69 /* Exclusive or a register set with a second register set.  */
70 #define XOR_REG_SET(TO, FROM) bitmap_xor_into (TO, FROM)
71
72 /* Or into TO the register set FROM1 `and'ed with the complement of FROM2.  */
73 #define IOR_AND_COMPL_REG_SET(TO, FROM1, FROM2) \
74   bitmap_ior_and_compl_into (TO, FROM1, FROM2)
75
76 /* Clear a single register in a register set.  */
77 #define CLEAR_REGNO_REG_SET(HEAD, REG) bitmap_clear_bit (HEAD, REG)
78
79 /* Set a single register in a register set.  */
80 #define SET_REGNO_REG_SET(HEAD, REG) bitmap_set_bit (HEAD, REG)
81
82 /* Return true if a register is set in a register set.  */
83 #define REGNO_REG_SET_P(TO, REG) bitmap_bit_p (TO, REG)
84
85 /* Copy the hard registers in a register set to the hard register set.  */
86 extern void reg_set_to_hard_reg_set (HARD_REG_SET *, const_bitmap);
87 #define REG_SET_TO_HARD_REG_SET(TO, FROM)                               \
88 do {                                                                    \
89   CLEAR_HARD_REG_SET (TO);                                              \
90   reg_set_to_hard_reg_set (&TO, FROM);                                  \
91 } while (0)
92
93 typedef bitmap_iterator reg_set_iterator;
94
95 /* Loop over all registers in REGSET, starting with MIN, setting REGNUM to the
96    register number and executing CODE for all registers that are set.  */
97 #define EXECUTE_IF_SET_IN_REG_SET(REGSET, MIN, REGNUM, RSI)     \
98   EXECUTE_IF_SET_IN_BITMAP (REGSET, MIN, REGNUM, RSI)
99
100 /* Loop over all registers in REGSET1 and REGSET2, starting with MIN, setting
101    REGNUM to the register number and executing CODE for all registers that are
102    set in the first regset and not set in the second.  */
103 #define EXECUTE_IF_AND_COMPL_IN_REG_SET(REGSET1, REGSET2, MIN, REGNUM, RSI) \
104   EXECUTE_IF_AND_COMPL_IN_BITMAP (REGSET1, REGSET2, MIN, REGNUM, RSI)
105
106 /* Loop over all registers in REGSET1 and REGSET2, starting with MIN, setting
107    REGNUM to the register number and executing CODE for all registers that are
108    set in both regsets.  */
109 #define EXECUTE_IF_AND_IN_REG_SET(REGSET1, REGSET2, MIN, REGNUM, RSI) \
110   EXECUTE_IF_AND_IN_BITMAP (REGSET1, REGSET2, MIN, REGNUM, RSI) \
111
112 /* Same information as REGS_INVALIDATED_BY_CALL but in regset form to be used
113    in dataflow more conveniently.  */
114
115 extern regset regs_invalidated_by_call_regset;
116
117 /* Same information as FIXED_REG_SET but in regset form.  */
118 extern regset fixed_reg_set_regset;
119
120 /* An obstack for regsets.  */
121 extern bitmap_obstack reg_obstack;
122
123 /* In df-core.c (which should use regset consistently instead of bitmap...)  */
124 extern void dump_regset (regset, FILE *);
125
126 #endif /* GCC_REGSET_H */