mips.h (set_volatile): Delete.
[official-gcc.git] / gcc / ra.h
blobd35d2013d6c4e9ff9b8df3fb1a1836c3d2943bb5
1 /* Define per-register tables for data flow info and register allocation.
2 Copyright (C) 2007 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
9 version.
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.
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/>. */
20 #ifndef GCC_RA_H
21 #define GCC_RA_H
23 #include "regs.h"
25 struct allocno
27 int reg;
28 /* Gives the number of consecutive hard registers needed by that
29 pseudo reg. */
30 int size;
32 /* Number of calls crossed by each allocno. */
33 int calls_crossed;
35 /* Number of calls that might throw crossed by each allocno. */
36 int throwing_calls_crossed;
38 /* Number of refs to each allocno. */
39 int n_refs;
41 /* Frequency of uses of each allocno. */
42 int freq;
44 /* Guess at live length of each allocno.
45 This is actually the max of the live lengths of the regs. */
46 int live_length;
48 /* Set of hard regs conflicting with allocno N. */
50 HARD_REG_SET hard_reg_conflicts;
52 /* Set of hard regs preferred by allocno N.
53 This is used to make allocnos go into regs that are copied to or from them,
54 when possible, to reduce register shuffling. */
56 HARD_REG_SET hard_reg_preferences;
58 /* Similar, but just counts register preferences made in simple copy
59 operations, rather than arithmetic. These are given priority because
60 we can always eliminate an insn by using these, but using a register
61 in the above list won't always eliminate an insn. */
63 HARD_REG_SET hard_reg_copy_preferences;
65 /* Similar to hard_reg_preferences, but includes bits for subsequent
66 registers when an allocno is multi-word. The above variable is used for
67 allocation while this is used to build reg_someone_prefers, below. */
69 HARD_REG_SET hard_reg_full_preferences;
71 /* Set of hard registers that some later allocno has a preference for. */
73 HARD_REG_SET regs_someone_prefers;
75 #ifdef STACK_REGS
76 /* Set to true if allocno can't be allocated in the stack register. */
77 bool no_stack_reg;
78 #endif
80 extern struct allocno *allocno;
82 /* In ra-conflict.c */
84 /* Number of pseudo-registers which are candidates for allocation. */
86 extern int max_allocno;
88 /* max_allocno by max_allocno compressed triangular bit matrix,
89 recording whether two allocnos conflict (can't go in the same
90 hardware register). */
92 extern HOST_WIDEST_FAST_INT *conflicts;
94 /* Indexed by (pseudo) reg number, gives the allocno, or -1
95 for pseudo registers which are not to be allocated. */
97 extern int *reg_allocno;
99 /* Precalculated partial bit number in the compressed triangular bit matrix.
100 For two allocnos, the final bit number is: partial_bitnum[LOW] + HIGH. */
102 extern HOST_WIDE_INT *partial_bitnum;
104 /* Size in bits of the compressed triangular bit matrix. */
106 extern HOST_WIDE_INT max_bitnum;
108 /* The pool to allocate the adjacency list elements from. */
110 extern alloc_pool adjacency_pool;
112 /* The maximum number of neighbors stored in the neighbors vector before
113 we have to chain in another vector. */
115 #define ADJACENCY_VEC_LENGTH 30
117 /* Conflict graph adjacency list. */
119 typedef struct adjacency_list_d
121 int neighbors[ADJACENCY_VEC_LENGTH];
122 unsigned int index;
123 struct adjacency_list_d *next;
124 } adjacency_t;
126 extern adjacency_t **adjacency;
128 /* Add NEIGHBOR to ALLOC_NO's adjacency list. It is assumed the caller
129 has already determined that NEIGHBOR is not already neighbor by
130 checking the conflict bit matrix. */
132 static inline void
133 add_neighbor (int alloc_no, int neighbor)
135 adjacency_t *adjlist = adjacency[alloc_no];
137 if (adjlist == NULL || adjlist->index == ADJACENCY_VEC_LENGTH)
139 adjacency_t *new = pool_alloc (adjacency_pool);
140 new->index = 0;
141 new->next = adjlist;
142 adjlist = new;
143 adjacency[alloc_no] = adjlist;
146 adjlist->neighbors[adjlist->index++] = neighbor;
149 /* Iterator for adjacency lists. */
151 typedef struct adjacency_iterator_d
153 adjacency_t *vec;
154 unsigned int idx;
155 } adjacency_iter;
157 /* Initialize a single adjacency list iterator. */
159 static inline int
160 adjacency_iter_init (adjacency_iter *ai, int allocno1)
162 ai->vec = adjacency[allocno1];
163 ai->idx = 0;
164 return ai->vec != NULL;
167 /* Test whether we have visited all of the neighbors. */
169 static inline int
170 adjacency_iter_done (adjacency_iter *ai)
172 return ai->idx > ai->vec->index;
175 /* Advance to the next neighbor in AI. */
177 static inline int
178 adjacency_iter_next (adjacency_iter *ai)
180 unsigned int idx = ai->idx;
181 int neighbor = ai->vec->neighbors[idx++];
182 if (idx >= ai->vec->index && ai->vec->next != NULL)
184 ai->vec = ai->vec->next;
185 ai->idx = 0;
187 else
188 ai->idx = idx;
189 return neighbor;
192 /* Return the one basic block regno is used in. If regno is used
193 in more than one basic block or if it is unknown which block it
194 is used in, return 0. */
196 static inline int
197 regno_basic_block (int regno)
199 int block = REG_BASIC_BLOCK (regno);
200 if (block < 0)
201 block = 0;
202 return block;
205 extern void global_conflicts (void);
207 /* In global.c */
209 /* Macro to visit all of IN_ALLOCNO's neighbors. Neighbors are
210 returned in OUT_ALLOCNO for each iteration of the loop. */
212 #define FOR_EACH_CONFLICT(IN_ALLOCNO, OUT_ALLOCNO, ITER) \
213 if (!adjacency || !adjacency_iter_init (&(ITER), (IN_ALLOCNO))) \
215 else \
216 for ((OUT_ALLOCNO) = adjacency_iter_next (&(ITER)); \
217 !adjacency_iter_done (&(ITER)); \
218 (OUT_ALLOCNO) = adjacency_iter_next (&(ITER)))
220 extern void ra_init_live_subregs (bool, sbitmap *, int *, int, rtx);
221 extern bool conflict_p (int, int);
223 #endif /* GCC_RA_H */