OSDN Git Service

Add Go frontend, libgo library, and Go testsuite.
[pf3gnuchains/gcc-fork.git] / gcc / reginfo.c
1 /* Compute different info about registers.
2    Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996
3    1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4    2009, 2010  Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
21
22
23 /* This file contains regscan pass of the compiler and passes for
24    dealing with info about modes of pseudo-registers inside
25    subregisters.  It also defines some tables of information about the
26    hardware registers, function init_reg_sets to initialize the
27    tables, and other auxiliary functions to deal with info about
28    registers and their classes.  */
29
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "tm.h"
34 #include "hard-reg-set.h"
35 #include "rtl.h"
36 #include "expr.h"
37 #include "tm_p.h"
38 #include "flags.h"
39 #include "basic-block.h"
40 #include "regs.h"
41 #include "addresses.h"
42 #include "function.h"
43 #include "insn-config.h"
44 #include "recog.h"
45 #include "reload.h"
46 #include "diagnostic-core.h"
47 #include "output.h"
48 #include "timevar.h"
49 #include "hashtab.h"
50 #include "target.h"
51 #include "tree-pass.h"
52 #include "df.h"
53 #include "ira.h"
54
55 /* Maximum register number used in this function, plus one.  */
56
57 int max_regno;
58
59 \f
60 struct target_hard_regs default_target_hard_regs;
61 struct target_regs default_target_regs;
62 #if SWITCHABLE_TARGET
63 struct target_hard_regs *this_target_hard_regs = &default_target_hard_regs;
64 struct target_regs *this_target_regs = &default_target_regs;
65 #endif
66
67 /* Data for initializing fixed_regs.  */
68 static const char initial_fixed_regs[] = FIXED_REGISTERS;
69
70 /* Data for initializing call_used_regs.  */
71 static const char initial_call_used_regs[] = CALL_USED_REGISTERS;
72
73 #ifdef CALL_REALLY_USED_REGISTERS
74 /* Data for initializing call_really_used_regs.  */
75 static const char initial_call_really_used_regs[] = CALL_REALLY_USED_REGISTERS;
76 #endif
77
78 #ifdef CALL_REALLY_USED_REGISTERS
79 #define CALL_REALLY_USED_REGNO_P(X)  call_really_used_regs[X]
80 #else
81 #define CALL_REALLY_USED_REGNO_P(X)  call_used_regs[X]
82 #endif
83
84 /* Indexed by hard register number, contains 1 for registers
85    that are being used for global register decls.
86    These must be exempt from ordinary flow analysis
87    and are also considered fixed.  */
88 char global_regs[FIRST_PSEUDO_REGISTER];
89
90 /* Same information as REGS_INVALIDATED_BY_CALL but in regset form to be used
91    in dataflow more conveniently.  */
92 regset regs_invalidated_by_call_regset;
93
94 /* The bitmap_obstack is used to hold some static variables that
95    should not be reset after each function is compiled.  */
96 static bitmap_obstack persistent_obstack;
97
98 /* Used to initialize reg_alloc_order.  */
99 #ifdef REG_ALLOC_ORDER
100 static int initial_reg_alloc_order[FIRST_PSEUDO_REGISTER] = REG_ALLOC_ORDER;
101 #endif
102
103 /* The same information, but as an array of unsigned ints.  We copy from
104    these unsigned ints to the table above.  We do this so the tm.h files
105    do not have to be aware of the wordsize for machines with <= 64 regs.
106    Note that we hard-code 32 here, not HOST_BITS_PER_INT.  */
107 #define N_REG_INTS  \
108   ((FIRST_PSEUDO_REGISTER + (32 - 1)) / 32)
109
110 static const unsigned int_reg_class_contents[N_REG_CLASSES][N_REG_INTS]
111   = REG_CLASS_CONTENTS;
112
113 /* Array containing all of the register names.  */
114 static const char *const initial_reg_names[] = REGISTER_NAMES;
115
116 /* Array containing all of the register class names.  */
117 const char * reg_class_names[] = REG_CLASS_NAMES;
118
119 #define last_mode_for_init_move_cost \
120   (this_target_regs->x_last_mode_for_init_move_cost)
121
122 /* No more global register variables may be declared; true once
123    reginfo has been initialized.  */
124 static int no_global_reg_vars = 0;
125
126 /* Given a register bitmap, turn on the bits in a HARD_REG_SET that
127    correspond to the hard registers, if any, set in that map.  This
128    could be done far more efficiently by having all sorts of special-cases
129    with moving single words, but probably isn't worth the trouble.  */
130 void
131 reg_set_to_hard_reg_set (HARD_REG_SET *to, const_bitmap from)
132 {
133   unsigned i;
134   bitmap_iterator bi;
135
136   EXECUTE_IF_SET_IN_BITMAP (from, 0, i, bi)
137     {
138       if (i >= FIRST_PSEUDO_REGISTER)
139         return;
140       SET_HARD_REG_BIT (*to, i);
141     }
142 }
143
144 /* Function called only once per target_globals to initialize the
145    target_hard_regs structure.  Once this is done, various switches
146    may override.  */
147 void
148 init_reg_sets (void)
149 {
150   int i, j;
151
152   /* First copy the register information from the initial int form into
153      the regsets.  */
154
155   for (i = 0; i < N_REG_CLASSES; i++)
156     {
157       CLEAR_HARD_REG_SET (reg_class_contents[i]);
158
159       /* Note that we hard-code 32 here, not HOST_BITS_PER_INT.  */
160       for (j = 0; j < FIRST_PSEUDO_REGISTER; j++)
161         if (int_reg_class_contents[i][j / 32]
162             & ((unsigned) 1 << (j % 32)))
163           SET_HARD_REG_BIT (reg_class_contents[i], j);
164     }
165
166   /* Sanity check: make sure the target macros FIXED_REGISTERS and
167      CALL_USED_REGISTERS had the right number of initializers.  */
168   gcc_assert (sizeof fixed_regs == sizeof initial_fixed_regs);
169   gcc_assert (sizeof call_used_regs == sizeof initial_call_used_regs);
170 #ifdef CALL_REALLY_USED_REGISTERS
171   gcc_assert (sizeof call_really_used_regs
172               == sizeof initial_call_really_used_regs);
173 #endif
174 #ifdef REG_ALLOC_ORDER
175   gcc_assert (sizeof reg_alloc_order == sizeof initial_reg_alloc_order);
176 #endif
177   gcc_assert (sizeof reg_names == sizeof initial_reg_names);
178
179   memcpy (fixed_regs, initial_fixed_regs, sizeof fixed_regs);
180   memcpy (call_used_regs, initial_call_used_regs, sizeof call_used_regs);
181 #ifdef CALL_REALLY_USED_REGISTERS
182   memcpy (call_really_used_regs, initial_call_really_used_regs,
183           sizeof call_really_used_regs);
184 #endif
185 #ifdef REG_ALLOC_ORDER
186   memcpy (reg_alloc_order, initial_reg_alloc_order, sizeof reg_alloc_order);
187 #endif
188   memcpy (reg_names, initial_reg_names, sizeof reg_names);
189 }
190
191 /* Initialize may_move_cost and friends for mode M.  */
192 void
193 init_move_cost (enum machine_mode m)
194 {
195   static unsigned short last_move_cost[N_REG_CLASSES][N_REG_CLASSES];
196   bool all_match = true;
197   unsigned int i, j;
198
199   gcc_assert (have_regs_of_mode[m]);
200   for (i = 0; i < N_REG_CLASSES; i++)
201     if (contains_reg_of_mode[i][m])
202       for (j = 0; j < N_REG_CLASSES; j++)
203         {
204           int cost;
205           if (!contains_reg_of_mode[j][m])
206             cost = 65535;
207           else
208             {
209               cost = register_move_cost (m, (enum reg_class) i,
210                                          (enum reg_class) j);
211               gcc_assert (cost < 65535);
212             }
213           all_match &= (last_move_cost[i][j] == cost);
214           last_move_cost[i][j] = cost;
215         }
216   if (all_match && last_mode_for_init_move_cost != -1)
217     {
218       move_cost[m] = move_cost[last_mode_for_init_move_cost];
219       may_move_in_cost[m] = may_move_in_cost[last_mode_for_init_move_cost];
220       may_move_out_cost[m] = may_move_out_cost[last_mode_for_init_move_cost];
221       return;
222     }
223   last_mode_for_init_move_cost = m;
224   move_cost[m] = (move_table *)xmalloc (sizeof (move_table)
225                                         * N_REG_CLASSES);
226   may_move_in_cost[m] = (move_table *)xmalloc (sizeof (move_table)
227                                                * N_REG_CLASSES);
228   may_move_out_cost[m] = (move_table *)xmalloc (sizeof (move_table)
229                                                 * N_REG_CLASSES);
230   for (i = 0; i < N_REG_CLASSES; i++)
231     if (contains_reg_of_mode[i][m])
232       for (j = 0; j < N_REG_CLASSES; j++)
233         {
234           int cost;
235           enum reg_class *p1, *p2;
236
237           if (last_move_cost[i][j] == 65535)
238             {
239               move_cost[m][i][j] = 65535;
240               may_move_in_cost[m][i][j] = 65535;
241               may_move_out_cost[m][i][j] = 65535;
242             }
243           else
244             {
245               cost = last_move_cost[i][j];
246
247               for (p2 = &reg_class_subclasses[j][0];
248                    *p2 != LIM_REG_CLASSES; p2++)
249                 if (*p2 != i && contains_reg_of_mode[*p2][m])
250                   cost = MAX (cost, move_cost[m][i][*p2]);
251
252               for (p1 = &reg_class_subclasses[i][0];
253                    *p1 != LIM_REG_CLASSES; p1++)
254                 if (*p1 != j && contains_reg_of_mode[*p1][m])
255                   cost = MAX (cost, move_cost[m][*p1][j]);
256
257               gcc_assert (cost <= 65535);
258               move_cost[m][i][j] = cost;
259
260               if (reg_class_subset_p ((enum reg_class) i, (enum reg_class) j))
261                 may_move_in_cost[m][i][j] = 0;
262               else
263                 may_move_in_cost[m][i][j] = cost;
264
265               if (reg_class_subset_p ((enum reg_class) j, (enum reg_class) i))
266                 may_move_out_cost[m][i][j] = 0;
267               else
268                 may_move_out_cost[m][i][j] = cost;
269             }
270         }
271     else
272       for (j = 0; j < N_REG_CLASSES; j++)
273         {
274           move_cost[m][i][j] = 65535;
275           may_move_in_cost[m][i][j] = 65535;
276           may_move_out_cost[m][i][j] = 65535;
277         }
278 }
279
280 /* We need to save copies of some of the register information which
281    can be munged by command-line switches so we can restore it during
282    subsequent back-end reinitialization.  */
283 static char saved_fixed_regs[FIRST_PSEUDO_REGISTER];
284 static char saved_call_used_regs[FIRST_PSEUDO_REGISTER];
285 #ifdef CALL_REALLY_USED_REGISTERS
286 static char saved_call_really_used_regs[FIRST_PSEUDO_REGISTER];
287 #endif
288 static const char *saved_reg_names[FIRST_PSEUDO_REGISTER];
289
290 /* Save the register information.  */
291 void
292 save_register_info (void)
293 {
294   /* Sanity check:  make sure the target macros FIXED_REGISTERS and
295      CALL_USED_REGISTERS had the right number of initializers.  */
296   gcc_assert (sizeof fixed_regs == sizeof saved_fixed_regs);
297   gcc_assert (sizeof call_used_regs == sizeof saved_call_used_regs);
298   memcpy (saved_fixed_regs, fixed_regs, sizeof fixed_regs);
299   memcpy (saved_call_used_regs, call_used_regs, sizeof call_used_regs);
300
301   /* Likewise for call_really_used_regs.  */
302 #ifdef CALL_REALLY_USED_REGISTERS
303   gcc_assert (sizeof call_really_used_regs
304               == sizeof saved_call_really_used_regs);
305   memcpy (saved_call_really_used_regs, call_really_used_regs,
306           sizeof call_really_used_regs);
307 #endif
308
309   /* And similarly for reg_names.  */
310   gcc_assert (sizeof reg_names == sizeof saved_reg_names);
311   memcpy (saved_reg_names, reg_names, sizeof reg_names);
312 }
313
314 /* Restore the register information.  */
315 static void
316 restore_register_info (void)
317 {
318   memcpy (fixed_regs, saved_fixed_regs, sizeof fixed_regs);
319   memcpy (call_used_regs, saved_call_used_regs, sizeof call_used_regs);
320
321 #ifdef CALL_REALLY_USED_REGISTERS
322   memcpy (call_really_used_regs, saved_call_really_used_regs,
323           sizeof call_really_used_regs);
324 #endif
325
326   memcpy (reg_names, saved_reg_names, sizeof reg_names);
327 }
328
329 /* After switches have been processed, which perhaps alter
330    `fixed_regs' and `call_used_regs', convert them to HARD_REG_SETs.  */
331 static void
332 init_reg_sets_1 (void)
333 {
334   unsigned int i, j;
335   unsigned int /* enum machine_mode */ m;
336
337   restore_register_info ();
338
339 #ifdef REG_ALLOC_ORDER
340   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
341     inv_reg_alloc_order[reg_alloc_order[i]] = i;
342 #endif
343
344   /* Let the target tweak things if necessary.  */
345
346   targetm.conditional_register_usage ();
347
348   /* Compute number of hard regs in each class.  */
349
350   memset (reg_class_size, 0, sizeof reg_class_size);
351   for (i = 0; i < N_REG_CLASSES; i++)
352     {
353       bool any_nonfixed = false;
354       for (j = 0; j < FIRST_PSEUDO_REGISTER; j++)       
355         if (TEST_HARD_REG_BIT (reg_class_contents[i], j))
356           {
357             reg_class_size[i]++;
358             if (!fixed_regs[j])
359               any_nonfixed = true;
360           }
361       class_only_fixed_regs[i] = !any_nonfixed;
362     }
363
364   /* Initialize the table of subunions.
365      reg_class_subunion[I][J] gets the largest-numbered reg-class
366      that is contained in the union of classes I and J.  */
367
368   memset (reg_class_subunion, 0, sizeof reg_class_subunion);
369   for (i = 0; i < N_REG_CLASSES; i++)
370     {
371       for (j = 0; j < N_REG_CLASSES; j++)
372         {
373           HARD_REG_SET c;
374           int k;
375
376           COPY_HARD_REG_SET (c, reg_class_contents[i]);
377           IOR_HARD_REG_SET (c, reg_class_contents[j]);
378           for (k = 0; k < N_REG_CLASSES; k++)
379             if (hard_reg_set_subset_p (reg_class_contents[k], c)
380                 && !hard_reg_set_subset_p (reg_class_contents[k],
381                                           reg_class_contents
382                                           [(int) reg_class_subunion[i][j]]))
383               reg_class_subunion[i][j] = (enum reg_class) k;
384         }
385     }
386
387   /* Initialize the table of superunions.
388      reg_class_superunion[I][J] gets the smallest-numbered reg-class
389      containing the union of classes I and J.  */
390
391   memset (reg_class_superunion, 0, sizeof reg_class_superunion);
392   for (i = 0; i < N_REG_CLASSES; i++)
393     {
394       for (j = 0; j < N_REG_CLASSES; j++)
395         {
396           HARD_REG_SET c;
397           int k;
398
399           COPY_HARD_REG_SET (c, reg_class_contents[i]);
400           IOR_HARD_REG_SET (c, reg_class_contents[j]);
401           for (k = 0; k < N_REG_CLASSES; k++)
402             if (hard_reg_set_subset_p (c, reg_class_contents[k]))
403               break;
404
405           reg_class_superunion[i][j] = (enum reg_class) k;
406         }
407     }
408
409   /* Initialize the tables of subclasses and superclasses of each reg class.
410      First clear the whole table, then add the elements as they are found.  */
411
412   for (i = 0; i < N_REG_CLASSES; i++)
413     {
414       for (j = 0; j < N_REG_CLASSES; j++)
415         reg_class_subclasses[i][j] = LIM_REG_CLASSES;
416     }
417
418   for (i = 0; i < N_REG_CLASSES; i++)
419     {
420       if (i == (int) NO_REGS)
421         continue;
422
423       for (j = i + 1; j < N_REG_CLASSES; j++)
424         if (hard_reg_set_subset_p (reg_class_contents[i],
425                                   reg_class_contents[j]))
426           {
427             /* Reg class I is a subclass of J.
428                Add J to the table of superclasses of I.  */
429             enum reg_class *p;
430
431             /* Add I to the table of superclasses of J.  */
432             p = &reg_class_subclasses[j][0];
433             while (*p != LIM_REG_CLASSES) p++;
434             *p = (enum reg_class) i;
435           }
436     }
437
438   /* Initialize "constant" tables.  */
439
440   CLEAR_HARD_REG_SET (fixed_reg_set);
441   CLEAR_HARD_REG_SET (call_used_reg_set);
442   CLEAR_HARD_REG_SET (call_fixed_reg_set);
443   CLEAR_HARD_REG_SET (regs_invalidated_by_call);
444   if (!regs_invalidated_by_call_regset)
445     {
446       bitmap_obstack_initialize (&persistent_obstack);
447       regs_invalidated_by_call_regset = ALLOC_REG_SET (&persistent_obstack);
448     }
449   else
450     CLEAR_REG_SET (regs_invalidated_by_call_regset);
451
452   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
453     {
454       /* call_used_regs must include fixed_regs.  */
455       gcc_assert (!fixed_regs[i] || call_used_regs[i]);
456 #ifdef CALL_REALLY_USED_REGISTERS
457       /* call_used_regs must include call_really_used_regs.  */
458       gcc_assert (!call_really_used_regs[i] || call_used_regs[i]);
459 #endif
460
461       if (fixed_regs[i])
462         SET_HARD_REG_BIT (fixed_reg_set, i);
463
464       if (call_used_regs[i])
465         SET_HARD_REG_BIT (call_used_reg_set, i);
466
467       /* There are a couple of fixed registers that we know are safe to
468          exclude from being clobbered by calls:
469
470          The frame pointer is always preserved across calls.  The arg
471          pointer is if it is fixed.  The stack pointer usually is,
472          unless TARGET_RETURN_POPS_ARGS, in which case an explicit
473          CLOBBER will be present.  If we are generating PIC code, the
474          PIC offset table register is preserved across calls, though the
475          target can override that.  */
476
477       if (i == STACK_POINTER_REGNUM)
478         ;
479       else if (global_regs[i])
480         {
481           SET_HARD_REG_BIT (regs_invalidated_by_call, i);
482           SET_REGNO_REG_SET (regs_invalidated_by_call_regset, i);
483         }
484       else if (i == FRAME_POINTER_REGNUM)
485         ;
486 #if !HARD_FRAME_POINTER_IS_FRAME_POINTER
487       else if (i == HARD_FRAME_POINTER_REGNUM)
488         ;
489 #endif
490 #if ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
491       else if (i == ARG_POINTER_REGNUM && fixed_regs[i])
492         ;
493 #endif
494       else if (!PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
495                && i == (unsigned) PIC_OFFSET_TABLE_REGNUM && fixed_regs[i])
496         ;
497       else if (CALL_REALLY_USED_REGNO_P (i))
498         {
499           SET_HARD_REG_BIT (regs_invalidated_by_call, i);
500           SET_REGNO_REG_SET (regs_invalidated_by_call_regset, i);
501         }
502     }
503
504   COPY_HARD_REG_SET(call_fixed_reg_set, fixed_reg_set);
505
506   /* Preserve global registers if called more than once.  */
507   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
508     {
509       if (global_regs[i])
510         {
511           fixed_regs[i] = call_used_regs[i] = 1;
512           SET_HARD_REG_BIT (fixed_reg_set, i);
513           SET_HARD_REG_BIT (call_used_reg_set, i);
514           SET_HARD_REG_BIT (call_fixed_reg_set, i);
515         }
516     }
517
518   memset (have_regs_of_mode, 0, sizeof (have_regs_of_mode));
519   memset (contains_reg_of_mode, 0, sizeof (contains_reg_of_mode));
520   for (m = 0; m < (unsigned int) MAX_MACHINE_MODE; m++)
521     {
522       HARD_REG_SET ok_regs;
523       CLEAR_HARD_REG_SET (ok_regs);
524       for (j = 0; j < FIRST_PSEUDO_REGISTER; j++)
525         if (!fixed_regs [j] && HARD_REGNO_MODE_OK (j, (enum machine_mode) m))
526           SET_HARD_REG_BIT (ok_regs, j);
527
528       for (i = 0; i < N_REG_CLASSES; i++)
529         if (((unsigned) CLASS_MAX_NREGS ((enum reg_class) i,
530                                          (enum machine_mode) m)
531              <= reg_class_size[i])
532             && hard_reg_set_intersect_p (ok_regs, reg_class_contents[i]))
533           {
534              contains_reg_of_mode [i][m] = 1;
535              have_regs_of_mode [m] = 1;
536           }
537      }
538
539   /* Reset move_cost and friends, making sure we only free shared
540      table entries once.  */
541   for (i = 0; i < MAX_MACHINE_MODE; i++)
542     if (move_cost[i])
543       {
544         for (j = 0; j < i && move_cost[i] != move_cost[j]; j++)
545           ;
546         if (i == j)
547           {
548             free (move_cost[i]);
549             free (may_move_in_cost[i]);
550             free (may_move_out_cost[i]);
551           }
552       }
553   memset (move_cost, 0, sizeof move_cost);
554   memset (may_move_in_cost, 0, sizeof may_move_in_cost);
555   memset (may_move_out_cost, 0, sizeof may_move_out_cost);
556   last_mode_for_init_move_cost = -1;
557 }
558
559 /* Compute the table of register modes.
560    These values are used to record death information for individual registers
561    (as opposed to a multi-register mode).
562    This function might be invoked more than once, if the target has support
563    for changing register usage conventions on a per-function basis.
564 */
565 void
566 init_reg_modes_target (void)
567 {
568   int i, j;
569
570   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
571     for (j = 0; j < MAX_MACHINE_MODE; j++)
572       hard_regno_nregs[i][j] = HARD_REGNO_NREGS(i, (enum machine_mode)j);
573
574   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
575     {
576       reg_raw_mode[i] = choose_hard_reg_mode (i, 1, false);
577
578       /* If we couldn't find a valid mode, just use the previous mode.
579          ??? One situation in which we need to do this is on the mips where
580          HARD_REGNO_NREGS (fpreg, [SD]Fmode) returns 2.  Ideally we'd like
581          to use DF mode for the even registers and VOIDmode for the odd
582          (for the cpu models where the odd ones are inaccessible).  */
583       if (reg_raw_mode[i] == VOIDmode)
584         reg_raw_mode[i] = i == 0 ? word_mode : reg_raw_mode[i-1];
585     }
586 }
587
588 /* Finish initializing the register sets and initialize the register modes.
589    This function might be invoked more than once, if the target has support
590    for changing register usage conventions on a per-function basis.
591 */
592 void
593 init_regs (void)
594 {
595   /* This finishes what was started by init_reg_sets, but couldn't be done
596      until after register usage was specified.  */
597   init_reg_sets_1 ();
598 }
599
600 /* The same as previous function plus initializing IRA.  */
601 void
602 reinit_regs (void)
603 {
604   init_regs ();
605   /* caller_save needs to be re-initialized.  */
606   caller_save_initialized_p = false;
607   ira_init ();
608 }
609
610 /* Initialize some fake stack-frame MEM references for use in
611    memory_move_secondary_cost.  */
612 void
613 init_fake_stack_mems (void)
614 {
615   int i;
616
617   for (i = 0; i < MAX_MACHINE_MODE; i++)
618     top_of_stack[i] = gen_rtx_MEM ((enum machine_mode) i, stack_pointer_rtx);
619 }
620
621
622 /* Compute cost of moving data from a register of class FROM to one of
623    TO, using MODE.  */
624
625 int
626 register_move_cost (enum machine_mode mode, reg_class_t from, reg_class_t to)
627 {
628   return targetm.register_move_cost (mode, from, to);
629 }
630
631 /* Compute cost of moving registers to/from memory.  */
632 int
633 memory_move_cost (enum machine_mode mode, enum reg_class rclass, bool in)
634 {
635   return targetm.memory_move_cost (mode, rclass, in);
636 }
637
638 /* Compute extra cost of moving registers to/from memory due to reloads.
639    Only needed if secondary reloads are required for memory moves.  */
640 int
641 memory_move_secondary_cost (enum machine_mode mode, reg_class_t rclass,
642                             bool in)
643 {
644   reg_class_t altclass;
645   int partial_cost = 0;
646   /* We need a memory reference to feed to SECONDARY... macros.  */
647   /* mem may be unused even if the SECONDARY_ macros are defined.  */
648   rtx mem ATTRIBUTE_UNUSED = top_of_stack[(int) mode];
649
650   altclass = secondary_reload_class (in ? 1 : 0, rclass, mode, mem);
651
652   if (altclass == NO_REGS)
653     return 0;
654
655   if (in)
656     partial_cost = register_move_cost (mode, altclass, rclass);
657   else
658     partial_cost = register_move_cost (mode, rclass, altclass);
659
660   if (rclass == altclass)
661     /* This isn't simply a copy-to-temporary situation.  Can't guess
662        what it is, so TARGET_MEMORY_MOVE_COST really ought not to be
663        calling here in that case.
664
665        I'm tempted to put in an assert here, but returning this will
666        probably only give poor estimates, which is what we would've
667        had before this code anyways.  */
668     return partial_cost;
669
670   /* Check if the secondary reload register will also need a
671      secondary reload.  */
672   return memory_move_secondary_cost (mode, altclass, in) + partial_cost;
673 }
674
675 /* Return a machine mode that is legitimate for hard reg REGNO and large
676    enough to save nregs.  If we can't find one, return VOIDmode.
677    If CALL_SAVED is true, only consider modes that are call saved.  */
678 enum machine_mode
679 choose_hard_reg_mode (unsigned int regno ATTRIBUTE_UNUSED,
680                       unsigned int nregs, bool call_saved)
681 {
682   unsigned int /* enum machine_mode */ m;
683   enum machine_mode found_mode = VOIDmode, mode;
684
685   /* We first look for the largest integer mode that can be validly
686      held in REGNO.  If none, we look for the largest floating-point mode.
687      If we still didn't find a valid mode, try CCmode.  */
688
689   for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT);
690        mode != VOIDmode;
691        mode = GET_MODE_WIDER_MODE (mode))
692     if ((unsigned) hard_regno_nregs[regno][mode] == nregs
693         && HARD_REGNO_MODE_OK (regno, mode)
694         && (! call_saved || ! HARD_REGNO_CALL_PART_CLOBBERED (regno, mode)))
695       found_mode = mode;
696
697   if (found_mode != VOIDmode)
698     return found_mode;
699
700   for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT);
701        mode != VOIDmode;
702        mode = GET_MODE_WIDER_MODE (mode))
703     if ((unsigned) hard_regno_nregs[regno][mode] == nregs
704         && HARD_REGNO_MODE_OK (regno, mode)
705         && (! call_saved || ! HARD_REGNO_CALL_PART_CLOBBERED (regno, mode)))
706       found_mode = mode;
707
708   if (found_mode != VOIDmode)
709     return found_mode;
710
711   for (mode = GET_CLASS_NARROWEST_MODE (MODE_VECTOR_FLOAT);
712        mode != VOIDmode;
713        mode = GET_MODE_WIDER_MODE (mode))
714     if ((unsigned) hard_regno_nregs[regno][mode] == nregs
715         && HARD_REGNO_MODE_OK (regno, mode)
716         && (! call_saved || ! HARD_REGNO_CALL_PART_CLOBBERED (regno, mode)))
717       found_mode = mode;
718
719   if (found_mode != VOIDmode)
720     return found_mode;
721
722   for (mode = GET_CLASS_NARROWEST_MODE (MODE_VECTOR_INT);
723        mode != VOIDmode;
724        mode = GET_MODE_WIDER_MODE (mode))
725     if ((unsigned) hard_regno_nregs[regno][mode] == nregs
726         && HARD_REGNO_MODE_OK (regno, mode)
727         && (! call_saved || ! HARD_REGNO_CALL_PART_CLOBBERED (regno, mode)))
728       found_mode = mode;
729
730   if (found_mode != VOIDmode)
731     return found_mode;
732
733   /* Iterate over all of the CCmodes.  */
734   for (m = (unsigned int) CCmode; m < (unsigned int) NUM_MACHINE_MODES; ++m)
735     {
736       mode = (enum machine_mode) m;
737       if ((unsigned) hard_regno_nregs[regno][mode] == nregs
738           && HARD_REGNO_MODE_OK (regno, mode)
739           && (! call_saved || ! HARD_REGNO_CALL_PART_CLOBBERED (regno, mode)))
740         return mode;
741     }
742
743   /* We can't find a mode valid for this register.  */
744   return VOIDmode;
745 }
746
747 /* Specify the usage characteristics of the register named NAME.
748    It should be a fixed register if FIXED and a
749    call-used register if CALL_USED.  */
750 void
751 fix_register (const char *name, int fixed, int call_used)
752 {
753   int i;
754   int reg, nregs;
755
756   /* Decode the name and update the primary form of
757      the register info.  */
758
759   if ((reg = decode_reg_name_and_count (name, &nregs)) >= 0)
760     {
761       gcc_assert (nregs >= 1);
762       for (i = reg; i < reg + nregs; i++)
763         {
764           if ((i == STACK_POINTER_REGNUM
765 #ifdef HARD_FRAME_POINTER_REGNUM
766                || i == HARD_FRAME_POINTER_REGNUM
767 #else
768                || i == FRAME_POINTER_REGNUM
769 #endif
770                )
771               && (fixed == 0 || call_used == 0))
772             {
773               switch (fixed)
774                 {
775                 case 0:
776                   switch (call_used)
777                     {
778                     case 0:
779                       error ("can%'t use %qs as a call-saved register", name);
780                       break;
781
782                     case 1:
783                       error ("can%'t use %qs as a call-used register", name);
784                       break;
785
786                     default:
787                       gcc_unreachable ();
788                     }
789                   break;
790
791                 case 1:
792                   switch (call_used)
793                     {
794                     case 1:
795                       error ("can%'t use %qs as a fixed register", name);
796                       break;
797
798                     case 0:
799                     default:
800                       gcc_unreachable ();
801                     }
802                   break;
803
804                 default:
805                   gcc_unreachable ();
806                 }
807             }
808           else
809             {
810               fixed_regs[i] = fixed;
811               call_used_regs[i] = call_used;
812 #ifdef CALL_REALLY_USED_REGISTERS
813               if (fixed == 0)
814                 call_really_used_regs[i] = call_used;
815 #endif
816             }
817         }
818     }
819   else
820     {
821       warning (0, "unknown register name: %s", name);
822     }
823 }
824
825 /* Mark register number I as global.  */
826 void
827 globalize_reg (int i)
828 {
829 #ifdef STACK_REGS
830   if (IN_RANGE (i, FIRST_STACK_REG, LAST_STACK_REG))
831     {
832       error ("stack register used for global register variable");
833       return;
834     }
835 #endif
836
837   if (fixed_regs[i] == 0 && no_global_reg_vars)
838     error ("global register variable follows a function definition");
839
840   if (global_regs[i])
841     {
842       warning (0, "register used for two global register variables");
843       return;
844     }
845
846   if (call_used_regs[i] && ! fixed_regs[i])
847     warning (0, "call-clobbered register used for global register variable");
848
849   global_regs[i] = 1;
850
851   /* If we're globalizing the frame pointer, we need to set the
852      appropriate regs_invalidated_by_call bit, even if it's already
853      set in fixed_regs.  */
854   if (i != STACK_POINTER_REGNUM)
855     {
856       SET_HARD_REG_BIT (regs_invalidated_by_call, i);
857       SET_REGNO_REG_SET (regs_invalidated_by_call_regset, i);
858     }
859
860   /* If already fixed, nothing else to do.  */
861   if (fixed_regs[i])
862     return;
863
864   fixed_regs[i] = call_used_regs[i] = 1;
865 #ifdef CALL_REALLY_USED_REGISTERS
866   call_really_used_regs[i] = 1;
867 #endif
868
869   SET_HARD_REG_BIT (fixed_reg_set, i);
870   SET_HARD_REG_BIT (call_used_reg_set, i);
871   SET_HARD_REG_BIT (call_fixed_reg_set, i);
872
873   reinit_regs ();
874 }
875 \f
876
877 /* Structure used to record preferences of given pseudo.  */
878 struct reg_pref
879 {
880   /* (enum reg_class) prefclass is the preferred class.  May be
881      NO_REGS if no class is better than memory.  */
882   char prefclass;
883
884   /* altclass is a register class that we should use for allocating
885      pseudo if no register in the preferred class is available.
886      If no register in this class is available, memory is preferred.
887
888      It might appear to be more general to have a bitmask of classes here,
889      but since it is recommended that there be a class corresponding to the
890      union of most major pair of classes, that generality is not required.  */
891   char altclass;
892
893   /* coverclass is a register class that IRA uses for allocating
894      the pseudo.  */
895   char coverclass;
896 };
897
898 /* Record preferences of each pseudo.  This is available after RA is
899    run.  */
900 static struct reg_pref *reg_pref;
901
902 /* Current size of reg_info.  */
903 static int reg_info_size;
904
905 /* Return the reg_class in which pseudo reg number REGNO is best allocated.
906    This function is sometimes called before the info has been computed.
907    When that happens, just return GENERAL_REGS, which is innocuous.  */
908 enum reg_class
909 reg_preferred_class (int regno)
910 {
911   if (reg_pref == 0)
912     return GENERAL_REGS;
913
914   return (enum reg_class) reg_pref[regno].prefclass;
915 }
916
917 enum reg_class
918 reg_alternate_class (int regno)
919 {
920   if (reg_pref == 0)
921     return ALL_REGS;
922
923   return (enum reg_class) reg_pref[regno].altclass;
924 }
925
926 /* Return the reg_class which is used by IRA for its allocation.  */
927 enum reg_class
928 reg_cover_class (int regno)
929 {
930   if (reg_pref == 0)
931     return NO_REGS;
932
933   return (enum reg_class) reg_pref[regno].coverclass;
934 }
935
936 \f
937
938 /* Allocate space for reg info.  */
939 static void
940 allocate_reg_info (void)
941 {
942   reg_info_size = max_reg_num ();
943   gcc_assert (! reg_pref && ! reg_renumber);
944   reg_renumber = XNEWVEC (short, reg_info_size);
945   reg_pref = XCNEWVEC (struct reg_pref, reg_info_size);
946   memset (reg_renumber, -1, reg_info_size * sizeof (short));
947 }
948
949
950 /* Resize reg info. The new elements will be uninitialized.  Return
951    TRUE if new elements (for new pseudos) were added.  */
952 bool
953 resize_reg_info (void)
954 {
955   int old;
956
957   if (reg_pref == NULL)
958     {
959       allocate_reg_info ();
960       return true;
961     }
962   if (reg_info_size == max_reg_num ())
963     return false;
964   old = reg_info_size;
965   reg_info_size = max_reg_num ();
966   gcc_assert (reg_pref && reg_renumber);
967   reg_renumber = XRESIZEVEC (short, reg_renumber, reg_info_size);
968   reg_pref = XRESIZEVEC (struct reg_pref, reg_pref, reg_info_size);
969   memset (reg_pref + old, -1,
970           (reg_info_size - old) * sizeof (struct reg_pref));
971   memset (reg_renumber + old, -1, (reg_info_size - old) * sizeof (short));
972   return true;
973 }
974
975
976 /* Free up the space allocated by allocate_reg_info.  */
977 void
978 free_reg_info (void)
979 {
980   if (reg_pref)
981     {
982       free (reg_pref);
983       reg_pref = NULL;
984     }
985
986   if (reg_renumber)
987     {
988       free (reg_renumber);
989       reg_renumber = NULL;
990     }
991 }
992
993 /* Initialize some global data for this pass.  */
994 static unsigned int
995 reginfo_init (void)
996 {
997   if (df)
998     df_compute_regs_ever_live (true);
999
1000   /* This prevents dump_flow_info from losing if called
1001      before reginfo is run.  */
1002   reg_pref = NULL;
1003   /* No more global register variables may be declared.  */
1004   no_global_reg_vars = 1;
1005   return 1;
1006 }
1007
1008 struct rtl_opt_pass pass_reginfo_init =
1009 {
1010  {
1011   RTL_PASS,
1012   "reginfo",                            /* name */
1013   NULL,                                 /* gate */
1014   reginfo_init,                         /* execute */
1015   NULL,                                 /* sub */
1016   NULL,                                 /* next */
1017   0,                                    /* static_pass_number */
1018   TV_NONE,                              /* tv_id */
1019   0,                                    /* properties_required */
1020   0,                                    /* properties_provided */
1021   0,                                    /* properties_destroyed */
1022   0,                                    /* todo_flags_start */
1023   0                                     /* todo_flags_finish */
1024  }
1025 };
1026
1027 \f
1028
1029 /* Set up preferred, alternate, and cover classes for REGNO as
1030    PREFCLASS, ALTCLASS, and COVERCLASS.  */
1031 void
1032 setup_reg_classes (int regno,
1033                    enum reg_class prefclass, enum reg_class altclass,
1034                    enum reg_class coverclass)
1035 {
1036   if (reg_pref == NULL)
1037     return;
1038   gcc_assert (reg_info_size == max_reg_num ());
1039   reg_pref[regno].prefclass = prefclass;
1040   reg_pref[regno].altclass = altclass;
1041   reg_pref[regno].coverclass = coverclass;
1042 }
1043
1044 \f
1045 /* This is the `regscan' pass of the compiler, run just before cse and
1046    again just before loop.  It finds the first and last use of each
1047    pseudo-register.  */
1048
1049 static void reg_scan_mark_refs (rtx, rtx);
1050
1051 void
1052 reg_scan (rtx f, unsigned int nregs ATTRIBUTE_UNUSED)
1053 {
1054   rtx insn;
1055
1056   timevar_push (TV_REG_SCAN);
1057
1058   for (insn = f; insn; insn = NEXT_INSN (insn))
1059     if (INSN_P (insn))
1060       {
1061         reg_scan_mark_refs (PATTERN (insn), insn);
1062         if (REG_NOTES (insn))
1063           reg_scan_mark_refs (REG_NOTES (insn), insn);
1064       }
1065
1066   timevar_pop (TV_REG_SCAN);
1067 }
1068
1069
1070 /* X is the expression to scan.  INSN is the insn it appears in.
1071    NOTE_FLAG is nonzero if X is from INSN's notes rather than its body.
1072    We should only record information for REGs with numbers
1073    greater than or equal to MIN_REGNO.  */
1074 static void
1075 reg_scan_mark_refs (rtx x, rtx insn)
1076 {
1077   enum rtx_code code;
1078   rtx dest;
1079   rtx note;
1080
1081   if (!x)
1082     return;
1083   code = GET_CODE (x);
1084   switch (code)
1085     {
1086     case CONST:
1087     case CONST_INT:
1088     case CONST_DOUBLE:
1089     case CONST_FIXED:
1090     case CONST_VECTOR:
1091     case CC0:
1092     case PC:
1093     case SYMBOL_REF:
1094     case LABEL_REF:
1095     case ADDR_VEC:
1096     case ADDR_DIFF_VEC:
1097     case REG:
1098       return;
1099
1100     case EXPR_LIST:
1101       if (XEXP (x, 0))
1102         reg_scan_mark_refs (XEXP (x, 0), insn);
1103       if (XEXP (x, 1))
1104         reg_scan_mark_refs (XEXP (x, 1), insn);
1105       break;
1106
1107     case INSN_LIST:
1108       if (XEXP (x, 1))
1109         reg_scan_mark_refs (XEXP (x, 1), insn);
1110       break;
1111
1112     case CLOBBER:
1113       if (MEM_P (XEXP (x, 0)))
1114         reg_scan_mark_refs (XEXP (XEXP (x, 0), 0), insn);
1115       break;
1116
1117     case SET:
1118       /* Count a set of the destination if it is a register.  */
1119       for (dest = SET_DEST (x);
1120            GET_CODE (dest) == SUBREG || GET_CODE (dest) == STRICT_LOW_PART
1121            || GET_CODE (dest) == ZERO_EXTEND;
1122            dest = XEXP (dest, 0))
1123         ;
1124
1125       /* If this is setting a pseudo from another pseudo or the sum of a
1126          pseudo and a constant integer and the other pseudo is known to be
1127          a pointer, set the destination to be a pointer as well.
1128
1129          Likewise if it is setting the destination from an address or from a
1130          value equivalent to an address or to the sum of an address and
1131          something else.
1132
1133          But don't do any of this if the pseudo corresponds to a user
1134          variable since it should have already been set as a pointer based
1135          on the type.  */
1136
1137       if (REG_P (SET_DEST (x))
1138           && REGNO (SET_DEST (x)) >= FIRST_PSEUDO_REGISTER
1139           /* If the destination pseudo is set more than once, then other
1140              sets might not be to a pointer value (consider access to a
1141              union in two threads of control in the presence of global
1142              optimizations).  So only set REG_POINTER on the destination
1143              pseudo if this is the only set of that pseudo.  */
1144           && DF_REG_DEF_COUNT (REGNO (SET_DEST (x))) == 1
1145           && ! REG_USERVAR_P (SET_DEST (x))
1146           && ! REG_POINTER (SET_DEST (x))
1147           && ((REG_P (SET_SRC (x))
1148                && REG_POINTER (SET_SRC (x)))
1149               || ((GET_CODE (SET_SRC (x)) == PLUS
1150                    || GET_CODE (SET_SRC (x)) == LO_SUM)
1151                   && CONST_INT_P (XEXP (SET_SRC (x), 1))
1152                   && REG_P (XEXP (SET_SRC (x), 0))
1153                   && REG_POINTER (XEXP (SET_SRC (x), 0)))
1154               || GET_CODE (SET_SRC (x)) == CONST
1155               || GET_CODE (SET_SRC (x)) == SYMBOL_REF
1156               || GET_CODE (SET_SRC (x)) == LABEL_REF
1157               || (GET_CODE (SET_SRC (x)) == HIGH
1158                   && (GET_CODE (XEXP (SET_SRC (x), 0)) == CONST
1159                       || GET_CODE (XEXP (SET_SRC (x), 0)) == SYMBOL_REF
1160                       || GET_CODE (XEXP (SET_SRC (x), 0)) == LABEL_REF))
1161               || ((GET_CODE (SET_SRC (x)) == PLUS
1162                    || GET_CODE (SET_SRC (x)) == LO_SUM)
1163                   && (GET_CODE (XEXP (SET_SRC (x), 1)) == CONST
1164                       || GET_CODE (XEXP (SET_SRC (x), 1)) == SYMBOL_REF
1165                       || GET_CODE (XEXP (SET_SRC (x), 1)) == LABEL_REF))
1166               || ((note = find_reg_note (insn, REG_EQUAL, 0)) != 0
1167                   && (GET_CODE (XEXP (note, 0)) == CONST
1168                       || GET_CODE (XEXP (note, 0)) == SYMBOL_REF
1169                       || GET_CODE (XEXP (note, 0)) == LABEL_REF))))
1170         REG_POINTER (SET_DEST (x)) = 1;
1171
1172       /* If this is setting a register from a register or from a simple
1173          conversion of a register, propagate REG_EXPR.  */
1174       if (REG_P (dest) && !REG_ATTRS (dest))
1175         {
1176           rtx src = SET_SRC (x);
1177
1178           while (GET_CODE (src) == SIGN_EXTEND
1179                  || GET_CODE (src) == ZERO_EXTEND
1180                  || GET_CODE (src) == TRUNCATE
1181                  || (GET_CODE (src) == SUBREG && subreg_lowpart_p (src)))
1182             src = XEXP (src, 0);
1183
1184           set_reg_attrs_from_value (dest, src);
1185         }
1186
1187       /* ... fall through ...  */
1188
1189     default:
1190       {
1191         const char *fmt = GET_RTX_FORMAT (code);
1192         int i;
1193         for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1194           {
1195             if (fmt[i] == 'e')
1196               reg_scan_mark_refs (XEXP (x, i), insn);
1197             else if (fmt[i] == 'E' && XVEC (x, i) != 0)
1198               {
1199                 int j;
1200                 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1201                   reg_scan_mark_refs (XVECEXP (x, i, j), insn);
1202               }
1203           }
1204       }
1205     }
1206 }
1207 \f
1208
1209 /* Return nonzero if C1 is a subset of C2, i.e., if every register in C1
1210    is also in C2.  */
1211 int
1212 reg_class_subset_p (reg_class_t c1, reg_class_t c2)
1213 {
1214   return (c1 == c2
1215           || c2 == ALL_REGS
1216           || hard_reg_set_subset_p (reg_class_contents[(int) c1],
1217                                    reg_class_contents[(int) c2]));
1218 }
1219
1220 /* Return nonzero if there is a register that is in both C1 and C2.  */
1221 int
1222 reg_classes_intersect_p (reg_class_t c1, reg_class_t c2)
1223 {
1224   return (c1 == c2
1225           || c1 == ALL_REGS
1226           || c2 == ALL_REGS
1227           || hard_reg_set_intersect_p (reg_class_contents[(int) c1],
1228                                       reg_class_contents[(int) c2]));
1229 }
1230
1231 \f
1232
1233 /* Passes for keeping and updating info about modes of registers
1234    inside subregisters.  */
1235
1236 #ifdef CANNOT_CHANGE_MODE_CLASS
1237
1238 struct subregs_of_mode_node
1239 {
1240   unsigned int block;
1241   unsigned char modes[MAX_MACHINE_MODE];
1242 };
1243
1244 static htab_t subregs_of_mode;
1245
1246 static hashval_t
1247 som_hash (const void *x)
1248 {
1249   const struct subregs_of_mode_node *const a =
1250     (const struct subregs_of_mode_node *) x;
1251   return a->block;
1252 }
1253
1254 static int
1255 som_eq (const void *x, const void *y)
1256 {
1257   const struct subregs_of_mode_node *const a =
1258     (const struct subregs_of_mode_node *) x;
1259   const struct subregs_of_mode_node *const b =
1260     (const struct subregs_of_mode_node *) y;
1261   return a->block == b->block;
1262 }
1263
1264 static void
1265 record_subregs_of_mode (rtx subreg)
1266 {
1267   struct subregs_of_mode_node dummy, *node;
1268   enum machine_mode mode;
1269   unsigned int regno;
1270   void **slot;
1271
1272   if (!REG_P (SUBREG_REG (subreg)))
1273     return;
1274
1275   regno = REGNO (SUBREG_REG (subreg));
1276   mode = GET_MODE (subreg);
1277
1278   if (regno < FIRST_PSEUDO_REGISTER)
1279     return;
1280
1281   dummy.block = regno & -8;
1282   slot = htab_find_slot_with_hash (subregs_of_mode, &dummy,
1283                                    dummy.block, INSERT);
1284   node = (struct subregs_of_mode_node *) *slot;
1285   if (node == NULL)
1286     {
1287       node = XCNEW (struct subregs_of_mode_node);
1288       node->block = regno & -8;
1289       *slot = node;
1290     }
1291
1292   node->modes[mode] |= 1 << (regno & 7);
1293 }
1294
1295 /* Call record_subregs_of_mode for all the subregs in X.  */
1296 static void
1297 find_subregs_of_mode (rtx x)
1298 {
1299   enum rtx_code code = GET_CODE (x);
1300   const char * const fmt = GET_RTX_FORMAT (code);
1301   int i;
1302
1303   if (code == SUBREG)
1304     record_subregs_of_mode (x);
1305
1306   /* Time for some deep diving.  */
1307   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1308     {
1309       if (fmt[i] == 'e')
1310         find_subregs_of_mode (XEXP (x, i));
1311       else if (fmt[i] == 'E')
1312         {
1313           int j;
1314           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1315             find_subregs_of_mode (XVECEXP (x, i, j));
1316         }
1317     }
1318 }
1319
1320 void
1321 init_subregs_of_mode (void)
1322 {
1323   basic_block bb;
1324   rtx insn;
1325
1326   if (subregs_of_mode)
1327     htab_empty (subregs_of_mode);
1328   else
1329     subregs_of_mode = htab_create (100, som_hash, som_eq, free);
1330
1331   FOR_EACH_BB (bb)
1332     FOR_BB_INSNS (bb, insn)
1333     if (INSN_P (insn))
1334       find_subregs_of_mode (PATTERN (insn));
1335 }
1336
1337 /* Return 1 if REGNO has had an invalid mode change in CLASS from FROM
1338    mode.  */
1339 bool
1340 invalid_mode_change_p (unsigned int regno,
1341                        enum reg_class rclass ATTRIBUTE_UNUSED,
1342                        enum machine_mode from)
1343 {
1344   struct subregs_of_mode_node dummy, *node;
1345   unsigned int to;
1346   unsigned char mask;
1347
1348   gcc_assert (subregs_of_mode);
1349   dummy.block = regno & -8;
1350   node = (struct subregs_of_mode_node *)
1351     htab_find_with_hash (subregs_of_mode, &dummy, dummy.block);
1352   if (node == NULL)
1353     return false;
1354
1355   mask = 1 << (regno & 7);
1356   for (to = VOIDmode; to < NUM_MACHINE_MODES; to++)
1357     if (node->modes[to] & mask)
1358       if (CANNOT_CHANGE_MODE_CLASS (from, (enum machine_mode) to, rclass))
1359         return true;
1360
1361   return false;
1362 }
1363
1364 void
1365 finish_subregs_of_mode (void)
1366 {
1367   htab_delete (subregs_of_mode);
1368   subregs_of_mode = 0;
1369 }
1370 #else
1371 void
1372 init_subregs_of_mode (void)
1373 {
1374 }
1375 void
1376 finish_subregs_of_mode (void)
1377 {
1378 }
1379
1380 #endif /* CANNOT_CHANGE_MODE_CLASS */