OSDN Git Service

- update record_reg_classes change to be consistent with
[pf3gnuchains/gcc-fork.git] / gcc / regclass.c
1 /* Compute register class preferences for pseudo-registers.
2    Copyright (C) 1987, 88, 91-97, 1998 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21
22 /* This file contains two passes of the compiler: reg_scan and reg_class.
23    It also defines some tables of information about the hardware registers
24    and a function init_reg_sets to initialize the tables.  */
25
26 #include "config.h"
27 #include "system.h"
28 #include "rtl.h"
29 #include "hard-reg-set.h"
30 #include "flags.h"
31 #include "basic-block.h"
32 #include "regs.h"
33 #include "insn-config.h"
34 #include "recog.h"
35 #include "reload.h"
36 #include "real.h"
37 #include "toplev.h"
38 #include "output.h"
39
40 #ifndef REGISTER_MOVE_COST
41 #define REGISTER_MOVE_COST(x, y) 2
42 #endif
43
44 /* If we have auto-increment or auto-decrement and we can have secondary
45    reloads, we are not allowed to use classes requiring secondary
46    reloads for pseudos auto-incremented since reload can't handle it.  */
47
48 #ifdef AUTO_INC_DEC
49 #if defined(SECONDARY_INPUT_RELOAD_CLASS) || defined(SECONDARY_OUTPUT_RELOAD_CLASS)
50 #define FORBIDDEN_INC_DEC_CLASSES
51 #endif
52 #endif
53 \f
54 /* Register tables used by many passes.  */
55
56 /* Indexed by hard register number, contains 1 for registers
57    that are fixed use (stack pointer, pc, frame pointer, etc.).
58    These are the registers that cannot be used to allocate
59    a pseudo reg for general use.  */
60
61 char fixed_regs[FIRST_PSEUDO_REGISTER];
62
63 /* Same info as a HARD_REG_SET.  */
64
65 HARD_REG_SET fixed_reg_set;
66
67 /* Data for initializing the above.  */
68
69 static char initial_fixed_regs[] = FIXED_REGISTERS;
70
71 /* Indexed by hard register number, contains 1 for registers
72    that are fixed use or are clobbered by function calls.
73    These are the registers that cannot be used to allocate
74    a pseudo reg whose life crosses calls unless we are able
75    to save/restore them across the calls.  */
76
77 char call_used_regs[FIRST_PSEUDO_REGISTER];
78
79 /* Same info as a HARD_REG_SET.  */
80
81 HARD_REG_SET call_used_reg_set;
82
83 /* HARD_REG_SET of registers we want to avoid caller saving.  */
84 HARD_REG_SET losing_caller_save_reg_set;
85
86 /* Data for initializing the above.  */
87
88 static char initial_call_used_regs[] = CALL_USED_REGISTERS;
89   
90 /* Indexed by hard register number, contains 1 for registers that are
91    fixed use or call used registers that cannot hold quantities across
92    calls even if we are willing to save and restore them.  call fixed
93    registers are a subset of call used registers.  */
94
95 char call_fixed_regs[FIRST_PSEUDO_REGISTER];
96
97 /* The same info as a HARD_REG_SET.  */
98
99 HARD_REG_SET call_fixed_reg_set;
100
101 /* Number of non-fixed registers.  */
102
103 int n_non_fixed_regs;
104
105 /* Indexed by hard register number, contains 1 for registers
106    that are being used for global register decls.
107    These must be exempt from ordinary flow analysis
108    and are also considered fixed.  */
109
110 char global_regs[FIRST_PSEUDO_REGISTER];
111   
112 /* Table of register numbers in the order in which to try to use them.  */
113 #ifdef REG_ALLOC_ORDER
114 int reg_alloc_order[FIRST_PSEUDO_REGISTER] = REG_ALLOC_ORDER;
115 #endif
116
117 /* For each reg class, a HARD_REG_SET saying which registers are in it.  */
118
119 HARD_REG_SET reg_class_contents[N_REG_CLASSES];
120
121 /* The same information, but as an array of unsigned ints.  We copy from
122    these unsigned ints to the table above.  We do this so the tm.h files
123    do not have to be aware of the wordsize for machines with <= 64 regs.  */
124
125 #define N_REG_INTS  \
126   ((FIRST_PSEUDO_REGISTER + (HOST_BITS_PER_INT - 1)) / HOST_BITS_PER_INT)
127
128 static unsigned int_reg_class_contents[N_REG_CLASSES][N_REG_INTS] 
129   = REG_CLASS_CONTENTS;
130
131 /* For each reg class, number of regs it contains.  */
132
133 int reg_class_size[N_REG_CLASSES];
134
135 /* For each reg class, table listing all the containing classes.  */
136
137 enum reg_class reg_class_superclasses[N_REG_CLASSES][N_REG_CLASSES];
138
139 /* For each reg class, table listing all the classes contained in it.  */
140
141 enum reg_class reg_class_subclasses[N_REG_CLASSES][N_REG_CLASSES];
142
143 /* For each pair of reg classes,
144    a largest reg class contained in their union.  */
145
146 enum reg_class reg_class_subunion[N_REG_CLASSES][N_REG_CLASSES];
147
148 /* For each pair of reg classes,
149    the smallest reg class containing their union.  */
150
151 enum reg_class reg_class_superunion[N_REG_CLASSES][N_REG_CLASSES];
152
153 /* Array containing all of the register names */
154
155 char *reg_names[] = REGISTER_NAMES;
156
157 /* For each hard register, the widest mode object that it can contain.
158    This will be a MODE_INT mode if the register can hold integers.  Otherwise
159    it will be a MODE_FLOAT or a MODE_CC mode, whichever is valid for the
160    register.  */
161
162 enum machine_mode reg_raw_mode[FIRST_PSEUDO_REGISTER];
163
164 /* Maximum cost of moving from a register in one class to a register in
165    another class.  Based on REGISTER_MOVE_COST.  */
166
167 static int move_cost[N_REG_CLASSES][N_REG_CLASSES];
168
169 /* Similar, but here we don't have to move if the first index is a subset
170    of the second so in that case the cost is zero.  */
171
172 static int may_move_cost[N_REG_CLASSES][N_REG_CLASSES];
173
174 #ifdef FORBIDDEN_INC_DEC_CLASSES
175
176 /* These are the classes that regs which are auto-incremented or decremented
177    cannot be put in.  */
178
179 static int forbidden_inc_dec_class[N_REG_CLASSES];
180
181 /* Indexed by n, is non-zero if (REG n) is used in an auto-inc or auto-dec
182    context.  */
183
184 static char *in_inc_dec;
185
186 #endif /* FORBIDDEN_INC_DEC_CLASSES */
187
188 #ifdef HAVE_SECONDARY_RELOADS
189
190 /* Sample MEM values for use by memory_move_secondary_cost.  */
191
192 static rtx top_of_stack[MAX_MACHINE_MODE];
193
194 #endif /* HAVE_SECONDARY_RELOADS */
195
196 /* Linked list of reg_info structures allocated for reg_n_info array.
197    Grouping all of the allocated structures together in one lump
198    means only one call to bzero to clear them, rather than n smaller
199    calls.  */
200 struct reg_info_data {
201   struct reg_info_data *next;   /* next set of reg_info structures */
202   size_t min_index;             /* minimum index # */
203   size_t max_index;             /* maximum index # */
204   char used_p;                  /* non-zero if this has been used previously */
205   reg_info data[1];             /* beginning of the reg_info data */
206 };
207
208 static struct reg_info_data *reg_info_head;
209
210
211 /* Function called only once to initialize the above data on reg usage.
212    Once this is done, various switches may override.  */
213
214 void
215 init_reg_sets ()
216 {
217   register int i, j;
218
219   /* First copy the register information from the initial int form into
220      the regsets.  */
221
222   for (i = 0; i < N_REG_CLASSES; i++)
223     {
224       CLEAR_HARD_REG_SET (reg_class_contents[i]);
225
226       for (j = 0; j < FIRST_PSEUDO_REGISTER; j++)
227         if (int_reg_class_contents[i][j / HOST_BITS_PER_INT]
228             & ((unsigned) 1 << (j % HOST_BITS_PER_INT)))
229           SET_HARD_REG_BIT (reg_class_contents[i], j);
230     }
231
232   bcopy (initial_fixed_regs, fixed_regs, sizeof fixed_regs);
233   bcopy (initial_call_used_regs, call_used_regs, sizeof call_used_regs);
234   bzero (global_regs, sizeof global_regs);
235
236   /* Compute number of hard regs in each class.  */
237
238   bzero ((char *) reg_class_size, sizeof reg_class_size);
239   for (i = 0; i < N_REG_CLASSES; i++)
240     for (j = 0; j < FIRST_PSEUDO_REGISTER; j++)
241       if (TEST_HARD_REG_BIT (reg_class_contents[i], j))
242         reg_class_size[i]++;
243
244   /* Initialize the table of subunions.
245      reg_class_subunion[I][J] gets the largest-numbered reg-class
246      that is contained in the union of classes I and J.  */
247
248   for (i = 0; i < N_REG_CLASSES; i++)
249     {
250       for (j = 0; j < N_REG_CLASSES; j++)
251         {
252 #ifdef HARD_REG_SET
253           register              /* Declare it register if it's a scalar.  */
254 #endif
255             HARD_REG_SET c;
256           register int k;
257
258           COPY_HARD_REG_SET (c, reg_class_contents[i]);
259           IOR_HARD_REG_SET (c, reg_class_contents[j]);
260           for (k = 0; k < N_REG_CLASSES; k++)
261             {
262               GO_IF_HARD_REG_SUBSET (reg_class_contents[k], c,
263                                      subclass1);
264               continue;
265
266             subclass1:
267               /* keep the largest subclass */           /* SPEE 900308 */
268               GO_IF_HARD_REG_SUBSET (reg_class_contents[k],
269                                      reg_class_contents[(int) reg_class_subunion[i][j]],
270                                      subclass2);
271               reg_class_subunion[i][j] = (enum reg_class) k;
272             subclass2:
273               ;
274             }
275         }
276     }
277
278   /* Initialize the table of superunions.
279      reg_class_superunion[I][J] gets the smallest-numbered reg-class
280      containing the union of classes I and J.  */
281
282   for (i = 0; i < N_REG_CLASSES; i++)
283     {
284       for (j = 0; j < N_REG_CLASSES; j++)
285         {
286 #ifdef HARD_REG_SET
287           register              /* Declare it register if it's a scalar.  */
288 #endif
289             HARD_REG_SET c;
290           register int k;
291
292           COPY_HARD_REG_SET (c, reg_class_contents[i]);
293           IOR_HARD_REG_SET (c, reg_class_contents[j]);
294           for (k = 0; k < N_REG_CLASSES; k++)
295             GO_IF_HARD_REG_SUBSET (c, reg_class_contents[k], superclass);
296
297         superclass:
298           reg_class_superunion[i][j] = (enum reg_class) k;
299         }
300     }
301
302   /* Initialize the tables of subclasses and superclasses of each reg class.
303      First clear the whole table, then add the elements as they are found.  */
304
305   for (i = 0; i < N_REG_CLASSES; i++)
306     {
307       for (j = 0; j < N_REG_CLASSES; j++)
308         {
309           reg_class_superclasses[i][j] = LIM_REG_CLASSES;
310           reg_class_subclasses[i][j] = LIM_REG_CLASSES;
311         }
312     }
313
314   for (i = 0; i < N_REG_CLASSES; i++)
315     {
316       if (i == (int) NO_REGS)
317         continue;
318
319       for (j = i + 1; j < N_REG_CLASSES; j++)
320         {
321           enum reg_class *p;
322
323           GO_IF_HARD_REG_SUBSET (reg_class_contents[i], reg_class_contents[j],
324                                  subclass);
325           continue;
326         subclass:
327           /* Reg class I is a subclass of J.
328              Add J to the table of superclasses of I.  */
329           p = &reg_class_superclasses[i][0];
330           while (*p != LIM_REG_CLASSES) p++;
331           *p = (enum reg_class) j;
332           /* Add I to the table of superclasses of J.  */
333           p = &reg_class_subclasses[j][0];
334           while (*p != LIM_REG_CLASSES) p++;
335           *p = (enum reg_class) i;
336         }
337     }
338
339   /* Do any additional initialization regsets may need */
340   INIT_ONCE_REG_SET ();
341 }
342
343 /* After switches have been processed, which perhaps alter
344    `fixed_regs' and `call_used_regs', convert them to HARD_REG_SETs.  */
345
346 static void
347 init_reg_sets_1 ()
348 {
349   register unsigned int i, j;
350
351   /* This macro allows the fixed or call-used registers
352      to depend on target flags.  */
353
354 #ifdef CONDITIONAL_REGISTER_USAGE
355   CONDITIONAL_REGISTER_USAGE;
356 #endif
357
358   /* Initialize "constant" tables.  */
359
360   CLEAR_HARD_REG_SET (fixed_reg_set);
361   CLEAR_HARD_REG_SET (call_used_reg_set);
362   CLEAR_HARD_REG_SET (call_fixed_reg_set);
363
364   bcopy (fixed_regs, call_fixed_regs, sizeof call_fixed_regs);
365
366   n_non_fixed_regs = 0;
367
368   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
369     {
370       if (fixed_regs[i])
371         SET_HARD_REG_BIT (fixed_reg_set, i);
372       else
373         n_non_fixed_regs++;
374
375       if (call_used_regs[i])
376         SET_HARD_REG_BIT (call_used_reg_set, i);
377       if (call_fixed_regs[i])
378         SET_HARD_REG_BIT (call_fixed_reg_set, i);
379       if (CLASS_LIKELY_SPILLED_P (REGNO_REG_CLASS (i)))
380         SET_HARD_REG_BIT (losing_caller_save_reg_set, i);
381     }
382
383   /* Initialize the move cost table.  Find every subset of each class
384      and take the maximum cost of moving any subset to any other.  */
385
386   for (i = 0; i < N_REG_CLASSES; i++)
387     for (j = 0; j < N_REG_CLASSES; j++)
388       {
389         int cost = i == j ? 2 : REGISTER_MOVE_COST (i, j);
390         enum reg_class *p1, *p2;
391
392         for (p2 = &reg_class_subclasses[j][0]; *p2 != LIM_REG_CLASSES; p2++)
393           if (*p2 != i)
394             cost = MAX (cost, REGISTER_MOVE_COST (i, *p2));
395
396         for (p1 = &reg_class_subclasses[i][0]; *p1 != LIM_REG_CLASSES; p1++)
397           {
398             if (*p1 != j)
399               cost = MAX (cost, REGISTER_MOVE_COST (*p1, j));
400
401             for (p2 = &reg_class_subclasses[j][0];
402                  *p2 != LIM_REG_CLASSES; p2++)
403               if (*p1 != *p2)
404                 cost = MAX (cost, REGISTER_MOVE_COST (*p1, *p2));
405           }
406
407         move_cost[i][j] = cost;
408
409         if (reg_class_subset_p (i, j))
410           cost = 0;
411
412         may_move_cost[i][j] = cost;
413       }
414 }
415
416 /* Compute the table of register modes.
417    These values are used to record death information for individual registers
418    (as opposed to a multi-register mode).  */
419
420 static void
421 init_reg_modes ()
422 {
423   register int i;
424
425   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
426     {
427       reg_raw_mode[i] = choose_hard_reg_mode (i, 1);
428
429       /* If we couldn't find a valid mode, just use the previous mode.
430          ??? One situation in which we need to do this is on the mips where
431          HARD_REGNO_NREGS (fpreg, [SD]Fmode) returns 2.  Ideally we'd like
432          to use DF mode for the even registers and VOIDmode for the odd
433          (for the cpu models where the odd ones are inaccessible).  */
434       if (reg_raw_mode[i] == VOIDmode)
435         reg_raw_mode[i] = i == 0 ? word_mode : reg_raw_mode[i-1];
436     }
437 }
438
439 /* Finish initializing the register sets and
440    initialize the register modes.  */
441
442 void
443 init_regs ()
444 {
445   /* This finishes what was started by init_reg_sets, but couldn't be done
446      until after register usage was specified.  */
447   init_reg_sets_1 ();
448
449   init_reg_modes ();
450
451 #ifdef HAVE_SECONDARY_RELOADS
452   {
453     /* Make some fake stack-frame MEM references for use in
454        memory_move_secondary_cost.  */
455     int i;
456     for (i = 0; i < MAX_MACHINE_MODE; i++)
457       top_of_stack[i] = gen_rtx_MEM (i, stack_pointer_rtx);
458   }
459 #endif
460 }
461
462 #ifdef HAVE_SECONDARY_RELOADS
463
464 /* Compute extra cost of moving registers to/from memory due to reloads.
465    Only needed if secondary reloads are required for memory moves.  */
466
467 int
468 memory_move_secondary_cost (mode, class, in)
469      enum machine_mode mode;
470      enum reg_class class;
471      int in;
472 {
473   enum reg_class altclass;
474   int partial_cost = 0;
475   /* We need a memory reference to feed to SECONDARY... macros.  */
476   rtx mem = top_of_stack[(int) mode];
477
478   if (in)
479     {
480 #ifdef SECONDARY_INPUT_RELOAD_CLASS
481       altclass = SECONDARY_INPUT_RELOAD_CLASS (class, mode, mem);
482 #else
483       altclass = NO_REGS;
484 #endif
485     }
486   else
487     {
488 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
489       altclass = SECONDARY_OUTPUT_RELOAD_CLASS (class, mode, mem);
490 #else
491       altclass = NO_REGS;
492 #endif
493     }
494
495   if (altclass == NO_REGS)
496     return 0;
497
498   if (in)
499     partial_cost = REGISTER_MOVE_COST (altclass, class);
500   else
501     partial_cost = REGISTER_MOVE_COST (class, altclass);
502
503   if (class == altclass)
504     /* This isn't simply a copy-to-temporary situation.  Can't guess
505        what it is, so MEMORY_MOVE_COST really ought not to be calling
506        here in that case.
507
508        I'm tempted to put in an abort here, but returning this will
509        probably only give poor estimates, which is what we would've
510        had before this code anyways.  */
511     return partial_cost;
512
513   /* Check if the secondary reload register will also need a
514      secondary reload.  */
515   return memory_move_secondary_cost (mode, altclass, in) + partial_cost;
516 }
517 #endif
518
519 /* Return a machine mode that is legitimate for hard reg REGNO and large
520    enough to save nregs.  If we can't find one, return VOIDmode.  */
521
522 enum machine_mode
523 choose_hard_reg_mode (regno, nregs)
524      int regno;
525      int nregs;
526 {
527   enum machine_mode found_mode = VOIDmode, mode;
528
529   /* We first look for the largest integer mode that can be validly
530      held in REGNO.  If none, we look for the largest floating-point mode.
531      If we still didn't find a valid mode, try CCmode.  */
532
533   for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT);
534        mode != VOIDmode;
535        mode = GET_MODE_WIDER_MODE (mode))
536     if (HARD_REGNO_NREGS (regno, mode) == nregs
537         && HARD_REGNO_MODE_OK (regno, mode))
538       found_mode = mode;
539
540   if (found_mode != VOIDmode)
541     return found_mode;
542
543   for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT);
544        mode != VOIDmode;
545        mode = GET_MODE_WIDER_MODE (mode))
546     if (HARD_REGNO_NREGS (regno, mode) == nregs
547         && HARD_REGNO_MODE_OK (regno, mode))
548       found_mode = mode;
549
550   if (found_mode != VOIDmode)
551     return found_mode;
552
553   if (HARD_REGNO_NREGS (regno, CCmode) == nregs
554       && HARD_REGNO_MODE_OK (regno, CCmode))
555     return CCmode;
556
557   /* We can't find a mode valid for this register.  */
558   return VOIDmode;
559 }
560
561 /* Specify the usage characteristics of the register named NAME.
562    It should be a fixed register if FIXED and a
563    call-used register if CALL_USED.  */
564
565 void
566 fix_register (name, fixed, call_used)
567      char *name;
568      int fixed, call_used;
569 {
570   int i;
571
572   /* Decode the name and update the primary form of
573      the register info.  */
574
575   if ((i = decode_reg_name (name)) >= 0)
576     {
577       if ((i == STACK_POINTER_REGNUM
578 #ifdef HARD_FRAME_POINTER_REGNUM
579            || i == HARD_FRAME_POINTER_REGNUM
580 #else
581            || i == FRAME_POINTER_REGNUM
582 #endif
583            )
584           && (fixed == 0 || call_used == 0))
585         {
586           static char* what_option[2][2] = {
587             "call-saved", "call-used", 
588             "no-such-option", "fixed" };
589           
590           error ("can't use '%s' as a %s register", name, 
591                  what_option[fixed][call_used]);
592         }
593       else
594         {
595           fixed_regs[i] = fixed;
596           call_used_regs[i] = call_used;
597         }
598     }
599   else
600     {
601       warning ("unknown register name: %s", name);
602     }
603 }
604
605 /* Mark register number I as global.  */
606
607 void
608 globalize_reg (i)
609      int i;
610 {
611   if (global_regs[i])
612     {
613       warning ("register used for two global register variables");
614       return;
615     }
616
617   if (call_used_regs[i] && ! fixed_regs[i])
618     warning ("call-clobbered register used for global register variable");
619
620   global_regs[i] = 1;
621
622   /* If already fixed, nothing else to do.  */
623   if (fixed_regs[i])
624     return;
625
626   fixed_regs[i] = call_used_regs[i] = call_fixed_regs[i] = 1;
627   n_non_fixed_regs--;
628
629   SET_HARD_REG_BIT (fixed_reg_set, i);
630   SET_HARD_REG_BIT (call_used_reg_set, i);
631   SET_HARD_REG_BIT (call_fixed_reg_set, i);
632 }
633 \f
634 /* Now the data and code for the `regclass' pass, which happens
635    just before local-alloc.  */
636
637 /* The `costs' struct records the cost of using a hard register of each class
638    and of using memory for each pseudo.  We use this data to set up
639    register class preferences.  */
640
641 struct costs
642 {
643   int cost[N_REG_CLASSES];
644   int mem_cost;
645 };
646
647 /* Record the cost of each class for each pseudo.  */
648
649 static struct costs *costs;
650
651 /* Initialized once, and used to initialize cost values for each insn.  */
652
653 static struct costs init_cost;
654
655 /* Record the same data by operand number, accumulated for each alternative
656    in an insn.  The contribution to a pseudo is that of the minimum-cost
657    alternative.  */
658
659 static struct costs op_costs[MAX_RECOG_OPERANDS];
660
661 /* (enum reg_class) prefclass[R] is the preferred class for pseudo number R.
662    This is available after `regclass' is run.  */
663
664 static char *prefclass;
665
666 /* altclass[R] is a register class that we should use for allocating
667    pseudo number R if no register in the preferred class is available.
668    If no register in this class is available, memory is preferred.
669
670    It might appear to be more general to have a bitmask of classes here,
671    but since it is recommended that there be a class corresponding to the
672    union of most major pair of classes, that generality is not required. 
673
674    This is available after `regclass' is run.  */
675
676 static char *altclass;
677
678 /* Allocated buffers for prefclass and altclass. */
679 static char *prefclass_buffer;
680 static char *altclass_buffer;
681
682 /* Record the depth of loops that we are in.  */
683
684 static int loop_depth;
685
686 /* Account for the fact that insns within a loop are executed very commonly,
687    but don't keep doing this as loops go too deep.  */
688
689 static int loop_cost;
690
691 static int n_occurrences        PROTO((int, char *));
692 static rtx scan_one_insn        PROTO((rtx, int));
693 static void record_reg_classes  PROTO((int, int, rtx *, enum machine_mode *,
694                                        char **, rtx));
695 static int copy_cost            PROTO((rtx, enum machine_mode, 
696                                        enum reg_class, int));
697 static void record_address_regs PROTO((rtx, enum reg_class, int));
698 #ifdef FORBIDDEN_INC_DEC_CLASSES
699 static int auto_inc_dec_reg_p   PROTO((rtx, enum machine_mode));
700 #endif
701 static void reg_scan_mark_refs  PROTO((rtx, rtx, int, int));
702
703 /* Return the reg_class in which pseudo reg number REGNO is best allocated.
704    This function is sometimes called before the info has been computed.
705    When that happens, just return GENERAL_REGS, which is innocuous.  */
706
707 enum reg_class
708 reg_preferred_class (regno)
709      int regno;
710 {
711   if (prefclass == 0)
712     return GENERAL_REGS;
713   return (enum reg_class) prefclass[regno];
714 }
715
716 enum reg_class
717 reg_alternate_class (regno)
718      int regno;
719 {
720   if (prefclass == 0)
721     return ALL_REGS;
722
723   return (enum reg_class) altclass[regno];
724 }
725
726 /* Initialize some global data for this pass.  */
727
728 void
729 regclass_init ()
730 {
731   int i;
732
733   init_cost.mem_cost = 10000;
734   for (i = 0; i < N_REG_CLASSES; i++)
735     init_cost.cost[i] = 10000;
736
737   /* This prevents dump_flow_info from losing if called
738      before regclass is run.  */
739   prefclass = 0;
740 }
741 \f
742 /* Return the number of times character C occurs in string S.  */
743 static int
744 n_occurrences (c, s)
745      int c;
746      char *s;
747 {
748   int n = 0;
749   while (*s)
750     n += (*s++ == c);
751   return n;
752 }
753
754 /* Subroutine of regclass, processes one insn INSN.  Scan it and record each
755    time it would save code to put a certain register in a certain class.
756    PASS, when nonzero, inhibits some optimizations which need only be done
757    once.
758    Return the last insn processed, so that the scan can be continued from
759    there.  */
760
761 static rtx
762 scan_one_insn (insn, pass)
763      rtx insn;
764      int pass;
765 {
766   enum rtx_code code = GET_CODE (insn);
767   enum rtx_code pat_code;
768
769   char *constraints[MAX_RECOG_OPERANDS];
770   enum machine_mode modes[MAX_RECOG_OPERANDS];
771   int nalternatives;
772   int noperands;
773   rtx set;
774   int i, j;
775
776   /* Show that an insn inside a loop is likely to be executed three
777      times more than insns outside a loop.  This is much more aggressive
778      than the assumptions made elsewhere and is being tried as an
779      experiment.  */
780
781   if (code == NOTE)
782     {
783       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
784         loop_depth++, loop_cost = 1 << (2 * MIN (loop_depth, 5));
785       else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END)
786         loop_depth--, loop_cost = 1 << (2 * MIN (loop_depth, 5));
787
788       return insn;
789     }
790
791   if (GET_RTX_CLASS (code) != 'i')
792     return insn;
793
794   pat_code = GET_CODE (PATTERN (insn));
795   if (pat_code == USE
796       || pat_code == CLOBBER
797       || pat_code == ASM_INPUT
798       || pat_code == ADDR_VEC
799       || pat_code == ADDR_DIFF_VEC)
800     return insn;
801
802   if (code == INSN
803       && (noperands = asm_noperands (PATTERN (insn))) >= 0)
804     {
805       decode_asm_operands (PATTERN (insn), recog_operand, NULL_PTR,
806                            constraints, modes);
807       nalternatives = (noperands == 0 ? 0
808                        : n_occurrences (',', constraints[0]) + 1);
809     }
810   else
811     {
812       int insn_code_number = recog_memoized (insn);
813       rtx note;
814
815       set = single_set (insn);
816       insn_extract (insn);
817
818       nalternatives = insn_n_alternatives[insn_code_number];
819       noperands = insn_n_operands[insn_code_number];
820
821       /* If this insn loads a parameter from its stack slot, then
822          it represents a savings, rather than a cost, if the
823          parameter is stored in memory.  Record this fact.  */
824
825       if (set != 0 && GET_CODE (SET_DEST (set)) == REG
826           && GET_CODE (SET_SRC (set)) == MEM
827           && (note = find_reg_note (insn, REG_EQUIV,
828                                     NULL_RTX)) != 0
829           && GET_CODE (XEXP (note, 0)) == MEM)
830         {
831           costs[REGNO (SET_DEST (set))].mem_cost
832             -= (MEMORY_MOVE_COST (GET_MODE (SET_DEST (set)),
833                                   GENERAL_REGS, 1)
834                 * loop_cost);
835           record_address_regs (XEXP (SET_SRC (set), 0),
836                                BASE_REG_CLASS, loop_cost * 2);
837           return insn;
838         }
839
840       /* Improve handling of two-address insns such as
841          (set X (ashift CONST Y)) where CONST must be made to
842          match X. Change it into two insns: (set X CONST)
843          (set X (ashift X Y)).  If we left this for reloading, it
844          would probably get three insns because X and Y might go
845          in the same place. This prevents X and Y from receiving
846          the same hard reg.
847
848          We can only do this if the modes of operands 0 and 1
849          (which might not be the same) are tieable and we only need
850          do this during our first pass.  */
851
852       if (pass == 0 && optimize
853           && noperands >= 3
854           && insn_operand_constraint[insn_code_number][1][0] == '0'
855           && insn_operand_constraint[insn_code_number][1][1] == 0
856           && CONSTANT_P (recog_operand[1])
857           && ! rtx_equal_p (recog_operand[0], recog_operand[1])
858           && ! rtx_equal_p (recog_operand[0], recog_operand[2])
859           && GET_CODE (recog_operand[0]) == REG
860           && MODES_TIEABLE_P (GET_MODE (recog_operand[0]),
861                               insn_operand_mode[insn_code_number][1]))
862         {
863           rtx previnsn = prev_real_insn (insn);
864           rtx dest
865             = gen_lowpart (insn_operand_mode[insn_code_number][1],
866                            recog_operand[0]);
867           rtx newinsn
868             = emit_insn_before (gen_move_insn (dest,
869                                                recog_operand[1]),
870                                 insn);
871
872           /* If this insn was the start of a basic block,
873              include the new insn in that block.
874              We need not check for code_label here;
875              while a basic block can start with a code_label,
876              INSN could not be at the beginning of that block.  */
877           if (previnsn == 0 || GET_CODE (previnsn) == JUMP_INSN)
878             {
879               int b;
880               for (b = 0; b < n_basic_blocks; b++)
881                 if (insn == basic_block_head[b])
882                   basic_block_head[b] = newinsn;
883             }
884
885           /* This makes one more setting of new insns's dest.  */
886           REG_N_SETS (REGNO (recog_operand[0]))++;
887
888           *recog_operand_loc[1] = recog_operand[0];
889           for (i = insn_n_dups[insn_code_number] - 1; i >= 0; i--)
890             if (recog_dup_num[i] == 1)
891               *recog_dup_loc[i] = recog_operand[0];
892
893           return PREV_INSN (newinsn);
894         }
895
896       for (i = 0; i < noperands; i++)
897         {
898           constraints[i]
899             = insn_operand_constraint[insn_code_number][i];
900           modes[i] = insn_operand_mode[insn_code_number][i];
901         }
902     }
903
904   /* If we get here, we are set up to record the costs of all the
905      operands for this insn.  Start by initializing the costs.
906      Then handle any address registers.  Finally record the desired
907      classes for any pseudos, doing it twice if some pair of
908      operands are commutative.  */
909              
910   for (i = 0; i < noperands; i++)
911     {
912       op_costs[i] = init_cost;
913
914       if (GET_CODE (recog_operand[i]) == SUBREG)
915         recog_operand[i] = SUBREG_REG (recog_operand[i]);
916
917       if (GET_CODE (recog_operand[i]) == MEM)
918         record_address_regs (XEXP (recog_operand[i], 0),
919                              BASE_REG_CLASS, loop_cost * 2);
920       else if (constraints[i][0] == 'p')
921         record_address_regs (recog_operand[i],
922                              BASE_REG_CLASS, loop_cost * 2);
923     }
924
925   /* Check for commutative in a separate loop so everything will
926      have been initialized.  We must do this even if one operand
927      is a constant--see addsi3 in m68k.md.  */
928
929   for (i = 0; i < noperands - 1; i++)
930     if (constraints[i][0] == '%')
931       {
932         char *xconstraints[MAX_RECOG_OPERANDS];
933         int j;
934
935         /* Handle commutative operands by swapping the constraints.
936            We assume the modes are the same.  */
937
938         for (j = 0; j < noperands; j++)
939           xconstraints[j] = constraints[j];
940
941         xconstraints[i] = constraints[i+1];
942         xconstraints[i+1] = constraints[i];
943         record_reg_classes (nalternatives, noperands,
944                             recog_operand, modes, xconstraints,
945                             insn);
946       }
947
948   record_reg_classes (nalternatives, noperands, recog_operand,
949                       modes, constraints, insn);
950
951   /* Now add the cost for each operand to the total costs for
952      its register.  */
953
954   for (i = 0; i < noperands; i++)
955     if (GET_CODE (recog_operand[i]) == REG
956         && REGNO (recog_operand[i]) >= FIRST_PSEUDO_REGISTER)
957       {
958         int regno = REGNO (recog_operand[i]);
959         struct costs *p = &costs[regno], *q = &op_costs[i];
960
961         p->mem_cost += q->mem_cost * loop_cost;
962         for (j = 0; j < N_REG_CLASSES; j++)
963           p->cost[j] += q->cost[j] * loop_cost;
964       }
965
966   return insn;
967 }
968
969 /* This is a pass of the compiler that scans all instructions
970    and calculates the preferred class for each pseudo-register.
971    This information can be accessed later by calling `reg_preferred_class'.
972    This pass comes just before local register allocation.  */
973
974 void
975 regclass (f, nregs)
976      rtx f;
977      int nregs;
978 {
979 #ifdef REGISTER_CONSTRAINTS
980   register rtx insn;
981   register int i;
982   int pass;
983
984   init_recog ();
985
986   costs = (struct costs *) xmalloc (nregs * sizeof (struct costs));
987
988 #ifdef FORBIDDEN_INC_DEC_CLASSES
989
990   in_inc_dec = (char *) alloca (nregs);
991
992   /* Initialize information about which register classes can be used for
993      pseudos that are auto-incremented or auto-decremented.  It would
994      seem better to put this in init_reg_sets, but we need to be able
995      to allocate rtx, which we can't do that early.  */
996
997   for (i = 0; i < N_REG_CLASSES; i++)
998     {
999       rtx r = gen_rtx_REG (VOIDmode, 0);
1000       enum machine_mode m;
1001       register int j;
1002
1003       for (j = 0; j < FIRST_PSEUDO_REGISTER; j++)
1004         if (TEST_HARD_REG_BIT (reg_class_contents[i], j))
1005           {
1006             REGNO (r) = j;
1007
1008             for (m = VOIDmode; (int) m < (int) MAX_MACHINE_MODE;
1009                  m = (enum machine_mode) ((int) m + 1))
1010               if (HARD_REGNO_MODE_OK (j, m))
1011                 {
1012                   PUT_MODE (r, m);
1013
1014                   /* If a register is not directly suitable for an
1015                      auto-increment or decrement addressing mode and
1016                      requires secondary reloads, disallow its class from
1017                      being used in such addresses.  */
1018
1019                   if ((0
1020 #ifdef SECONDARY_RELOAD_CLASS
1021                        || (SECONDARY_RELOAD_CLASS (BASE_REG_CLASS, m, r)
1022                            != NO_REGS)
1023 #else
1024 #ifdef SECONDARY_INPUT_RELOAD_CLASS
1025                        || (SECONDARY_INPUT_RELOAD_CLASS (BASE_REG_CLASS, m, r)
1026                            != NO_REGS)
1027 #endif
1028 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
1029                        || (SECONDARY_OUTPUT_RELOAD_CLASS (BASE_REG_CLASS, m, r)
1030                            != NO_REGS)
1031 #endif
1032 #endif
1033                        )
1034                       && ! auto_inc_dec_reg_p (r, m))
1035                     forbidden_inc_dec_class[i] = 1;
1036                 }
1037           }
1038     }
1039 #endif /* FORBIDDEN_INC_DEC_CLASSES */
1040
1041   /* Normally we scan the insns once and determine the best class to use for
1042      each register.  However, if -fexpensive_optimizations are on, we do so
1043      twice, the second time using the tentative best classes to guide the
1044      selection.  */
1045
1046   for (pass = 0; pass <= flag_expensive_optimizations; pass++)
1047     {
1048       /* Zero out our accumulation of the cost of each class for each reg.  */
1049
1050       bzero ((char *) costs, nregs * sizeof (struct costs));
1051
1052 #ifdef FORBIDDEN_INC_DEC_CLASSES
1053       bzero (in_inc_dec, nregs);
1054 #endif
1055
1056       loop_depth = 0, loop_cost = 1;
1057
1058       /* Scan the instructions and record each time it would
1059          save code to put a certain register in a certain class.  */
1060
1061       for (insn = f; insn; insn = NEXT_INSN (insn))
1062         {
1063           insn = scan_one_insn (insn, pass);
1064         }
1065       
1066       /* Now for each register look at how desirable each class is
1067          and find which class is preferred.  Store that in
1068          `prefclass[REGNO]'.  Record in `altclass[REGNO]' the largest register
1069          class any of whose registers is better than memory.  */
1070     
1071       if (pass == 0)
1072         {
1073           prefclass = prefclass_buffer;
1074           altclass = altclass_buffer;
1075         }
1076
1077       for (i = FIRST_PSEUDO_REGISTER; i < nregs; i++)
1078         {
1079           register int best_cost = (1 << (HOST_BITS_PER_INT - 2)) - 1;
1080           enum reg_class best = ALL_REGS, alt = NO_REGS;
1081           /* This is an enum reg_class, but we call it an int
1082              to save lots of casts.  */
1083           register int class;
1084           register struct costs *p = &costs[i];
1085
1086           for (class = (int) ALL_REGS - 1; class > 0; class--)
1087             {
1088               /* Ignore classes that are too small for this operand or
1089                  invalid for a operand that was auto-incremented.  */
1090               if (CLASS_MAX_NREGS (class, PSEUDO_REGNO_MODE (i))
1091                   > reg_class_size[class]
1092 #ifdef FORBIDDEN_INC_DEC_CLASSES
1093                   || (in_inc_dec[i] && forbidden_inc_dec_class[class])
1094 #endif
1095                   )
1096                 ;
1097               else if (p->cost[class] < best_cost)
1098                 {
1099                   best_cost = p->cost[class];
1100                   best = (enum reg_class) class;
1101                 }
1102               else if (p->cost[class] == best_cost)
1103                 best = reg_class_subunion[(int)best][class];
1104             }
1105
1106           /* Record the alternate register class; i.e., a class for which
1107              every register in it is better than using memory.  If adding a
1108              class would make a smaller class (i.e., no union of just those
1109              classes exists), skip that class.  The major unions of classes
1110              should be provided as a register class.  Don't do this if we
1111              will be doing it again later.  */
1112
1113           if (pass == 1 || ! flag_expensive_optimizations)
1114             for (class = 0; class < N_REG_CLASSES; class++)
1115               if (p->cost[class] < p->mem_cost
1116                   && (reg_class_size[(int) reg_class_subunion[(int) alt][class]]
1117                       > reg_class_size[(int) alt])
1118 #ifdef FORBIDDEN_INC_DEC_CLASSES
1119                   && ! (in_inc_dec[i] && forbidden_inc_dec_class[class])
1120 #endif
1121                   )
1122                 alt = reg_class_subunion[(int) alt][class];
1123           
1124           /* If we don't add any classes, nothing to try.  */
1125           if (alt == best)
1126             alt = NO_REGS;
1127
1128           /* We cast to (int) because (char) hits bugs in some compilers.  */
1129           prefclass[i] = (int) best;
1130           altclass[i] = (int) alt;
1131         }
1132     }
1133 #endif /* REGISTER_CONSTRAINTS */
1134
1135   free (costs);
1136 }
1137 \f
1138 #ifdef REGISTER_CONSTRAINTS
1139
1140 /* Record the cost of using memory or registers of various classes for
1141    the operands in INSN.
1142
1143    N_ALTS is the number of alternatives.
1144
1145    N_OPS is the number of operands.
1146
1147    OPS is an array of the operands.
1148
1149    MODES are the modes of the operands, in case any are VOIDmode.
1150
1151    CONSTRAINTS are the constraints to use for the operands.  This array
1152    is modified by this procedure.
1153
1154    This procedure works alternative by alternative.  For each alternative
1155    we assume that we will be able to allocate all pseudos to their ideal
1156    register class and calculate the cost of using that alternative.  Then
1157    we compute for each operand that is a pseudo-register, the cost of 
1158    having the pseudo allocated to each register class and using it in that
1159    alternative.  To this cost is added the cost of the alternative.
1160
1161    The cost of each class for this insn is its lowest cost among all the
1162    alternatives.  */
1163
1164 static void
1165 record_reg_classes (n_alts, n_ops, ops, modes, constraints, insn)
1166      int n_alts;
1167      int n_ops;
1168      rtx *ops;
1169      enum machine_mode *modes;
1170      char **constraints;
1171      rtx insn;
1172 {
1173   int alt;
1174   enum op_type {OP_READ, OP_WRITE, OP_READ_WRITE} op_types[MAX_RECOG_OPERANDS];
1175   int i, j;
1176   rtx set;
1177
1178   /* By default, each operand is an input operand.  */
1179
1180   for (i = 0; i < n_ops; i++)
1181     op_types[i] = OP_READ;
1182
1183   /* Process each alternative, each time minimizing an operand's cost with
1184      the cost for each operand in that alternative.  */
1185
1186   for (alt = 0; alt < n_alts; alt++)
1187     {
1188       struct costs this_op_costs[MAX_RECOG_OPERANDS];
1189       int alt_fail = 0;
1190       int alt_cost = 0;
1191       enum reg_class classes[MAX_RECOG_OPERANDS];
1192       int class;
1193
1194       for (i = 0; i < n_ops; i++)
1195         {
1196           char *p = constraints[i];
1197           rtx op = ops[i];
1198           enum machine_mode mode = modes[i];
1199           int allows_mem = 0;
1200           int win = 0;
1201           unsigned char c;
1202
1203           /* Initially show we know nothing about the register class.  */
1204           classes[i] = NO_REGS;
1205
1206           /* If this operand has no constraints at all, we can conclude 
1207              nothing about it since anything is valid.  */
1208
1209           if (*p == 0)
1210             {
1211               if (GET_CODE (op) == REG && REGNO (op) >= FIRST_PSEUDO_REGISTER)
1212                 bzero ((char *) &this_op_costs[i], sizeof this_op_costs[i]);
1213
1214               continue;
1215             }
1216
1217           /* If this alternative is only relevant when this operand
1218              matches a previous operand, we do different things depending
1219              on whether this operand is a pseudo-reg or not.  We must process
1220              any modifiers for the operand before we can make this test.  */
1221
1222           while (*p == '%' || *p == '=' || *p == '+' || *p == '&')
1223             {
1224               if (*p == '=')
1225                 op_types[i] = OP_WRITE;
1226               else if (*p == '+')
1227                 op_types[i] = OP_READ_WRITE;
1228
1229               p++;
1230             }
1231
1232           if (p[0] >= '0' && p[0] <= '0' + i && (p[1] == ',' || p[1] == 0))
1233             {
1234               j = p[0] - '0';
1235               classes[i] = classes[j];
1236
1237               if (GET_CODE (op) != REG || REGNO (op) < FIRST_PSEUDO_REGISTER)
1238                 {
1239                   /* If this matches the other operand, we have no added
1240                      cost and we win.  */
1241                   if (rtx_equal_p (ops[j], op))
1242                     win = 1;
1243
1244                   /* If we can put the other operand into a register, add to
1245                      the cost of this alternative the cost to copy this
1246                      operand to the register used for the other operand.  */
1247
1248                   else if (classes[j] != NO_REGS)
1249                     alt_cost += copy_cost (op, mode, classes[j], 1), win = 1;
1250                 }
1251               else if (GET_CODE (ops[j]) != REG
1252                        || REGNO (ops[j]) < FIRST_PSEUDO_REGISTER)
1253                 {
1254                   /* This op is a pseudo but the one it matches is not.  */
1255                   
1256                   /* If we can't put the other operand into a register, this
1257                      alternative can't be used.  */
1258
1259                   if (classes[j] == NO_REGS)
1260                     alt_fail = 1;
1261
1262                   /* Otherwise, add to the cost of this alternative the cost
1263                      to copy the other operand to the register used for this
1264                      operand.  */
1265
1266                   else
1267                     alt_cost += copy_cost (ops[j], mode, classes[j], 1);
1268                 }
1269               else
1270                 {
1271                   /* The costs of this operand are the same as that of the
1272                      other operand.  However, if we cannot tie them, this
1273                      alternative needs to do a copy, which is one
1274                      instruction.  */
1275
1276                   this_op_costs[i] = this_op_costs[j];
1277                   if (REGNO (ops[i]) != REGNO (ops[j])
1278                       && ! find_reg_note (insn, REG_DEAD, op))
1279                     alt_cost += 2;
1280
1281                   /* This is in place of ordinary cost computation
1282                      for this operand, so skip to the end of the
1283                      alternative (should be just one character).  */
1284                   while (*p && *p++ != ',')
1285                     ;
1286
1287                   constraints[i] = p;
1288                   continue;
1289                 }
1290             }
1291
1292           /* Scan all the constraint letters.  See if the operand matches
1293              any of the constraints.  Collect the valid register classes
1294              and see if this operand accepts memory.  */
1295
1296           while (*p && (c = *p++) != ',')
1297             switch (c)
1298               {
1299               case '*':
1300                 /* Ignore the next letter for this pass.  */
1301                 p++;
1302                 break;
1303
1304               case '?':
1305                 alt_cost += 2;
1306               case '!':  case '#':  case '&':
1307               case '0':  case '1':  case '2':  case '3':  case '4':
1308               case '5':  case '6':  case '7':  case '8':  case '9':
1309               case 'p':
1310                 break;
1311
1312               case 'm':  case 'o':  case 'V':
1313                 /* It doesn't seem worth distinguishing between offsettable
1314                    and non-offsettable addresses here.  */
1315                 allows_mem = 1;
1316                 if (GET_CODE (op) == MEM)
1317                   win = 1;
1318                 break;
1319
1320               case '<':
1321                 if (GET_CODE (op) == MEM
1322                     && (GET_CODE (XEXP (op, 0)) == PRE_DEC
1323                         || GET_CODE (XEXP (op, 0)) == POST_DEC))
1324                   win = 1;
1325                 break;
1326
1327               case '>':
1328                 if (GET_CODE (op) == MEM
1329                     && (GET_CODE (XEXP (op, 0)) == PRE_INC
1330                         || GET_CODE (XEXP (op, 0)) == POST_INC))
1331                   win = 1;
1332                 break;
1333
1334               case 'E':
1335 #ifndef REAL_ARITHMETIC
1336                 /* Match any floating double constant, but only if
1337                    we can examine the bits of it reliably.  */
1338                 if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
1339                      || HOST_BITS_PER_WIDE_INT != BITS_PER_WORD)
1340                     && GET_MODE (op) != VOIDmode && ! flag_pretend_float)
1341                   break;
1342 #endif
1343                 if (GET_CODE (op) == CONST_DOUBLE)
1344                   win = 1;
1345                 break;
1346
1347               case 'F':
1348                 if (GET_CODE (op) == CONST_DOUBLE)
1349                   win = 1;
1350                 break;
1351
1352               case 'G':
1353               case 'H':
1354                 if (GET_CODE (op) == CONST_DOUBLE
1355                     && CONST_DOUBLE_OK_FOR_LETTER_P (op, c))
1356                   win = 1;
1357                 break;
1358
1359               case 's':
1360                 if (GET_CODE (op) == CONST_INT
1361                     || (GET_CODE (op) == CONST_DOUBLE
1362                         && GET_MODE (op) == VOIDmode))
1363                   break;
1364               case 'i':
1365                 if (CONSTANT_P (op)
1366 #ifdef LEGITIMATE_PIC_OPERAND_P
1367                     && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (op))
1368 #endif
1369                     )
1370                   win = 1;
1371                 break;
1372
1373               case 'n':
1374                 if (GET_CODE (op) == CONST_INT
1375                     || (GET_CODE (op) == CONST_DOUBLE
1376                         && GET_MODE (op) == VOIDmode))
1377                   win = 1;
1378                 break;
1379
1380               case 'I':
1381               case 'J':
1382               case 'K':
1383               case 'L':
1384               case 'M':
1385               case 'N':
1386               case 'O':
1387               case 'P':
1388                 if (GET_CODE (op) == CONST_INT
1389                     && CONST_OK_FOR_LETTER_P (INTVAL (op), c))
1390                   win = 1;
1391                 break;
1392
1393               case 'X':
1394                 win = 1;
1395                 break;
1396
1397 #ifdef EXTRA_CONSTRAINT
1398               case 'Q':
1399               case 'R':
1400               case 'S':
1401               case 'T':
1402               case 'U':
1403                 if (EXTRA_CONSTRAINT (op, c))
1404                   win = 1;
1405                 break;
1406 #endif
1407
1408               case 'g':
1409                 if (GET_CODE (op) == MEM
1410                     || (CONSTANT_P (op)
1411 #ifdef LEGITIMATE_PIC_OPERAND_P
1412                         && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (op))
1413 #endif
1414                         ))
1415                   win = 1;
1416                 allows_mem = 1;
1417               case 'r':
1418                 classes[i]
1419                   = reg_class_subunion[(int) classes[i]][(int) GENERAL_REGS];
1420                 break;
1421
1422               default:
1423                 classes[i]
1424                   = reg_class_subunion[(int) classes[i]]
1425                     [(int) REG_CLASS_FROM_LETTER (c)];
1426               }
1427
1428           constraints[i] = p;
1429
1430           /* How we account for this operand now depends on whether it is  a
1431              pseudo register or not.  If it is, we first check if any
1432              register classes are valid.  If not, we ignore this alternative,
1433              since we want to assume that all pseudos get allocated for
1434              register preferencing.  If some register class is valid, compute
1435              the costs of moving the pseudo into that class.  */
1436
1437           if (GET_CODE (op) == REG && REGNO (op) >= FIRST_PSEUDO_REGISTER)
1438             {
1439               if (classes[i] == NO_REGS)
1440                 alt_fail = 1;
1441               else
1442                 {
1443                   struct costs *pp = &this_op_costs[i];
1444
1445                   for (class = 0; class < N_REG_CLASSES; class++)
1446                     pp->cost[class] = may_move_cost[class][(int) classes[i]];
1447
1448                   /* If the alternative actually allows memory, make things
1449                      a bit cheaper since we won't need an extra insn to
1450                      load it.  */
1451
1452                   pp->mem_cost = (MEMORY_MOVE_COST (mode, classes[i], 1)
1453                                   - allows_mem);
1454
1455                   /* If we have assigned a class to this register in our
1456                      first pass, add a cost to this alternative corresponding
1457                      to what we would add if this register were not in the
1458                      appropriate class.  */
1459
1460                   if (prefclass)
1461                     alt_cost
1462                       += may_move_cost[(unsigned char)prefclass[REGNO (op)]][(int) classes[i]];
1463                 }
1464             }
1465
1466           /* Otherwise, if this alternative wins, either because we
1467              have already determined that or if we have a hard register of
1468              the proper class, there is no cost for this alternative.  */
1469
1470           else if (win
1471                    || (GET_CODE (op) == REG
1472                        && reg_fits_class_p (op, classes[i], 0, GET_MODE (op))))
1473             ;
1474
1475           /* If registers are valid, the cost of this alternative includes
1476              copying the object to and/or from a register.  */
1477
1478           else if (classes[i] != NO_REGS)
1479             {
1480               if (op_types[i] != OP_WRITE)
1481                 alt_cost += copy_cost (op, mode, classes[i], 1);
1482
1483               if (op_types[i] != OP_READ)
1484                 alt_cost += copy_cost (op, mode, classes[i], 0);
1485             }
1486
1487           /* The only other way this alternative can be used is if this is a
1488              constant that could be placed into memory.  */
1489
1490           else if (CONSTANT_P (op) && allows_mem)
1491             alt_cost += MEMORY_MOVE_COST (mode, classes[i], 1);
1492           else
1493             alt_fail = 1;
1494         }
1495
1496       if (alt_fail)
1497         continue;
1498
1499       /* Finally, update the costs with the information we've calculated
1500          about this alternative.  */
1501
1502       for (i = 0; i < n_ops; i++)
1503         if (GET_CODE (ops[i]) == REG
1504             && REGNO (ops[i]) >= FIRST_PSEUDO_REGISTER)
1505           {
1506             struct costs *pp = &op_costs[i], *qq = &this_op_costs[i];
1507             int scale = 1 + (op_types[i] == OP_READ_WRITE);
1508
1509             pp->mem_cost = MIN (pp->mem_cost,
1510                                 (qq->mem_cost + alt_cost) * scale);
1511
1512             for (class = 0; class < N_REG_CLASSES; class++)
1513               pp->cost[class] = MIN (pp->cost[class],
1514                                      (qq->cost[class] + alt_cost) * scale);
1515           }
1516     }
1517
1518   /* If this insn is a single set copying operand 1 to operand 0
1519      and one is a pseudo with the other a hard reg that is in its
1520      own register class, set the cost of that register class to -1.  */
1521
1522   if ((set = single_set (insn)) != 0
1523       && ops[0] == SET_DEST (set) && ops[1] == SET_SRC (set)
1524       && GET_CODE (ops[0]) == REG && GET_CODE (ops[1]) == REG)
1525     for (i = 0; i <= 1; i++)
1526       if (REGNO (ops[i]) >= FIRST_PSEUDO_REGISTER)
1527         {
1528           int regno = REGNO (ops[!i]);
1529           enum machine_mode mode = GET_MODE (ops[!i]);
1530           int class;
1531           int nr;
1532
1533           if (regno >= FIRST_PSEUDO_REGISTER && prefclass != 0
1534               && (reg_class_size[(unsigned char)prefclass[regno]]
1535                   == CLASS_MAX_NREGS (prefclass[regno], mode)))
1536             op_costs[i].cost[(unsigned char)prefclass[regno]] = -1;
1537           else if (regno < FIRST_PSEUDO_REGISTER)
1538             for (class = 0; class < N_REG_CLASSES; class++)
1539               if (TEST_HARD_REG_BIT (reg_class_contents[class], regno)
1540                   && reg_class_size[class] == CLASS_MAX_NREGS (class, mode))
1541                 {
1542                   if (reg_class_size[class] == 1)
1543                     op_costs[i].cost[class] = -1;
1544                   else
1545                     {
1546                       for (nr = 0; nr < HARD_REGNO_NREGS(regno, mode); nr++)
1547                         {
1548                           if (!TEST_HARD_REG_BIT (reg_class_contents[class], regno + nr))
1549                             break;
1550                         }
1551
1552                       if (nr == HARD_REGNO_NREGS(regno,mode))
1553                         op_costs[i].cost[class] = -1;
1554                     }
1555                 }
1556         }
1557 }
1558 \f
1559 /* Compute the cost of loading X into (if TO_P is non-zero) or from (if
1560    TO_P is zero) a register of class CLASS in mode MODE.
1561
1562    X must not be a pseudo.  */
1563
1564 static int
1565 copy_cost (x, mode, class, to_p)
1566      rtx x;
1567      enum machine_mode mode;
1568      enum reg_class class;
1569      int to_p;
1570 {
1571 #ifdef HAVE_SECONDARY_RELOADS
1572   enum reg_class secondary_class = NO_REGS;
1573 #endif
1574
1575   /* If X is a SCRATCH, there is actually nothing to move since we are
1576      assuming optimal allocation.  */
1577
1578   if (GET_CODE (x) == SCRATCH)
1579     return 0;
1580
1581   /* Get the class we will actually use for a reload.  */
1582   class = PREFERRED_RELOAD_CLASS (x, class);
1583
1584 #ifdef HAVE_SECONDARY_RELOADS
1585   /* If we need a secondary reload (we assume here that we are using 
1586      the secondary reload as an intermediate, not a scratch register), the
1587      cost is that to load the input into the intermediate register, then
1588      to copy them.  We use a special value of TO_P to avoid recursion.  */
1589
1590 #ifdef SECONDARY_INPUT_RELOAD_CLASS
1591   if (to_p == 1)
1592     secondary_class = SECONDARY_INPUT_RELOAD_CLASS (class, mode, x);
1593 #endif
1594
1595 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
1596   if (! to_p)
1597     secondary_class = SECONDARY_OUTPUT_RELOAD_CLASS (class, mode, x);
1598 #endif
1599
1600   if (secondary_class != NO_REGS)
1601     return (move_cost[(int) secondary_class][(int) class]
1602             + copy_cost (x, mode, secondary_class, 2));
1603 #endif  /* HAVE_SECONDARY_RELOADS */
1604
1605   /* For memory, use the memory move cost, for (hard) registers, use the
1606      cost to move between the register classes, and use 2 for everything
1607      else (constants).  */
1608
1609   if (GET_CODE (x) == MEM || class == NO_REGS)
1610     return MEMORY_MOVE_COST (mode, class, to_p);
1611
1612   else if (GET_CODE (x) == REG)
1613     return move_cost[(int) REGNO_REG_CLASS (REGNO (x))][(int) class];
1614
1615   else
1616     /* If this is a constant, we may eventually want to call rtx_cost here.  */
1617     return 2;
1618 }
1619 \f
1620 /* Record the pseudo registers we must reload into hard registers
1621    in a subexpression of a memory address, X.
1622
1623    CLASS is the class that the register needs to be in and is either
1624    BASE_REG_CLASS or INDEX_REG_CLASS.
1625
1626    SCALE is twice the amount to multiply the cost by (it is twice so we
1627    can represent half-cost adjustments).  */
1628
1629 static void
1630 record_address_regs (x, class, scale)
1631      rtx x;
1632      enum reg_class class;
1633      int scale;
1634 {
1635   register enum rtx_code code = GET_CODE (x);
1636
1637   switch (code)
1638     {
1639     case CONST_INT:
1640     case CONST:
1641     case CC0:
1642     case PC:
1643     case SYMBOL_REF:
1644     case LABEL_REF:
1645       return;
1646
1647     case PLUS:
1648       /* When we have an address that is a sum,
1649          we must determine whether registers are "base" or "index" regs.
1650          If there is a sum of two registers, we must choose one to be
1651          the "base".  Luckily, we can use the REGNO_POINTER_FLAG
1652          to make a good choice most of the time.  We only need to do this
1653          on machines that can have two registers in an address and where
1654          the base and index register classes are different.
1655
1656          ??? This code used to set REGNO_POINTER_FLAG in some cases, but
1657          that seems bogus since it should only be set when we are sure
1658          the register is being used as a pointer.  */
1659
1660       {
1661         rtx arg0 = XEXP (x, 0);
1662         rtx arg1 = XEXP (x, 1);
1663         register enum rtx_code code0 = GET_CODE (arg0);
1664         register enum rtx_code code1 = GET_CODE (arg1);
1665
1666         /* Look inside subregs.  */
1667         if (code0 == SUBREG)
1668           arg0 = SUBREG_REG (arg0), code0 = GET_CODE (arg0);
1669         if (code1 == SUBREG)
1670           arg1 = SUBREG_REG (arg1), code1 = GET_CODE (arg1);
1671
1672         /* If this machine only allows one register per address, it must
1673            be in the first operand.  */
1674
1675         if (MAX_REGS_PER_ADDRESS == 1)
1676           record_address_regs (arg0, class, scale);
1677
1678         /* If index and base registers are the same on this machine, just
1679            record registers in any non-constant operands.  We assume here,
1680            as well as in the tests below, that all addresses are in 
1681            canonical form.  */
1682
1683         else if (INDEX_REG_CLASS == BASE_REG_CLASS)
1684           {
1685             record_address_regs (arg0, class, scale);
1686             if (! CONSTANT_P (arg1))
1687               record_address_regs (arg1, class, scale);
1688           }
1689
1690         /* If the second operand is a constant integer, it doesn't change
1691            what class the first operand must be.  */
1692
1693         else if (code1 == CONST_INT || code1 == CONST_DOUBLE)
1694           record_address_regs (arg0, class, scale);
1695
1696         /* If the second operand is a symbolic constant, the first operand
1697            must be an index register.  */
1698
1699         else if (code1 == SYMBOL_REF || code1 == CONST || code1 == LABEL_REF)
1700           record_address_regs (arg0, INDEX_REG_CLASS, scale);
1701
1702         /* If both operands are registers but one is already a hard register
1703            of index or base class, give the other the class that the hard
1704            register is not.  */
1705
1706 #ifdef REG_OK_FOR_BASE_P
1707         else if (code0 == REG && code1 == REG
1708                  && REGNO (arg0) < FIRST_PSEUDO_REGISTER
1709                  && (REG_OK_FOR_BASE_P (arg0) || REG_OK_FOR_INDEX_P (arg0)))
1710           record_address_regs (arg1,
1711                                REG_OK_FOR_BASE_P (arg0)
1712                                ? INDEX_REG_CLASS : BASE_REG_CLASS,
1713                                scale);
1714         else if (code0 == REG && code1 == REG
1715                  && REGNO (arg1) < FIRST_PSEUDO_REGISTER
1716                  && (REG_OK_FOR_BASE_P (arg1) || REG_OK_FOR_INDEX_P (arg1)))
1717           record_address_regs (arg0,
1718                                REG_OK_FOR_BASE_P (arg1)
1719                                ? INDEX_REG_CLASS : BASE_REG_CLASS,
1720                                scale);
1721 #endif
1722
1723         /* If one operand is known to be a pointer, it must be the base
1724            with the other operand the index.  Likewise if the other operand
1725            is a MULT.  */
1726
1727         else if ((code0 == REG && REGNO_POINTER_FLAG (REGNO (arg0)))
1728                  || code1 == MULT)
1729           {
1730             record_address_regs (arg0, BASE_REG_CLASS, scale);
1731             record_address_regs (arg1, INDEX_REG_CLASS, scale);
1732           }
1733         else if ((code1 == REG && REGNO_POINTER_FLAG (REGNO (arg1)))
1734                  || code0 == MULT)
1735           {
1736             record_address_regs (arg0, INDEX_REG_CLASS, scale);
1737             record_address_regs (arg1, BASE_REG_CLASS, scale);
1738           }
1739
1740         /* Otherwise, count equal chances that each might be a base
1741            or index register.  This case should be rare.  */
1742
1743         else
1744           {
1745             record_address_regs (arg0, BASE_REG_CLASS, scale / 2);
1746             record_address_regs (arg0, INDEX_REG_CLASS, scale / 2);
1747             record_address_regs (arg1, BASE_REG_CLASS, scale / 2);
1748             record_address_regs (arg1, INDEX_REG_CLASS, scale / 2);
1749           }
1750       }
1751       break;
1752
1753     case POST_INC:
1754     case PRE_INC:
1755     case POST_DEC:
1756     case PRE_DEC:
1757       /* Double the importance of a pseudo register that is incremented
1758          or decremented, since it would take two extra insns
1759          if it ends up in the wrong place.  If the operand is a pseudo,
1760          show it is being used in an INC_DEC context.  */
1761
1762 #ifdef FORBIDDEN_INC_DEC_CLASSES
1763       if (GET_CODE (XEXP (x, 0)) == REG
1764           && REGNO (XEXP (x, 0)) >= FIRST_PSEUDO_REGISTER)
1765         in_inc_dec[REGNO (XEXP (x, 0))] = 1;
1766 #endif
1767
1768       record_address_regs (XEXP (x, 0), class, 2 * scale);
1769       break;
1770
1771     case REG:
1772       {
1773         register struct costs *pp = &costs[REGNO (x)];
1774         register int i;
1775
1776         pp->mem_cost += (MEMORY_MOVE_COST (Pmode, class, 1) * scale) / 2;
1777
1778         for (i = 0; i < N_REG_CLASSES; i++)
1779           pp->cost[i] += (may_move_cost[i][(int) class] * scale) / 2;
1780       }
1781       break;
1782
1783     default:
1784       {
1785         register char *fmt = GET_RTX_FORMAT (code);
1786         register int i;
1787         for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1788           if (fmt[i] == 'e')
1789             record_address_regs (XEXP (x, i), class, scale);
1790       }
1791     }
1792 }
1793 \f
1794 #ifdef FORBIDDEN_INC_DEC_CLASSES
1795
1796 /* Return 1 if REG is valid as an auto-increment memory reference
1797    to an object of MODE.  */
1798
1799 static int
1800 auto_inc_dec_reg_p (reg, mode)
1801      rtx reg;
1802      enum machine_mode mode;
1803 {
1804 #ifdef HAVE_POST_INCREMENT
1805   if (memory_address_p (mode, gen_rtx_POST_INC (Pmode, reg)))
1806     return 1;
1807 #endif
1808
1809 #ifdef HAVE_POST_DECREMENT
1810   if (memory_address_p (mode, gen_rtx_POST_DEC (Pmode, reg)))
1811     return 1;
1812 #endif
1813
1814 #ifdef HAVE_PRE_INCREMENT
1815   if (memory_address_p (mode, gen_rtx_PRE_INC (Pmode, reg)))
1816     return 1;
1817 #endif
1818
1819 #ifdef HAVE_PRE_DECREMENT
1820   if (memory_address_p (mode, gen_rtx_PRE_DEC (Pmode, reg)))
1821     return 1;
1822 #endif
1823
1824   return 0;
1825 }
1826 #endif
1827
1828 #endif /* REGISTER_CONSTRAINTS */
1829 \f
1830 /* Allocate enough space to hold NUM_REGS registers for the tables used for
1831    reg_scan and flow_analysis that are indexed by the register number.  If
1832    NEW_P is non zero, initialize all of the registers, otherwise only
1833    initialize the new registers allocated.  The same table is kept from
1834    function to function, only reallocating it when we need more room.  If
1835    RENUMBER_P is non zero, allocate the reg_renumber array also.  */
1836
1837 void
1838 allocate_reg_info (num_regs, new_p, renumber_p)
1839      size_t num_regs;
1840      int new_p;
1841      int renumber_p;
1842 {
1843   static size_t regno_allocated = 0;
1844   static short *renumber = (short *)0;
1845   int i;
1846   size_t size_info;
1847   size_t size_renumber;
1848   size_t min = (new_p) ? 0 : reg_n_max;
1849   struct reg_info_data *reg_data;
1850   struct reg_info_data *reg_next;
1851
1852   /* Free up all storage allocated */
1853   if (num_regs < 0)
1854     {
1855       if (reg_n_info)
1856         {
1857           VARRAY_FREE (reg_n_info);
1858           for (reg_data = reg_info_head; reg_data; reg_data = reg_next)
1859             {
1860               reg_next = reg_data->next;
1861               free ((char *)reg_data);
1862             }
1863
1864           free (prefclass_buffer);
1865           free (altclass_buffer);
1866           prefclass_buffer = (char *)0;
1867           altclass_buffer = (char *)0;
1868           reg_info_head = (struct reg_info_data *)0;
1869           renumber = (short *)0;
1870         }
1871       regno_allocated = 0;
1872       reg_n_max = 0;
1873       return;
1874     }
1875
1876   if (num_regs > regno_allocated)
1877     {
1878       size_t old_allocated = regno_allocated;
1879
1880       regno_allocated = num_regs + (num_regs / 20);     /* add some slop space */
1881       size_renumber = regno_allocated * sizeof (short);
1882
1883       if (!reg_n_info)
1884         {
1885           VARRAY_REG_INIT (reg_n_info, regno_allocated, "reg_n_info");
1886           renumber = (short *) xmalloc (size_renumber);
1887           prefclass_buffer = (char *) xmalloc (regno_allocated);
1888           altclass_buffer = (char *) xmalloc (regno_allocated);
1889         }
1890
1891       else
1892         {
1893           VARRAY_GROW (reg_n_info, regno_allocated);
1894
1895           if (new_p)            /* if we're zapping everything, no need to realloc */
1896             {
1897               free ((char *)renumber);
1898               free ((char *)prefclass_buffer);
1899               free ((char *)altclass_buffer);
1900               renumber = (short *) xmalloc (size_renumber);
1901               prefclass_buffer = (char *) xmalloc (regno_allocated);
1902               altclass_buffer = (char *) xmalloc (regno_allocated);
1903             }
1904
1905           else
1906             {
1907               renumber = (short *) xrealloc ((char *)renumber, size_renumber);
1908               prefclass_buffer = (char *) xrealloc ((char *)prefclass_buffer,
1909                                                     regno_allocated);
1910
1911               altclass_buffer = (char *) xrealloc ((char *)altclass_buffer,
1912                                                    regno_allocated);
1913             }
1914         }
1915
1916       size_info = (regno_allocated - old_allocated) * sizeof (reg_info)
1917         + sizeof (struct reg_info_data) - sizeof (reg_info);
1918       reg_data = (struct reg_info_data *) xcalloc (size_info, 1);
1919       reg_data->min_index = old_allocated;
1920       reg_data->max_index = regno_allocated - 1;
1921       reg_data->next = reg_info_head;
1922       reg_info_head = reg_data;
1923     }
1924
1925   reg_n_max = num_regs;
1926   if (min < num_regs)
1927     {
1928       /* Loop through each of the segments allocated for the actual
1929          reg_info pages, and set up the pointers, zero the pages, etc.  */
1930       for (reg_data = reg_info_head; reg_data; reg_data = reg_next)
1931         {
1932           size_t min_index = reg_data->min_index;
1933           size_t max_index = reg_data->max_index;
1934
1935           reg_next = reg_data->next;
1936           if (min <= max_index)
1937             {
1938               size_t max = max_index;
1939               size_t local_min = min - min_index;
1940               if (min < min_index)
1941                 local_min = 0;
1942               if (!reg_data->used_p)    /* page just allocated with calloc */
1943                 reg_data->used_p = 1;   /* no need to zero */
1944               else
1945                 bzero ((char *) &reg_data->data[local_min],
1946                        sizeof (reg_info) * (max - min_index - local_min + 1));
1947
1948               for (i = min_index+local_min; i <= max; i++)
1949                 {
1950                   VARRAY_REG (reg_n_info, i) = &reg_data->data[i-min_index];
1951                   REG_BASIC_BLOCK (i) = REG_BLOCK_UNKNOWN;
1952                   renumber[i] = -1;
1953                   prefclass_buffer[i] = (char) NO_REGS;
1954                   altclass_buffer[i] = (char) NO_REGS;
1955                 }
1956             }
1957         }
1958     }
1959
1960   /* If {pref,alt}class have already been allocated, update the pointers to
1961      the newly realloced ones.  */
1962   if (prefclass)
1963     {
1964       prefclass = prefclass_buffer;
1965       altclass = altclass_buffer;
1966     }
1967
1968   if (renumber_p)
1969     reg_renumber = renumber;
1970
1971   /* Tell the regset code about the new number of registers */
1972   MAX_REGNO_REG_SET (num_regs, new_p, renumber_p);
1973 }
1974
1975 \f
1976 /* This is the `regscan' pass of the compiler, run just before cse
1977    and again just before loop.
1978
1979    It finds the first and last use of each pseudo-register
1980    and records them in the vectors regno_first_uid, regno_last_uid
1981    and counts the number of sets in the vector reg_n_sets.
1982
1983    REPEAT is nonzero the second time this is called.  */
1984
1985 /* Maximum number of parallel sets and clobbers in any insn in this fn.
1986    Always at least 3, since the combiner could put that many together
1987    and we want this to remain correct for all the remaining passes.  */
1988
1989 int max_parallel;
1990
1991 void
1992 reg_scan (f, nregs, repeat)
1993      rtx f;
1994      int nregs;
1995      int repeat;
1996 {
1997   register rtx insn;
1998
1999   allocate_reg_info (nregs, TRUE, FALSE);
2000   max_parallel = 3;
2001
2002   for (insn = f; insn; insn = NEXT_INSN (insn))
2003     if (GET_CODE (insn) == INSN
2004         || GET_CODE (insn) == CALL_INSN
2005         || GET_CODE (insn) == JUMP_INSN)
2006       {
2007         if (GET_CODE (PATTERN (insn)) == PARALLEL
2008             && XVECLEN (PATTERN (insn), 0) > max_parallel)
2009           max_parallel = XVECLEN (PATTERN (insn), 0);
2010         reg_scan_mark_refs (PATTERN (insn), insn, 0, 0);
2011
2012         if (REG_NOTES (insn))
2013           reg_scan_mark_refs (REG_NOTES (insn), insn, 1, 0);
2014       }
2015 }
2016
2017 /* Update 'regscan' information by looking at the insns
2018    from FIRST to LAST.  Some new REGs have been created,
2019    and any REG with number greater than OLD_MAX_REGNO is
2020    such a REG.  We only update information for those.  */
2021
2022 void
2023 reg_scan_update(first, last, old_max_regno)
2024      rtx first;
2025      rtx last;
2026      int old_max_regno;
2027 {
2028   register rtx insn;
2029
2030   allocate_reg_info (max_reg_num (), FALSE, FALSE);
2031
2032   for (insn = first; insn != last; insn = NEXT_INSN (insn))
2033     if (GET_CODE (insn) == INSN
2034         || GET_CODE (insn) == CALL_INSN
2035         || GET_CODE (insn) == JUMP_INSN)
2036       {
2037         if (GET_CODE (PATTERN (insn)) == PARALLEL
2038             && XVECLEN (PATTERN (insn), 0) > max_parallel)
2039           max_parallel = XVECLEN (PATTERN (insn), 0);
2040         reg_scan_mark_refs (PATTERN (insn), insn, 0, old_max_regno);
2041
2042         if (REG_NOTES (insn))
2043           reg_scan_mark_refs (REG_NOTES (insn), insn, 1, old_max_regno);
2044       }
2045 }
2046
2047 /* X is the expression to scan.  INSN is the insn it appears in.
2048    NOTE_FLAG is nonzero if X is from INSN's notes rather than its body.
2049    We should only record information for REGs with numbers
2050    greater than or equal to MIN_REGNO.  */
2051
2052 static void
2053 reg_scan_mark_refs (x, insn, note_flag, min_regno)
2054      rtx x;
2055      rtx insn;
2056      int note_flag;
2057      int min_regno;
2058 {
2059   register enum rtx_code code;
2060   register rtx dest;
2061   register rtx note;
2062
2063   code = GET_CODE (x);
2064   switch (code)
2065     {
2066     case CONST_INT:
2067     case CONST:
2068     case CONST_DOUBLE:
2069     case CC0:
2070     case PC:
2071     case SYMBOL_REF:
2072     case LABEL_REF:
2073     case ADDR_VEC:
2074     case ADDR_DIFF_VEC:
2075       return;
2076
2077     case REG:
2078       {
2079         register int regno = REGNO (x);
2080
2081         if (regno >= min_regno)
2082           {
2083             REGNO_LAST_NOTE_UID (regno) = INSN_UID (insn);
2084             if (!note_flag)
2085               REGNO_LAST_UID (regno) = INSN_UID (insn);
2086             if (REGNO_FIRST_UID (regno) == 0)
2087               REGNO_FIRST_UID (regno) = INSN_UID (insn);
2088           }
2089       }
2090       break;
2091
2092     case EXPR_LIST:
2093       if (XEXP (x, 0))
2094         reg_scan_mark_refs (XEXP (x, 0), insn, note_flag, min_regno);
2095       if (XEXP (x, 1))
2096         reg_scan_mark_refs (XEXP (x, 1), insn, note_flag, min_regno);
2097       break;
2098
2099     case INSN_LIST:
2100       if (XEXP (x, 1))
2101         reg_scan_mark_refs (XEXP (x, 1), insn, note_flag, min_regno);
2102       break;
2103
2104     case SET:
2105       /* Count a set of the destination if it is a register.  */
2106       for (dest = SET_DEST (x);
2107            GET_CODE (dest) == SUBREG || GET_CODE (dest) == STRICT_LOW_PART
2108            || GET_CODE (dest) == ZERO_EXTEND;
2109            dest = XEXP (dest, 0))
2110         ;
2111
2112       if (GET_CODE (dest) == REG
2113           && REGNO (dest) >= min_regno)
2114         REG_N_SETS (REGNO (dest))++;
2115
2116       /* If this is setting a pseudo from another pseudo or the sum of a
2117          pseudo and a constant integer and the other pseudo is known to be
2118          a pointer, set the destination to be a pointer as well.
2119
2120          Likewise if it is setting the destination from an address or from a
2121          value equivalent to an address or to the sum of an address and
2122          something else.
2123                      
2124          But don't do any of this if the pseudo corresponds to a user
2125          variable since it should have already been set as a pointer based
2126          on the type.  */
2127
2128       if (GET_CODE (SET_DEST (x)) == REG
2129           && REGNO (SET_DEST (x)) >= FIRST_PSEUDO_REGISTER
2130           && REGNO (SET_DEST (x)) >= min_regno
2131           /* If the destination pseudo is set more than once, then other
2132              sets might not be to a pointer value (consider access to a
2133              union in two threads of control in the presense of global
2134              optimizations).  So only set REGNO_POINTER_FLAG on the destination
2135              pseudo if this is the only set of that pseudo.  */
2136           && REG_N_SETS (REGNO (SET_DEST (x))) == 1
2137           && ! REG_USERVAR_P (SET_DEST (x))
2138           && ! REGNO_POINTER_FLAG (REGNO (SET_DEST (x)))
2139           && ((GET_CODE (SET_SRC (x)) == REG
2140                && REGNO_POINTER_FLAG (REGNO (SET_SRC (x))))
2141               || ((GET_CODE (SET_SRC (x)) == PLUS
2142                    || GET_CODE (SET_SRC (x)) == LO_SUM)
2143                   && GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
2144                   && GET_CODE (XEXP (SET_SRC (x), 0)) == REG
2145                   && REGNO_POINTER_FLAG (REGNO (XEXP (SET_SRC (x), 0))))
2146               || GET_CODE (SET_SRC (x)) == CONST
2147               || GET_CODE (SET_SRC (x)) == SYMBOL_REF
2148               || GET_CODE (SET_SRC (x)) == LABEL_REF
2149               || (GET_CODE (SET_SRC (x)) == HIGH
2150                   && (GET_CODE (XEXP (SET_SRC (x), 0)) == CONST
2151                       || GET_CODE (XEXP (SET_SRC (x), 0)) == SYMBOL_REF
2152                       || GET_CODE (XEXP (SET_SRC (x), 0)) == LABEL_REF))
2153               || ((GET_CODE (SET_SRC (x)) == PLUS
2154                    || GET_CODE (SET_SRC (x)) == LO_SUM)
2155                   && (GET_CODE (XEXP (SET_SRC (x), 1)) == CONST
2156                       || GET_CODE (XEXP (SET_SRC (x), 1)) == SYMBOL_REF
2157                       || GET_CODE (XEXP (SET_SRC (x), 1)) == LABEL_REF))
2158               || ((note = find_reg_note (insn, REG_EQUAL, 0)) != 0
2159                   && (GET_CODE (XEXP (note, 0)) == CONST
2160                       || GET_CODE (XEXP (note, 0)) == SYMBOL_REF
2161                       || GET_CODE (XEXP (note, 0)) == LABEL_REF))))
2162         REGNO_POINTER_FLAG (REGNO (SET_DEST (x))) = 1;
2163
2164       /* ... fall through ...  */
2165
2166     default:
2167       {
2168         register char *fmt = GET_RTX_FORMAT (code);
2169         register int i;
2170         for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2171           {
2172             if (fmt[i] == 'e')
2173               reg_scan_mark_refs (XEXP (x, i), insn, note_flag, min_regno);
2174             else if (fmt[i] == 'E' && XVEC (x, i) != 0)
2175               {
2176                 register int j;
2177                 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2178                   reg_scan_mark_refs (XVECEXP (x, i, j), insn, note_flag, min_regno);
2179               }
2180           }
2181       }
2182     }
2183 }
2184 \f
2185 /* Return nonzero if C1 is a subset of C2, i.e., if every register in C1
2186    is also in C2.  */
2187
2188 int
2189 reg_class_subset_p (c1, c2)
2190      register enum reg_class c1;
2191      register enum reg_class c2;
2192 {
2193   if (c1 == c2) return 1;
2194
2195   if (c2 == ALL_REGS)
2196   win:
2197     return 1;
2198   GO_IF_HARD_REG_SUBSET (reg_class_contents[(int)c1],
2199                          reg_class_contents[(int)c2],
2200                          win);
2201   return 0;
2202 }
2203
2204 /* Return nonzero if there is a register that is in both C1 and C2.  */
2205
2206 int
2207 reg_classes_intersect_p (c1, c2)
2208      register enum reg_class c1;
2209      register enum reg_class c2;
2210 {
2211 #ifdef HARD_REG_SET
2212   register
2213 #endif
2214     HARD_REG_SET c;
2215
2216   if (c1 == c2) return 1;
2217
2218   if (c1 == ALL_REGS || c2 == ALL_REGS)
2219     return 1;
2220
2221   COPY_HARD_REG_SET (c, reg_class_contents[(int) c1]);
2222   AND_HARD_REG_SET (c, reg_class_contents[(int) c2]);
2223
2224   GO_IF_HARD_REG_SUBSET (c, reg_class_contents[(int) NO_REGS], lose);
2225   return 1;
2226
2227  lose:
2228   return 0;
2229 }
2230
2231 /* Release any memory allocated by register sets.  */
2232
2233 void
2234 regset_release_memory ()
2235 {
2236   if (basic_block_live_at_start)
2237     {
2238       free_regset_vector (basic_block_live_at_start, n_basic_blocks);
2239       basic_block_live_at_start = 0;
2240     }
2241
2242   FREE_REG_SET (regs_live_at_setjmp);
2243   bitmap_release_memory ();
2244 }