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