[40/77] Use scalar_int_mode for extraction_insn fields
[official-gcc.git] / gcc / reginfo.c
blob4239fa3df4e215a5264ab15deb08bfdb57320b2f
1 /* Compute different info about registers.
2 Copyright (C) 1987-2017 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/>. */
21 /* This file contains regscan pass of the compiler and passes for
22 dealing with info about modes of pseudo-registers inside
23 subregisters. It also defines some tables of information about the
24 hardware registers, function init_reg_sets to initialize the
25 tables, and other auxiliary functions to deal with info about
26 registers and their classes. */
28 #include "config.h"
29 #include "system.h"
30 #include "coretypes.h"
31 #include "backend.h"
32 #include "target.h"
33 #include "rtl.h"
34 #include "tree.h"
35 #include "df.h"
36 #include "memmodel.h"
37 #include "tm_p.h"
38 #include "insn-config.h"
39 #include "regs.h"
40 #include "ira.h"
41 #include "recog.h"
42 #include "diagnostic-core.h"
43 #include "reload.h"
44 #include "output.h"
45 #include "tree-pass.h"
47 /* Maximum register number used in this function, plus one. */
49 int max_regno;
51 /* Used to cache the results of simplifiable_subregs. SHAPE is the input
52 parameter and SIMPLIFIABLE_REGS is the result. */
53 struct simplifiable_subreg
55 simplifiable_subreg (const subreg_shape &);
57 subreg_shape shape;
58 HARD_REG_SET simplifiable_regs;
61 struct target_hard_regs default_target_hard_regs;
62 struct target_regs default_target_regs;
63 #if SWITCHABLE_TARGET
64 struct target_hard_regs *this_target_hard_regs = &default_target_hard_regs;
65 struct target_regs *this_target_regs = &default_target_regs;
66 #endif
68 /* Data for initializing fixed_regs. */
69 static const char initial_fixed_regs[] = FIXED_REGISTERS;
71 /* Data for initializing call_used_regs. */
72 static const char initial_call_used_regs[] = CALL_USED_REGISTERS;
74 #ifdef CALL_REALLY_USED_REGISTERS
75 /* Data for initializing call_really_used_regs. */
76 static const char initial_call_really_used_regs[] = CALL_REALLY_USED_REGISTERS;
77 #endif
79 #ifdef CALL_REALLY_USED_REGISTERS
80 #define CALL_REALLY_USED_REGNO_P(X) call_really_used_regs[X]
81 #else
82 #define CALL_REALLY_USED_REGNO_P(X) call_used_regs[X]
83 #endif
85 /* Indexed by hard register number, contains 1 for registers
86 that are being used for global register decls.
87 These must be exempt from ordinary flow analysis
88 and are also considered fixed. */
89 char global_regs[FIRST_PSEUDO_REGISTER];
91 /* Declaration for the global register. */
92 tree global_regs_decl[FIRST_PSEUDO_REGISTER];
94 /* Same information as REGS_INVALIDATED_BY_CALL but in regset form to be used
95 in dataflow more conveniently. */
96 regset regs_invalidated_by_call_regset;
98 /* Same information as FIXED_REG_SET but in regset form. */
99 regset fixed_reg_set_regset;
101 /* The bitmap_obstack is used to hold some static variables that
102 should not be reset after each function is compiled. */
103 static bitmap_obstack persistent_obstack;
105 /* Used to initialize reg_alloc_order. */
106 #ifdef REG_ALLOC_ORDER
107 static int initial_reg_alloc_order[FIRST_PSEUDO_REGISTER] = REG_ALLOC_ORDER;
108 #endif
110 /* The same information, but as an array of unsigned ints. We copy from
111 these unsigned ints to the table above. We do this so the tm.h files
112 do not have to be aware of the wordsize for machines with <= 64 regs.
113 Note that we hard-code 32 here, not HOST_BITS_PER_INT. */
114 #define N_REG_INTS \
115 ((FIRST_PSEUDO_REGISTER + (32 - 1)) / 32)
117 static const unsigned int_reg_class_contents[N_REG_CLASSES][N_REG_INTS]
118 = REG_CLASS_CONTENTS;
120 /* Array containing all of the register names. */
121 static const char *const initial_reg_names[] = REGISTER_NAMES;
123 /* Array containing all of the register class names. */
124 const char * reg_class_names[] = REG_CLASS_NAMES;
126 /* No more global register variables may be declared; true once
127 reginfo has been initialized. */
128 static int no_global_reg_vars = 0;
130 /* Given a register bitmap, turn on the bits in a HARD_REG_SET that
131 correspond to the hard registers, if any, set in that map. This
132 could be done far more efficiently by having all sorts of special-cases
133 with moving single words, but probably isn't worth the trouble. */
134 void
135 reg_set_to_hard_reg_set (HARD_REG_SET *to, const_bitmap from)
137 unsigned i;
138 bitmap_iterator bi;
140 EXECUTE_IF_SET_IN_BITMAP (from, 0, i, bi)
142 if (i >= FIRST_PSEUDO_REGISTER)
143 return;
144 SET_HARD_REG_BIT (*to, i);
148 /* Function called only once per target_globals to initialize the
149 target_hard_regs structure. Once this is done, various switches
150 may override. */
151 void
152 init_reg_sets (void)
154 int i, j;
156 /* First copy the register information from the initial int form into
157 the regsets. */
159 for (i = 0; i < N_REG_CLASSES; i++)
161 CLEAR_HARD_REG_SET (reg_class_contents[i]);
163 /* Note that we hard-code 32 here, not HOST_BITS_PER_INT. */
164 for (j = 0; j < FIRST_PSEUDO_REGISTER; j++)
165 if (int_reg_class_contents[i][j / 32]
166 & ((unsigned) 1 << (j % 32)))
167 SET_HARD_REG_BIT (reg_class_contents[i], j);
170 /* Sanity check: make sure the target macros FIXED_REGISTERS and
171 CALL_USED_REGISTERS had the right number of initializers. */
172 gcc_assert (sizeof fixed_regs == sizeof initial_fixed_regs);
173 gcc_assert (sizeof call_used_regs == sizeof initial_call_used_regs);
174 #ifdef CALL_REALLY_USED_REGISTERS
175 gcc_assert (sizeof call_really_used_regs
176 == sizeof initial_call_really_used_regs);
177 #endif
178 #ifdef REG_ALLOC_ORDER
179 gcc_assert (sizeof reg_alloc_order == sizeof initial_reg_alloc_order);
180 #endif
181 gcc_assert (sizeof reg_names == sizeof initial_reg_names);
183 memcpy (fixed_regs, initial_fixed_regs, sizeof fixed_regs);
184 memcpy (call_used_regs, initial_call_used_regs, sizeof call_used_regs);
185 #ifdef CALL_REALLY_USED_REGISTERS
186 memcpy (call_really_used_regs, initial_call_really_used_regs,
187 sizeof call_really_used_regs);
188 #endif
189 #ifdef REG_ALLOC_ORDER
190 memcpy (reg_alloc_order, initial_reg_alloc_order, sizeof reg_alloc_order);
191 #endif
192 memcpy (reg_names, initial_reg_names, sizeof reg_names);
194 SET_HARD_REG_SET (accessible_reg_set);
195 SET_HARD_REG_SET (operand_reg_set);
198 /* We need to save copies of some of the register information which
199 can be munged by command-line switches so we can restore it during
200 subsequent back-end reinitialization. */
201 static char saved_fixed_regs[FIRST_PSEUDO_REGISTER];
202 static char saved_call_used_regs[FIRST_PSEUDO_REGISTER];
203 #ifdef CALL_REALLY_USED_REGISTERS
204 static char saved_call_really_used_regs[FIRST_PSEUDO_REGISTER];
205 #endif
206 static const char *saved_reg_names[FIRST_PSEUDO_REGISTER];
207 static HARD_REG_SET saved_accessible_reg_set;
208 static HARD_REG_SET saved_operand_reg_set;
210 /* Save the register information. */
211 void
212 save_register_info (void)
214 /* Sanity check: make sure the target macros FIXED_REGISTERS and
215 CALL_USED_REGISTERS had the right number of initializers. */
216 gcc_assert (sizeof fixed_regs == sizeof saved_fixed_regs);
217 gcc_assert (sizeof call_used_regs == sizeof saved_call_used_regs);
218 memcpy (saved_fixed_regs, fixed_regs, sizeof fixed_regs);
219 memcpy (saved_call_used_regs, call_used_regs, sizeof call_used_regs);
221 /* Likewise for call_really_used_regs. */
222 #ifdef CALL_REALLY_USED_REGISTERS
223 gcc_assert (sizeof call_really_used_regs
224 == sizeof saved_call_really_used_regs);
225 memcpy (saved_call_really_used_regs, call_really_used_regs,
226 sizeof call_really_used_regs);
227 #endif
229 /* And similarly for reg_names. */
230 gcc_assert (sizeof reg_names == sizeof saved_reg_names);
231 memcpy (saved_reg_names, reg_names, sizeof reg_names);
232 COPY_HARD_REG_SET (saved_accessible_reg_set, accessible_reg_set);
233 COPY_HARD_REG_SET (saved_operand_reg_set, operand_reg_set);
236 /* Restore the register information. */
237 static void
238 restore_register_info (void)
240 memcpy (fixed_regs, saved_fixed_regs, sizeof fixed_regs);
241 memcpy (call_used_regs, saved_call_used_regs, sizeof call_used_regs);
243 #ifdef CALL_REALLY_USED_REGISTERS
244 memcpy (call_really_used_regs, saved_call_really_used_regs,
245 sizeof call_really_used_regs);
246 #endif
248 memcpy (reg_names, saved_reg_names, sizeof reg_names);
249 COPY_HARD_REG_SET (accessible_reg_set, saved_accessible_reg_set);
250 COPY_HARD_REG_SET (operand_reg_set, saved_operand_reg_set);
253 /* After switches have been processed, which perhaps alter
254 `fixed_regs' and `call_used_regs', convert them to HARD_REG_SETs. */
255 static void
256 init_reg_sets_1 (void)
258 unsigned int i, j;
259 unsigned int /* machine_mode */ m;
261 restore_register_info ();
263 #ifdef REG_ALLOC_ORDER
264 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
265 inv_reg_alloc_order[reg_alloc_order[i]] = i;
266 #endif
268 /* Let the target tweak things if necessary. */
270 targetm.conditional_register_usage ();
272 /* Compute number of hard regs in each class. */
274 memset (reg_class_size, 0, sizeof reg_class_size);
275 for (i = 0; i < N_REG_CLASSES; i++)
277 bool any_nonfixed = false;
278 for (j = 0; j < FIRST_PSEUDO_REGISTER; j++)
279 if (TEST_HARD_REG_BIT (reg_class_contents[i], j))
281 reg_class_size[i]++;
282 if (!fixed_regs[j])
283 any_nonfixed = true;
285 class_only_fixed_regs[i] = !any_nonfixed;
288 /* Initialize the table of subunions.
289 reg_class_subunion[I][J] gets the largest-numbered reg-class
290 that is contained in the union of classes I and J. */
292 memset (reg_class_subunion, 0, sizeof reg_class_subunion);
293 for (i = 0; i < N_REG_CLASSES; i++)
295 for (j = 0; j < N_REG_CLASSES; j++)
297 HARD_REG_SET c;
298 int k;
300 COPY_HARD_REG_SET (c, reg_class_contents[i]);
301 IOR_HARD_REG_SET (c, reg_class_contents[j]);
302 for (k = 0; k < N_REG_CLASSES; k++)
303 if (hard_reg_set_subset_p (reg_class_contents[k], c)
304 && !hard_reg_set_subset_p (reg_class_contents[k],
305 reg_class_contents
306 [(int) reg_class_subunion[i][j]]))
307 reg_class_subunion[i][j] = (enum reg_class) k;
311 /* Initialize the table of superunions.
312 reg_class_superunion[I][J] gets the smallest-numbered reg-class
313 containing the union of classes I and J. */
315 memset (reg_class_superunion, 0, sizeof reg_class_superunion);
316 for (i = 0; i < N_REG_CLASSES; i++)
318 for (j = 0; j < N_REG_CLASSES; j++)
320 HARD_REG_SET c;
321 int k;
323 COPY_HARD_REG_SET (c, reg_class_contents[i]);
324 IOR_HARD_REG_SET (c, reg_class_contents[j]);
325 for (k = 0; k < N_REG_CLASSES; k++)
326 if (hard_reg_set_subset_p (c, reg_class_contents[k]))
327 break;
329 reg_class_superunion[i][j] = (enum reg_class) k;
333 /* Initialize the tables of subclasses and superclasses of each reg class.
334 First clear the whole table, then add the elements as they are found. */
336 for (i = 0; i < N_REG_CLASSES; i++)
338 for (j = 0; j < N_REG_CLASSES; j++)
339 reg_class_subclasses[i][j] = LIM_REG_CLASSES;
342 for (i = 0; i < N_REG_CLASSES; i++)
344 if (i == (int) NO_REGS)
345 continue;
347 for (j = i + 1; j < N_REG_CLASSES; j++)
348 if (hard_reg_set_subset_p (reg_class_contents[i],
349 reg_class_contents[j]))
351 /* Reg class I is a subclass of J.
352 Add J to the table of superclasses of I. */
353 enum reg_class *p;
355 /* Add I to the table of superclasses of J. */
356 p = &reg_class_subclasses[j][0];
357 while (*p != LIM_REG_CLASSES) p++;
358 *p = (enum reg_class) i;
362 /* Initialize "constant" tables. */
364 CLEAR_HARD_REG_SET (fixed_reg_set);
365 CLEAR_HARD_REG_SET (call_used_reg_set);
366 CLEAR_HARD_REG_SET (call_fixed_reg_set);
367 CLEAR_HARD_REG_SET (regs_invalidated_by_call);
368 if (!regs_invalidated_by_call_regset)
370 bitmap_obstack_initialize (&persistent_obstack);
371 regs_invalidated_by_call_regset = ALLOC_REG_SET (&persistent_obstack);
373 else
374 CLEAR_REG_SET (regs_invalidated_by_call_regset);
375 if (!fixed_reg_set_regset)
376 fixed_reg_set_regset = ALLOC_REG_SET (&persistent_obstack);
377 else
378 CLEAR_REG_SET (fixed_reg_set_regset);
380 AND_HARD_REG_SET (operand_reg_set, accessible_reg_set);
381 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
383 /* As a special exception, registers whose class is NO_REGS are
384 not accepted by `register_operand'. The reason for this change
385 is to allow the representation of special architecture artifacts
386 (such as a condition code register) without extending the rtl
387 definitions. Since registers of class NO_REGS cannot be used
388 as registers in any case where register classes are examined,
389 it is better to apply this exception in a target-independent way. */
390 if (REGNO_REG_CLASS (i) == NO_REGS)
391 CLEAR_HARD_REG_BIT (operand_reg_set, i);
393 /* If a register is too limited to be treated as a register operand,
394 then it should never be allocated to a pseudo. */
395 if (!TEST_HARD_REG_BIT (operand_reg_set, i))
397 fixed_regs[i] = 1;
398 call_used_regs[i] = 1;
401 /* call_used_regs must include fixed_regs. */
402 gcc_assert (!fixed_regs[i] || call_used_regs[i]);
403 #ifdef CALL_REALLY_USED_REGISTERS
404 /* call_used_regs must include call_really_used_regs. */
405 gcc_assert (!call_really_used_regs[i] || call_used_regs[i]);
406 #endif
408 if (fixed_regs[i])
410 SET_HARD_REG_BIT (fixed_reg_set, i);
411 SET_REGNO_REG_SET (fixed_reg_set_regset, i);
414 if (call_used_regs[i])
415 SET_HARD_REG_BIT (call_used_reg_set, i);
417 /* There are a couple of fixed registers that we know are safe to
418 exclude from being clobbered by calls:
420 The frame pointer is always preserved across calls. The arg
421 pointer is if it is fixed. The stack pointer usually is,
422 unless TARGET_RETURN_POPS_ARGS, in which case an explicit
423 CLOBBER will be present. If we are generating PIC code, the
424 PIC offset table register is preserved across calls, though the
425 target can override that. */
427 if (i == STACK_POINTER_REGNUM)
429 else if (global_regs[i])
431 SET_HARD_REG_BIT (regs_invalidated_by_call, i);
432 SET_REGNO_REG_SET (regs_invalidated_by_call_regset, i);
434 else if (i == FRAME_POINTER_REGNUM)
436 else if (!HARD_FRAME_POINTER_IS_FRAME_POINTER
437 && i == HARD_FRAME_POINTER_REGNUM)
439 else if (FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
440 && i == ARG_POINTER_REGNUM && fixed_regs[i])
442 else if (!PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
443 && i == (unsigned) PIC_OFFSET_TABLE_REGNUM && fixed_regs[i])
445 else if (CALL_REALLY_USED_REGNO_P (i))
447 SET_HARD_REG_BIT (regs_invalidated_by_call, i);
448 SET_REGNO_REG_SET (regs_invalidated_by_call_regset, i);
452 COPY_HARD_REG_SET (call_fixed_reg_set, fixed_reg_set);
453 COPY_HARD_REG_SET (fixed_nonglobal_reg_set, fixed_reg_set);
455 /* Preserve global registers if called more than once. */
456 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
458 if (global_regs[i])
460 fixed_regs[i] = call_used_regs[i] = 1;
461 SET_HARD_REG_BIT (fixed_reg_set, i);
462 SET_HARD_REG_BIT (call_used_reg_set, i);
463 SET_HARD_REG_BIT (call_fixed_reg_set, i);
467 memset (have_regs_of_mode, 0, sizeof (have_regs_of_mode));
468 memset (contains_reg_of_mode, 0, sizeof (contains_reg_of_mode));
469 for (m = 0; m < (unsigned int) MAX_MACHINE_MODE; m++)
471 HARD_REG_SET ok_regs, ok_regs2;
472 CLEAR_HARD_REG_SET (ok_regs);
473 CLEAR_HARD_REG_SET (ok_regs2);
474 for (j = 0; j < FIRST_PSEUDO_REGISTER; j++)
475 if (!TEST_HARD_REG_BIT (fixed_nonglobal_reg_set, j)
476 && HARD_REGNO_MODE_OK (j, (machine_mode) m))
478 SET_HARD_REG_BIT (ok_regs, j);
479 if (!fixed_regs[j])
480 SET_HARD_REG_BIT (ok_regs2, j);
483 for (i = 0; i < N_REG_CLASSES; i++)
484 if ((targetm.class_max_nregs ((reg_class_t) i, (machine_mode) m)
485 <= reg_class_size[i])
486 && hard_reg_set_intersect_p (ok_regs, reg_class_contents[i]))
488 contains_reg_of_mode[i][m] = 1;
489 if (hard_reg_set_intersect_p (ok_regs2, reg_class_contents[i]))
491 have_regs_of_mode[m] = 1;
492 contains_allocatable_reg_of_mode[i][m] = 1;
498 /* Compute the table of register modes.
499 These values are used to record death information for individual registers
500 (as opposed to a multi-register mode).
501 This function might be invoked more than once, if the target has support
502 for changing register usage conventions on a per-function basis.
504 void
505 init_reg_modes_target (void)
507 int i, j;
509 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
510 for (j = 0; j < MAX_MACHINE_MODE; j++)
511 hard_regno_nregs[i][j] = HARD_REGNO_NREGS (i, (machine_mode)j);
513 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
515 reg_raw_mode[i] = choose_hard_reg_mode (i, 1, false);
517 /* If we couldn't find a valid mode, just use the previous mode
518 if it is suitable, otherwise fall back on word_mode. */
519 if (reg_raw_mode[i] == VOIDmode)
521 if (i > 0 && hard_regno_nregs[i][reg_raw_mode[i - 1]] == 1)
522 reg_raw_mode[i] = reg_raw_mode[i - 1];
523 else
524 reg_raw_mode[i] = word_mode;
529 /* Finish initializing the register sets and initialize the register modes.
530 This function might be invoked more than once, if the target has support
531 for changing register usage conventions on a per-function basis.
533 void
534 init_regs (void)
536 /* This finishes what was started by init_reg_sets, but couldn't be done
537 until after register usage was specified. */
538 init_reg_sets_1 ();
541 /* The same as previous function plus initializing IRA. */
542 void
543 reinit_regs (void)
545 init_regs ();
546 /* caller_save needs to be re-initialized. */
547 caller_save_initialized_p = false;
548 if (this_target_rtl->target_specific_initialized)
550 ira_init ();
551 recog_init ();
555 /* Initialize some fake stack-frame MEM references for use in
556 memory_move_secondary_cost. */
557 void
558 init_fake_stack_mems (void)
560 int i;
562 for (i = 0; i < MAX_MACHINE_MODE; i++)
563 top_of_stack[i] = gen_rtx_MEM ((machine_mode) i, stack_pointer_rtx);
567 /* Compute cost of moving data from a register of class FROM to one of
568 TO, using MODE. */
571 register_move_cost (machine_mode mode, reg_class_t from, reg_class_t to)
573 return targetm.register_move_cost (mode, from, to);
576 /* Compute cost of moving registers to/from memory. */
579 memory_move_cost (machine_mode mode, reg_class_t rclass, bool in)
581 return targetm.memory_move_cost (mode, rclass, in);
584 /* Compute extra cost of moving registers to/from memory due to reloads.
585 Only needed if secondary reloads are required for memory moves. */
587 memory_move_secondary_cost (machine_mode mode, reg_class_t rclass,
588 bool in)
590 reg_class_t altclass;
591 int partial_cost = 0;
592 /* We need a memory reference to feed to SECONDARY... macros. */
593 /* mem may be unused even if the SECONDARY_ macros are defined. */
594 rtx mem ATTRIBUTE_UNUSED = top_of_stack[(int) mode];
596 altclass = secondary_reload_class (in ? 1 : 0, rclass, mode, mem);
598 if (altclass == NO_REGS)
599 return 0;
601 if (in)
602 partial_cost = register_move_cost (mode, altclass, rclass);
603 else
604 partial_cost = register_move_cost (mode, rclass, altclass);
606 if (rclass == altclass)
607 /* This isn't simply a copy-to-temporary situation. Can't guess
608 what it is, so TARGET_MEMORY_MOVE_COST really ought not to be
609 calling here in that case.
611 I'm tempted to put in an assert here, but returning this will
612 probably only give poor estimates, which is what we would've
613 had before this code anyways. */
614 return partial_cost;
616 /* Check if the secondary reload register will also need a
617 secondary reload. */
618 return memory_move_secondary_cost (mode, altclass, in) + partial_cost;
621 /* Return a machine mode that is legitimate for hard reg REGNO and large
622 enough to save nregs. If we can't find one, return VOIDmode.
623 If CALL_SAVED is true, only consider modes that are call saved. */
624 machine_mode
625 choose_hard_reg_mode (unsigned int regno ATTRIBUTE_UNUSED,
626 unsigned int nregs, bool call_saved)
628 unsigned int /* machine_mode */ m;
629 machine_mode found_mode = VOIDmode, mode;
631 /* We first look for the largest integer mode that can be validly
632 held in REGNO. If none, we look for the largest floating-point mode.
633 If we still didn't find a valid mode, try CCmode. */
635 FOR_EACH_MODE_IN_CLASS (mode, MODE_INT)
636 if ((unsigned) hard_regno_nregs[regno][mode] == nregs
637 && HARD_REGNO_MODE_OK (regno, mode)
638 && (! call_saved || ! HARD_REGNO_CALL_PART_CLOBBERED (regno, mode))
639 && GET_MODE_SIZE (mode) > GET_MODE_SIZE (found_mode))
640 found_mode = mode;
642 FOR_EACH_MODE_IN_CLASS (mode, MODE_FLOAT)
643 if ((unsigned) hard_regno_nregs[regno][mode] == nregs
644 && HARD_REGNO_MODE_OK (regno, mode)
645 && (! call_saved || ! HARD_REGNO_CALL_PART_CLOBBERED (regno, mode))
646 && GET_MODE_SIZE (mode) > GET_MODE_SIZE (found_mode))
647 found_mode = mode;
649 FOR_EACH_MODE_IN_CLASS (mode, MODE_VECTOR_FLOAT)
650 if ((unsigned) hard_regno_nregs[regno][mode] == nregs
651 && HARD_REGNO_MODE_OK (regno, mode)
652 && (! call_saved || ! HARD_REGNO_CALL_PART_CLOBBERED (regno, mode))
653 && GET_MODE_SIZE (mode) > GET_MODE_SIZE (found_mode))
654 found_mode = mode;
656 FOR_EACH_MODE_IN_CLASS (mode, MODE_VECTOR_INT)
657 if ((unsigned) hard_regno_nregs[regno][mode] == nregs
658 && HARD_REGNO_MODE_OK (regno, mode)
659 && (! call_saved || ! HARD_REGNO_CALL_PART_CLOBBERED (regno, mode))
660 && GET_MODE_SIZE (mode) > GET_MODE_SIZE (found_mode))
661 found_mode = mode;
663 if (found_mode != VOIDmode)
664 return found_mode;
666 /* Iterate over all of the CCmodes. */
667 for (m = (unsigned int) CCmode; m < (unsigned int) NUM_MACHINE_MODES; ++m)
669 mode = (machine_mode) m;
670 if ((unsigned) hard_regno_nregs[regno][mode] == nregs
671 && HARD_REGNO_MODE_OK (regno, mode)
672 && (! call_saved || ! HARD_REGNO_CALL_PART_CLOBBERED (regno, mode)))
673 return mode;
676 /* We can't find a mode valid for this register. */
677 return VOIDmode;
680 /* Specify the usage characteristics of the register named NAME.
681 It should be a fixed register if FIXED and a
682 call-used register if CALL_USED. */
683 void
684 fix_register (const char *name, int fixed, int call_used)
686 int i;
687 int reg, nregs;
689 /* Decode the name and update the primary form of
690 the register info. */
692 if ((reg = decode_reg_name_and_count (name, &nregs)) >= 0)
694 gcc_assert (nregs >= 1);
695 for (i = reg; i < reg + nregs; i++)
697 if ((i == STACK_POINTER_REGNUM
698 #ifdef HARD_FRAME_POINTER_REGNUM
699 || i == HARD_FRAME_POINTER_REGNUM
700 #else
701 || i == FRAME_POINTER_REGNUM
702 #endif
704 && (fixed == 0 || call_used == 0))
706 switch (fixed)
708 case 0:
709 switch (call_used)
711 case 0:
712 error ("can%'t use %qs as a call-saved register", name);
713 break;
715 case 1:
716 error ("can%'t use %qs as a call-used register", name);
717 break;
719 default:
720 gcc_unreachable ();
722 break;
724 case 1:
725 switch (call_used)
727 case 1:
728 error ("can%'t use %qs as a fixed register", name);
729 break;
731 case 0:
732 default:
733 gcc_unreachable ();
735 break;
737 default:
738 gcc_unreachable ();
741 else
743 fixed_regs[i] = fixed;
744 call_used_regs[i] = call_used;
745 #ifdef CALL_REALLY_USED_REGISTERS
746 if (fixed == 0)
747 call_really_used_regs[i] = call_used;
748 #endif
752 else
754 warning (0, "unknown register name: %s", name);
758 /* Mark register number I as global. */
759 void
760 globalize_reg (tree decl, int i)
762 location_t loc = DECL_SOURCE_LOCATION (decl);
764 #ifdef STACK_REGS
765 if (IN_RANGE (i, FIRST_STACK_REG, LAST_STACK_REG))
767 error ("stack register used for global register variable");
768 return;
770 #endif
772 if (fixed_regs[i] == 0 && no_global_reg_vars)
773 error_at (loc, "global register variable follows a function definition");
775 if (global_regs[i])
777 warning_at (loc, 0,
778 "register of %qD used for multiple global register variables",
779 decl);
780 inform (DECL_SOURCE_LOCATION (global_regs_decl[i]),
781 "conflicts with %qD", global_regs_decl[i]);
782 return;
785 if (call_used_regs[i] && ! fixed_regs[i])
786 warning_at (loc, 0, "call-clobbered register used for global register variable");
788 global_regs[i] = 1;
789 global_regs_decl[i] = decl;
791 /* If we're globalizing the frame pointer, we need to set the
792 appropriate regs_invalidated_by_call bit, even if it's already
793 set in fixed_regs. */
794 if (i != STACK_POINTER_REGNUM)
796 SET_HARD_REG_BIT (regs_invalidated_by_call, i);
797 SET_REGNO_REG_SET (regs_invalidated_by_call_regset, i);
800 /* If already fixed, nothing else to do. */
801 if (fixed_regs[i])
802 return;
804 fixed_regs[i] = call_used_regs[i] = 1;
805 #ifdef CALL_REALLY_USED_REGISTERS
806 call_really_used_regs[i] = 1;
807 #endif
809 SET_HARD_REG_BIT (fixed_reg_set, i);
810 SET_HARD_REG_BIT (call_used_reg_set, i);
811 SET_HARD_REG_BIT (call_fixed_reg_set, i);
813 reinit_regs ();
817 /* Structure used to record preferences of given pseudo. */
818 struct reg_pref
820 /* (enum reg_class) prefclass is the preferred class. May be
821 NO_REGS if no class is better than memory. */
822 char prefclass;
824 /* altclass is a register class that we should use for allocating
825 pseudo if no register in the preferred class is available.
826 If no register in this class is available, memory is preferred.
828 It might appear to be more general to have a bitmask of classes here,
829 but since it is recommended that there be a class corresponding to the
830 union of most major pair of classes, that generality is not required. */
831 char altclass;
833 /* allocnoclass is a register class that IRA uses for allocating
834 the pseudo. */
835 char allocnoclass;
838 /* Record preferences of each pseudo. This is available after RA is
839 run. */
840 static struct reg_pref *reg_pref;
842 /* Current size of reg_info. */
843 static int reg_info_size;
844 /* Max_reg_num still last resize_reg_info call. */
845 static int max_regno_since_last_resize;
847 /* Return the reg_class in which pseudo reg number REGNO is best allocated.
848 This function is sometimes called before the info has been computed.
849 When that happens, just return GENERAL_REGS, which is innocuous. */
850 enum reg_class
851 reg_preferred_class (int regno)
853 if (reg_pref == 0)
854 return GENERAL_REGS;
856 gcc_assert (regno < reg_info_size);
857 return (enum reg_class) reg_pref[regno].prefclass;
860 enum reg_class
861 reg_alternate_class (int regno)
863 if (reg_pref == 0)
864 return ALL_REGS;
866 gcc_assert (regno < reg_info_size);
867 return (enum reg_class) reg_pref[regno].altclass;
870 /* Return the reg_class which is used by IRA for its allocation. */
871 enum reg_class
872 reg_allocno_class (int regno)
874 if (reg_pref == 0)
875 return NO_REGS;
877 gcc_assert (regno < reg_info_size);
878 return (enum reg_class) reg_pref[regno].allocnoclass;
883 /* Allocate space for reg info and initilize it. */
884 static void
885 allocate_reg_info (void)
887 int i;
889 max_regno_since_last_resize = max_reg_num ();
890 reg_info_size = max_regno_since_last_resize * 3 / 2 + 1;
891 gcc_assert (! reg_pref && ! reg_renumber);
892 reg_renumber = XNEWVEC (short, reg_info_size);
893 reg_pref = XCNEWVEC (struct reg_pref, reg_info_size);
894 memset (reg_renumber, -1, reg_info_size * sizeof (short));
895 for (i = 0; i < reg_info_size; i++)
897 reg_pref[i].prefclass = GENERAL_REGS;
898 reg_pref[i].altclass = ALL_REGS;
899 reg_pref[i].allocnoclass = GENERAL_REGS;
904 /* Resize reg info. The new elements will be initialized. Return TRUE
905 if new pseudos were added since the last call. */
906 bool
907 resize_reg_info (void)
909 int old, i;
910 bool change_p;
912 if (reg_pref == NULL)
914 allocate_reg_info ();
915 return true;
917 change_p = max_regno_since_last_resize != max_reg_num ();
918 max_regno_since_last_resize = max_reg_num ();
919 if (reg_info_size >= max_reg_num ())
920 return change_p;
921 old = reg_info_size;
922 reg_info_size = max_reg_num () * 3 / 2 + 1;
923 gcc_assert (reg_pref && reg_renumber);
924 reg_renumber = XRESIZEVEC (short, reg_renumber, reg_info_size);
925 reg_pref = XRESIZEVEC (struct reg_pref, reg_pref, reg_info_size);
926 memset (reg_pref + old, -1,
927 (reg_info_size - old) * sizeof (struct reg_pref));
928 memset (reg_renumber + old, -1, (reg_info_size - old) * sizeof (short));
929 for (i = old; i < reg_info_size; i++)
931 reg_pref[i].prefclass = GENERAL_REGS;
932 reg_pref[i].altclass = ALL_REGS;
933 reg_pref[i].allocnoclass = GENERAL_REGS;
935 return true;
939 /* Free up the space allocated by allocate_reg_info. */
940 void
941 free_reg_info (void)
943 if (reg_pref)
945 free (reg_pref);
946 reg_pref = NULL;
949 if (reg_renumber)
951 free (reg_renumber);
952 reg_renumber = NULL;
956 /* Initialize some global data for this pass. */
957 static unsigned int
958 reginfo_init (void)
960 if (df)
961 df_compute_regs_ever_live (true);
963 /* This prevents dump_reg_info from losing if called
964 before reginfo is run. */
965 reg_pref = NULL;
966 reg_info_size = max_regno_since_last_resize = 0;
967 /* No more global register variables may be declared. */
968 no_global_reg_vars = 1;
969 return 1;
972 namespace {
974 const pass_data pass_data_reginfo_init =
976 RTL_PASS, /* type */
977 "reginfo", /* name */
978 OPTGROUP_NONE, /* optinfo_flags */
979 TV_NONE, /* tv_id */
980 0, /* properties_required */
981 0, /* properties_provided */
982 0, /* properties_destroyed */
983 0, /* todo_flags_start */
984 0, /* todo_flags_finish */
987 class pass_reginfo_init : public rtl_opt_pass
989 public:
990 pass_reginfo_init (gcc::context *ctxt)
991 : rtl_opt_pass (pass_data_reginfo_init, ctxt)
994 /* opt_pass methods: */
995 virtual unsigned int execute (function *) { return reginfo_init (); }
997 }; // class pass_reginfo_init
999 } // anon namespace
1001 rtl_opt_pass *
1002 make_pass_reginfo_init (gcc::context *ctxt)
1004 return new pass_reginfo_init (ctxt);
1009 /* Set up preferred, alternate, and allocno classes for REGNO as
1010 PREFCLASS, ALTCLASS, and ALLOCNOCLASS. */
1011 void
1012 setup_reg_classes (int regno,
1013 enum reg_class prefclass, enum reg_class altclass,
1014 enum reg_class allocnoclass)
1016 if (reg_pref == NULL)
1017 return;
1018 gcc_assert (reg_info_size >= max_reg_num ());
1019 reg_pref[regno].prefclass = prefclass;
1020 reg_pref[regno].altclass = altclass;
1021 reg_pref[regno].allocnoclass = allocnoclass;
1025 /* This is the `regscan' pass of the compiler, run just before cse and
1026 again just before loop. It finds the first and last use of each
1027 pseudo-register. */
1029 static void reg_scan_mark_refs (rtx, rtx_insn *);
1031 void
1032 reg_scan (rtx_insn *f, unsigned int nregs ATTRIBUTE_UNUSED)
1034 rtx_insn *insn;
1036 timevar_push (TV_REG_SCAN);
1038 for (insn = f; insn; insn = NEXT_INSN (insn))
1039 if (INSN_P (insn))
1041 reg_scan_mark_refs (PATTERN (insn), insn);
1042 if (REG_NOTES (insn))
1043 reg_scan_mark_refs (REG_NOTES (insn), insn);
1046 timevar_pop (TV_REG_SCAN);
1050 /* X is the expression to scan. INSN is the insn it appears in.
1051 NOTE_FLAG is nonzero if X is from INSN's notes rather than its body.
1052 We should only record information for REGs with numbers
1053 greater than or equal to MIN_REGNO. */
1054 static void
1055 reg_scan_mark_refs (rtx x, rtx_insn *insn)
1057 enum rtx_code code;
1058 rtx dest;
1059 rtx note;
1061 if (!x)
1062 return;
1063 code = GET_CODE (x);
1064 switch (code)
1066 case CONST:
1067 CASE_CONST_ANY:
1068 case CC0:
1069 case PC:
1070 case SYMBOL_REF:
1071 case LABEL_REF:
1072 case ADDR_VEC:
1073 case ADDR_DIFF_VEC:
1074 case REG:
1075 return;
1077 case EXPR_LIST:
1078 if (XEXP (x, 0))
1079 reg_scan_mark_refs (XEXP (x, 0), insn);
1080 if (XEXP (x, 1))
1081 reg_scan_mark_refs (XEXP (x, 1), insn);
1082 break;
1084 case INSN_LIST:
1085 case INT_LIST:
1086 if (XEXP (x, 1))
1087 reg_scan_mark_refs (XEXP (x, 1), insn);
1088 break;
1090 case CLOBBER:
1091 if (MEM_P (XEXP (x, 0)))
1092 reg_scan_mark_refs (XEXP (XEXP (x, 0), 0), insn);
1093 break;
1095 case SET:
1096 /* Count a set of the destination if it is a register. */
1097 for (dest = SET_DEST (x);
1098 GET_CODE (dest) == SUBREG || GET_CODE (dest) == STRICT_LOW_PART
1099 || GET_CODE (dest) == ZERO_EXTRACT;
1100 dest = XEXP (dest, 0))
1103 /* If this is setting a pseudo from another pseudo or the sum of a
1104 pseudo and a constant integer and the other pseudo is known to be
1105 a pointer, set the destination to be a pointer as well.
1107 Likewise if it is setting the destination from an address or from a
1108 value equivalent to an address or to the sum of an address and
1109 something else.
1111 But don't do any of this if the pseudo corresponds to a user
1112 variable since it should have already been set as a pointer based
1113 on the type. */
1115 if (REG_P (SET_DEST (x))
1116 && REGNO (SET_DEST (x)) >= FIRST_PSEUDO_REGISTER
1117 /* If the destination pseudo is set more than once, then other
1118 sets might not be to a pointer value (consider access to a
1119 union in two threads of control in the presence of global
1120 optimizations). So only set REG_POINTER on the destination
1121 pseudo if this is the only set of that pseudo. */
1122 && DF_REG_DEF_COUNT (REGNO (SET_DEST (x))) == 1
1123 && ! REG_USERVAR_P (SET_DEST (x))
1124 && ! REG_POINTER (SET_DEST (x))
1125 && ((REG_P (SET_SRC (x))
1126 && REG_POINTER (SET_SRC (x)))
1127 || ((GET_CODE (SET_SRC (x)) == PLUS
1128 || GET_CODE (SET_SRC (x)) == LO_SUM)
1129 && CONST_INT_P (XEXP (SET_SRC (x), 1))
1130 && REG_P (XEXP (SET_SRC (x), 0))
1131 && REG_POINTER (XEXP (SET_SRC (x), 0)))
1132 || GET_CODE (SET_SRC (x)) == CONST
1133 || GET_CODE (SET_SRC (x)) == SYMBOL_REF
1134 || GET_CODE (SET_SRC (x)) == LABEL_REF
1135 || (GET_CODE (SET_SRC (x)) == HIGH
1136 && (GET_CODE (XEXP (SET_SRC (x), 0)) == CONST
1137 || GET_CODE (XEXP (SET_SRC (x), 0)) == SYMBOL_REF
1138 || GET_CODE (XEXP (SET_SRC (x), 0)) == LABEL_REF))
1139 || ((GET_CODE (SET_SRC (x)) == PLUS
1140 || GET_CODE (SET_SRC (x)) == LO_SUM)
1141 && (GET_CODE (XEXP (SET_SRC (x), 1)) == CONST
1142 || GET_CODE (XEXP (SET_SRC (x), 1)) == SYMBOL_REF
1143 || GET_CODE (XEXP (SET_SRC (x), 1)) == LABEL_REF))
1144 || ((note = find_reg_note (insn, REG_EQUAL, 0)) != 0
1145 && (GET_CODE (XEXP (note, 0)) == CONST
1146 || GET_CODE (XEXP (note, 0)) == SYMBOL_REF
1147 || GET_CODE (XEXP (note, 0)) == LABEL_REF))))
1148 REG_POINTER (SET_DEST (x)) = 1;
1150 /* If this is setting a register from a register or from a simple
1151 conversion of a register, propagate REG_EXPR. */
1152 if (REG_P (dest) && !REG_ATTRS (dest))
1153 set_reg_attrs_from_value (dest, SET_SRC (x));
1155 /* fall through */
1157 default:
1159 const char *fmt = GET_RTX_FORMAT (code);
1160 int i;
1161 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1163 if (fmt[i] == 'e')
1164 reg_scan_mark_refs (XEXP (x, i), insn);
1165 else if (fmt[i] == 'E' && XVEC (x, i) != 0)
1167 int j;
1168 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1169 reg_scan_mark_refs (XVECEXP (x, i, j), insn);
1177 /* Return nonzero if C1 is a subset of C2, i.e., if every register in C1
1178 is also in C2. */
1180 reg_class_subset_p (reg_class_t c1, reg_class_t c2)
1182 return (c1 == c2
1183 || c2 == ALL_REGS
1184 || hard_reg_set_subset_p (reg_class_contents[(int) c1],
1185 reg_class_contents[(int) c2]));
1188 /* Return nonzero if there is a register that is in both C1 and C2. */
1190 reg_classes_intersect_p (reg_class_t c1, reg_class_t c2)
1192 return (c1 == c2
1193 || c1 == ALL_REGS
1194 || c2 == ALL_REGS
1195 || hard_reg_set_intersect_p (reg_class_contents[(int) c1],
1196 reg_class_contents[(int) c2]));
1200 inline hashval_t
1201 simplifiable_subregs_hasher::hash (const simplifiable_subreg *value)
1203 return value->shape.unique_id ();
1206 inline bool
1207 simplifiable_subregs_hasher::equal (const simplifiable_subreg *value,
1208 const subreg_shape *compare)
1210 return value->shape == *compare;
1213 inline simplifiable_subreg::simplifiable_subreg (const subreg_shape &shape_in)
1214 : shape (shape_in)
1216 CLEAR_HARD_REG_SET (simplifiable_regs);
1219 /* Return the set of hard registers that are able to form the subreg
1220 described by SHAPE. */
1222 const HARD_REG_SET &
1223 simplifiable_subregs (const subreg_shape &shape)
1225 if (!this_target_hard_regs->x_simplifiable_subregs)
1226 this_target_hard_regs->x_simplifiable_subregs
1227 = new hash_table <simplifiable_subregs_hasher> (30);
1228 simplifiable_subreg **slot
1229 = (this_target_hard_regs->x_simplifiable_subregs
1230 ->find_slot_with_hash (&shape, shape.unique_id (), INSERT));
1232 if (!*slot)
1234 simplifiable_subreg *info = new simplifiable_subreg (shape);
1235 for (unsigned int i = 0; i < FIRST_PSEUDO_REGISTER; ++i)
1236 if (HARD_REGNO_MODE_OK (i, shape.inner_mode)
1237 && simplify_subreg_regno (i, shape.inner_mode, shape.offset,
1238 shape.outer_mode) >= 0)
1239 SET_HARD_REG_BIT (info->simplifiable_regs, i);
1240 *slot = info;
1242 return (*slot)->simplifiable_regs;
1245 /* Passes for keeping and updating info about modes of registers
1246 inside subregisters. */
1248 static HARD_REG_SET **valid_mode_changes;
1249 static obstack valid_mode_changes_obstack;
1251 /* Restrict the choice of register for SUBREG_REG (SUBREG) based
1252 on information about SUBREG.
1254 If PARTIAL_DEF, SUBREG is a partial definition of a multipart inner
1255 register and we want to ensure that the other parts of the inner
1256 register are correctly preserved. If !PARTIAL_DEF we need to
1257 ensure that SUBREG itself can be formed. */
1259 static void
1260 record_subregs_of_mode (rtx subreg, bool partial_def)
1262 unsigned int regno;
1264 if (!REG_P (SUBREG_REG (subreg)))
1265 return;
1267 regno = REGNO (SUBREG_REG (subreg));
1268 if (regno < FIRST_PSEUDO_REGISTER)
1269 return;
1271 subreg_shape shape (shape_of_subreg (subreg));
1272 if (partial_def)
1274 /* The number of independently-accessible SHAPE.outer_mode values
1275 in SHAPE.inner_mode is GET_MODE_SIZE (SHAPE.inner_mode) / SIZE.
1276 We need to check that the assignment will preserve all the other
1277 SIZE-byte chunks in the inner register besides the one that
1278 includes SUBREG.
1280 In practice it is enough to check whether an equivalent
1281 SHAPE.inner_mode value in an adjacent SIZE-byte chunk can be formed.
1282 If the underlying registers are small enough, both subregs will
1283 be valid. If the underlying registers are too large, one of the
1284 subregs will be invalid.
1286 This relies on the fact that we've already been passed
1287 SUBREG with PARTIAL_DEF set to false. */
1288 unsigned int size = MAX (REGMODE_NATURAL_SIZE (shape.inner_mode),
1289 GET_MODE_SIZE (shape.outer_mode));
1290 gcc_checking_assert (size < GET_MODE_SIZE (shape.inner_mode));
1291 if (shape.offset >= size)
1292 shape.offset -= size;
1293 else
1294 shape.offset += size;
1297 if (valid_mode_changes[regno])
1298 AND_HARD_REG_SET (*valid_mode_changes[regno],
1299 simplifiable_subregs (shape));
1300 else
1302 valid_mode_changes[regno]
1303 = XOBNEW (&valid_mode_changes_obstack, HARD_REG_SET);
1304 COPY_HARD_REG_SET (*valid_mode_changes[regno],
1305 simplifiable_subregs (shape));
1309 /* Call record_subregs_of_mode for all the subregs in X. */
1310 static void
1311 find_subregs_of_mode (rtx x)
1313 enum rtx_code code = GET_CODE (x);
1314 const char * const fmt = GET_RTX_FORMAT (code);
1315 int i;
1317 if (code == SUBREG)
1318 record_subregs_of_mode (x, false);
1320 /* Time for some deep diving. */
1321 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1323 if (fmt[i] == 'e')
1324 find_subregs_of_mode (XEXP (x, i));
1325 else if (fmt[i] == 'E')
1327 int j;
1328 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1329 find_subregs_of_mode (XVECEXP (x, i, j));
1334 void
1335 init_subregs_of_mode (void)
1337 basic_block bb;
1338 rtx_insn *insn;
1340 gcc_obstack_init (&valid_mode_changes_obstack);
1341 valid_mode_changes = XCNEWVEC (HARD_REG_SET *, max_reg_num ());
1343 FOR_EACH_BB_FN (bb, cfun)
1344 FOR_BB_INSNS (bb, insn)
1345 if (NONDEBUG_INSN_P (insn))
1347 find_subregs_of_mode (PATTERN (insn));
1348 df_ref def;
1349 FOR_EACH_INSN_DEF (def, insn)
1350 if (DF_REF_FLAGS_IS_SET (def, DF_REF_PARTIAL)
1351 && df_read_modify_subreg_p (DF_REF_REG (def)))
1352 record_subregs_of_mode (DF_REF_REG (def), true);
1356 const HARD_REG_SET *
1357 valid_mode_changes_for_regno (unsigned int regno)
1359 return valid_mode_changes[regno];
1362 void
1363 finish_subregs_of_mode (void)
1365 XDELETEVEC (valid_mode_changes);
1366 obstack_free (&valid_mode_changes_obstack, NULL);
1369 /* Free all data attached to the structure. This isn't a destructor because
1370 we don't want to run on exit. */
1372 void
1373 target_hard_regs::finalize ()
1375 delete x_simplifiable_subregs;