OSDN Git Service

Fix copyrights.
[pf3gnuchains/gcc-fork.git] / gcc / regmove.c
1 /* Move registers around to reduce number of move instructions needed.
2    Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    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 module looks for cases where matching constraints would force
24    an instruction to need a reload, and this reload would be a register
25    to register move.  It then attempts to change the registers used by the
26    instruction to avoid the move instruction.  */
27
28 #include "config.h"
29 #include "system.h"
30 #include "rtl.h" /* stdio.h must precede rtl.h for FFS.  */
31 #include "tm_p.h"
32 #include "insn-config.h"
33 #include "recog.h"
34 #include "output.h"
35 #include "reload.h"
36 #include "regs.h"
37 #include "hard-reg-set.h"
38 #include "flags.h"
39 #include "function.h"
40 #include "expr.h"
41 #include "insn-flags.h"
42 #include "basic-block.h"
43 #include "toplev.h"
44
45 static int optimize_reg_copy_1  PARAMS ((rtx, rtx, rtx));
46 static void optimize_reg_copy_2 PARAMS ((rtx, rtx, rtx));
47 static void optimize_reg_copy_3 PARAMS ((rtx, rtx, rtx));
48 static rtx gen_add3_insn        PARAMS ((rtx, rtx, rtx));
49 static void copy_src_to_dest    PARAMS ((rtx, rtx, rtx, int));
50 static int *regmove_bb_head;
51
52 struct match {
53   int with[MAX_RECOG_OPERANDS];
54   enum { READ, WRITE, READWRITE } use[MAX_RECOG_OPERANDS];
55   int commutative[MAX_RECOG_OPERANDS];
56   int early_clobber[MAX_RECOG_OPERANDS];
57 };
58
59 static rtx discover_flags_reg PARAMS ((void));
60 static void mark_flags_life_zones PARAMS ((rtx));
61 static void flags_set_1 PARAMS ((rtx, rtx, void *));
62
63 static int try_auto_increment PARAMS ((rtx, rtx, rtx, rtx, HOST_WIDE_INT, int));
64 static int find_matches PARAMS ((rtx, struct match *));
65 static int fixup_match_1 PARAMS ((rtx, rtx, rtx, rtx, rtx, int, int, int, FILE *))
66 ;
67 static int reg_is_remote_constant_p PARAMS ((rtx, rtx, rtx));
68 static int stable_and_no_regs_but_for_p PARAMS ((rtx, rtx, rtx));
69 static int regclass_compatible_p PARAMS ((int, int));
70 static int replacement_quality PARAMS ((rtx));
71 static int fixup_match_2 PARAMS ((rtx, rtx, rtx, rtx, FILE *));
72
73 /* Return non-zero if registers with CLASS1 and CLASS2 can be merged without
74    causing too much register allocation problems.  */
75 static int
76 regclass_compatible_p (class0, class1)
77      int class0, class1;
78 {
79   return (class0 == class1
80           || (reg_class_subset_p (class0, class1)
81               && ! CLASS_LIKELY_SPILLED_P (class0))
82           || (reg_class_subset_p (class1, class0)
83               && ! CLASS_LIKELY_SPILLED_P (class1)));
84 }
85
86 /* Generate and return an insn body to add r1 and c,
87    storing the result in r0.  */
88 static rtx
89 gen_add3_insn (r0, r1, c)
90      rtx r0, r1, c;
91 {
92   int icode = (int) add_optab->handlers[(int) GET_MODE (r0)].insn_code;
93
94     if (icode == CODE_FOR_nothing
95       || ! ((*insn_data[icode].operand[0].predicate)
96             (r0, insn_data[icode].operand[0].mode))
97       || ! ((*insn_data[icode].operand[1].predicate)
98             (r1, insn_data[icode].operand[1].mode))
99       || ! ((*insn_data[icode].operand[2].predicate)
100             (c, insn_data[icode].operand[2].mode)))
101     return NULL_RTX;
102
103   return (GEN_FCN (icode) (r0, r1, c));
104 }
105
106
107 /* INC_INSN is an instruction that adds INCREMENT to REG.
108    Try to fold INC_INSN as a post/pre in/decrement into INSN.
109    Iff INC_INSN_SET is nonzero, inc_insn has a destination different from src.
110    Return nonzero for success.  */
111 static int
112 try_auto_increment (insn, inc_insn, inc_insn_set, reg, increment, pre)
113      rtx reg, insn, inc_insn ,inc_insn_set;
114      HOST_WIDE_INT increment;
115      int pre;
116 {
117   enum rtx_code inc_code;
118
119   rtx pset = single_set (insn);
120   if (pset)
121     {
122       /* Can't use the size of SET_SRC, we might have something like
123          (sign_extend:SI (mem:QI ...  */
124       rtx use = find_use_as_address (pset, reg, 0);
125       if (use != 0 && use != (rtx) 1)
126         {
127           int size = GET_MODE_SIZE (GET_MODE (use));
128           if (0
129               || (HAVE_POST_INCREMENT
130                   && pre == 0 && (inc_code = POST_INC, increment == size))
131               || (HAVE_PRE_INCREMENT
132                   && pre == 1 && (inc_code = PRE_INC, increment == size))
133               || (HAVE_POST_DECREMENT
134                   && pre == 0 && (inc_code = POST_DEC, increment == -size))
135               || (HAVE_PRE_DECREMENT
136                   && pre == 1 && (inc_code = PRE_DEC, increment == -size))
137           )
138             {
139               if (inc_insn_set)
140                 validate_change
141                   (inc_insn, 
142                    &SET_SRC (inc_insn_set),
143                    XEXP (SET_SRC (inc_insn_set), 0), 1);
144               validate_change (insn, &XEXP (use, 0),
145                                gen_rtx_fmt_e (inc_code, Pmode, reg), 1);
146               if (apply_change_group ())
147                 {
148                   REG_NOTES (insn)
149                     = gen_rtx_EXPR_LIST (REG_INC,
150                                          reg, REG_NOTES (insn));
151                   if (! inc_insn_set)
152                     {
153                       PUT_CODE (inc_insn, NOTE);
154                       NOTE_LINE_NUMBER (inc_insn) = NOTE_INSN_DELETED;
155                       NOTE_SOURCE_FILE (inc_insn) = 0;
156                     }
157                   return 1;
158                 }
159             }
160         }
161     }
162   return 0;
163 }
164 \f
165 /* Determine if the pattern generated by add_optab has a clobber,
166    such as might be issued for a flags hard register.  To make the
167    code elsewhere simpler, we handle cc0 in this same framework.
168
169    Return the register if one was discovered.  Return NULL_RTX if
170    if no flags were found.  Return pc_rtx if we got confused.  */
171
172 static rtx
173 discover_flags_reg ()
174 {
175   rtx tmp;
176   tmp = gen_rtx_REG (word_mode, 10000);
177   tmp = gen_add3_insn (tmp, tmp, GEN_INT (2));
178
179   /* If we get something that isn't a simple set, or a 
180      [(set ..) (clobber ..)], this whole function will go wrong.  */
181   if (GET_CODE (tmp) == SET)
182     return NULL_RTX;
183   else if (GET_CODE (tmp) == PARALLEL)
184     {
185       int found;
186
187       if (XVECLEN (tmp, 0) != 2)
188         return pc_rtx;
189       tmp = XVECEXP (tmp, 0, 1);
190       if (GET_CODE (tmp) != CLOBBER)
191         return pc_rtx;
192       tmp = XEXP (tmp, 0);
193
194       /* Don't do anything foolish if the md wanted to clobber a
195          scratch or something.  We only care about hard regs.
196          Moreover we don't like the notion of subregs of hard regs.  */
197       if (GET_CODE (tmp) == SUBREG
198           && GET_CODE (SUBREG_REG (tmp)) == REG
199           && REGNO (SUBREG_REG (tmp)) < FIRST_PSEUDO_REGISTER)
200         return pc_rtx;
201       found = (GET_CODE (tmp) == REG && REGNO (tmp) < FIRST_PSEUDO_REGISTER);
202
203       return (found ? tmp : NULL_RTX);
204     }
205
206   return pc_rtx;
207 }
208
209 /* It is a tedious task identifying when the flags register is live and
210    when it is safe to optimize.  Since we process the instruction stream
211    multiple times, locate and record these live zones by marking the
212    mode of the instructions -- 
213
214    QImode is used on the instruction at which the flags becomes live.
215
216    HImode is used within the range (exclusive) that the flags are
217    live.  Thus the user of the flags is not marked.
218
219    All other instructions are cleared to VOIDmode.  */
220
221 /* Used to communicate with flags_set_1.  */
222 static rtx flags_set_1_rtx;
223 static int flags_set_1_set;
224
225 static void
226 mark_flags_life_zones (flags)
227      rtx flags;
228 {
229   int flags_regno;
230   int flags_nregs;
231   int block;
232
233 #ifdef HAVE_cc0
234   /* If we found a flags register on a cc0 host, bail.  */
235   if (flags == NULL_RTX)
236     flags = cc0_rtx;
237   else if (flags != cc0_rtx)
238     flags = pc_rtx;
239 #endif
240     
241   /* Simple cases first: if no flags, clear all modes.  If confusing,
242      mark the entire function as being in a flags shadow.  */
243   if (flags == NULL_RTX || flags == pc_rtx)
244     {
245       enum machine_mode mode = (flags ? HImode : VOIDmode);
246       rtx insn;
247       for (insn = get_insns(); insn; insn = NEXT_INSN (insn))
248         PUT_MODE (insn, mode);
249       return;
250     }
251
252 #ifdef HAVE_cc0
253   flags_regno = -1;
254   flags_nregs = 1;
255 #else
256   flags_regno = REGNO (flags);
257   flags_nregs = HARD_REGNO_NREGS (flags_regno, GET_MODE (flags));
258 #endif
259   flags_set_1_rtx = flags;
260
261   /* Process each basic block.  */
262   for (block = n_basic_blocks - 1; block >= 0; block--)
263     {
264       rtx insn, end;
265       int live;
266
267       insn = BLOCK_HEAD (block);
268       end = BLOCK_END (block);
269
270       /* Look out for the (unlikely) case of flags being live across
271          basic block boundaries.  */
272       live = 0;
273 #ifndef HAVE_cc0
274       {
275         int i;
276         for (i = 0; i < flags_nregs; ++i)
277           live |= REGNO_REG_SET_P (BASIC_BLOCK (block)->global_live_at_start,
278                                    flags_regno + i);
279       }
280 #endif
281
282       while (1)
283         {
284           /* Process liveness in reverse order of importance --
285              alive, death, birth.  This lets more important info
286              overwrite the mode of lesser info.  */
287
288           if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
289             {
290 #ifdef HAVE_cc0
291               /* In the cc0 case, death is not marked in reg notes,
292                  but is instead the mere use of cc0 when it is alive.  */
293               if (live && reg_mentioned_p (cc0_rtx, PATTERN (insn)))
294                 live = 0;
295 #else
296               /* In the hard reg case, we watch death notes.  */
297               if (live && find_regno_note (insn, REG_DEAD, flags_regno))
298                 live = 0;
299 #endif
300               PUT_MODE (insn, (live ? HImode : VOIDmode));
301
302               /* In either case, birth is denoted simply by it's presence
303                  as the destination of a set.  */
304               flags_set_1_set = 0;
305               note_stores (PATTERN (insn), flags_set_1, NULL);
306               if (flags_set_1_set)
307                 {
308                   live = 1;
309                   PUT_MODE (insn, QImode);
310                 }
311             }
312           else
313             PUT_MODE (insn, (live ? HImode : VOIDmode));
314
315           if (insn == end)
316             break;
317           insn = NEXT_INSN (insn);
318         }
319     }
320 }
321
322 /* A subroutine of mark_flags_life_zones, called through note_stores.  */
323
324 static void
325 flags_set_1 (x, pat, data)
326      rtx x, pat;
327      void *data ATTRIBUTE_UNUSED;
328 {
329   if (GET_CODE (pat) == SET
330       && reg_overlap_mentioned_p (x, flags_set_1_rtx))
331     flags_set_1_set = 1;
332 }
333 \f
334 static int *regno_src_regno;
335
336 /* Indicate how good a choice REG (which appears as a source) is to replace
337    a destination register with.  The higher the returned value, the better
338    the choice.  The main objective is to avoid using a register that is
339    a candidate for tying to a hard register, since the output might in
340    turn be a candidate to be tied to a different hard register.  */
341 static int
342 replacement_quality(reg)
343      rtx reg;
344 {
345   int src_regno;
346
347   /* Bad if this isn't a register at all.  */
348   if (GET_CODE (reg) != REG)
349     return 0;
350
351   /* If this register is not meant to get a hard register,
352      it is a poor choice.  */
353   if (REG_LIVE_LENGTH (REGNO (reg)) < 0)
354     return 0;
355
356   src_regno = regno_src_regno[REGNO (reg)];
357
358   /* If it was not copied from another register, it is fine.  */
359   if (src_regno < 0)
360     return 3;
361
362   /* Copied from a hard register?  */
363   if (src_regno < FIRST_PSEUDO_REGISTER)
364     return 1;
365
366   /* Copied from a pseudo register - not as bad as from a hard register,
367      yet still cumbersome, since the register live length will be lengthened
368      when the registers get tied.  */
369   return 2;
370 }
371
372 /* INSN is a copy from SRC to DEST, both registers, and SRC does not die
373    in INSN.
374
375    Search forward to see if SRC dies before either it or DEST is modified,
376    but don't scan past the end of a basic block.  If so, we can replace SRC
377    with DEST and let SRC die in INSN. 
378
379    This will reduce the number of registers live in that range and may enable
380    DEST to be tied to SRC, thus often saving one register in addition to a
381    register-register copy.  */
382
383 static int
384 optimize_reg_copy_1 (insn, dest, src)
385      rtx insn;
386      rtx dest;
387      rtx src;
388 {
389   rtx p, q;
390   rtx note;
391   rtx dest_death = 0;
392   int sregno = REGNO (src);
393   int dregno = REGNO (dest);
394
395   /* We don't want to mess with hard regs if register classes are small. */
396   if (sregno == dregno
397       || (SMALL_REGISTER_CLASSES
398           && (sregno < FIRST_PSEUDO_REGISTER
399               || dregno < FIRST_PSEUDO_REGISTER))
400       /* We don't see all updates to SP if they are in an auto-inc memory
401          reference, so we must disallow this optimization on them.  */
402       || sregno == STACK_POINTER_REGNUM || dregno == STACK_POINTER_REGNUM)
403     return 0;
404
405   for (p = NEXT_INSN (insn); p; p = NEXT_INSN (p))
406     {
407       if (GET_CODE (p) == CODE_LABEL || GET_CODE (p) == JUMP_INSN)
408         break;
409
410       /* ??? We can't scan past the end of a basic block without updating
411          the register lifetime info (REG_DEAD/basic_block_live_at_start).
412          A CALL_INSN might be the last insn of a basic block, if it is inside
413          an EH region.  There is no easy way to tell, so we just always break
414          when we see a CALL_INSN if flag_exceptions is nonzero.  */
415       if (flag_exceptions && GET_CODE (p) == CALL_INSN)
416         break;
417
418       if (GET_RTX_CLASS (GET_CODE (p)) != 'i')
419         continue;
420
421       if (reg_set_p (src, p) || reg_set_p (dest, p)
422           /* Don't change a USE of a register.  */
423           || (GET_CODE (PATTERN (p)) == USE
424               && reg_overlap_mentioned_p (src, XEXP (PATTERN (p), 0))))
425         break;
426
427       /* See if all of SRC dies in P.  This test is slightly more
428          conservative than it needs to be.  */
429       if ((note = find_regno_note (p, REG_DEAD, sregno)) != 0
430           && GET_MODE (XEXP (note, 0)) == GET_MODE (src))
431         {
432           int failed = 0;
433           int d_length = 0;
434           int s_length = 0;
435           int d_n_calls = 0;
436           int s_n_calls = 0;
437
438           /* We can do the optimization.  Scan forward from INSN again,
439              replacing regs as we go.  Set FAILED if a replacement can't
440              be done.  In that case, we can't move the death note for SRC.
441              This should be rare.  */
442
443           /* Set to stop at next insn.  */
444           for (q = next_real_insn (insn);
445                q != next_real_insn (p);
446                q = next_real_insn (q))
447             {
448               if (reg_overlap_mentioned_p (src, PATTERN (q)))
449                 {
450                   /* If SRC is a hard register, we might miss some
451                      overlapping registers with validate_replace_rtx,
452                      so we would have to undo it.  We can't if DEST is
453                      present in the insn, so fail in that combination
454                      of cases.  */
455                   if (sregno < FIRST_PSEUDO_REGISTER
456                       && reg_mentioned_p (dest, PATTERN (q)))
457                     failed = 1;
458
459                   /* Replace all uses and make sure that the register
460                      isn't still present.  */
461                   else if (validate_replace_rtx (src, dest, q)
462                            && (sregno >= FIRST_PSEUDO_REGISTER
463                                || ! reg_overlap_mentioned_p (src,
464                                                              PATTERN (q))))
465                     ;
466                   else
467                     {
468                       validate_replace_rtx (dest, src, q);
469                       failed = 1;
470                     }
471                 }
472
473               /* For SREGNO, count the total number of insns scanned.
474                  For DREGNO, count the total number of insns scanned after
475                  passing the death note for DREGNO.  */
476               s_length++;
477               if (dest_death)
478                 d_length++;
479
480               /* If the insn in which SRC dies is a CALL_INSN, don't count it
481                  as a call that has been crossed.  Otherwise, count it.  */
482               if (q != p && GET_CODE (q) == CALL_INSN)
483                 {
484                   /* Similarly, total calls for SREGNO, total calls beyond
485                      the death note for DREGNO.  */
486                   s_n_calls++;
487                   if (dest_death)
488                     d_n_calls++;
489                 }
490
491               /* If DEST dies here, remove the death note and save it for
492                  later.  Make sure ALL of DEST dies here; again, this is
493                  overly conservative.  */
494               if (dest_death == 0
495                   && (dest_death = find_regno_note (q, REG_DEAD, dregno)) != 0)
496                 {
497                   if (GET_MODE (XEXP (dest_death, 0)) != GET_MODE (dest))
498                     failed = 1, dest_death = 0;
499                   else
500                     remove_note (q, dest_death);
501                 }
502             }
503
504           if (! failed)
505             {
506               /* These counters need to be updated if and only if we are
507                  going to move the REG_DEAD note.  */
508               if (sregno >= FIRST_PSEUDO_REGISTER)
509                 {
510                   if (REG_LIVE_LENGTH (sregno) >= 0)
511                     {
512                       REG_LIVE_LENGTH (sregno) -= s_length;
513                       /* REG_LIVE_LENGTH is only an approximation after
514                          combine if sched is not run, so make sure that we
515                          still have a reasonable value.  */
516                       if (REG_LIVE_LENGTH (sregno) < 2)
517                         REG_LIVE_LENGTH (sregno) = 2;
518                     }
519
520                   REG_N_CALLS_CROSSED (sregno) -= s_n_calls;
521                 }
522
523               /* Move death note of SRC from P to INSN.  */
524               remove_note (p, note);
525               XEXP (note, 1) = REG_NOTES (insn);
526               REG_NOTES (insn) = note;
527             }
528
529           /* DEST is also dead if INSN has a REG_UNUSED note for DEST.  */
530           if (! dest_death
531               && (dest_death = find_regno_note (insn, REG_UNUSED, dregno)))
532             {
533               PUT_REG_NOTE_KIND (dest_death, REG_DEAD);
534               remove_note (insn, dest_death);
535             }
536
537           /* Put death note of DEST on P if we saw it die.  */
538           if (dest_death)
539             {
540               XEXP (dest_death, 1) = REG_NOTES (p);
541               REG_NOTES (p) = dest_death;
542
543               if (dregno >= FIRST_PSEUDO_REGISTER)
544                 {
545                   /* If and only if we are moving the death note for DREGNO,
546                      then we need to update its counters.  */
547                   if (REG_LIVE_LENGTH (dregno) >= 0)
548                     REG_LIVE_LENGTH (dregno) += d_length;
549                   REG_N_CALLS_CROSSED (dregno) += d_n_calls;
550                 }
551             }
552
553           return ! failed;
554         }
555
556       /* If SRC is a hard register which is set or killed in some other
557          way, we can't do this optimization.  */
558       else if (sregno < FIRST_PSEUDO_REGISTER
559                && dead_or_set_p (p, src))
560         break;
561     }
562   return 0;
563 }
564 \f
565 /* INSN is a copy of SRC to DEST, in which SRC dies.  See if we now have
566    a sequence of insns that modify DEST followed by an insn that sets
567    SRC to DEST in which DEST dies, with no prior modification of DEST.
568    (There is no need to check if the insns in between actually modify
569    DEST.  We should not have cases where DEST is not modified, but
570    the optimization is safe if no such modification is detected.)
571    In that case, we can replace all uses of DEST, starting with INSN and
572    ending with the set of SRC to DEST, with SRC.  We do not do this
573    optimization if a CALL_INSN is crossed unless SRC already crosses a
574    call or if DEST dies before the copy back to SRC.
575
576    It is assumed that DEST and SRC are pseudos; it is too complicated to do
577    this for hard registers since the substitutions we may make might fail.  */
578
579 static void
580 optimize_reg_copy_2 (insn, dest, src)
581      rtx insn;
582      rtx dest;
583      rtx src;
584 {
585   rtx p, q;
586   rtx set;
587   int sregno = REGNO (src);
588   int dregno = REGNO (dest);
589
590   for (p = NEXT_INSN (insn); p; p = NEXT_INSN (p))
591     {
592       if (GET_CODE (p) == CODE_LABEL || GET_CODE (p) == JUMP_INSN)
593         break;
594
595       /* ??? We can't scan past the end of a basic block without updating
596          the register lifetime info (REG_DEAD/basic_block_live_at_start).
597          A CALL_INSN might be the last insn of a basic block, if it is inside
598          an EH region.  There is no easy way to tell, so we just always break
599          when we see a CALL_INSN if flag_exceptions is nonzero.  */
600       if (flag_exceptions && GET_CODE (p) == CALL_INSN)
601         break;
602
603       if (GET_RTX_CLASS (GET_CODE (p)) != 'i')
604         continue;
605
606       set = single_set (p);
607       if (set && SET_SRC (set) == dest && SET_DEST (set) == src
608           && find_reg_note (p, REG_DEAD, dest))
609         {
610           /* We can do the optimization.  Scan forward from INSN again,
611              replacing regs as we go.  */
612
613           /* Set to stop at next insn.  */
614           for (q = insn; q != NEXT_INSN (p); q = NEXT_INSN (q))
615             if (GET_RTX_CLASS (GET_CODE (q)) == 'i')
616               {
617                 if (reg_mentioned_p (dest, PATTERN (q)))
618                   PATTERN (q) = replace_rtx (PATTERN (q), dest, src);
619
620
621               if (GET_CODE (q) == CALL_INSN)
622                 {
623                   REG_N_CALLS_CROSSED (dregno)--;
624                   REG_N_CALLS_CROSSED (sregno)++;
625                 }
626               }
627
628           remove_note (p, find_reg_note (p, REG_DEAD, dest));
629           REG_N_DEATHS (dregno)--;
630           remove_note (insn, find_reg_note (insn, REG_DEAD, src));
631           REG_N_DEATHS (sregno)--;
632           return;
633         }
634
635       if (reg_set_p (src, p)
636           || find_reg_note (p, REG_DEAD, dest)
637           || (GET_CODE (p) == CALL_INSN && REG_N_CALLS_CROSSED (sregno) == 0))
638         break;
639     }
640 }
641 /* INSN is a ZERO_EXTEND or SIGN_EXTEND of SRC to DEST.
642    Look if SRC dies there, and if it is only set once, by loading
643    it from memory.  If so, try to encorporate the zero/sign extension
644    into the memory read, change SRC to the mode of DEST, and alter
645    the remaining accesses to use the appropriate SUBREG.  This allows
646    SRC and DEST to be tied later.  */
647 static void
648 optimize_reg_copy_3 (insn, dest, src)
649      rtx insn;
650      rtx dest;
651      rtx src;
652 {
653   rtx src_reg = XEXP (src, 0);
654   int src_no = REGNO (src_reg);
655   int dst_no = REGNO (dest);
656   rtx p, set, subreg;
657   enum machine_mode old_mode;
658
659   if (src_no < FIRST_PSEUDO_REGISTER
660       || dst_no < FIRST_PSEUDO_REGISTER
661       || ! find_reg_note (insn, REG_DEAD, src_reg)
662       || REG_N_SETS (src_no) != 1)
663     return;
664   for (p = PREV_INSN (insn); p && ! reg_set_p (src_reg, p); p = PREV_INSN (p))
665     {
666       if (GET_CODE (p) == CODE_LABEL || GET_CODE (p) == JUMP_INSN)
667         return;
668
669       /* ??? We can't scan past the end of a basic block without updating
670          the register lifetime info (REG_DEAD/basic_block_live_at_start).
671          A CALL_INSN might be the last insn of a basic block, if it is inside
672          an EH region.  There is no easy way to tell, so we just always break
673          when we see a CALL_INSN if flag_exceptions is nonzero.  */
674       if (flag_exceptions && GET_CODE (p) == CALL_INSN)
675         return;
676
677       if (GET_RTX_CLASS (GET_CODE (p)) != 'i')
678         continue;
679     }
680   if (! p)
681     return;
682
683   if (! (set = single_set (p))
684       || GET_CODE (SET_SRC (set)) != MEM
685       || SET_DEST (set) != src_reg)
686     return;
687
688   /* Be conserative: although this optimization is also valid for
689      volatile memory references, that could cause trouble in later passes.  */
690   if (MEM_VOLATILE_P (SET_SRC (set)))
691     return;
692
693   /* Do not use a SUBREG to truncate from one mode to another if truncation
694      is not a nop.  */
695   if (GET_MODE_BITSIZE (GET_MODE (src_reg)) <= GET_MODE_BITSIZE (GET_MODE (src))
696       && !TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (GET_MODE (src)),
697                                  GET_MODE_BITSIZE (GET_MODE (src_reg))))
698     return;
699
700   old_mode = GET_MODE (src_reg);
701   PUT_MODE (src_reg, GET_MODE (src));
702   XEXP (src, 0) = SET_SRC (set);
703
704   /* Include this change in the group so that it's easily undone if
705      one of the changes in the group is invalid.  */
706   validate_change (p, &SET_SRC (set), src, 1);
707
708   /* Now walk forward making additional replacements.  We want to be able
709      to undo all the changes if a later substitution fails.  */
710   subreg = gen_rtx_SUBREG (old_mode, src_reg, 0);
711   while (p = NEXT_INSN (p), p != insn)
712     {
713       if (GET_RTX_CLASS (GET_CODE (p)) != 'i')
714         continue;
715
716       /* Make a tenative change.  */
717       validate_replace_rtx_group (src_reg, subreg, p);
718     }
719
720   validate_replace_rtx_group (src, src_reg, insn);
721
722   /* Now see if all the changes are valid.  */
723   if (! apply_change_group ())
724     {
725       /* One or more changes were no good.  Back out everything.  */
726       PUT_MODE (src_reg, old_mode);
727       XEXP (src, 0) = src_reg;
728     }
729 }
730
731 \f
732 /* If we were not able to update the users of src to use dest directly, try
733    instead moving the value to dest directly before the operation.  */
734
735 static void
736 copy_src_to_dest (insn, src, dest, old_max_uid)
737      rtx insn;
738      rtx src;
739      rtx dest;
740      int old_max_uid;
741 {
742   rtx seq;
743   rtx link;
744   rtx next;
745   rtx set;
746   rtx move_insn;
747   rtx *p_insn_notes;
748   rtx *p_move_notes;
749   int src_regno;
750   int dest_regno;
751   int bb;
752   int insn_uid;
753   int move_uid;
754
755   /* A REG_LIVE_LENGTH of -1 indicates the register is equivalent to a constant
756      or memory location and is used infrequently; a REG_LIVE_LENGTH of -2 is
757      parameter when there is no frame pointer that is not allocated a register.
758      For now, we just reject them, rather than incrementing the live length.  */
759
760   if (GET_CODE (src) == REG
761       && REG_LIVE_LENGTH (REGNO (src)) > 0
762       && GET_CODE (dest) == REG
763       && REG_LIVE_LENGTH (REGNO (dest)) > 0
764       && (set = single_set (insn)) != NULL_RTX
765       && !reg_mentioned_p (dest, SET_SRC (set))
766       && GET_MODE (src) == GET_MODE (dest))
767     {
768       int old_num_regs = reg_rtx_no;
769
770       /* Generate the src->dest move.  */
771       start_sequence ();
772       emit_move_insn (dest, src);
773       seq = gen_sequence ();
774       end_sequence ();
775       /* If this sequence uses new registers, we may not use it.  */
776       if (old_num_regs != reg_rtx_no
777           || ! validate_replace_rtx (src, dest, insn))
778         {
779           /* We have to restore reg_rtx_no to its old value, lest
780              recompute_reg_usage will try to compute the usage of the
781              new regs, yet reg_n_info is not valid for them.  */
782           reg_rtx_no = old_num_regs;
783           return;
784         }
785       emit_insn_before (seq, insn);
786       move_insn = PREV_INSN (insn);
787       p_move_notes = &REG_NOTES (move_insn);
788       p_insn_notes = &REG_NOTES (insn);
789
790       /* Move any notes mentioning src to the move instruction */
791       for (link = REG_NOTES (insn); link != NULL_RTX; link = next)
792         {
793           next = XEXP (link, 1);
794           if (XEXP (link, 0) == src)
795             {
796               *p_move_notes = link;
797               p_move_notes = &XEXP (link, 1);
798             }
799           else
800             {
801               *p_insn_notes = link;
802               p_insn_notes = &XEXP (link, 1);
803             }
804         }
805
806       *p_move_notes = NULL_RTX;
807       *p_insn_notes = NULL_RTX;
808
809       /* Is the insn the head of a basic block?  If so extend it */
810       insn_uid = INSN_UID (insn);
811       move_uid = INSN_UID (move_insn);
812       if (insn_uid < old_max_uid)
813         {
814           bb = regmove_bb_head[insn_uid];
815           if (bb >= 0)
816             {
817               BLOCK_HEAD (bb) = move_insn;
818               regmove_bb_head[insn_uid] = -1;
819             }
820         }
821
822       /* Update the various register tables.  */
823       dest_regno = REGNO (dest);
824       REG_N_SETS (dest_regno) ++;
825       REG_LIVE_LENGTH (dest_regno)++;
826       if (REGNO_FIRST_UID (dest_regno) == insn_uid)
827         REGNO_FIRST_UID (dest_regno) = move_uid;
828
829       src_regno = REGNO (src);
830       if (! find_reg_note (move_insn, REG_DEAD, src))
831         REG_LIVE_LENGTH (src_regno)++;
832
833       if (REGNO_FIRST_UID (src_regno) == insn_uid)
834         REGNO_FIRST_UID (src_regno) = move_uid;
835
836       if (REGNO_LAST_UID (src_regno) == insn_uid)
837         REGNO_LAST_UID (src_regno) = move_uid;
838
839       if (REGNO_LAST_NOTE_UID (src_regno) == insn_uid)
840         REGNO_LAST_NOTE_UID (src_regno) = move_uid;
841     }
842 }
843
844 \f
845 /* Return whether REG is set in only one location, and is set to a
846    constant, but is set in a different basic block from INSN (an
847    instructions which uses REG).  In this case REG is equivalent to a
848    constant, and we don't want to break that equivalence, because that
849    may increase register pressure and make reload harder.  If REG is
850    set in the same basic block as INSN, we don't worry about it,
851    because we'll probably need a register anyhow (??? but what if REG
852    is used in a different basic block as well as this one?).  FIRST is
853    the first insn in the function.  */
854
855 static int
856 reg_is_remote_constant_p (reg, insn, first)
857      rtx reg;
858      rtx insn;
859      rtx first;
860 {
861   register rtx p;
862
863   if (REG_N_SETS (REGNO (reg)) != 1)
864     return 0;
865
866   /* Look for the set.  */
867   for (p = LOG_LINKS (insn); p; p = XEXP (p, 1))
868     {
869       rtx s;
870
871       if (REG_NOTE_KIND (p) != 0)
872         continue;
873       s = single_set (XEXP (p, 0));
874       if (s != 0
875           && GET_CODE (SET_DEST (s)) == REG
876           && REGNO (SET_DEST (s)) == REGNO (reg))
877         {
878           /* The register is set in the same basic block.  */
879           return 0;
880         }
881     }
882
883   for (p = first; p && p != insn; p = NEXT_INSN (p))
884     {
885       rtx s;
886
887       if (GET_RTX_CLASS (GET_CODE (p)) != 'i')
888         continue;
889       s = single_set (p);
890       if (s != 0
891           && GET_CODE (SET_DEST (s)) == REG
892           && REGNO (SET_DEST (s)) == REGNO (reg))
893         {
894           /* This is the instruction which sets REG.  If there is a
895              REG_EQUAL note, then REG is equivalent to a constant.  */
896           if (find_reg_note (p, REG_EQUAL, NULL_RTX))
897             return 1;
898           return 0;
899         }
900     }
901
902   return 0;
903 }
904
905 /* INSN is adding a CONST_INT to a REG.  We search backwards looking for
906    another add immediate instruction with the same source and dest registers,
907    and if we find one, we change INSN to an increment, and return 1.  If
908    no changes are made, we return 0.
909
910    This changes
911      (set (reg100) (plus reg1 offset1))
912      ...
913      (set (reg100) (plus reg1 offset2))
914    to
915      (set (reg100) (plus reg1 offset1))
916      ...
917      (set (reg100) (plus reg100 offset2-offset1))  */
918
919 /* ??? What does this comment mean?  */
920 /* cse disrupts preincrement / postdecrement squences when it finds a
921    hard register as ultimate source, like the frame pointer.  */
922
923 static int
924 fixup_match_2 (insn, dst, src, offset, regmove_dump_file)
925      rtx insn, dst, src, offset;
926      FILE *regmove_dump_file;
927 {
928   rtx p, dst_death = 0;
929   int length, num_calls = 0;
930
931   /* If SRC dies in INSN, we'd have to move the death note.  This is
932      considered to be very unlikely, so we just skip the optimization
933      in this case.  */
934   if (find_regno_note (insn, REG_DEAD, REGNO (src)))
935     return 0;
936
937   /* Scan backward to find the first instruction that sets DST.  */
938
939   for (length = 0, p = PREV_INSN (insn); p; p = PREV_INSN (p))
940     {
941       rtx pset;
942
943       if (GET_CODE (p) == CODE_LABEL
944           || GET_CODE (p) == JUMP_INSN)
945         break;
946
947       /* ??? We can't scan past the end of a basic block without updating
948          the register lifetime info (REG_DEAD/basic_block_live_at_start).
949          A CALL_INSN might be the last insn of a basic block, if it is inside
950          an EH region.  There is no easy way to tell, so we just always break
951          when we see a CALL_INSN if flag_exceptions is nonzero.  */
952       if (flag_exceptions && GET_CODE (p) == CALL_INSN)
953         break;
954
955       if (GET_RTX_CLASS (GET_CODE (p)) != 'i')
956         continue;
957
958       if (find_regno_note (p, REG_DEAD, REGNO (dst)))
959         dst_death = p;
960       if (! dst_death)
961         length++;
962
963       pset = single_set (p);
964       if (pset && SET_DEST (pset) == dst
965           && GET_CODE (SET_SRC (pset)) == PLUS
966           && XEXP (SET_SRC (pset), 0) == src
967           && GET_CODE (XEXP (SET_SRC (pset), 1)) == CONST_INT)
968         {
969           HOST_WIDE_INT newconst
970             = INTVAL (offset) - INTVAL (XEXP (SET_SRC (pset), 1));
971           rtx add = gen_add3_insn (dst, dst, GEN_INT (newconst));
972
973           if (add && validate_change (insn, &PATTERN (insn), add, 0))
974             {
975               /* Remove the death note for DST from DST_DEATH.  */
976               if (dst_death)
977                 {
978                   remove_death (REGNO (dst), dst_death);
979                   REG_LIVE_LENGTH (REGNO (dst)) += length;
980                   REG_N_CALLS_CROSSED (REGNO (dst)) += num_calls;
981                 }
982
983               if (regmove_dump_file)
984                 fprintf (regmove_dump_file,
985                          "Fixed operand of insn %d.\n",
986                           INSN_UID (insn));
987
988 #ifdef AUTO_INC_DEC
989               for (p = PREV_INSN (insn); p; p = PREV_INSN (p))
990                 {
991                   if (GET_CODE (p) == CODE_LABEL
992                       || GET_CODE (p) == JUMP_INSN)
993                     break;
994                   if (GET_RTX_CLASS (GET_CODE (p)) != 'i')
995                     continue;
996                   if (reg_overlap_mentioned_p (dst, PATTERN (p)))
997                     {
998                       if (try_auto_increment (p, insn, 0, dst, newconst, 0))
999                         return 1;
1000                       break;
1001                     }
1002                 }
1003               for (p = NEXT_INSN (insn); p; p = NEXT_INSN (p))
1004                 {
1005                   if (GET_CODE (p) == CODE_LABEL
1006                       || GET_CODE (p) == JUMP_INSN)
1007                     break;
1008                   if (GET_RTX_CLASS (GET_CODE (p)) != 'i')
1009                     continue;
1010                   if (reg_overlap_mentioned_p (dst, PATTERN (p)))
1011                     {
1012                       try_auto_increment (p, insn, 0, dst, newconst, 1);
1013                       break;
1014                     }
1015                 }
1016 #endif
1017               return 1;
1018             }
1019         }
1020
1021       if (reg_set_p (dst, PATTERN (p)))
1022         break;
1023
1024       /* If we have passed a call instruction, and the
1025          pseudo-reg SRC is not already live across a call,
1026          then don't perform the optimization.  */
1027       /* reg_set_p is overly conservative for CALL_INSNS, thinks that all
1028          hard regs are clobbered.  Thus, we only use it for src for
1029          non-call insns.  */
1030       if (GET_CODE (p) == CALL_INSN)
1031         {
1032           if (! dst_death)
1033             num_calls++;
1034
1035           if (REG_N_CALLS_CROSSED (REGNO (src)) == 0)
1036             break;
1037
1038           if (call_used_regs [REGNO (dst)]
1039               || find_reg_fusage (p, CLOBBER, dst))
1040             break;
1041         }
1042       else if (reg_set_p (src, PATTERN (p)))
1043         break;
1044     }
1045
1046   return 0;
1047 }
1048
1049 void
1050 regmove_optimize (f, nregs, regmove_dump_file)
1051      rtx f;
1052      int nregs;
1053      FILE *regmove_dump_file;
1054 {
1055   int old_max_uid = get_max_uid ();
1056   rtx insn;
1057   struct match match;
1058   int pass;
1059   int i;
1060   rtx copy_src, copy_dst;
1061
1062   /* Find out where a potential flags register is live, and so that we
1063      can supress some optimizations in those zones.  */
1064   mark_flags_life_zones (discover_flags_reg ());
1065
1066   regno_src_regno = (int *) xmalloc (sizeof *regno_src_regno * nregs);
1067   for (i = nregs; --i >= 0; ) regno_src_regno[i] = -1;
1068
1069   regmove_bb_head = (int *) xmalloc (sizeof (int) * (old_max_uid + 1));
1070   for (i = old_max_uid; i >= 0; i--) regmove_bb_head[i] = -1;
1071   for (i = 0; i < n_basic_blocks; i++)
1072     regmove_bb_head[INSN_UID (BLOCK_HEAD (i))] = i;
1073
1074   /* A forward/backward pass.  Replace output operands with input operands.  */
1075
1076   for (pass = 0; pass <= 2; pass++)
1077     {
1078       if (! flag_regmove && pass >= flag_expensive_optimizations)
1079         goto done;
1080
1081       if (regmove_dump_file)
1082         fprintf (regmove_dump_file, "Starting %s pass...\n",
1083                  pass ? "backward" : "forward");
1084
1085       for (insn = pass ? get_last_insn () : f; insn;
1086            insn = pass ? PREV_INSN (insn) : NEXT_INSN (insn))
1087         {
1088           rtx set;
1089           int op_no, match_no;
1090
1091           set = single_set (insn);
1092           if (! set)
1093             continue;
1094
1095           if (flag_expensive_optimizations && ! pass
1096               && (GET_CODE (SET_SRC (set)) == SIGN_EXTEND
1097                   || GET_CODE (SET_SRC (set)) == ZERO_EXTEND)
1098               && GET_CODE (XEXP (SET_SRC (set), 0)) == REG
1099               && GET_CODE (SET_DEST(set)) == REG)
1100             optimize_reg_copy_3 (insn, SET_DEST (set), SET_SRC (set));
1101
1102           if (flag_expensive_optimizations && ! pass
1103               && GET_CODE (SET_SRC (set)) == REG
1104               && GET_CODE (SET_DEST(set)) == REG)
1105             {
1106               /* If this is a register-register copy where SRC is not dead,
1107                  see if we can optimize it.  If this optimization succeeds,
1108                  it will become a copy where SRC is dead.  */
1109               if ((find_reg_note (insn, REG_DEAD, SET_SRC (set))
1110                    || optimize_reg_copy_1 (insn, SET_DEST (set), SET_SRC (set)))
1111                   && REGNO (SET_DEST (set)) >= FIRST_PSEUDO_REGISTER)
1112                 {
1113                   /* Similarly for a pseudo-pseudo copy when SRC is dead.  */
1114                   if (REGNO (SET_SRC (set)) >= FIRST_PSEUDO_REGISTER)
1115                     optimize_reg_copy_2 (insn, SET_DEST (set), SET_SRC (set));
1116                   if (regno_src_regno[REGNO (SET_DEST (set))] < 0
1117                       && SET_SRC (set) != SET_DEST (set))
1118                     {
1119                       int srcregno = REGNO (SET_SRC(set));
1120                       if (regno_src_regno[srcregno] >= 0)
1121                         srcregno = regno_src_regno[srcregno];
1122                       regno_src_regno[REGNO (SET_DEST (set))] = srcregno;
1123                     }
1124                 }
1125             }
1126           if (! flag_regmove)
1127             continue;
1128
1129           if (! find_matches (insn, &match))
1130             continue;
1131
1132           /* Now scan through the operands looking for a source operand
1133              which is supposed to match the destination operand.
1134              Then scan forward for an instruction which uses the dest
1135              operand.
1136              If it dies there, then replace the dest in both operands with
1137              the source operand.  */
1138
1139           for (op_no = 0; op_no < recog_data.n_operands; op_no++)
1140             {
1141               rtx src, dst, src_subreg;
1142               enum reg_class src_class, dst_class;
1143
1144               match_no = match.with[op_no];
1145
1146               /* Nothing to do if the two operands aren't supposed to match.  */
1147               if (match_no < 0)
1148                 continue;
1149
1150               src = recog_data.operand[op_no];
1151               dst = recog_data.operand[match_no];
1152
1153               if (GET_CODE (src) != REG)
1154                 continue;
1155
1156               src_subreg = src;
1157               if (GET_CODE (dst) == SUBREG
1158                   && GET_MODE_SIZE (GET_MODE (dst))
1159                      >= GET_MODE_SIZE (GET_MODE (SUBREG_REG (dst))))
1160                 {
1161                   src_subreg
1162                     = gen_rtx_SUBREG (GET_MODE (SUBREG_REG (dst)),
1163                                       src, SUBREG_WORD (dst));
1164                   dst = SUBREG_REG (dst);
1165                 }
1166               if (GET_CODE (dst) != REG
1167                   || REGNO (dst) < FIRST_PSEUDO_REGISTER)
1168                 continue;
1169
1170               if (REGNO (src) < FIRST_PSEUDO_REGISTER)
1171                 {
1172                   if (match.commutative[op_no] < op_no)
1173                     regno_src_regno[REGNO (dst)] = REGNO (src);
1174                   continue;
1175                 }
1176
1177               if (REG_LIVE_LENGTH (REGNO (src)) < 0)
1178                 continue;
1179
1180               /* op_no/src must be a read-only operand, and
1181                  match_operand/dst must be a write-only operand.  */
1182               if (match.use[op_no] != READ
1183                   || match.use[match_no] != WRITE)
1184                 continue;
1185
1186               if (match.early_clobber[match_no]
1187                   && count_occurrences (PATTERN (insn), src) > 1)
1188                 continue;
1189
1190               /* Make sure match_operand is the destination.  */
1191               if (recog_data.operand[match_no] != SET_DEST (set))
1192                 continue;
1193
1194               /* If the operands already match, then there is nothing to do. */
1195               if (operands_match_p (src, dst))
1196                 continue;
1197
1198               /* But in the commutative case, we might find a better match.  */
1199               if (match.commutative[op_no] >= 0)
1200                 {
1201                   rtx comm = recog_data.operand[match.commutative[op_no]];
1202                   if (operands_match_p (comm, dst)
1203                       && (replacement_quality (comm)
1204                           >= replacement_quality (src)))
1205                     continue;
1206                 }
1207
1208               src_class = reg_preferred_class (REGNO (src));
1209               dst_class = reg_preferred_class (REGNO (dst));
1210               if (! regclass_compatible_p (src_class, dst_class))
1211                 continue;
1212           
1213               if (fixup_match_1 (insn, set, src, src_subreg, dst, pass,
1214                                  op_no, match_no,
1215                                  regmove_dump_file))
1216                 break;
1217             }
1218         }
1219     }
1220
1221   /* A backward pass.  Replace input operands with output operands.  */
1222
1223   if (regmove_dump_file)
1224     fprintf (regmove_dump_file, "Starting backward pass...\n");
1225
1226   for (insn = get_last_insn (); insn; insn = PREV_INSN (insn))
1227     {
1228       if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
1229         {
1230           int op_no, match_no;
1231           int success = 0;
1232
1233           if (! find_matches (insn, &match))
1234             continue;
1235
1236           /* Now scan through the operands looking for a destination operand
1237              which is supposed to match a source operand.
1238              Then scan backward for an instruction which sets the source
1239              operand.  If safe, then replace the source operand with the
1240              dest operand in both instructions.  */
1241
1242           copy_src = NULL_RTX;
1243           copy_dst = NULL_RTX;
1244           for (op_no = 0; op_no < recog_data.n_operands; op_no++)
1245             {
1246               rtx set, p, src, dst;
1247               rtx src_note, dst_note;
1248               int num_calls = 0;
1249               enum reg_class src_class, dst_class;
1250               int length;
1251
1252               match_no = match.with[op_no];
1253
1254               /* Nothing to do if the two operands aren't supposed to match.  */
1255               if (match_no < 0)
1256                 continue;
1257
1258               dst = recog_data.operand[match_no];
1259               src = recog_data.operand[op_no];
1260
1261               if (GET_CODE (src) != REG)
1262                 continue;
1263
1264               if (GET_CODE (dst) != REG
1265                   || REGNO (dst) < FIRST_PSEUDO_REGISTER
1266                   || REG_LIVE_LENGTH (REGNO (dst)) < 0)
1267                 continue;
1268
1269               /* If the operands already match, then there is nothing to do. */
1270               if (operands_match_p (src, dst))
1271                 continue;
1272
1273               if (match.commutative[op_no] >= 0)
1274                 {
1275                   rtx comm = recog_data.operand[match.commutative[op_no]];
1276                   if (operands_match_p (comm, dst))
1277                     continue;
1278                 }
1279
1280               set = single_set (insn);
1281               if (! set)
1282                 continue;
1283
1284               /* match_no/dst must be a write-only operand, and
1285                  operand_operand/src must be a read-only operand.  */
1286               if (match.use[op_no] != READ
1287                   || match.use[match_no] != WRITE)
1288                 continue;
1289
1290               if (match.early_clobber[match_no]
1291                   && count_occurrences (PATTERN (insn), src) > 1)
1292                 continue;
1293
1294               /* Make sure match_no is the destination.  */
1295               if (recog_data.operand[match_no] != SET_DEST (set))
1296                 continue;
1297
1298               if (REGNO (src) < FIRST_PSEUDO_REGISTER)
1299                 {
1300                   if (GET_CODE (SET_SRC (set)) == PLUS
1301                       && GET_CODE (XEXP (SET_SRC (set), 1)) == CONST_INT
1302                       && XEXP (SET_SRC (set), 0) == src
1303                       && fixup_match_2 (insn, dst, src,
1304                                         XEXP (SET_SRC (set), 1),
1305                                         regmove_dump_file))
1306                     break;
1307                   continue;
1308                 }
1309               src_class = reg_preferred_class (REGNO (src));
1310               dst_class = reg_preferred_class (REGNO (dst));
1311               if (! regclass_compatible_p (src_class, dst_class))
1312                 {
1313                   if (!copy_src)
1314                     {
1315                       copy_src = src;
1316                       copy_dst = dst;
1317                     }
1318                   continue;
1319                 }
1320
1321               /* Can not modify an earlier insn to set dst if this insn
1322                  uses an old value in the source.  */
1323               if (reg_overlap_mentioned_p (dst, SET_SRC (set)))
1324                 {
1325                   if (!copy_src)
1326                     {
1327                       copy_src = src;
1328                       copy_dst = dst;
1329                     }
1330                   continue;
1331                 }
1332
1333               if (! (src_note = find_reg_note (insn, REG_DEAD, src)))
1334                 {
1335                   if (!copy_src)
1336                     {
1337                       copy_src = src;
1338                       copy_dst = dst;
1339                     }
1340                   continue;
1341                 }
1342
1343
1344               /* If src is set once in a different basic block,
1345                  and is set equal to a constant, then do not use
1346                  it for this optimization, as this would make it
1347                  no longer equivalent to a constant.  */
1348
1349               if (reg_is_remote_constant_p (src, insn, f))
1350                 {
1351                   if (!copy_src)
1352                     {
1353                       copy_src = src;
1354                       copy_dst = dst;
1355                     }
1356                   continue;
1357                 }
1358
1359
1360               if (regmove_dump_file)
1361                 fprintf (regmove_dump_file,
1362                          "Could fix operand %d of insn %d matching operand %d.\n",
1363                          op_no, INSN_UID (insn), match_no);
1364
1365               /* Scan backward to find the first instruction that uses
1366                  the input operand.  If the operand is set here, then
1367                  replace it in both instructions with match_no.  */
1368
1369               for (length = 0, p = PREV_INSN (insn); p; p = PREV_INSN (p))
1370                 {
1371                   rtx pset;
1372
1373                   if (GET_CODE (p) == CODE_LABEL
1374                       || GET_CODE (p) == JUMP_INSN)
1375                     break;
1376
1377                   /* ??? We can't scan past the end of a basic block without
1378                      updating the register lifetime info
1379                      (REG_DEAD/basic_block_live_at_start).
1380                      A CALL_INSN might be the last insn of a basic block, if
1381                      it is inside an EH region.  There is no easy way to tell,
1382                      so we just always break when we see a CALL_INSN if
1383                      flag_exceptions is nonzero.  */
1384                   if (flag_exceptions && GET_CODE (p) == CALL_INSN)
1385                     break;
1386
1387                   if (GET_RTX_CLASS (GET_CODE (p)) != 'i')
1388                     continue;
1389
1390                   length++;
1391
1392                   /* ??? See if all of SRC is set in P.  This test is much
1393                      more conservative than it needs to be.  */
1394                   pset = single_set (p);
1395                   if (pset && SET_DEST (pset) == src)
1396                     {
1397                       /* We use validate_replace_rtx, in case there
1398                          are multiple identical source operands.  All of
1399                          them have to be changed at the same time.  */
1400                       if (validate_replace_rtx (src, dst, insn))
1401                         {
1402                           if (validate_change (p, &SET_DEST (pset),
1403                                                dst, 0))
1404                             success = 1;
1405                           else
1406                             {
1407                               /* Change all source operands back.
1408                                  This modifies the dst as a side-effect.  */
1409                               validate_replace_rtx (dst, src, insn);
1410                               /* Now make sure the dst is right.  */
1411                               validate_change (insn,
1412                                                recog_data.operand_loc[match_no],
1413                                                dst, 0);
1414                             }
1415                         }
1416                       break;
1417                     }
1418
1419                   if (reg_overlap_mentioned_p (src, PATTERN (p))
1420                       || reg_overlap_mentioned_p (dst, PATTERN (p)))
1421                     break;
1422
1423                   /* If we have passed a call instruction, and the
1424                      pseudo-reg DST is not already live across a call,
1425                      then don't perform the optimization.  */
1426                   if (GET_CODE (p) == CALL_INSN)
1427                     {
1428                       num_calls++;
1429
1430                       if (REG_N_CALLS_CROSSED (REGNO (dst)) == 0)
1431                         break;
1432                     }
1433                 }
1434
1435               if (success)
1436                 {
1437                   int dstno, srcno;
1438
1439                   /* Remove the death note for SRC from INSN.  */
1440                   remove_note (insn, src_note);
1441                   /* Move the death note for SRC to P if it is used
1442                      there.  */
1443                   if (reg_overlap_mentioned_p (src, PATTERN (p)))
1444                     {
1445                       XEXP (src_note, 1) = REG_NOTES (p);
1446                       REG_NOTES (p) = src_note;
1447                     }
1448                   /* If there is a REG_DEAD note for DST on P, then remove
1449                      it, because DST is now set there.  */
1450                   if ((dst_note = find_reg_note (p, REG_DEAD, dst)))
1451                     remove_note (p, dst_note);
1452
1453                   dstno = REGNO (dst);
1454                   srcno = REGNO (src);
1455
1456                   REG_N_SETS (dstno)++;
1457                   REG_N_SETS (srcno)--;
1458
1459                   REG_N_CALLS_CROSSED (dstno) += num_calls;
1460                   REG_N_CALLS_CROSSED (srcno) -= num_calls;
1461
1462                   REG_LIVE_LENGTH (dstno) += length;
1463                   if (REG_LIVE_LENGTH (srcno) >= 0)
1464                     {
1465                       REG_LIVE_LENGTH (srcno) -= length;
1466                       /* REG_LIVE_LENGTH is only an approximation after
1467                          combine if sched is not run, so make sure that we
1468                          still have a reasonable value.  */
1469                       if (REG_LIVE_LENGTH (srcno) < 2)
1470                         REG_LIVE_LENGTH (srcno) = 2;
1471                     }
1472
1473                   if (regmove_dump_file)
1474                     fprintf (regmove_dump_file,
1475                              "Fixed operand %d of insn %d matching operand %d.\n",
1476                              op_no, INSN_UID (insn), match_no);
1477
1478                   break;
1479                 }
1480             }
1481
1482           /* If we weren't able to replace any of the alternatives, try an
1483              alternative appoach of copying the source to the destination.  */
1484           if (!success && copy_src != NULL_RTX)
1485             copy_src_to_dest (insn, copy_src, copy_dst, old_max_uid);
1486
1487         }
1488     }
1489
1490   /* In fixup_match_1, some insns may have been inserted after basic block
1491      ends.  Fix that here.  */
1492   for (i = 0; i < n_basic_blocks; i++)
1493     {
1494       rtx end = BLOCK_END (i);
1495       rtx new = end;
1496       rtx next = NEXT_INSN (new);
1497       while (next != 0 && INSN_UID (next) >= old_max_uid
1498              && (i == n_basic_blocks - 1 || BLOCK_HEAD (i + 1) != next))
1499         new = next, next = NEXT_INSN (new);
1500       BLOCK_END (i) = new;
1501     }
1502
1503  done:
1504   /* Clean up.  */
1505   free (regno_src_regno);
1506   free (regmove_bb_head);
1507 }
1508
1509 /* Returns nonzero if INSN's pattern has matching constraints for any operand.
1510    Returns 0 if INSN can't be recognized, or if the alternative can't be
1511    determined.
1512
1513    Initialize the info in MATCHP based on the constraints.  */
1514
1515 static int
1516 find_matches (insn, matchp)
1517      rtx insn;
1518      struct match *matchp;
1519 {
1520   int likely_spilled[MAX_RECOG_OPERANDS];
1521   int op_no;
1522   int any_matches = 0;
1523
1524   extract_insn (insn);
1525   if (! constrain_operands (0))
1526     return 0;
1527
1528   /* Must initialize this before main loop, because the code for
1529      the commutative case may set matches for operands other than
1530      the current one.  */
1531   for (op_no = recog_data.n_operands; --op_no >= 0; )
1532     matchp->with[op_no] = matchp->commutative[op_no] = -1;
1533
1534   for (op_no = 0; op_no < recog_data.n_operands; op_no++)
1535     {
1536       const char *p;
1537       char c;
1538       int i = 0;
1539
1540       p = recog_data.constraints[op_no];
1541
1542       likely_spilled[op_no] = 0;
1543       matchp->use[op_no] = READ;
1544       matchp->early_clobber[op_no] = 0;
1545       if (*p == '=')
1546         matchp->use[op_no] = WRITE;
1547       else if (*p == '+')
1548         matchp->use[op_no] = READWRITE;
1549
1550       for (;*p && i < which_alternative; p++)
1551         if (*p == ',')
1552           i++;
1553
1554       while ((c = *p++) != '\0' && c != ',')
1555         switch (c)
1556           {
1557           case '=':
1558             break;
1559           case '+':
1560             break;
1561           case '&':
1562             matchp->early_clobber[op_no] = 1;
1563             break;
1564           case '%':
1565             matchp->commutative[op_no] = op_no + 1;
1566             matchp->commutative[op_no + 1] = op_no;
1567             break;
1568           case '0': case '1': case '2': case '3': case '4':
1569           case '5': case '6': case '7': case '8': case '9':
1570             c -= '0';
1571             if (c < op_no && likely_spilled[(unsigned char) c])
1572               break;
1573             matchp->with[op_no] = c;
1574             any_matches = 1;
1575             if (matchp->commutative[op_no] >= 0)
1576               matchp->with[matchp->commutative[op_no]] = c;
1577             break;
1578           case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'h':
1579           case 'j': case 'k': case 'l': case 'p': case 'q': case 't': case 'u':
1580           case 'v': case 'w': case 'x': case 'y': case 'z': case 'A': case 'B':
1581           case 'C': case 'D': case 'W': case 'Y': case 'Z':
1582             if (CLASS_LIKELY_SPILLED_P (REG_CLASS_FROM_LETTER ((unsigned char)c)))
1583               likely_spilled[op_no] = 1;
1584             break;
1585           }
1586     }
1587   return any_matches;
1588 }
1589
1590 /* Try to replace output operand DST in SET, with input operand SRC.  SET is
1591    the only set in INSN.  INSN has just been recognized and constrained.
1592    SRC is operand number OPERAND_NUMBER in INSN.
1593    DST is operand number MATCH_NUMBER in INSN.
1594    If BACKWARD is nonzero, we have been called in a backward pass.
1595    Return nonzero for success.  */
1596 static int
1597 fixup_match_1 (insn, set, src, src_subreg, dst, backward, operand_number,
1598                match_number, regmove_dump_file)
1599      rtx insn, set, src, src_subreg, dst;
1600      int backward, operand_number, match_number;
1601      FILE *regmove_dump_file;
1602 {
1603   rtx p;
1604   rtx post_inc = 0, post_inc_set = 0, search_end = 0;
1605   int success = 0;
1606   int num_calls = 0, s_num_calls = 0;
1607   enum rtx_code code = NOTE;
1608   HOST_WIDE_INT insn_const = 0, newconst;
1609   rtx overlap = 0; /* need to move insn ? */
1610   rtx src_note = find_reg_note (insn, REG_DEAD, src), dst_note = NULL_RTX;
1611   int length, s_length;
1612
1613   /* If SRC is marked as unchanging, we may not change it.
1614      ??? Maybe we could get better code by removing the unchanging bit
1615      instead, and changing it back if we don't succeed?  */
1616   if (RTX_UNCHANGING_P (src))
1617     return 0;
1618
1619   if (! src_note)
1620     {
1621       /* Look for (set (regX) (op regA constX))
1622                   (set (regY) (op regA constY))
1623          and change that to
1624                   (set (regA) (op regA constX)).
1625                   (set (regY) (op regA constY-constX)).
1626          This works for add and shift operations, if
1627          regA is dead after or set by the second insn.  */
1628
1629       code = GET_CODE (SET_SRC (set));
1630       if ((code == PLUS || code == LSHIFTRT
1631            || code == ASHIFT || code == ASHIFTRT)
1632           && XEXP (SET_SRC (set), 0) == src
1633           && GET_CODE (XEXP (SET_SRC (set), 1)) == CONST_INT)
1634         insn_const = INTVAL (XEXP (SET_SRC (set), 1));
1635       else if (! stable_and_no_regs_but_for_p (SET_SRC (set), src, dst))
1636         return 0;
1637       else
1638         /* We might find a src_note while scanning.  */
1639         code = NOTE;
1640     }
1641
1642   if (regmove_dump_file)
1643     fprintf (regmove_dump_file,
1644              "Could fix operand %d of insn %d matching operand %d.\n",
1645              operand_number, INSN_UID (insn), match_number);
1646
1647   /* If SRC is equivalent to a constant set in a different basic block,
1648      then do not use it for this optimization.  We want the equivalence
1649      so that if we have to reload this register, we can reload the
1650      constant, rather than extending the lifespan of the register.  */
1651   if (reg_is_remote_constant_p (src, insn, get_insns ()))
1652     return 0;
1653
1654   /* Scan forward to find the next instruction that
1655      uses the output operand.  If the operand dies here,
1656      then replace it in both instructions with
1657      operand_number.  */
1658
1659   for (length = s_length = 0, p = NEXT_INSN (insn); p; p = NEXT_INSN (p))
1660     {
1661       if (GET_CODE (p) == CODE_LABEL || GET_CODE (p) == JUMP_INSN)
1662         break;
1663
1664       /* ??? We can't scan past the end of a basic block without updating
1665          the register lifetime info (REG_DEAD/basic_block_live_at_start).
1666          A CALL_INSN might be the last insn of a basic block, if it is
1667          inside an EH region.  There is no easy way to tell, so we just
1668          always break when we see a CALL_INSN if flag_exceptions is nonzero.  */
1669       if (flag_exceptions && GET_CODE (p) == CALL_INSN)
1670         break;
1671
1672       if (GET_RTX_CLASS (GET_CODE (p)) != 'i')
1673         continue;
1674
1675       length++;
1676       if (src_note)
1677         s_length++;
1678
1679       if (reg_set_p (src, p) || reg_set_p (dst, p)
1680           || (GET_CODE (PATTERN (p)) == USE
1681               && reg_overlap_mentioned_p (src, XEXP (PATTERN (p), 0))))
1682         break;
1683
1684       /* See if all of DST dies in P.  This test is
1685          slightly more conservative than it needs to be.  */
1686       if ((dst_note = find_regno_note (p, REG_DEAD, REGNO (dst)))
1687           && (GET_MODE (XEXP (dst_note, 0)) == GET_MODE (dst)))
1688         {
1689           /* If we would be moving INSN, check that we won't move it
1690              into the shadow of a live a live flags register.  */
1691           /* ??? We only try to move it in front of P, although
1692                  we could move it anywhere between OVERLAP and P.  */
1693           if (overlap && GET_MODE (PREV_INSN (p)) != VOIDmode)
1694             break;
1695
1696           if (! src_note)
1697             {
1698               rtx q;
1699               rtx set2 = NULL_RTX;
1700
1701               /* If an optimization is done, the value of SRC while P
1702                  is executed will be changed.  Check that this is OK.  */
1703               if (reg_overlap_mentioned_p (src, PATTERN (p)))
1704                 break;
1705               for (q = p; q; q = NEXT_INSN (q))
1706                 {
1707                   if (GET_CODE (q) == CODE_LABEL || GET_CODE (q) == JUMP_INSN)
1708                     {
1709                       q = 0;
1710                       break;
1711                     }
1712
1713                   /* ??? We can't scan past the end of a basic block without
1714                      updating the register lifetime info
1715                      (REG_DEAD/basic_block_live_at_start).
1716                      A CALL_INSN might be the last insn of a basic block, if
1717                      it is inside an EH region.  There is no easy way to tell,
1718                      so we just always break when we see a CALL_INSN if
1719                      flag_exceptions is nonzero.  */
1720                   if (flag_exceptions && GET_CODE (q) == CALL_INSN)
1721                     {
1722                       q = 0;
1723                       break;
1724                     }
1725
1726                   if (GET_RTX_CLASS (GET_CODE (q)) != 'i')
1727                     continue;
1728                   if (reg_overlap_mentioned_p (src, PATTERN (q))
1729                       || reg_set_p (src, q))
1730                     break;
1731                 }
1732               if (q)
1733                 set2 = single_set (q);
1734               if (! q || ! set2 || GET_CODE (SET_SRC (set2)) != code
1735                   || XEXP (SET_SRC (set2), 0) != src
1736                   || GET_CODE (XEXP (SET_SRC (set2), 1)) != CONST_INT
1737                   || (SET_DEST (set2) != src
1738                       && ! find_reg_note (q, REG_DEAD, src)))
1739                 {
1740                   /* If this is a PLUS, we can still save a register by doing
1741                      src += insn_const;
1742                      P;
1743                      src -= insn_const; .
1744                      This also gives opportunities for subsequent
1745                      optimizations in the backward pass, so do it there.  */
1746                   if (code == PLUS && backward
1747                       /* Don't do this if we can likely tie DST to SET_DEST
1748                          of P later; we can't do this tying here if we got a
1749                          hard register.  */
1750                       && ! (dst_note && ! REG_N_CALLS_CROSSED (REGNO (dst))
1751                             && single_set (p)
1752                             && GET_CODE (SET_DEST (single_set (p))) == REG
1753                             && (REGNO (SET_DEST (single_set (p)))
1754                                 < FIRST_PSEUDO_REGISTER))
1755                       /* We may only emit an insn directly after P if we
1756                          are not in the shadow of a live flags register.  */
1757                       && GET_MODE (p) == VOIDmode)
1758                     {
1759                       search_end = q;
1760                       q = insn;
1761                       set2 = set;
1762                       newconst = -insn_const;
1763                       code = MINUS;
1764                     }
1765                   else
1766                     break;
1767                 }
1768               else
1769                 {
1770                   newconst = INTVAL (XEXP (SET_SRC (set2), 1)) - insn_const;
1771                   /* Reject out of range shifts.  */
1772                   if (code != PLUS
1773                       && (newconst < 0
1774                           || (newconst
1775                               >= GET_MODE_BITSIZE (GET_MODE (SET_SRC (set2))))))
1776                     break;
1777                   if (code == PLUS)
1778                     {
1779                       post_inc = q;
1780                       if (SET_DEST (set2) != src)
1781                         post_inc_set = set2;
1782                     }
1783                 }
1784               /* We use 1 as last argument to validate_change so that all
1785                  changes are accepted or rejected together by apply_change_group
1786                  when it is called by validate_replace_rtx .  */
1787               validate_change (q, &XEXP (SET_SRC (set2), 1),
1788                                GEN_INT (newconst), 1);
1789             }
1790           validate_change (insn, recog_data.operand_loc[match_number], src, 1);
1791           if (validate_replace_rtx (dst, src_subreg, p))
1792             success = 1;
1793           break;
1794         }
1795
1796       if (reg_overlap_mentioned_p (dst, PATTERN (p)))
1797         break;
1798       if (! src_note && reg_overlap_mentioned_p (src, PATTERN (p)))
1799         {
1800           /* INSN was already checked to be movable wrt. the registers that it
1801              sets / uses when we found no REG_DEAD note for src on it, but it
1802              still might clobber the flags register.  We'll have to check that
1803              we won't insert it into the shadow of a live flags register when
1804              we finally know where we are to move it.  */
1805           overlap = p;
1806           src_note = find_reg_note (p, REG_DEAD, src);
1807         }
1808
1809       /* If we have passed a call instruction, and the pseudo-reg SRC is not
1810          already live across a call, then don't perform the optimization.  */
1811       if (GET_CODE (p) == CALL_INSN)
1812         {
1813           if (REG_N_CALLS_CROSSED (REGNO (src)) == 0)
1814             break;
1815
1816           num_calls++;
1817
1818           if (src_note)
1819             s_num_calls++;
1820
1821         }
1822     }
1823
1824   if (! success)
1825     return 0;
1826
1827   /* Remove the death note for DST from P.  */
1828   remove_note (p, dst_note);
1829   if (code == MINUS)
1830     {
1831       post_inc = emit_insn_after (copy_rtx (PATTERN (insn)), p);
1832       if ((HAVE_PRE_INCREMENT || HAVE_PRE_DECREMENT)
1833           && search_end
1834           && try_auto_increment (search_end, post_inc, 0, src, newconst, 1))
1835         post_inc = 0;
1836       validate_change (insn, &XEXP (SET_SRC (set), 1), GEN_INT (insn_const), 0);
1837       REG_N_SETS (REGNO (src))++;
1838       REG_LIVE_LENGTH (REGNO (src))++;
1839     }
1840   if (overlap)
1841     {
1842       /* The lifetime of src and dest overlap,
1843          but we can change this by moving insn.  */
1844       rtx pat = PATTERN (insn);
1845       if (src_note)
1846         remove_note (overlap, src_note);
1847       if ((HAVE_POST_INCREMENT || HAVE_POST_DECREMENT)
1848           && code == PLUS
1849           && try_auto_increment (overlap, insn, 0, src, insn_const, 0))
1850         insn = overlap;
1851       else
1852         {
1853           rtx notes = REG_NOTES (insn);
1854
1855           emit_insn_after_with_line_notes (pat, PREV_INSN (p), insn);
1856           PUT_CODE (insn, NOTE);
1857           NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
1858           NOTE_SOURCE_FILE (insn) = 0;
1859           /* emit_insn_after_with_line_notes has no
1860              return value, so search for the new insn.  */
1861           insn = p;
1862           while (GET_RTX_CLASS (GET_CODE (insn)) != 'i'
1863                  || PATTERN (insn) != pat)
1864             insn = PREV_INSN (insn);
1865
1866           REG_NOTES (insn) = notes;
1867         }
1868     }
1869   /* Sometimes we'd generate src = const; src += n;
1870      if so, replace the instruction that set src
1871      in the first place.  */
1872
1873   if (! overlap && (code == PLUS || code == MINUS))
1874     {
1875       rtx note = find_reg_note (insn, REG_EQUAL, NULL_RTX);
1876       rtx q, set2 = NULL_RTX;
1877       int num_calls2 = 0, s_length2 = 0;
1878
1879       if (note && CONSTANT_P (XEXP (note, 0)))
1880         {
1881           for (q = PREV_INSN (insn); q; q = PREV_INSN(q))
1882             {
1883               if (GET_CODE (q) == CODE_LABEL || GET_CODE (q) == JUMP_INSN)
1884                 {
1885                   q = 0;
1886                   break;
1887                 }
1888
1889               /* ??? We can't scan past the end of a basic block without
1890                  updating the register lifetime info
1891                  (REG_DEAD/basic_block_live_at_start).
1892                  A CALL_INSN might be the last insn of a basic block, if
1893                  it is inside an EH region.  There is no easy way to tell,
1894                  so we just always break when we see a CALL_INSN if
1895                  flag_exceptions is nonzero.  */
1896               if (flag_exceptions && GET_CODE (q) == CALL_INSN)
1897                 {
1898                   q = 0;
1899                   break;
1900                 }
1901
1902               if (GET_RTX_CLASS (GET_CODE (q)) != 'i')
1903                 continue;
1904               s_length2++;
1905               if (reg_set_p (src, q))
1906                 {
1907                   set2 = single_set (q);
1908                   break;
1909                 }
1910               if (reg_overlap_mentioned_p (src, PATTERN (q)))
1911                 {
1912                   q = 0;
1913                   break;
1914                 }
1915               if (GET_CODE (p) == CALL_INSN)
1916                 num_calls2++;
1917             }
1918           if (q && set2 && SET_DEST (set2) == src && CONSTANT_P (SET_SRC (set2))
1919               && validate_change (insn, &SET_SRC (set), XEXP (note, 0), 0))
1920             {
1921               PUT_CODE (q, NOTE);
1922               NOTE_LINE_NUMBER (q) = NOTE_INSN_DELETED;
1923               NOTE_SOURCE_FILE (q) = 0;
1924               REG_N_SETS (REGNO (src))--;
1925               REG_N_CALLS_CROSSED (REGNO (src)) -= num_calls2;
1926               REG_LIVE_LENGTH (REGNO (src)) -= s_length2;
1927               insn_const = 0;
1928             }
1929         }
1930     }
1931
1932   if ((HAVE_PRE_INCREMENT || HAVE_PRE_DECREMENT)
1933            && (code == PLUS || code == MINUS) && insn_const
1934            && try_auto_increment (p, insn, 0, src, insn_const, 1))
1935     insn = p;
1936   else if ((HAVE_POST_INCREMENT || HAVE_POST_DECREMENT)
1937            && post_inc
1938            && try_auto_increment (p, post_inc, post_inc_set, src, newconst, 0))
1939     post_inc = 0;
1940   /* If post_inc still prevails, try to find an
1941      insn where it can be used as a pre-in/decrement.
1942      If code is MINUS, this was already tried.  */
1943   if (post_inc && code == PLUS
1944   /* Check that newconst is likely to be usable
1945      in a pre-in/decrement before starting the search.  */
1946       && ((HAVE_PRE_INCREMENT && newconst > 0 && newconst <= MOVE_MAX)
1947           || (HAVE_PRE_DECREMENT && newconst < 0 && newconst >= -MOVE_MAX))
1948       && exact_log2 (newconst))
1949     {
1950       rtx q, inc_dest;
1951
1952       inc_dest = post_inc_set ? SET_DEST (post_inc_set) : src;
1953       for (q = post_inc; (q = NEXT_INSN (q)); )
1954         {
1955           if (GET_CODE (q) == CODE_LABEL || GET_CODE (q) == JUMP_INSN)
1956             break;
1957
1958           /* ??? We can't scan past the end of a basic block without updating
1959              the register lifetime info (REG_DEAD/basic_block_live_at_start).
1960              A CALL_INSN might be the last insn of a basic block, if it
1961              is inside an EH region.  There is no easy way to tell so we
1962              just always break when we see a CALL_INSN if flag_exceptions
1963              is nonzero.  */
1964           if (flag_exceptions && GET_CODE (q) == CALL_INSN)
1965             break;
1966
1967           if (GET_RTX_CLASS (GET_CODE (q)) != 'i')
1968             continue;
1969           if (src != inc_dest && (reg_overlap_mentioned_p (src, PATTERN (q))
1970                                   || reg_set_p (src, q)))
1971             break;
1972           if (reg_set_p (inc_dest, q))
1973             break;
1974           if (reg_overlap_mentioned_p (inc_dest, PATTERN (q)))
1975             {
1976               try_auto_increment (q, post_inc,
1977                                   post_inc_set, inc_dest, newconst, 1);
1978               break;
1979             }
1980         }
1981     }
1982   /* Move the death note for DST to INSN if it is used
1983      there.  */
1984   if (reg_overlap_mentioned_p (dst, PATTERN (insn)))
1985     {
1986       XEXP (dst_note, 1) = REG_NOTES (insn);
1987       REG_NOTES (insn) = dst_note;
1988     }
1989
1990   if (src_note)
1991     {
1992       /* Move the death note for SRC from INSN to P.  */
1993       if (! overlap)
1994         remove_note (insn, src_note);
1995       XEXP (src_note, 1) = REG_NOTES (p);
1996       REG_NOTES (p) = src_note;
1997
1998       REG_N_CALLS_CROSSED (REGNO (src)) += s_num_calls;
1999     }
2000
2001   REG_N_SETS (REGNO (src))++;
2002   REG_N_SETS (REGNO (dst))--;
2003
2004   REG_N_CALLS_CROSSED (REGNO (dst)) -= num_calls;
2005
2006   REG_LIVE_LENGTH (REGNO (src)) += s_length;
2007   if (REG_LIVE_LENGTH (REGNO (dst)) >= 0)
2008     {
2009       REG_LIVE_LENGTH (REGNO (dst)) -= length;
2010       /* REG_LIVE_LENGTH is only an approximation after
2011          combine if sched is not run, so make sure that we
2012          still have a reasonable value.  */
2013       if (REG_LIVE_LENGTH (REGNO (dst)) < 2)
2014         REG_LIVE_LENGTH (REGNO (dst)) = 2;
2015     }
2016   if (regmove_dump_file)
2017     fprintf (regmove_dump_file,
2018              "Fixed operand %d of insn %d matching operand %d.\n",
2019              operand_number, INSN_UID (insn), match_number);
2020   return 1;
2021 }
2022
2023
2024 /* return nonzero if X is stable and mentions no regsiters but for
2025    mentioning SRC or mentioning / changing DST .  If in doubt, presume
2026    it is unstable.
2027    The rationale is that we want to check if we can move an insn easily
2028    while just paying attention to SRC and DST.  A register is considered
2029    stable if it has the RTX_UNCHANGING_P bit set, but that would still
2030    leave the burden to update REG_DEAD / REG_UNUSED notes, so we don't
2031    want any registers but SRC and DST.  */
2032 static int
2033 stable_and_no_regs_but_for_p (x, src, dst)
2034      rtx x, src, dst;
2035 {
2036   RTX_CODE code = GET_CODE (x);
2037   switch (GET_RTX_CLASS (code))
2038     {
2039     case '<': case '1': case 'c': case '2': case 'b': case '3':
2040       {
2041         int i;
2042         const char *fmt = GET_RTX_FORMAT (code);
2043         for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2044           if (fmt[i] == 'e'
2045               && ! stable_and_no_regs_but_for_p (XEXP (x, i), src, dst))
2046               return 0;
2047         return 1;
2048       }
2049     case 'o':
2050       if (code == REG)
2051         return x == src || x == dst;
2052       /* If this is a MEM, look inside - there might be a register hidden in
2053          the address of an unchanging MEM.  */
2054       if (code == MEM
2055           && ! stable_and_no_regs_but_for_p (XEXP (x, 0), src, dst))
2056         return 0;
2057       /* fall through */
2058     default:
2059       return ! rtx_unstable_p (x);
2060     }
2061 }