OSDN Git Service

e2c3010f03a753e10a080f32bcd6d35c2787bd1e
[pf3gnuchains/gcc-fork.git] / gcc / resource.c
1 /* Definitions for computing resource usage of specific insns.
2    Copyright (C) 1999, 2000 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 #include "config.h"
22 #include "system.h"
23 #include "toplev.h"
24 #include "rtl.h"
25 #include "tm_p.h"
26 #include "hard-reg-set.h"
27 #include "basic-block.h"
28 #include "function.h"
29 #include "regs.h"
30 #include "flags.h"
31 #include "output.h"
32 #include "resource.h"
33 #include "insn-attr.h"
34
35 /* This structure is used to record liveness information at the targets or
36    fallthrough insns of branches.  We will most likely need the information
37    at targets again, so save them in a hash table rather than recomputing them
38    each time.  */
39
40 struct target_info
41 {
42   int uid;                      /* INSN_UID of target.  */
43   struct target_info *next;     /* Next info for same hash bucket.  */
44   HARD_REG_SET live_regs;       /* Registers live at target.  */
45   int block;                    /* Basic block number containing target.  */
46   int bb_tick;                  /* Generation count of basic block info.  */
47 };
48
49 #define TARGET_HASH_PRIME 257
50
51 /* Indicates what resources are required at the beginning of the epilogue.  */
52 static struct resources start_of_epilogue_needs;
53
54 /* Indicates what resources are required at function end.  */
55 static struct resources end_of_function_needs;
56
57 /* Define the hash table itself.  */
58 static struct target_info **target_hash_table = NULL;
59
60 /* For each basic block, we maintain a generation number of its basic
61    block info, which is updated each time we move an insn from the
62    target of a jump.  This is the generation number indexed by block
63    number.  */
64
65 static int *bb_ticks;
66
67 /* Marks registers possibly live at the current place being scanned by
68    mark_target_live_regs.  Used only by next two function.    */
69
70 static HARD_REG_SET current_live_regs;
71
72 /* Marks registers for which we have seen a REG_DEAD note but no assignment.
73    Also only used by the next two functions.  */
74
75 static HARD_REG_SET pending_dead_regs;
76 \f
77 static void update_live_status          PARAMS ((rtx, rtx, void *));
78 static int find_basic_block             PARAMS ((rtx));
79 static rtx next_insn_no_annul           PARAMS ((rtx));
80 static rtx find_dead_or_set_registers   PARAMS ((rtx, struct resources*,
81                                                 rtx*, int, struct resources,
82                                                 struct resources));
83 \f
84 /* Utility function called from mark_target_live_regs via note_stores.
85    It deadens any CLOBBERed registers and livens any SET registers.  */
86
87 static void
88 update_live_status (dest, x, data)
89      rtx dest;
90      rtx x;
91      void *data ATTRIBUTE_UNUSED;
92 {
93   int first_regno, last_regno;
94   int i;
95
96   if (GET_CODE (dest) != REG
97       && (GET_CODE (dest) != SUBREG || GET_CODE (SUBREG_REG (dest)) != REG))
98     return;
99
100   if (GET_CODE (dest) == SUBREG)
101     first_regno = REGNO (SUBREG_REG (dest)) + SUBREG_WORD (dest);
102   else
103     first_regno = REGNO (dest);
104
105   last_regno = first_regno + HARD_REGNO_NREGS (first_regno, GET_MODE (dest));
106
107   if (GET_CODE (x) == CLOBBER)
108     for (i = first_regno; i < last_regno; i++)
109       CLEAR_HARD_REG_BIT (current_live_regs, i);
110   else
111     for (i = first_regno; i < last_regno; i++)
112       {
113         SET_HARD_REG_BIT (current_live_regs, i);
114         CLEAR_HARD_REG_BIT (pending_dead_regs, i);
115       }
116 }
117 /* Find the number of the basic block that starts closest to INSN.  Return -1
118    if we couldn't find such a basic block.  */
119
120 static int
121 find_basic_block (insn)
122      rtx insn;
123 {
124   int i;
125
126   /* Scan backwards to the previous BARRIER.  Then see if we can find a
127      label that starts a basic block.  Return the basic block number.  */
128
129   for (insn = prev_nonnote_insn (insn);
130        insn && GET_CODE (insn) != BARRIER;
131        insn = prev_nonnote_insn (insn))
132     ;
133
134   /* The start of the function is basic block zero.  */
135   if (insn == 0)
136     return 0;
137
138   /* See if any of the upcoming CODE_LABELs start a basic block.  If we reach
139      anything other than a CODE_LABEL or note, we can't find this code.  */
140   for (insn = next_nonnote_insn (insn);
141        insn && GET_CODE (insn) == CODE_LABEL;
142        insn = next_nonnote_insn (insn))
143     {
144       for (i = 0; i < n_basic_blocks; i++)
145         if (insn == BLOCK_HEAD (i))
146           return i;
147     }
148
149   return -1;
150 }
151 \f
152 /* Similar to next_insn, but ignores insns in the delay slots of
153    an annulled branch.  */
154
155 static rtx
156 next_insn_no_annul (insn)
157      rtx insn;
158 {
159   if (insn)
160     {
161       /* If INSN is an annulled branch, skip any insns from the target
162          of the branch.  */
163       if (INSN_ANNULLED_BRANCH_P (insn)
164           && NEXT_INSN (PREV_INSN (insn)) != insn)
165         while (INSN_FROM_TARGET_P (NEXT_INSN (insn)))
166           insn = NEXT_INSN (insn);
167
168       insn = NEXT_INSN (insn);
169       if (insn && GET_CODE (insn) == INSN
170           && GET_CODE (PATTERN (insn)) == SEQUENCE)
171         insn = XVECEXP (PATTERN (insn), 0, 0);
172     }
173
174   return insn;
175 }
176 \f
177 /* Given X, some rtl, and RES, a pointer to a `struct resource', mark
178    which resources are references by the insn.  If INCLUDE_DELAYED_EFFECTS
179    is TRUE, resources used by the called routine will be included for
180    CALL_INSNs.  */
181
182 void
183 mark_referenced_resources (x, res, include_delayed_effects)
184      register rtx x;
185      register struct resources *res;
186      register int include_delayed_effects;
187 {
188   enum rtx_code code = GET_CODE (x);
189   int i, j;
190   unsigned int r;
191   register const char *format_ptr;
192
193   /* Handle leaf items for which we set resource flags.  Also, special-case
194      CALL, SET and CLOBBER operators.  */
195   switch (code)
196     {
197     case CONST:
198     case CONST_INT:
199     case CONST_DOUBLE:
200     case PC:
201     case SYMBOL_REF:
202     case LABEL_REF:
203       return;
204
205     case SUBREG:
206       if (GET_CODE (SUBREG_REG (x)) != REG)
207         mark_referenced_resources (SUBREG_REG (x), res, 0);
208       else
209         {
210           unsigned int regno = REGNO (SUBREG_REG (x)) + SUBREG_WORD (x);
211           unsigned int last_regno
212             = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
213
214           for (r = regno; r < last_regno; r++)
215             SET_HARD_REG_BIT (res->regs, r);
216         }
217       return;
218
219     case REG:
220       for (r = 0; r < HARD_REGNO_NREGS (REGNO (x), GET_MODE (x)); r++)
221         SET_HARD_REG_BIT (res->regs, REGNO (x) + r);
222       return;
223
224     case MEM:
225       /* If this memory shouldn't change, it really isn't referencing
226          memory.  */
227       if (RTX_UNCHANGING_P (x))
228         res->unch_memory = 1;
229       else
230         res->memory = 1;
231       res->volatil |= MEM_VOLATILE_P (x);
232
233       /* Mark registers used to access memory.  */
234       mark_referenced_resources (XEXP (x, 0), res, 0);
235       return;
236
237     case CC0:
238       res->cc = 1;
239       return;
240
241     case UNSPEC_VOLATILE:
242     case ASM_INPUT:
243       /* Traditional asm's are always volatile.  */
244       res->volatil = 1;
245       return;
246
247     case TRAP_IF:
248       res->volatil = 1;
249       break;
250
251     case ASM_OPERANDS:
252       res->volatil |= MEM_VOLATILE_P (x);
253
254       /* For all ASM_OPERANDS, we must traverse the vector of input operands.
255          We can not just fall through here since then we would be confused
256          by the ASM_INPUT rtx inside ASM_OPERANDS, which do not indicate
257          traditional asms unlike their normal usage.  */
258       
259       for (i = 0; i < ASM_OPERANDS_INPUT_LENGTH (x); i++)
260         mark_referenced_resources (ASM_OPERANDS_INPUT (x, i), res, 0);
261       return;
262
263     case CALL:
264       /* The first operand will be a (MEM (xxx)) but doesn't really reference
265          memory.  The second operand may be referenced, though.  */
266       mark_referenced_resources (XEXP (XEXP (x, 0), 0), res, 0);
267       mark_referenced_resources (XEXP (x, 1), res, 0);
268       return;
269
270     case SET:
271       /* Usually, the first operand of SET is set, not referenced.  But
272          registers used to access memory are referenced.  SET_DEST is
273          also referenced if it is a ZERO_EXTRACT or SIGN_EXTRACT.  */
274
275       mark_referenced_resources (SET_SRC (x), res, 0);
276
277       x = SET_DEST (x);
278       if (GET_CODE (x) == SIGN_EXTRACT
279           || GET_CODE (x) == ZERO_EXTRACT
280           || GET_CODE (x) == STRICT_LOW_PART)
281         mark_referenced_resources (x, res, 0);
282       else if (GET_CODE (x) == SUBREG)
283         x = SUBREG_REG (x);
284       if (GET_CODE (x) == MEM)
285         mark_referenced_resources (XEXP (x, 0), res, 0);
286       return;
287
288     case CLOBBER:
289       return;
290
291     case CALL_INSN:
292       if (include_delayed_effects)
293         {
294           /* A CALL references memory, the frame pointer if it exists, the
295              stack pointer, any global registers and any registers given in
296              USE insns immediately in front of the CALL.
297
298              However, we may have moved some of the parameter loading insns
299              into the delay slot of this CALL.  If so, the USE's for them
300              don't count and should be skipped.  */
301           rtx insn = PREV_INSN (x);
302           rtx sequence = 0;
303           int seq_size = 0;
304           rtx next = NEXT_INSN (x);
305           int i;
306
307           /* If we are part of a delay slot sequence, point at the SEQUENCE.  */
308           if (NEXT_INSN (insn) != x)
309             {
310               next = NEXT_INSN (NEXT_INSN (insn));
311               sequence = PATTERN (NEXT_INSN (insn));
312               seq_size = XVECLEN (sequence, 0);
313               if (GET_CODE (sequence) != SEQUENCE)
314                 abort ();
315             }
316
317           res->memory = 1;
318           SET_HARD_REG_BIT (res->regs, STACK_POINTER_REGNUM);
319           if (frame_pointer_needed)
320             {
321               SET_HARD_REG_BIT (res->regs, FRAME_POINTER_REGNUM);
322 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
323               SET_HARD_REG_BIT (res->regs, HARD_FRAME_POINTER_REGNUM);
324 #endif
325             }
326
327           for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
328             if (global_regs[i])
329               SET_HARD_REG_BIT (res->regs, i);
330
331           /* Check for a NOTE_INSN_SETJMP.  If it exists, then we must
332              assume that this call can need any register.
333
334              This is done to be more conservative about how we handle setjmp.
335              We assume that they both use and set all registers.  Using all
336              registers ensures that a register will not be considered dead
337              just because it crosses a setjmp call.  A register should be
338              considered dead only if the setjmp call returns non-zero.  */
339           if (next && GET_CODE (next) == NOTE
340               && NOTE_LINE_NUMBER (next) == NOTE_INSN_SETJMP)
341             SET_HARD_REG_SET (res->regs);
342
343           {
344             rtx link;
345
346             for (link = CALL_INSN_FUNCTION_USAGE (x);
347                  link;
348                  link = XEXP (link, 1))
349               if (GET_CODE (XEXP (link, 0)) == USE)
350                 {
351                   for (i = 1; i < seq_size; i++)
352                     {
353                       rtx slot_pat = PATTERN (XVECEXP (sequence, 0, i));
354                       if (GET_CODE (slot_pat) == SET
355                           && rtx_equal_p (SET_DEST (slot_pat),
356                                           XEXP (XEXP (link, 0), 0)))
357                         break;
358                     }
359                   if (i >= seq_size)
360                     mark_referenced_resources (XEXP (XEXP (link, 0), 0),
361                                                res, 0);
362                 }
363           }
364         }
365
366       /* ... fall through to other INSN processing ...  */
367
368     case INSN:
369     case JUMP_INSN:
370
371 #ifdef INSN_REFERENCES_ARE_DELAYED
372       if (! include_delayed_effects
373           && INSN_REFERENCES_ARE_DELAYED (x))
374         return;
375 #endif
376
377       /* No special processing, just speed up.  */
378       mark_referenced_resources (PATTERN (x), res, include_delayed_effects);
379       return;
380
381     default:
382       break;
383     }
384
385   /* Process each sub-expression and flag what it needs.  */
386   format_ptr = GET_RTX_FORMAT (code);
387   for (i = 0; i < GET_RTX_LENGTH (code); i++)
388     switch (*format_ptr++)
389       {
390       case 'e':
391         mark_referenced_resources (XEXP (x, i), res, include_delayed_effects);
392         break;
393
394       case 'E':
395         for (j = 0; j < XVECLEN (x, i); j++)
396           mark_referenced_resources (XVECEXP (x, i, j), res,
397                                      include_delayed_effects);
398         break;
399       }
400 }
401 \f
402 /* A subroutine of mark_target_live_regs.  Search forward from TARGET
403    looking for registers that are set before they are used.  These are dead. 
404    Stop after passing a few conditional jumps, and/or a small
405    number of unconditional branches.  */
406
407 static rtx
408 find_dead_or_set_registers (target, res, jump_target, jump_count, set, needed)
409      rtx target;
410      struct resources *res;
411      rtx *jump_target;
412      int jump_count;
413      struct resources set, needed;
414 {
415   HARD_REG_SET scratch;
416   rtx insn, next;
417   rtx jump_insn = 0;
418   int i;
419
420   for (insn = target; insn; insn = next)
421     {
422       rtx this_jump_insn = insn;
423
424       next = NEXT_INSN (insn);
425       switch (GET_CODE (insn))
426         {
427         case CODE_LABEL:
428           /* After a label, any pending dead registers that weren't yet
429              used can be made dead.  */
430           AND_COMPL_HARD_REG_SET (pending_dead_regs, needed.regs);
431           AND_COMPL_HARD_REG_SET (res->regs, pending_dead_regs);
432           CLEAR_HARD_REG_SET (pending_dead_regs);
433
434           continue;
435
436         case BARRIER:
437         case NOTE:
438           continue;
439
440         case INSN:
441           if (GET_CODE (PATTERN (insn)) == USE)
442             {
443               /* If INSN is a USE made by update_block, we care about the
444                  underlying insn.  Any registers set by the underlying insn
445                  are live since the insn is being done somewhere else.  */
446               if (GET_RTX_CLASS (GET_CODE (XEXP (PATTERN (insn), 0))) == 'i')
447                 mark_set_resources (XEXP (PATTERN (insn), 0), res, 0, 1);
448
449               /* All other USE insns are to be ignored.  */
450               continue;
451             }
452           else if (GET_CODE (PATTERN (insn)) == CLOBBER)
453             continue;
454           else if (GET_CODE (PATTERN (insn)) == SEQUENCE)
455             {
456               /* An unconditional jump can be used to fill the delay slot
457                  of a call, so search for a JUMP_INSN in any position.  */
458               for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
459                 {
460                   this_jump_insn = XVECEXP (PATTERN (insn), 0, i);
461                   if (GET_CODE (this_jump_insn) == JUMP_INSN)
462                     break;
463                 }
464             }
465
466         default:
467           break;
468         }
469
470       if (GET_CODE (this_jump_insn) == JUMP_INSN)
471         {
472           if (jump_count++ < 10)
473             {
474               if (simplejump_p (this_jump_insn)
475                   || GET_CODE (PATTERN (this_jump_insn)) == RETURN)
476                 {
477                   next = JUMP_LABEL (this_jump_insn);
478                   if (jump_insn == 0)
479                     {
480                       jump_insn = insn;
481                       if (jump_target)
482                         *jump_target = JUMP_LABEL (this_jump_insn);
483                     }
484                 }
485               else if (condjump_p (this_jump_insn)
486                        || condjump_in_parallel_p (this_jump_insn))
487                 {
488                   struct resources target_set, target_res;
489                   struct resources fallthrough_res;
490
491                   /* We can handle conditional branches here by following
492                      both paths, and then IOR the results of the two paths
493                      together, which will give us registers that are dead
494                      on both paths.  Since this is expensive, we give it
495                      a much higher cost than unconditional branches.  The
496                      cost was chosen so that we will follow at most 1
497                      conditional branch.  */
498
499                   jump_count += 4;
500                   if (jump_count >= 10)
501                     break;
502
503                   mark_referenced_resources (insn, &needed, 1);
504
505                   /* For an annulled branch, mark_set_resources ignores slots
506                      filled by instructions from the target.  This is correct
507                      if the branch is not taken.  Since we are following both
508                      paths from the branch, we must also compute correct info
509                      if the branch is taken.  We do this by inverting all of
510                      the INSN_FROM_TARGET_P bits, calling mark_set_resources,
511                      and then inverting the INSN_FROM_TARGET_P bits again.  */
512
513                   if (GET_CODE (PATTERN (insn)) == SEQUENCE
514                       && INSN_ANNULLED_BRANCH_P (this_jump_insn))
515                     {
516                       for (i = 1; i < XVECLEN (PATTERN (insn), 0); i++)
517                         INSN_FROM_TARGET_P (XVECEXP (PATTERN (insn), 0, i))
518                           = ! INSN_FROM_TARGET_P (XVECEXP (PATTERN (insn), 0, i));
519
520                       target_set = set;
521                       mark_set_resources (insn, &target_set, 0, 1);
522
523                       for (i = 1; i < XVECLEN (PATTERN (insn), 0); i++)
524                         INSN_FROM_TARGET_P (XVECEXP (PATTERN (insn), 0, i))
525                           = ! INSN_FROM_TARGET_P (XVECEXP (PATTERN (insn), 0, i));
526
527                       mark_set_resources (insn, &set, 0, 1);
528                     }
529                   else
530                     {
531                       mark_set_resources (insn, &set, 0, 1);
532                       target_set = set;
533                     }
534
535                   target_res = *res;
536                   COPY_HARD_REG_SET (scratch, target_set.regs);
537                   AND_COMPL_HARD_REG_SET (scratch, needed.regs);
538                   AND_COMPL_HARD_REG_SET (target_res.regs, scratch);
539
540                   fallthrough_res = *res;
541                   COPY_HARD_REG_SET (scratch, set.regs);
542                   AND_COMPL_HARD_REG_SET (scratch, needed.regs);
543                   AND_COMPL_HARD_REG_SET (fallthrough_res.regs, scratch);
544
545                   find_dead_or_set_registers (JUMP_LABEL (this_jump_insn),
546                                               &target_res, 0, jump_count,
547                                               target_set, needed);
548                   find_dead_or_set_registers (next,
549                                               &fallthrough_res, 0, jump_count,
550                                               set, needed);
551                   IOR_HARD_REG_SET (fallthrough_res.regs, target_res.regs);
552                   AND_HARD_REG_SET (res->regs, fallthrough_res.regs);
553                   break;
554                 }
555               else
556                 break;
557             }
558           else
559             {
560               /* Don't try this optimization if we expired our jump count
561                  above, since that would mean there may be an infinite loop
562                  in the function being compiled.  */
563               jump_insn = 0;
564               break;
565             }
566         }
567
568       mark_referenced_resources (insn, &needed, 1);
569       mark_set_resources (insn, &set, 0, 1);
570
571       COPY_HARD_REG_SET (scratch, set.regs);
572       AND_COMPL_HARD_REG_SET (scratch, needed.regs);
573       AND_COMPL_HARD_REG_SET (res->regs, scratch);
574     }
575
576   return jump_insn;
577 }
578 \f
579 /* Given X, a part of an insn, and a pointer to a `struct resource',
580    RES, indicate which resources are modified by the insn. If
581    INCLUDE_DELAYED_EFFECTS is nonzero, also mark resources potentially
582    set by the called routine.
583
584    If IN_DEST is nonzero, it means we are inside a SET.  Otherwise,
585    objects are being referenced instead of set.
586
587    We never mark the insn as modifying the condition code unless it explicitly
588    SETs CC0 even though this is not totally correct.  The reason for this is
589    that we require a SET of CC0 to immediately precede the reference to CC0.
590    So if some other insn sets CC0 as a side-effect, we know it cannot affect
591    our computation and thus may be placed in a delay slot.   */
592
593 void
594 mark_set_resources (x, res, in_dest, include_delayed_effects)
595      register rtx x;
596      register struct resources *res;
597      int in_dest;
598      int include_delayed_effects;
599 {
600   enum rtx_code code;
601   int i, j;
602   unsigned int r;
603   const char *format_ptr;
604
605  restart:
606
607   code = GET_CODE (x);
608
609   switch (code)
610     {
611     case NOTE:
612     case BARRIER:
613     case CODE_LABEL:
614     case USE:
615     case CONST_INT:
616     case CONST_DOUBLE:
617     case LABEL_REF:
618     case SYMBOL_REF:
619     case CONST:
620     case PC:
621       /* These don't set any resources.  */
622       return;
623
624     case CC0:
625       if (in_dest)
626         res->cc = 1;
627       return;
628
629     case CALL_INSN:
630       /* Called routine modifies the condition code, memory, any registers
631          that aren't saved across calls, global registers and anything
632          explicitly CLOBBERed immediately after the CALL_INSN.  */
633
634       if (include_delayed_effects)
635         {
636           rtx next = NEXT_INSN (x);
637           rtx prev = PREV_INSN (x);
638           rtx link;
639
640           res->cc = res->memory = 1;
641           for (r = 0; r < FIRST_PSEUDO_REGISTER; r++)
642             if (call_used_regs[r] || global_regs[r])
643               SET_HARD_REG_BIT (res->regs, r);
644
645           /* If X is part of a delay slot sequence, then NEXT should be
646              the first insn after the sequence.  */
647           if (NEXT_INSN (prev) != x)
648             next = NEXT_INSN (NEXT_INSN (prev));
649
650           for (link = CALL_INSN_FUNCTION_USAGE (x);
651                link; link = XEXP (link, 1))
652             if (GET_CODE (XEXP (link, 0)) == CLOBBER)
653               mark_set_resources (SET_DEST (XEXP (link, 0)), res, 1, 0);
654
655           /* Check for a NOTE_INSN_SETJMP.  If it exists, then we must
656              assume that this call can clobber any register.  */
657           if (next && GET_CODE (next) == NOTE
658               && NOTE_LINE_NUMBER (next) == NOTE_INSN_SETJMP)
659             SET_HARD_REG_SET (res->regs);
660         }
661
662       /* ... and also what its RTL says it modifies, if anything.  */
663
664     case JUMP_INSN:
665     case INSN:
666
667         /* An insn consisting of just a CLOBBER (or USE) is just for flow
668            and doesn't actually do anything, so we ignore it.  */
669
670 #ifdef INSN_SETS_ARE_DELAYED
671       if (! include_delayed_effects
672           && INSN_SETS_ARE_DELAYED (x))
673         return;
674 #endif
675
676       x = PATTERN (x);
677       if (GET_CODE (x) != USE && GET_CODE (x) != CLOBBER)
678         goto restart;
679       return;
680
681     case SET:
682       /* If the source of a SET is a CALL, this is actually done by
683          the called routine.  So only include it if we are to include the
684          effects of the calling routine.  */
685
686       mark_set_resources (SET_DEST (x), res,
687                           (include_delayed_effects
688                            || GET_CODE (SET_SRC (x)) != CALL),
689                           0);
690
691       mark_set_resources (SET_SRC (x), res, 0, 0);
692       return;
693
694     case CLOBBER:
695       mark_set_resources (XEXP (x, 0), res, 1, 0);
696       return;
697       
698     case SEQUENCE:
699       for (i = 0; i < XVECLEN (x, 0); i++)
700         if (! (INSN_ANNULLED_BRANCH_P (XVECEXP (x, 0, 0))
701                && INSN_FROM_TARGET_P (XVECEXP (x, 0, i))))
702           mark_set_resources (XVECEXP (x, 0, i), res, 0,
703                               include_delayed_effects);
704       return;
705
706     case POST_INC:
707     case PRE_INC:
708     case POST_DEC:
709     case PRE_DEC:
710       mark_set_resources (XEXP (x, 0), res, 1, 0);
711       return;
712
713     case ZERO_EXTRACT:
714       mark_set_resources (XEXP (x, 0), res, in_dest, 0);
715       mark_set_resources (XEXP (x, 1), res, 0, 0);
716       mark_set_resources (XEXP (x, 2), res, 0, 0);
717       return;
718
719     case MEM:
720       if (in_dest)
721         {
722           res->memory = 1;
723           res->unch_memory |= RTX_UNCHANGING_P (x);
724           res->volatil |= MEM_VOLATILE_P (x);
725         }
726
727       mark_set_resources (XEXP (x, 0), res, 0, 0);
728       return;
729
730     case SUBREG:
731       if (in_dest)
732         {
733           if (GET_CODE (SUBREG_REG (x)) != REG)
734             mark_set_resources (SUBREG_REG (x), res,
735                                 in_dest, include_delayed_effects);
736           else
737             {
738               unsigned int regno = REGNO (SUBREG_REG (x)) + SUBREG_WORD (x);
739               unsigned int last_regno
740                 = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
741
742               for (r = regno; r < last_regno; r++)
743                 SET_HARD_REG_BIT (res->regs, r);
744             }
745         }
746       return;
747
748     case REG:
749       if (in_dest)
750         for (r = 0; r < HARD_REGNO_NREGS (REGNO (x), GET_MODE (x)); r++)
751           SET_HARD_REG_BIT (res->regs, REGNO (x) + r);
752       return;
753
754     case UNSPEC_VOLATILE:
755     case ASM_INPUT:
756       /* Traditional asm's are always volatile.  */
757       res->volatil = 1;
758       return;
759
760     case TRAP_IF:
761       res->volatil = 1;
762       break;
763
764     case ASM_OPERANDS:
765       res->volatil |= MEM_VOLATILE_P (x);
766
767       /* For all ASM_OPERANDS, we must traverse the vector of input operands.
768          We can not just fall through here since then we would be confused
769          by the ASM_INPUT rtx inside ASM_OPERANDS, which do not indicate
770          traditional asms unlike their normal usage.  */
771       
772       for (i = 0; i < ASM_OPERANDS_INPUT_LENGTH (x); i++)
773         mark_set_resources (ASM_OPERANDS_INPUT (x, i), res, in_dest, 0);
774       return;
775
776     default:
777       break;
778     }
779
780   /* Process each sub-expression and flag what it needs.  */
781   format_ptr = GET_RTX_FORMAT (code);
782   for (i = 0; i < GET_RTX_LENGTH (code); i++)
783     switch (*format_ptr++)
784       {
785       case 'e':
786         mark_set_resources (XEXP (x, i), res, in_dest, include_delayed_effects);
787         break;
788
789       case 'E':
790         for (j = 0; j < XVECLEN (x, i); j++)
791           mark_set_resources (XVECEXP (x, i, j), res, in_dest,
792                               include_delayed_effects);
793         break;
794       }
795 }
796 \f
797 /* Set the resources that are live at TARGET.
798
799    If TARGET is zero, we refer to the end of the current function and can
800    return our precomputed value.
801
802    Otherwise, we try to find out what is live by consulting the basic block
803    information.  This is tricky, because we must consider the actions of
804    reload and jump optimization, which occur after the basic block information
805    has been computed.
806
807    Accordingly, we proceed as follows::
808
809    We find the previous BARRIER and look at all immediately following labels
810    (with no intervening active insns) to see if any of them start a basic
811    block.  If we hit the start of the function first, we use block 0.
812
813    Once we have found a basic block and a corresponding first insns, we can
814    accurately compute the live status from basic_block_live_regs and
815    reg_renumber.  (By starting at a label following a BARRIER, we are immune
816    to actions taken by reload and jump.)  Then we scan all insns between
817    that point and our target.  For each CLOBBER (or for call-clobbered regs
818    when we pass a CALL_INSN), mark the appropriate registers are dead.  For
819    a SET, mark them as live.
820
821    We have to be careful when using REG_DEAD notes because they are not
822    updated by such things as find_equiv_reg.  So keep track of registers
823    marked as dead that haven't been assigned to, and mark them dead at the
824    next CODE_LABEL since reload and jump won't propagate values across labels.
825
826    If we cannot find the start of a basic block (should be a very rare
827    case, if it can happen at all), mark everything as potentially live.
828
829    Next, scan forward from TARGET looking for things set or clobbered
830    before they are used.  These are not live.
831
832    Because we can be called many times on the same target, save our results
833    in a hash table indexed by INSN_UID.  This is only done if the function
834    init_resource_info () was invoked before we are called.  */
835
836 void
837 mark_target_live_regs (insns, target, res)
838      rtx insns;
839      rtx target;
840      struct resources *res;
841 {
842   int b = -1;
843   int i;
844   struct target_info *tinfo = NULL;
845   rtx insn;
846   rtx jump_insn = 0;
847   rtx jump_target;
848   HARD_REG_SET scratch;
849   struct resources set, needed;
850
851   /* Handle end of function.  */
852   if (target == 0)
853     {
854       *res = end_of_function_needs;
855       return;
856     }
857
858   /* We have to assume memory is needed, but the CC isn't.  */
859   res->memory = 1;
860   res->volatil = res->unch_memory = 0;
861   res->cc = 0;
862
863   /* See if we have computed this value already.  */
864   if (target_hash_table != NULL)
865     {
866       for (tinfo = target_hash_table[INSN_UID (target) % TARGET_HASH_PRIME];
867            tinfo; tinfo = tinfo->next)
868         if (tinfo->uid == INSN_UID (target))
869           break;
870
871       /* Start by getting the basic block number.  If we have saved
872          information, we can get it from there unless the insn at the
873          start of the basic block has been deleted.  */
874       if (tinfo && tinfo->block != -1
875           && ! INSN_DELETED_P (BLOCK_HEAD (tinfo->block)))
876         b = tinfo->block;
877     }
878
879   if (b == -1)
880     b = find_basic_block (target);
881
882   if (target_hash_table != NULL)
883     {
884       if (tinfo)
885         {
886           /* If the information is up-to-date, use it.  Otherwise, we will
887              update it below.  */
888           if (b == tinfo->block && b != -1 && tinfo->bb_tick == bb_ticks[b])
889             {
890               COPY_HARD_REG_SET (res->regs, tinfo->live_regs);
891               return;
892             }
893         }
894       else
895         {
896           /* Allocate a place to put our results and chain it into the 
897              hash table.  */
898           tinfo = (struct target_info *) oballoc (sizeof (struct target_info));
899           tinfo->uid = INSN_UID (target);
900           tinfo->block = b;
901           tinfo->next = target_hash_table[INSN_UID (target) % TARGET_HASH_PRIME];
902           target_hash_table[INSN_UID (target) % TARGET_HASH_PRIME] = tinfo;
903         }
904     }
905
906   CLEAR_HARD_REG_SET (pending_dead_regs);
907
908   /* If we found a basic block, get the live registers from it and update
909      them with anything set or killed between its start and the insn before
910      TARGET.  Otherwise, we must assume everything is live.  */
911   if (b != -1)
912     {
913       regset regs_live = BASIC_BLOCK (b)->global_live_at_start;
914       unsigned int j;
915       unsigned int regno;
916       rtx start_insn, stop_insn;
917
918       /* Compute hard regs live at start of block -- this is the real hard regs
919          marked live, plus live pseudo regs that have been renumbered to
920          hard regs.  */
921
922       REG_SET_TO_HARD_REG_SET (current_live_regs, regs_live);
923
924       EXECUTE_IF_SET_IN_REG_SET
925         (regs_live, FIRST_PSEUDO_REGISTER, i,
926          {
927            if (reg_renumber[i] >= 0)
928              {
929                regno = reg_renumber[i];
930                for (j = regno;
931                     j < regno + HARD_REGNO_NREGS (regno,
932                                                   PSEUDO_REGNO_MODE (i));
933                     j++)
934                  SET_HARD_REG_BIT (current_live_regs, j);
935              }
936          });
937
938       /* Get starting and ending insn, handling the case where each might
939          be a SEQUENCE.  */
940       start_insn = (b == 0 ? insns : BLOCK_HEAD (b));
941       stop_insn = target;
942
943       if (GET_CODE (start_insn) == INSN
944           && GET_CODE (PATTERN (start_insn)) == SEQUENCE)
945         start_insn = XVECEXP (PATTERN (start_insn), 0, 0);
946
947       if (GET_CODE (stop_insn) == INSN
948           && GET_CODE (PATTERN (stop_insn)) == SEQUENCE)
949         stop_insn = next_insn (PREV_INSN (stop_insn));
950
951       for (insn = start_insn; insn != stop_insn;
952            insn = next_insn_no_annul (insn))
953         {
954           rtx link;
955           rtx real_insn = insn;
956
957           /* If this insn is from the target of a branch, it isn't going to
958              be used in the sequel.  If it is used in both cases, this
959              test will not be true.  */
960           if (INSN_FROM_TARGET_P (insn))
961             continue;
962
963           /* If this insn is a USE made by update_block, we care about the
964              underlying insn.  */
965           if (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == USE
966               && GET_RTX_CLASS (GET_CODE (XEXP (PATTERN (insn), 0))) == 'i')
967               real_insn = XEXP (PATTERN (insn), 0);
968
969           if (GET_CODE (real_insn) == CALL_INSN)
970             {
971               /* CALL clobbers all call-used regs that aren't fixed except
972                  sp, ap, and fp.  Do this before setting the result of the
973                  call live.  */
974               for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
975                 if (call_used_regs[i]
976                     && i != STACK_POINTER_REGNUM && i != FRAME_POINTER_REGNUM
977                     && i != ARG_POINTER_REGNUM
978 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
979                     && i != HARD_FRAME_POINTER_REGNUM
980 #endif
981 #if ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
982                     && ! (i == ARG_POINTER_REGNUM && fixed_regs[i])
983 #endif
984 #if defined (PIC_OFFSET_TABLE_REGNUM) && !defined (PIC_OFFSET_TABLE_REG_CALL_CLOBBERED)
985                     && ! (i == PIC_OFFSET_TABLE_REGNUM && flag_pic)
986 #endif
987                     )
988                   CLEAR_HARD_REG_BIT (current_live_regs, i);
989
990               /* A CALL_INSN sets any global register live, since it may
991                  have been modified by the call.  */
992               for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
993                 if (global_regs[i])
994                   SET_HARD_REG_BIT (current_live_regs, i);
995             }
996
997           /* Mark anything killed in an insn to be deadened at the next
998              label.  Ignore USE insns; the only REG_DEAD notes will be for
999              parameters.  But they might be early.  A CALL_INSN will usually
1000              clobber registers used for parameters.  It isn't worth bothering
1001              with the unlikely case when it won't.  */
1002           if ((GET_CODE (real_insn) == INSN
1003                && GET_CODE (PATTERN (real_insn)) != USE
1004                && GET_CODE (PATTERN (real_insn)) != CLOBBER)
1005               || GET_CODE (real_insn) == JUMP_INSN
1006               || GET_CODE (real_insn) == CALL_INSN)
1007             {
1008               for (link = REG_NOTES (real_insn); link; link = XEXP (link, 1))
1009                 if (REG_NOTE_KIND (link) == REG_DEAD
1010                     && GET_CODE (XEXP (link, 0)) == REG
1011                     && REGNO (XEXP (link, 0)) < FIRST_PSEUDO_REGISTER)
1012                   {
1013                     int first_regno = REGNO (XEXP (link, 0));
1014                     int last_regno
1015                       = (first_regno
1016                          + HARD_REGNO_NREGS (first_regno,
1017                                              GET_MODE (XEXP (link, 0))));
1018                          
1019                     for (i = first_regno; i < last_regno; i++)
1020                       SET_HARD_REG_BIT (pending_dead_regs, i);
1021                   }
1022
1023               note_stores (PATTERN (real_insn), update_live_status, NULL);
1024
1025               /* If any registers were unused after this insn, kill them.
1026                  These notes will always be accurate.  */
1027               for (link = REG_NOTES (real_insn); link; link = XEXP (link, 1))
1028                 if (REG_NOTE_KIND (link) == REG_UNUSED
1029                     && GET_CODE (XEXP (link, 0)) == REG
1030                     && REGNO (XEXP (link, 0)) < FIRST_PSEUDO_REGISTER)
1031                   {
1032                     int first_regno = REGNO (XEXP (link, 0));
1033                     int last_regno
1034                       = (first_regno
1035                          + HARD_REGNO_NREGS (first_regno,
1036                                              GET_MODE (XEXP (link, 0))));
1037                          
1038                     for (i = first_regno; i < last_regno; i++)
1039                       CLEAR_HARD_REG_BIT (current_live_regs, i);
1040                   }
1041             }
1042
1043           else if (GET_CODE (real_insn) == CODE_LABEL)
1044             {
1045               /* A label clobbers the pending dead registers since neither
1046                  reload nor jump will propagate a value across a label.  */
1047               AND_COMPL_HARD_REG_SET (current_live_regs, pending_dead_regs);
1048               CLEAR_HARD_REG_SET (pending_dead_regs);
1049             }
1050
1051           /* The beginning of the epilogue corresponds to the end of the
1052              RTL chain when there are no epilogue insns.  Certain resources
1053              are implicitly required at that point.  */
1054           else if (GET_CODE (real_insn) == NOTE
1055                    && NOTE_LINE_NUMBER (real_insn) == NOTE_INSN_EPILOGUE_BEG)
1056             IOR_HARD_REG_SET (current_live_regs, start_of_epilogue_needs.regs);
1057         }
1058
1059       COPY_HARD_REG_SET (res->regs, current_live_regs);
1060       if (tinfo != NULL)
1061         {
1062           tinfo->block = b;
1063           tinfo->bb_tick = bb_ticks[b];
1064         }
1065     }
1066   else
1067     /* We didn't find the start of a basic block.  Assume everything
1068        in use.  This should happen only extremely rarely.  */
1069     SET_HARD_REG_SET (res->regs);
1070
1071   CLEAR_RESOURCE (&set);
1072   CLEAR_RESOURCE (&needed);
1073
1074   jump_insn = find_dead_or_set_registers (target, res, &jump_target, 0,
1075                                           set, needed);
1076
1077   /* If we hit an unconditional branch, we have another way of finding out
1078      what is live: we can see what is live at the branch target and include
1079      anything used but not set before the branch.  We add the live
1080      resources found using the test below to those found until now. */
1081
1082   if (jump_insn)
1083     {
1084       struct resources new_resources;
1085       rtx stop_insn = next_active_insn (jump_insn);
1086
1087       mark_target_live_regs (insns, next_active_insn (jump_target),
1088                              &new_resources);
1089       CLEAR_RESOURCE (&set);
1090       CLEAR_RESOURCE (&needed);
1091
1092       /* Include JUMP_INSN in the needed registers.  */
1093       for (insn = target; insn != stop_insn; insn = next_active_insn (insn))
1094         {
1095           mark_referenced_resources (insn, &needed, 1);
1096
1097           COPY_HARD_REG_SET (scratch, needed.regs);
1098           AND_COMPL_HARD_REG_SET (scratch, set.regs);
1099           IOR_HARD_REG_SET (new_resources.regs, scratch);
1100
1101           mark_set_resources (insn, &set, 0, 1);
1102         }
1103
1104       IOR_HARD_REG_SET (res->regs, new_resources.regs);
1105     }
1106
1107   if (tinfo != NULL)
1108     {
1109       COPY_HARD_REG_SET (tinfo->live_regs, res->regs);
1110     }
1111 }
1112 \f
1113 /* Initialize the resources required by mark_target_live_regs ().
1114    This should be invoked before the first call to mark_target_live_regs.  */
1115
1116 void
1117 init_resource_info (epilogue_insn)
1118      rtx epilogue_insn;
1119 {
1120   int i;
1121
1122   /* Indicate what resources are required to be valid at the end of the current
1123      function.  The condition code never is and memory always is.  If the
1124      frame pointer is needed, it is and so is the stack pointer unless
1125      EXIT_IGNORE_STACK is non-zero.  If the frame pointer is not needed, the
1126      stack pointer is.  Registers used to return the function value are
1127      needed.  Registers holding global variables are needed.  */
1128
1129   end_of_function_needs.cc = 0;
1130   end_of_function_needs.memory = 1;
1131   end_of_function_needs.unch_memory = 0;
1132   CLEAR_HARD_REG_SET (end_of_function_needs.regs);
1133
1134   if (frame_pointer_needed)
1135     {
1136       SET_HARD_REG_BIT (end_of_function_needs.regs, FRAME_POINTER_REGNUM);
1137 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
1138       SET_HARD_REG_BIT (end_of_function_needs.regs, HARD_FRAME_POINTER_REGNUM);
1139 #endif
1140 #ifdef EXIT_IGNORE_STACK
1141       if (! EXIT_IGNORE_STACK
1142           || current_function_sp_is_unchanging)
1143 #endif
1144         SET_HARD_REG_BIT (end_of_function_needs.regs, STACK_POINTER_REGNUM);
1145     }
1146   else
1147     SET_HARD_REG_BIT (end_of_function_needs.regs, STACK_POINTER_REGNUM);
1148
1149   if (current_function_return_rtx != 0)
1150     mark_referenced_resources (current_function_return_rtx,
1151                                &end_of_function_needs, 1);
1152
1153   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1154     if (global_regs[i]
1155 #ifdef EPILOGUE_USES
1156         || EPILOGUE_USES (i)
1157 #endif
1158         )
1159       SET_HARD_REG_BIT (end_of_function_needs.regs, i);
1160
1161   /* The registers required to be live at the end of the function are
1162      represented in the flow information as being dead just prior to
1163      reaching the end of the function.  For example, the return of a value
1164      might be represented by a USE of the return register immediately
1165      followed by an unconditional jump to the return label where the
1166      return label is the end of the RTL chain.  The end of the RTL chain
1167      is then taken to mean that the return register is live.
1168
1169      This sequence is no longer maintained when epilogue instructions are
1170      added to the RTL chain.  To reconstruct the original meaning, the
1171      start of the epilogue (NOTE_INSN_EPILOGUE_BEG) is regarded as the
1172      point where these registers become live (start_of_epilogue_needs).
1173      If epilogue instructions are present, the registers set by those
1174      instructions won't have been processed by flow.  Thus, those
1175      registers are additionally required at the end of the RTL chain
1176      (end_of_function_needs).  */
1177
1178   start_of_epilogue_needs = end_of_function_needs;
1179
1180   while ((epilogue_insn = next_nonnote_insn (epilogue_insn)))
1181     mark_set_resources (epilogue_insn, &end_of_function_needs, 0, 1);
1182
1183   /* Allocate and initialize the tables used by mark_target_live_regs.  */
1184   target_hash_table = (struct target_info **)
1185     xcalloc (TARGET_HASH_PRIME, sizeof (struct target_info *));
1186   bb_ticks = (int *) xcalloc (n_basic_blocks, sizeof (int));
1187 }
1188 \f
1189 /* Free up the resources allcated to mark_target_live_regs ().  This
1190    should be invoked after the last call to mark_target_live_regs ().  */
1191
1192 void
1193 free_resource_info ()
1194 {
1195   if (target_hash_table != NULL)
1196     {
1197       free (target_hash_table);
1198       target_hash_table = NULL;
1199     }
1200
1201   if (bb_ticks != NULL)
1202     {
1203       free (bb_ticks);
1204       bb_ticks = NULL;
1205     }
1206 }
1207 \f
1208 /* Clear any hashed information that we have stored for INSN.  */
1209
1210 void
1211 clear_hashed_info_for_insn (insn)
1212      rtx insn;
1213 {
1214   struct target_info *tinfo;
1215       
1216   if (target_hash_table != NULL)
1217     {
1218       for (tinfo = target_hash_table[INSN_UID (insn) % TARGET_HASH_PRIME];
1219            tinfo; tinfo = tinfo->next)
1220         if (tinfo->uid == INSN_UID (insn))
1221           break;
1222
1223       if (tinfo)
1224         tinfo->block = -1;
1225     }
1226 }
1227 \f
1228 /* Increment the tick count for the basic block that contains INSN.  */
1229
1230 void
1231 incr_ticks_for_insn (insn)
1232      rtx insn;
1233 {
1234   int b = find_basic_block (insn);
1235
1236   if (b != -1)
1237     bb_ticks[b]++;
1238 }
1239 \f
1240 /* Add TRIAL to the set of resources used at the end of the current
1241    function. */
1242 void
1243 mark_end_of_function_resources (trial, include_delayed_effects)
1244      rtx trial;
1245      int include_delayed_effects;
1246 {
1247   mark_referenced_resources (trial, &end_of_function_needs,
1248                              include_delayed_effects);
1249 }
1250 \f
1251 /* Try to find a hard register of mode MODE, matching the register class in
1252    CLASS_STR, which is available at the beginning of insn CURRENT_INSN and
1253    remains available until the end of LAST_INSN.  LAST_INSN may be NULL_RTX,
1254    in which case the only condition is that the register must be available
1255    before CURRENT_INSN.
1256    Registers that already have bits set in REG_SET will not be considered.
1257
1258    If an appropriate register is available, it will be returned and the
1259    corresponding bit(s) in REG_SET will be set; otherwise, NULL_RTX is
1260    returned.  */
1261
1262 rtx
1263 find_free_register (current_insn, last_insn, class_str, mode, reg_set)
1264      rtx current_insn, last_insn;
1265      const char *class_str;
1266      int mode;
1267      HARD_REG_SET *reg_set;
1268 {
1269   int i, j;
1270   struct resources used;
1271   unsigned char clet = class_str[0];
1272   enum reg_class class
1273     = (clet == 'r' ? GENERAL_REGS :  REG_CLASS_FROM_LETTER (clet));
1274
1275   mark_target_live_regs (get_insns (), current_insn, &used);
1276   if (last_insn)
1277     while (current_insn != last_insn)
1278       {
1279         /* Exclude anything set in this insn.  */
1280         mark_set_resources (PATTERN (current_insn), &used, 0, 1);
1281         current_insn = next_nonnote_insn (current_insn);
1282       }
1283
1284
1285   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1286     {
1287       int regno;
1288       int success;
1289
1290 #ifdef REG_ALLOC_ORDER
1291       regno = reg_alloc_order [i];
1292 #else
1293       regno = i;
1294 #endif
1295
1296       /* Don't allocate fixed registers.  */
1297       if (fixed_regs[regno])
1298         continue;
1299       /* Make sure the register is of the right class.  */
1300       if (! TEST_HARD_REG_BIT (reg_class_contents[class], regno))
1301         continue;
1302       /* And can support the mode we need.  */
1303       if (! HARD_REGNO_MODE_OK (regno, mode))
1304         continue;
1305       /* And that we don't create an extra save/restore.  */
1306       if (! call_used_regs[regno] && ! regs_ever_live[regno])
1307         continue;
1308       /* And we don't clobber traceback for noreturn functions.  */
1309       if ((regno == FRAME_POINTER_REGNUM || regno == HARD_FRAME_POINTER_REGNUM)
1310           && (! reload_completed || frame_pointer_needed))
1311         continue;
1312
1313       success = 1;
1314       for (j = HARD_REGNO_NREGS (regno, mode) - 1; j >= 0; j--)
1315         {
1316           if (TEST_HARD_REG_BIT (*reg_set, regno + j)
1317               || TEST_HARD_REG_BIT (used.regs, regno + j))
1318             {
1319               success = 0;
1320               break;
1321             }
1322         }
1323       if (success)
1324         {
1325           for (j = HARD_REGNO_NREGS (regno, mode) - 1; j >= 0; j--)
1326             {
1327               SET_HARD_REG_BIT (*reg_set, regno + j);
1328             }
1329           return gen_rtx_REG (mode, regno);
1330         }
1331     }
1332   return NULL_RTX;
1333 }
1334
1335 /* Return true if REG is dead at CURRENT_INSN.  */
1336
1337 int
1338 reg_dead_p (current_insn, reg)
1339      rtx current_insn, reg;
1340 {
1341   struct resources used;
1342   int regno, j;
1343
1344   mark_target_live_regs (get_insns (), current_insn, &used);
1345   
1346   regno = REGNO (reg);
1347   for (j = HARD_REGNO_NREGS (regno, GET_MODE (reg)) - 1; j >= 0; j--)
1348     {
1349       if (TEST_HARD_REG_BIT (used.regs, regno + j))
1350         return 0;
1351     }
1352
1353   return 1;
1354 }