* da.po, es.po: Update.
[official-gcc.git] / gcc / auto-inc-dec.c
blob91fa5cf0bbe04b8a2c2c2b9209d245a327de0ffd
1 /* Discovery of auto-inc and auto-dec instructions.
2 Copyright (C) 2006-2017 Free Software Foundation, Inc.
3 Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "backend.h"
25 #include "target.h"
26 #include "rtl.h"
27 #include "tree.h"
28 #include "predict.h"
29 #include "df.h"
30 #include "insn-config.h"
31 #include "memmodel.h"
32 #include "emit-rtl.h"
33 #include "recog.h"
34 #include "cfgrtl.h"
35 #include "expr.h"
36 #include "tree-pass.h"
37 #include "dbgcnt.h"
38 #include "print-rtl.h"
40 /* This pass was originally removed from flow.c. However there is
41 almost nothing that remains of that code.
43 There are (4) basic forms that are matched:
45 (1) FORM_PRE_ADD
46 a <- b + c
47 ...
50 becomes
52 a <- b
53 ...
54 *(a += c) pre
57 (2) FORM_PRE_INC
58 a += c
59 ...
62 becomes
64 *(a += c) pre
67 (3) FORM_POST_ADD
69 ...
70 b <- a + c
72 (For this case to be true, b must not be assigned or used between
73 the *a and the assignment to b. B must also be a Pmode reg.)
75 becomes
77 b <- a
78 ...
79 *(b += c) post
82 (4) FORM_POST_INC
84 ...
85 a <- a + c
87 becomes
89 *(a += c) post
91 There are three types of values of c.
93 1) c is a constant equal to the width of the value being accessed by
94 the pointer. This is useful for machines that have
95 HAVE_PRE_INCREMENT, HAVE_POST_INCREMENT, HAVE_PRE_DECREMENT or
96 HAVE_POST_DECREMENT defined.
98 2) c is a constant not equal to the width of the value being accessed
99 by the pointer. This is useful for machines that have
100 HAVE_PRE_MODIFY_DISP, HAVE_POST_MODIFY_DISP defined.
102 3) c is a register. This is useful for machines that have
103 HAVE_PRE_MODIFY_REG, HAVE_POST_MODIFY_REG
105 The is one special case: if a already had an offset equal to it +-
106 its width and that offset is equal to -c when the increment was
107 before the ref or +c if the increment was after the ref, then if we
108 can do the combination but switch the pre/post bit. */
111 enum form
113 FORM_PRE_ADD,
114 FORM_PRE_INC,
115 FORM_POST_ADD,
116 FORM_POST_INC,
117 FORM_last
120 /* The states of the second operands of mem refs and inc insns. If no
121 second operand of the mem_ref was found, it is assumed to just be
122 ZERO. SIZE is the size of the mode accessed in the memref. The
123 ANY is used for constants that are not +-size or 0. REG is used if
124 the forms are reg1 + reg2. */
126 enum inc_state
128 INC_ZERO, /* == 0 */
129 INC_NEG_SIZE, /* == +size */
130 INC_POS_SIZE, /* == -size */
131 INC_NEG_ANY, /* == some -constant */
132 INC_POS_ANY, /* == some +constant */
133 INC_REG, /* == some register */
134 INC_last
137 /* The eight forms that pre/post inc/dec can take. */
138 enum gen_form
140 NOTHING,
141 SIMPLE_PRE_INC, /* ++size */
142 SIMPLE_POST_INC, /* size++ */
143 SIMPLE_PRE_DEC, /* --size */
144 SIMPLE_POST_DEC, /* size-- */
145 DISP_PRE, /* ++con */
146 DISP_POST, /* con++ */
147 REG_PRE, /* ++reg */
148 REG_POST /* reg++ */
151 /* Tmp mem rtx for use in cost modeling. */
152 static rtx mem_tmp;
154 static enum inc_state
155 set_inc_state (HOST_WIDE_INT val, int size)
157 if (val == 0)
158 return INC_ZERO;
159 if (val < 0)
160 return (val == -size) ? INC_NEG_SIZE : INC_NEG_ANY;
161 else
162 return (val == size) ? INC_POS_SIZE : INC_POS_ANY;
165 /* The DECISION_TABLE that describes what form, if any, the increment
166 or decrement will take. It is a three dimensional table. The first
167 index is the type of constant or register found as the second
168 operand of the inc insn. The second index is the type of constant
169 or register found as the second operand of the memory reference (if
170 no second operand exists, 0 is used). The third index is the form
171 and location (relative to the mem reference) of inc insn. */
173 static bool initialized = false;
174 static enum gen_form decision_table[INC_last][INC_last][FORM_last];
176 static void
177 init_decision_table (void)
179 enum gen_form value;
181 if (HAVE_PRE_INCREMENT || HAVE_PRE_MODIFY_DISP)
183 /* Prefer the simple form if both are available. */
184 value = (HAVE_PRE_INCREMENT) ? SIMPLE_PRE_INC : DISP_PRE;
186 decision_table[INC_POS_SIZE][INC_ZERO][FORM_PRE_ADD] = value;
187 decision_table[INC_POS_SIZE][INC_ZERO][FORM_PRE_INC] = value;
189 decision_table[INC_POS_SIZE][INC_POS_SIZE][FORM_POST_ADD] = value;
190 decision_table[INC_POS_SIZE][INC_POS_SIZE][FORM_POST_INC] = value;
193 if (HAVE_POST_INCREMENT || HAVE_POST_MODIFY_DISP)
195 /* Prefer the simple form if both are available. */
196 value = (HAVE_POST_INCREMENT) ? SIMPLE_POST_INC : DISP_POST;
198 decision_table[INC_POS_SIZE][INC_ZERO][FORM_POST_ADD] = value;
199 decision_table[INC_POS_SIZE][INC_ZERO][FORM_POST_INC] = value;
201 decision_table[INC_POS_SIZE][INC_NEG_SIZE][FORM_PRE_ADD] = value;
202 decision_table[INC_POS_SIZE][INC_NEG_SIZE][FORM_PRE_INC] = value;
205 if (HAVE_PRE_DECREMENT || HAVE_PRE_MODIFY_DISP)
207 /* Prefer the simple form if both are available. */
208 value = (HAVE_PRE_DECREMENT) ? SIMPLE_PRE_DEC : DISP_PRE;
210 decision_table[INC_NEG_SIZE][INC_ZERO][FORM_PRE_ADD] = value;
211 decision_table[INC_NEG_SIZE][INC_ZERO][FORM_PRE_INC] = value;
213 decision_table[INC_NEG_SIZE][INC_NEG_SIZE][FORM_POST_ADD] = value;
214 decision_table[INC_NEG_SIZE][INC_NEG_SIZE][FORM_POST_INC] = value;
217 if (HAVE_POST_DECREMENT || HAVE_POST_MODIFY_DISP)
219 /* Prefer the simple form if both are available. */
220 value = (HAVE_POST_DECREMENT) ? SIMPLE_POST_DEC : DISP_POST;
222 decision_table[INC_NEG_SIZE][INC_ZERO][FORM_POST_ADD] = value;
223 decision_table[INC_NEG_SIZE][INC_ZERO][FORM_POST_INC] = value;
225 decision_table[INC_NEG_SIZE][INC_POS_SIZE][FORM_PRE_ADD] = value;
226 decision_table[INC_NEG_SIZE][INC_POS_SIZE][FORM_PRE_INC] = value;
229 if (HAVE_PRE_MODIFY_DISP)
231 decision_table[INC_POS_ANY][INC_ZERO][FORM_PRE_ADD] = DISP_PRE;
232 decision_table[INC_POS_ANY][INC_ZERO][FORM_PRE_INC] = DISP_PRE;
234 decision_table[INC_POS_ANY][INC_POS_ANY][FORM_POST_ADD] = DISP_PRE;
235 decision_table[INC_POS_ANY][INC_POS_ANY][FORM_POST_INC] = DISP_PRE;
237 decision_table[INC_NEG_ANY][INC_ZERO][FORM_PRE_ADD] = DISP_PRE;
238 decision_table[INC_NEG_ANY][INC_ZERO][FORM_PRE_INC] = DISP_PRE;
240 decision_table[INC_NEG_ANY][INC_NEG_ANY][FORM_POST_ADD] = DISP_PRE;
241 decision_table[INC_NEG_ANY][INC_NEG_ANY][FORM_POST_INC] = DISP_PRE;
244 if (HAVE_POST_MODIFY_DISP)
246 decision_table[INC_POS_ANY][INC_ZERO][FORM_POST_ADD] = DISP_POST;
247 decision_table[INC_POS_ANY][INC_ZERO][FORM_POST_INC] = DISP_POST;
249 decision_table[INC_POS_ANY][INC_NEG_ANY][FORM_PRE_ADD] = DISP_POST;
250 decision_table[INC_POS_ANY][INC_NEG_ANY][FORM_PRE_INC] = DISP_POST;
252 decision_table[INC_NEG_ANY][INC_ZERO][FORM_POST_ADD] = DISP_POST;
253 decision_table[INC_NEG_ANY][INC_ZERO][FORM_POST_INC] = DISP_POST;
255 decision_table[INC_NEG_ANY][INC_POS_ANY][FORM_PRE_ADD] = DISP_POST;
256 decision_table[INC_NEG_ANY][INC_POS_ANY][FORM_PRE_INC] = DISP_POST;
259 /* This is much simpler than the other cases because we do not look
260 for the reg1-reg2 case. Note that we do not have a INC_POS_REG
261 and INC_NEG_REG states. Most of the use of such states would be
262 on a target that had an R1 - R2 update address form.
264 There is the remote possibility that you could also catch a = a +
265 b; *(a - b) as a postdecrement of (a + b). However, it is
266 unclear if *(a - b) would ever be generated on a machine that did
267 not have that kind of addressing mode. The IA-64 and RS6000 will
268 not do this, and I cannot speak for any other. If any
269 architecture does have an a-b update for, these cases should be
270 added. */
271 if (HAVE_PRE_MODIFY_REG)
273 decision_table[INC_REG][INC_ZERO][FORM_PRE_ADD] = REG_PRE;
274 decision_table[INC_REG][INC_ZERO][FORM_PRE_INC] = REG_PRE;
276 decision_table[INC_REG][INC_REG][FORM_POST_ADD] = REG_PRE;
277 decision_table[INC_REG][INC_REG][FORM_POST_INC] = REG_PRE;
280 if (HAVE_POST_MODIFY_REG)
282 decision_table[INC_REG][INC_ZERO][FORM_POST_ADD] = REG_POST;
283 decision_table[INC_REG][INC_ZERO][FORM_POST_INC] = REG_POST;
286 initialized = true;
289 /* Parsed fields of an inc insn of the form "reg_res = reg0+reg1" or
290 "reg_res = reg0+c". */
292 static struct inc_insn
294 rtx_insn *insn; /* The insn being parsed. */
295 rtx pat; /* The pattern of the insn. */
296 bool reg1_is_const; /* True if reg1 is const, false if reg1 is a reg. */
297 enum form form;
298 rtx reg_res;
299 rtx reg0;
300 rtx reg1;
301 enum inc_state reg1_state;/* The form of the const if reg1 is a const. */
302 HOST_WIDE_INT reg1_val;/* Value if reg1 is const. */
303 } inc_insn;
306 /* Dump the parsed inc insn to FILE. */
308 static void
309 dump_inc_insn (FILE *file)
311 const char *f = ((inc_insn.form == FORM_PRE_ADD)
312 || (inc_insn.form == FORM_PRE_INC)) ? "pre" : "post";
314 dump_insn_slim (file, inc_insn.insn);
316 switch (inc_insn.form)
318 case FORM_PRE_ADD:
319 case FORM_POST_ADD:
320 if (inc_insn.reg1_is_const)
321 fprintf (file, "found %s add(%d) r[%d]=r[%d]+%d\n",
322 f, INSN_UID (inc_insn.insn),
323 REGNO (inc_insn.reg_res),
324 REGNO (inc_insn.reg0), (int) inc_insn.reg1_val);
325 else
326 fprintf (file, "found %s add(%d) r[%d]=r[%d]+r[%d]\n",
327 f, INSN_UID (inc_insn.insn),
328 REGNO (inc_insn.reg_res),
329 REGNO (inc_insn.reg0), REGNO (inc_insn.reg1));
330 break;
332 case FORM_PRE_INC:
333 case FORM_POST_INC:
334 if (inc_insn.reg1_is_const)
335 fprintf (file, "found %s inc(%d) r[%d]+=%d\n",
336 f, INSN_UID (inc_insn.insn),
337 REGNO (inc_insn.reg_res), (int) inc_insn.reg1_val);
338 else
339 fprintf (file, "found %s inc(%d) r[%d]+=r[%d]\n",
340 f, INSN_UID (inc_insn.insn),
341 REGNO (inc_insn.reg_res), REGNO (inc_insn.reg1));
342 break;
344 default:
345 break;
350 /* Parsed fields of a mem ref of the form "*(reg0+reg1)" or "*(reg0+c)". */
352 static struct mem_insn
354 rtx_insn *insn; /* The insn being parsed. */
355 rtx pat; /* The pattern of the insn. */
356 rtx *mem_loc; /* The address of the field that holds the mem */
357 /* that is to be replaced. */
358 bool reg1_is_const; /* True if reg1 is const, false if reg1 is a reg. */
359 rtx reg0;
360 rtx reg1; /* This is either a reg or a const depending on
361 reg1_is_const. */
362 enum inc_state reg1_state;/* The form of the const if reg1 is a const. */
363 HOST_WIDE_INT reg1_val;/* Value if reg1 is const. */
364 } mem_insn;
367 /* Dump the parsed mem insn to FILE. */
369 static void
370 dump_mem_insn (FILE *file)
372 dump_insn_slim (file, mem_insn.insn);
374 if (mem_insn.reg1_is_const)
375 fprintf (file, "found mem(%d) *(r[%d]+%d)\n",
376 INSN_UID (mem_insn.insn),
377 REGNO (mem_insn.reg0), (int) mem_insn.reg1_val);
378 else
379 fprintf (file, "found mem(%d) *(r[%d]+r[%d])\n",
380 INSN_UID (mem_insn.insn),
381 REGNO (mem_insn.reg0), REGNO (mem_insn.reg1));
385 /* The following three arrays contain pointers to instructions. They
386 are indexed by REGNO. At any point in the basic block where we are
387 looking these three arrays contain, respectively, the next insn
388 that uses REGNO, the next inc or add insn that uses REGNO and the
389 next insn that sets REGNO.
391 The arrays are not cleared when we move from block to block so
392 whenever an insn is retrieved from these arrays, it's block number
393 must be compared with the current block.
396 static rtx_insn **reg_next_use = NULL;
397 static rtx_insn **reg_next_inc_use = NULL;
398 static rtx_insn **reg_next_def = NULL;
401 /* Move dead note that match PATTERN to TO_INSN from FROM_INSN. We do
402 not really care about moving any other notes from the inc or add
403 insn. Moving the REG_EQUAL and REG_EQUIV is clearly wrong and it
404 does not appear that there are any other kinds of relevant notes. */
406 static void
407 move_dead_notes (rtx_insn *to_insn, rtx_insn *from_insn, rtx pattern)
409 rtx note;
410 rtx next_note;
411 rtx prev_note = NULL;
413 for (note = REG_NOTES (from_insn); note; note = next_note)
415 next_note = XEXP (note, 1);
417 if ((REG_NOTE_KIND (note) == REG_DEAD)
418 && pattern == XEXP (note, 0))
420 XEXP (note, 1) = REG_NOTES (to_insn);
421 REG_NOTES (to_insn) = note;
422 if (prev_note)
423 XEXP (prev_note, 1) = next_note;
424 else
425 REG_NOTES (from_insn) = next_note;
427 else prev_note = note;
431 /* Change mem_insn.mem_loc so that uses NEW_ADDR which has an
432 increment of INC_REG. To have reached this point, the change is a
433 legitimate one from a dataflow point of view. The only questions
434 are is this a valid change to the instruction and is this a
435 profitable change to the instruction. */
437 static bool
438 attempt_change (rtx new_addr, rtx inc_reg)
440 /* There are four cases: For the two cases that involve an add
441 instruction, we are going to have to delete the add and insert a
442 mov. We are going to assume that the mov is free. This is
443 fairly early in the backend and there are a lot of opportunities
444 for removing that move later. In particular, there is the case
445 where the move may be dead, this is what dead code elimination
446 passes are for. The two cases where we have an inc insn will be
447 handled mov free. */
449 basic_block bb = BLOCK_FOR_INSN (mem_insn.insn);
450 rtx_insn *mov_insn = NULL;
451 int regno;
452 rtx mem = *mem_insn.mem_loc;
453 machine_mode mode = GET_MODE (mem);
454 rtx new_mem;
455 int old_cost = 0;
456 int new_cost = 0;
457 bool speed = optimize_bb_for_speed_p (bb);
459 PUT_MODE (mem_tmp, mode);
460 XEXP (mem_tmp, 0) = new_addr;
462 old_cost = (set_src_cost (mem, mode, speed)
463 + set_rtx_cost (PATTERN (inc_insn.insn), speed));
465 new_cost = set_src_cost (mem_tmp, mode, speed);
467 /* In the FORM_PRE_ADD and FORM_POST_ADD cases we emit an extra move
468 whose cost we should account for. */
469 if (inc_insn.form == FORM_PRE_ADD
470 || inc_insn.form == FORM_POST_ADD)
472 start_sequence ();
473 emit_move_insn (inc_insn.reg_res, inc_insn.reg0);
474 mov_insn = get_insns ();
475 end_sequence ();
476 new_cost += seq_cost (mov_insn, speed);
479 /* The first item of business is to see if this is profitable. */
480 if (old_cost < new_cost)
482 if (dump_file)
483 fprintf (dump_file, "cost failure old=%d new=%d\n", old_cost, new_cost);
484 return false;
487 /* Jump through a lot of hoops to keep the attributes up to date. We
488 do not want to call one of the change address variants that take
489 an offset even though we know the offset in many cases. These
490 assume you are changing where the address is pointing by the
491 offset. */
492 new_mem = replace_equiv_address_nv (mem, new_addr);
493 if (! validate_change (mem_insn.insn, mem_insn.mem_loc, new_mem, 0))
495 if (dump_file)
496 fprintf (dump_file, "validation failure\n");
497 return false;
500 /* From here to the end of the function we are committed to the
501 change, i.e. nothing fails. Generate any necessary movs, move
502 any regnotes, and fix up the reg_next_{use,inc_use,def}. */
503 switch (inc_insn.form)
505 case FORM_PRE_ADD:
506 /* Replace the addition with a move. Do it at the location of
507 the addition since the operand of the addition may change
508 before the memory reference. */
509 gcc_assert (mov_insn);
510 emit_insn_before (mov_insn, inc_insn.insn);
511 move_dead_notes (mov_insn, inc_insn.insn, inc_insn.reg0);
513 regno = REGNO (inc_insn.reg_res);
514 reg_next_def[regno] = mov_insn;
515 reg_next_use[regno] = NULL;
516 regno = REGNO (inc_insn.reg0);
517 reg_next_use[regno] = mov_insn;
518 df_recompute_luids (bb);
519 break;
521 case FORM_POST_INC:
522 regno = REGNO (inc_insn.reg_res);
523 if (reg_next_use[regno] == reg_next_inc_use[regno])
524 reg_next_inc_use[regno] = NULL;
526 /* Fallthru. */
527 case FORM_PRE_INC:
528 regno = REGNO (inc_insn.reg_res);
529 reg_next_def[regno] = mem_insn.insn;
530 reg_next_use[regno] = NULL;
532 break;
534 case FORM_POST_ADD:
535 gcc_assert (mov_insn);
536 emit_insn_before (mov_insn, mem_insn.insn);
537 move_dead_notes (mov_insn, inc_insn.insn, inc_insn.reg0);
539 /* Do not move anything to the mov insn because the instruction
540 pointer for the main iteration has not yet hit that. It is
541 still pointing to the mem insn. */
542 regno = REGNO (inc_insn.reg_res);
543 reg_next_def[regno] = mem_insn.insn;
544 reg_next_use[regno] = NULL;
546 regno = REGNO (inc_insn.reg0);
547 reg_next_use[regno] = mem_insn.insn;
548 if ((reg_next_use[regno] == reg_next_inc_use[regno])
549 || (reg_next_inc_use[regno] == inc_insn.insn))
550 reg_next_inc_use[regno] = NULL;
551 df_recompute_luids (bb);
552 break;
554 case FORM_last:
555 default:
556 gcc_unreachable ();
559 if (!inc_insn.reg1_is_const)
561 regno = REGNO (inc_insn.reg1);
562 reg_next_use[regno] = mem_insn.insn;
563 if ((reg_next_use[regno] == reg_next_inc_use[regno])
564 || (reg_next_inc_use[regno] == inc_insn.insn))
565 reg_next_inc_use[regno] = NULL;
568 delete_insn (inc_insn.insn);
570 if (dump_file && mov_insn)
572 fprintf (dump_file, "inserting mov ");
573 dump_insn_slim (dump_file, mov_insn);
576 /* Record that this insn has an implicit side effect. */
577 add_reg_note (mem_insn.insn, REG_INC, inc_reg);
579 if (dump_file)
581 fprintf (dump_file, "****success ");
582 dump_insn_slim (dump_file, mem_insn.insn);
585 return true;
589 /* Try to combine the instruction in INC_INSN with the instruction in
590 MEM_INSN. First the form is determined using the DECISION_TABLE
591 and the results of parsing the INC_INSN and the MEM_INSN.
592 Assuming the form is ok, a prototype new address is built which is
593 passed to ATTEMPT_CHANGE for final processing. */
595 static bool
596 try_merge (void)
598 enum gen_form gen_form;
599 rtx mem = *mem_insn.mem_loc;
600 rtx inc_reg = inc_insn.form == FORM_POST_ADD ?
601 inc_insn.reg_res : mem_insn.reg0;
603 /* The width of the mem being accessed. */
604 int size = GET_MODE_SIZE (GET_MODE (mem));
605 rtx_insn *last_insn = NULL;
606 machine_mode reg_mode = GET_MODE (inc_reg);
608 switch (inc_insn.form)
610 case FORM_PRE_ADD:
611 case FORM_PRE_INC:
612 last_insn = mem_insn.insn;
613 break;
614 case FORM_POST_INC:
615 case FORM_POST_ADD:
616 last_insn = inc_insn.insn;
617 break;
618 case FORM_last:
619 default:
620 gcc_unreachable ();
623 /* Cannot handle auto inc of the stack. */
624 if (inc_reg == stack_pointer_rtx)
626 if (dump_file)
627 fprintf (dump_file, "cannot inc stack %d failure\n", REGNO (inc_reg));
628 return false;
631 /* Look to see if the inc register is dead after the memory
632 reference. If it is, do not do the combination. */
633 if (find_regno_note (last_insn, REG_DEAD, REGNO (inc_reg)))
635 if (dump_file)
636 fprintf (dump_file, "dead failure %d\n", REGNO (inc_reg));
637 return false;
640 mem_insn.reg1_state = (mem_insn.reg1_is_const)
641 ? set_inc_state (mem_insn.reg1_val, size) : INC_REG;
642 inc_insn.reg1_state = (inc_insn.reg1_is_const)
643 ? set_inc_state (inc_insn.reg1_val, size) : INC_REG;
645 /* Now get the form that we are generating. */
646 gen_form = decision_table
647 [inc_insn.reg1_state][mem_insn.reg1_state][inc_insn.form];
649 if (dbg_cnt (auto_inc_dec) == false)
650 return false;
652 switch (gen_form)
654 default:
655 case NOTHING:
656 return false;
658 case SIMPLE_PRE_INC: /* ++size */
659 if (dump_file)
660 fprintf (dump_file, "trying SIMPLE_PRE_INC\n");
661 return attempt_change (gen_rtx_PRE_INC (reg_mode, inc_reg), inc_reg);
663 case SIMPLE_POST_INC: /* size++ */
664 if (dump_file)
665 fprintf (dump_file, "trying SIMPLE_POST_INC\n");
666 return attempt_change (gen_rtx_POST_INC (reg_mode, inc_reg), inc_reg);
668 case SIMPLE_PRE_DEC: /* --size */
669 if (dump_file)
670 fprintf (dump_file, "trying SIMPLE_PRE_DEC\n");
671 return attempt_change (gen_rtx_PRE_DEC (reg_mode, inc_reg), inc_reg);
673 case SIMPLE_POST_DEC: /* size-- */
674 if (dump_file)
675 fprintf (dump_file, "trying SIMPLE_POST_DEC\n");
676 return attempt_change (gen_rtx_POST_DEC (reg_mode, inc_reg), inc_reg);
678 case DISP_PRE: /* ++con */
679 if (dump_file)
680 fprintf (dump_file, "trying DISP_PRE\n");
681 return attempt_change (gen_rtx_PRE_MODIFY (reg_mode,
682 inc_reg,
683 gen_rtx_PLUS (reg_mode,
684 inc_reg,
685 inc_insn.reg1)),
686 inc_reg);
688 case DISP_POST: /* con++ */
689 if (dump_file)
690 fprintf (dump_file, "trying POST_DISP\n");
691 return attempt_change (gen_rtx_POST_MODIFY (reg_mode,
692 inc_reg,
693 gen_rtx_PLUS (reg_mode,
694 inc_reg,
695 inc_insn.reg1)),
696 inc_reg);
698 case REG_PRE: /* ++reg */
699 if (dump_file)
700 fprintf (dump_file, "trying PRE_REG\n");
701 return attempt_change (gen_rtx_PRE_MODIFY (reg_mode,
702 inc_reg,
703 gen_rtx_PLUS (reg_mode,
704 inc_reg,
705 inc_insn.reg1)),
706 inc_reg);
708 case REG_POST: /* reg++ */
709 if (dump_file)
710 fprintf (dump_file, "trying POST_REG\n");
711 return attempt_change (gen_rtx_POST_MODIFY (reg_mode,
712 inc_reg,
713 gen_rtx_PLUS (reg_mode,
714 inc_reg,
715 inc_insn.reg1)),
716 inc_reg);
720 /* Return the next insn that uses (if reg_next_use is passed in
721 NEXT_ARRAY) or defines (if reg_next_def is passed in NEXT_ARRAY)
722 REGNO in BB. */
724 static rtx_insn *
725 get_next_ref (int regno, basic_block bb, rtx_insn **next_array)
727 rtx_insn *insn = next_array[regno];
729 /* Lazy about cleaning out the next_arrays. */
730 if (insn && BLOCK_FOR_INSN (insn) != bb)
732 next_array[regno] = NULL;
733 insn = NULL;
736 return insn;
740 /* Return true if INSN is of a form "a = b op c" where a and b are
741 regs. op is + if c is a reg and +|- if c is a const. Fill in
742 INC_INSN with what is found.
744 This function is called in two contexts, if BEFORE_MEM is true,
745 this is called for each insn in the basic block. If BEFORE_MEM is
746 false, it is called for the instruction in the block that uses the
747 index register for some memory reference that is currently being
748 processed. */
750 static bool
751 parse_add_or_inc (rtx_insn *insn, bool before_mem)
753 rtx pat = single_set (insn);
754 if (!pat)
755 return false;
757 /* Result must be single reg. */
758 if (!REG_P (SET_DEST (pat)))
759 return false;
761 if ((GET_CODE (SET_SRC (pat)) != PLUS)
762 && (GET_CODE (SET_SRC (pat)) != MINUS))
763 return false;
765 if (!REG_P (XEXP (SET_SRC (pat), 0)))
766 return false;
768 inc_insn.insn = insn;
769 inc_insn.pat = pat;
770 inc_insn.reg_res = SET_DEST (pat);
771 inc_insn.reg0 = XEXP (SET_SRC (pat), 0);
772 if (rtx_equal_p (inc_insn.reg_res, inc_insn.reg0))
773 inc_insn.form = before_mem ? FORM_PRE_INC : FORM_POST_INC;
774 else
775 inc_insn.form = before_mem ? FORM_PRE_ADD : FORM_POST_ADD;
777 if (CONST_INT_P (XEXP (SET_SRC (pat), 1)))
779 /* Process a = b + c where c is a const. */
780 inc_insn.reg1_is_const = true;
781 if (GET_CODE (SET_SRC (pat)) == PLUS)
783 inc_insn.reg1 = XEXP (SET_SRC (pat), 1);
784 inc_insn.reg1_val = INTVAL (inc_insn.reg1);
786 else
788 inc_insn.reg1_val = -INTVAL (XEXP (SET_SRC (pat), 1));
789 inc_insn.reg1 = GEN_INT (inc_insn.reg1_val);
791 return true;
793 else if ((HAVE_PRE_MODIFY_REG || HAVE_POST_MODIFY_REG)
794 && (REG_P (XEXP (SET_SRC (pat), 1)))
795 && GET_CODE (SET_SRC (pat)) == PLUS)
797 /* Process a = b + c where c is a reg. */
798 inc_insn.reg1 = XEXP (SET_SRC (pat), 1);
799 inc_insn.reg1_is_const = false;
801 if (inc_insn.form == FORM_PRE_INC
802 || inc_insn.form == FORM_POST_INC)
803 return true;
804 else if (rtx_equal_p (inc_insn.reg_res, inc_insn.reg1))
806 /* Reverse the two operands and turn *_ADD into *_INC since
807 a = c + a. */
808 std::swap (inc_insn.reg0, inc_insn.reg1);
809 inc_insn.form = before_mem ? FORM_PRE_INC : FORM_POST_INC;
810 return true;
812 else
813 return true;
816 return false;
820 /* A recursive function that checks all of the mem uses in
821 ADDRESS_OF_X to see if any single one of them is compatible with
822 what has been found in inc_insn.
824 -1 is returned for success. 0 is returned if nothing was found and
825 1 is returned for failure. */
827 static int
828 find_address (rtx *address_of_x)
830 rtx x = *address_of_x;
831 enum rtx_code code = GET_CODE (x);
832 const char *const fmt = GET_RTX_FORMAT (code);
833 int i;
834 int value = 0;
835 int tem;
837 if (code == MEM && rtx_equal_p (XEXP (x, 0), inc_insn.reg_res))
839 /* Match with *reg0. */
840 mem_insn.mem_loc = address_of_x;
841 mem_insn.reg0 = inc_insn.reg_res;
842 mem_insn.reg1_is_const = true;
843 mem_insn.reg1_val = 0;
844 mem_insn.reg1 = GEN_INT (0);
845 return -1;
847 if (code == MEM && GET_CODE (XEXP (x, 0)) == PLUS
848 && rtx_equal_p (XEXP (XEXP (x, 0), 0), inc_insn.reg_res))
850 rtx b = XEXP (XEXP (x, 0), 1);
851 mem_insn.mem_loc = address_of_x;
852 mem_insn.reg0 = inc_insn.reg_res;
853 mem_insn.reg1 = b;
854 mem_insn.reg1_is_const = inc_insn.reg1_is_const;
855 if (CONST_INT_P (b))
857 /* Match with *(reg0 + reg1) where reg1 is a const. */
858 HOST_WIDE_INT val = INTVAL (b);
859 if (inc_insn.reg1_is_const
860 && (inc_insn.reg1_val == val || inc_insn.reg1_val == -val))
862 mem_insn.reg1_val = val;
863 return -1;
866 else if (!inc_insn.reg1_is_const
867 && rtx_equal_p (inc_insn.reg1, b))
868 /* Match with *(reg0 + reg1). */
869 return -1;
872 if (code == SIGN_EXTRACT || code == ZERO_EXTRACT)
874 /* If REG occurs inside a MEM used in a bit-field reference,
875 that is unacceptable. */
876 if (find_address (&XEXP (x, 0)))
877 return 1;
880 if (x == inc_insn.reg_res)
881 return 1;
883 /* Time for some deep diving. */
884 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
886 if (fmt[i] == 'e')
888 tem = find_address (&XEXP (x, i));
889 /* If this is the first use, let it go so the rest of the
890 insn can be checked. */
891 if (value == 0)
892 value = tem;
893 else if (tem != 0)
894 /* More than one match was found. */
895 return 1;
897 else if (fmt[i] == 'E')
899 int j;
900 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
902 tem = find_address (&XVECEXP (x, i, j));
903 /* If this is the first use, let it go so the rest of
904 the insn can be checked. */
905 if (value == 0)
906 value = tem;
907 else if (tem != 0)
908 /* More than one match was found. */
909 return 1;
913 return value;
916 /* Once a suitable mem reference has been found and the MEM_INSN
917 structure has been filled in, FIND_INC is called to see if there is
918 a suitable add or inc insn that follows the mem reference and
919 determine if it is suitable to merge.
921 In the case where the MEM_INSN has two registers in the reference,
922 this function may be called recursively. The first time looking
923 for an add of the first register, and if that fails, looking for an
924 add of the second register. The FIRST_TRY parameter is used to
925 only allow the parameters to be reversed once. */
927 static bool
928 find_inc (bool first_try)
930 rtx_insn *insn;
931 basic_block bb = BLOCK_FOR_INSN (mem_insn.insn);
932 rtx_insn *other_insn;
933 df_ref def;
935 /* Make sure this reg appears only once in this insn. */
936 if (count_occurrences (PATTERN (mem_insn.insn), mem_insn.reg0, 1) != 1)
938 if (dump_file)
939 fprintf (dump_file, "mem count failure\n");
940 return false;
943 if (dump_file)
944 dump_mem_insn (dump_file);
946 /* Find the next use that is an inc. */
947 insn = get_next_ref (REGNO (mem_insn.reg0),
948 BLOCK_FOR_INSN (mem_insn.insn),
949 reg_next_inc_use);
950 if (!insn)
951 return false;
953 /* Even though we know the next use is an add or inc because it came
954 from the reg_next_inc_use, we must still reparse. */
955 if (!parse_add_or_inc (insn, false))
957 /* Next use was not an add. Look for one extra case. It could be
958 that we have:
960 *(a + b)
961 ...= a;
962 ...= b + a
964 if we reverse the operands in the mem ref we would
965 find this. Only try it once though. */
966 if (first_try && !mem_insn.reg1_is_const)
968 std::swap (mem_insn.reg0, mem_insn.reg1);
969 return find_inc (false);
971 else
972 return false;
975 /* Need to assure that none of the operands of the inc instruction are
976 assigned to by the mem insn. */
977 FOR_EACH_INSN_DEF (def, mem_insn.insn)
979 unsigned int regno = DF_REF_REGNO (def);
980 if ((regno == REGNO (inc_insn.reg0))
981 || (regno == REGNO (inc_insn.reg_res)))
983 if (dump_file)
984 fprintf (dump_file, "inc conflicts with store failure.\n");
985 return false;
987 if (!inc_insn.reg1_is_const && (regno == REGNO (inc_insn.reg1)))
989 if (dump_file)
990 fprintf (dump_file, "inc conflicts with store failure.\n");
991 return false;
995 if (dump_file)
996 dump_inc_insn (dump_file);
998 if (inc_insn.form == FORM_POST_ADD)
1000 /* Make sure that there is no insn that assigns to inc_insn.res
1001 between the mem_insn and the inc_insn. */
1002 rtx_insn *other_insn = get_next_ref (REGNO (inc_insn.reg_res),
1003 BLOCK_FOR_INSN (mem_insn.insn),
1004 reg_next_def);
1005 if (other_insn != inc_insn.insn)
1007 if (dump_file)
1008 fprintf (dump_file,
1009 "result of add is assigned to between mem and inc insns.\n");
1010 return false;
1013 other_insn = get_next_ref (REGNO (inc_insn.reg_res),
1014 BLOCK_FOR_INSN (mem_insn.insn),
1015 reg_next_use);
1016 if (other_insn
1017 && (other_insn != inc_insn.insn)
1018 && (DF_INSN_LUID (inc_insn.insn) > DF_INSN_LUID (other_insn)))
1020 if (dump_file)
1021 fprintf (dump_file,
1022 "result of add is used between mem and inc insns.\n");
1023 return false;
1026 /* For the post_add to work, the result_reg of the inc must not be
1027 used in the mem insn since this will become the new index
1028 register. */
1029 if (reg_overlap_mentioned_p (inc_insn.reg_res, PATTERN (mem_insn.insn)))
1031 if (dump_file)
1032 fprintf (dump_file, "base reg replacement failure.\n");
1033 return false;
1037 if (mem_insn.reg1_is_const)
1039 if (mem_insn.reg1_val == 0)
1041 if (!inc_insn.reg1_is_const)
1043 /* The mem looks like *r0 and the rhs of the add has two
1044 registers. */
1045 int luid = DF_INSN_LUID (inc_insn.insn);
1046 if (inc_insn.form == FORM_POST_ADD)
1048 /* The trick is that we are not going to increment r0,
1049 we are going to increment the result of the add insn.
1050 For this trick to be correct, the result reg of
1051 the inc must be a valid addressing reg. */
1052 addr_space_t as = MEM_ADDR_SPACE (*mem_insn.mem_loc);
1053 if (GET_MODE (inc_insn.reg_res)
1054 != targetm.addr_space.address_mode (as))
1056 if (dump_file)
1057 fprintf (dump_file, "base reg mode failure.\n");
1058 return false;
1061 /* We also need to make sure that the next use of
1062 inc result is after the inc. */
1063 other_insn
1064 = get_next_ref (REGNO (inc_insn.reg1), bb, reg_next_use);
1065 if (other_insn && luid > DF_INSN_LUID (other_insn))
1066 return false;
1068 if (!rtx_equal_p (mem_insn.reg0, inc_insn.reg0))
1069 std::swap (inc_insn.reg0, inc_insn.reg1);
1072 other_insn
1073 = get_next_ref (REGNO (inc_insn.reg1), bb, reg_next_def);
1074 if (other_insn && luid > DF_INSN_LUID (other_insn))
1075 return false;
1078 /* Both the inc/add and the mem have a constant. Need to check
1079 that the constants are ok. */
1080 else if ((mem_insn.reg1_val != inc_insn.reg1_val)
1081 && (mem_insn.reg1_val != -inc_insn.reg1_val))
1082 return false;
1084 else
1086 /* The mem insn is of the form *(a + b) where a and b are both
1087 regs. It may be that in order to match the add or inc we
1088 need to treat it as if it was *(b + a). It may also be that
1089 the add is of the form a + c where c does not match b and
1090 then we just abandon this. */
1092 int luid = DF_INSN_LUID (inc_insn.insn);
1093 rtx_insn *other_insn;
1095 /* Make sure this reg appears only once in this insn. */
1096 if (count_occurrences (PATTERN (mem_insn.insn), mem_insn.reg1, 1) != 1)
1097 return false;
1099 if (inc_insn.form == FORM_POST_ADD)
1101 /* For this trick to be correct, the result reg of the inc
1102 must be a valid addressing reg. */
1103 addr_space_t as = MEM_ADDR_SPACE (*mem_insn.mem_loc);
1104 if (GET_MODE (inc_insn.reg_res)
1105 != targetm.addr_space.address_mode (as))
1107 if (dump_file)
1108 fprintf (dump_file, "base reg mode failure.\n");
1109 return false;
1112 if (rtx_equal_p (mem_insn.reg0, inc_insn.reg0))
1114 if (!rtx_equal_p (mem_insn.reg1, inc_insn.reg1))
1116 /* See comment above on find_inc (false) call. */
1117 if (first_try)
1119 std::swap (mem_insn.reg0, mem_insn.reg1);
1120 return find_inc (false);
1122 else
1123 return false;
1126 /* Need to check that there are no assignments to b
1127 before the add insn. */
1128 other_insn
1129 = get_next_ref (REGNO (inc_insn.reg1), bb, reg_next_def);
1130 if (other_insn && luid > DF_INSN_LUID (other_insn))
1131 return false;
1132 /* All ok for the next step. */
1134 else
1136 /* We know that mem_insn.reg0 must equal inc_insn.reg1
1137 or else we would not have found the inc insn. */
1138 std::swap (mem_insn.reg0, mem_insn.reg1);
1139 if (!rtx_equal_p (mem_insn.reg0, inc_insn.reg0))
1141 /* See comment above on find_inc (false) call. */
1142 if (first_try)
1143 return find_inc (false);
1144 else
1145 return false;
1147 /* To have gotten here know that.
1148 *(b + a)
1150 ... = (b + a)
1152 We also know that the lhs of the inc is not b or a. We
1153 need to make sure that there are no assignments to b
1154 between the mem ref and the inc. */
1156 other_insn
1157 = get_next_ref (REGNO (inc_insn.reg0), bb, reg_next_def);
1158 if (other_insn && luid > DF_INSN_LUID (other_insn))
1159 return false;
1162 /* Need to check that the next use of the add result is later than
1163 add insn since this will be the reg incremented. */
1164 other_insn
1165 = get_next_ref (REGNO (inc_insn.reg_res), bb, reg_next_use);
1166 if (other_insn && luid > DF_INSN_LUID (other_insn))
1167 return false;
1169 else /* FORM_POST_INC. There is less to check here because we
1170 know that operands must line up. */
1172 if (!rtx_equal_p (mem_insn.reg1, inc_insn.reg1))
1173 /* See comment above on find_inc (false) call. */
1175 if (first_try)
1177 std::swap (mem_insn.reg0, mem_insn.reg1);
1178 return find_inc (false);
1180 else
1181 return false;
1184 /* To have gotten here know that.
1185 *(a + b)
1187 ... = (a + b)
1189 We also know that the lhs of the inc is not b. We need to make
1190 sure that there are no assignments to b between the mem ref and
1191 the inc. */
1192 other_insn
1193 = get_next_ref (REGNO (inc_insn.reg1), bb, reg_next_def);
1194 if (other_insn && luid > DF_INSN_LUID (other_insn))
1195 return false;
1199 if (inc_insn.form == FORM_POST_INC)
1201 other_insn
1202 = get_next_ref (REGNO (inc_insn.reg0), bb, reg_next_use);
1203 /* When we found inc_insn, we were looking for the
1204 next add or inc, not the next insn that used the
1205 reg. Because we are going to increment the reg
1206 in this form, we need to make sure that there
1207 were no intervening uses of reg. */
1208 if (inc_insn.insn != other_insn)
1209 return false;
1212 return try_merge ();
1216 /* A recursive function that walks ADDRESS_OF_X to find all of the mem
1217 uses in pat that could be used as an auto inc or dec. It then
1218 calls FIND_INC for each one. */
1220 static bool
1221 find_mem (rtx *address_of_x)
1223 rtx x = *address_of_x;
1224 enum rtx_code code = GET_CODE (x);
1225 const char *const fmt = GET_RTX_FORMAT (code);
1226 int i;
1228 if (code == MEM && REG_P (XEXP (x, 0)))
1230 /* Match with *reg0. */
1231 mem_insn.mem_loc = address_of_x;
1232 mem_insn.reg0 = XEXP (x, 0);
1233 mem_insn.reg1_is_const = true;
1234 mem_insn.reg1_val = 0;
1235 mem_insn.reg1 = GEN_INT (0);
1236 if (find_inc (true))
1237 return true;
1239 if (code == MEM && GET_CODE (XEXP (x, 0)) == PLUS
1240 && REG_P (XEXP (XEXP (x, 0), 0)))
1242 rtx reg1 = XEXP (XEXP (x, 0), 1);
1243 mem_insn.mem_loc = address_of_x;
1244 mem_insn.reg0 = XEXP (XEXP (x, 0), 0);
1245 mem_insn.reg1 = reg1;
1246 if (CONST_INT_P (reg1))
1248 mem_insn.reg1_is_const = true;
1249 /* Match with *(reg0 + c) where c is a const. */
1250 mem_insn.reg1_val = INTVAL (reg1);
1251 if (find_inc (true))
1252 return true;
1254 else if (REG_P (reg1))
1256 /* Match with *(reg0 + reg1). */
1257 mem_insn.reg1_is_const = false;
1258 if (find_inc (true))
1259 return true;
1263 if (code == SIGN_EXTRACT || code == ZERO_EXTRACT)
1265 /* If REG occurs inside a MEM used in a bit-field reference,
1266 that is unacceptable. */
1267 return false;
1270 /* Time for some deep diving. */
1271 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1273 if (fmt[i] == 'e')
1275 if (find_mem (&XEXP (x, i)))
1276 return true;
1278 else if (fmt[i] == 'E')
1280 int j;
1281 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1282 if (find_mem (&XVECEXP (x, i, j)))
1283 return true;
1286 return false;
1290 /* Try to combine all incs and decs by constant values with memory
1291 references in BB. */
1293 static void
1294 merge_in_block (int max_reg, basic_block bb)
1296 rtx_insn *insn;
1297 rtx_insn *curr;
1298 int success_in_block = 0;
1300 if (dump_file)
1301 fprintf (dump_file, "\n\nstarting bb %d\n", bb->index);
1303 FOR_BB_INSNS_REVERSE_SAFE (bb, insn, curr)
1305 bool insn_is_add_or_inc = true;
1307 if (!NONDEBUG_INSN_P (insn))
1308 continue;
1310 /* This continue is deliberate. We do not want the uses of the
1311 jump put into reg_next_use because it is not considered safe to
1312 combine a preincrement with a jump. */
1313 if (JUMP_P (insn))
1314 continue;
1316 if (dump_file)
1317 dump_insn_slim (dump_file, insn);
1319 /* Does this instruction increment or decrement a register? */
1320 if (parse_add_or_inc (insn, true))
1322 int regno = REGNO (inc_insn.reg_res);
1323 /* Cannot handle case where there are three separate regs
1324 before a mem ref. Too many moves would be needed to be
1325 profitable. */
1326 if ((inc_insn.form == FORM_PRE_INC) || inc_insn.reg1_is_const)
1328 mem_insn.insn = get_next_ref (regno, bb, reg_next_use);
1329 if (mem_insn.insn)
1331 bool ok = true;
1332 if (!inc_insn.reg1_is_const)
1334 /* We are only here if we are going to try a
1335 HAVE_*_MODIFY_REG type transformation. c is a
1336 reg and we must sure that the path from the
1337 inc_insn to the mem_insn.insn is both def and use
1338 clear of c because the inc insn is going to move
1339 into the mem_insn.insn. */
1340 int luid = DF_INSN_LUID (mem_insn.insn);
1341 rtx_insn *other_insn
1342 = get_next_ref (REGNO (inc_insn.reg1), bb, reg_next_use);
1344 if (other_insn && luid > DF_INSN_LUID (other_insn))
1345 ok = false;
1347 other_insn
1348 = get_next_ref (REGNO (inc_insn.reg1), bb, reg_next_def);
1350 if (other_insn && luid > DF_INSN_LUID (other_insn))
1351 ok = false;
1354 if (dump_file)
1355 dump_inc_insn (dump_file);
1357 if (ok && find_address (&PATTERN (mem_insn.insn)) == -1)
1359 if (dump_file)
1360 dump_mem_insn (dump_file);
1361 if (try_merge ())
1363 success_in_block++;
1364 insn_is_add_or_inc = false;
1370 else
1372 insn_is_add_or_inc = false;
1373 mem_insn.insn = insn;
1374 if (find_mem (&PATTERN (insn)))
1375 success_in_block++;
1378 /* If the inc insn was merged with a mem, the inc insn is gone
1379 and there is noting to update. */
1380 if (df_insn_info *insn_info = DF_INSN_INFO_GET (insn))
1382 df_ref def, use;
1384 /* Need to update next use. */
1385 FOR_EACH_INSN_INFO_DEF (def, insn_info)
1387 reg_next_use[DF_REF_REGNO (def)] = NULL;
1388 reg_next_inc_use[DF_REF_REGNO (def)] = NULL;
1389 reg_next_def[DF_REF_REGNO (def)] = insn;
1392 FOR_EACH_INSN_INFO_USE (use, insn_info)
1394 reg_next_use[DF_REF_REGNO (use)] = insn;
1395 if (insn_is_add_or_inc)
1396 reg_next_inc_use[DF_REF_REGNO (use)] = insn;
1397 else
1398 reg_next_inc_use[DF_REF_REGNO (use)] = NULL;
1401 else if (dump_file)
1402 fprintf (dump_file, "skipping update of deleted insn %d\n",
1403 INSN_UID (insn));
1406 /* If we were successful, try again. There may have been several
1407 opportunities that were interleaved. This is rare but
1408 gcc.c-torture/compile/pr17273.c actually exhibits this. */
1409 if (success_in_block)
1411 /* In this case, we must clear these vectors since the trick of
1412 testing if the stale insn in the block will not work. */
1413 memset (reg_next_use, 0, max_reg * sizeof (rtx));
1414 memset (reg_next_inc_use, 0, max_reg * sizeof (rtx));
1415 memset (reg_next_def, 0, max_reg * sizeof (rtx));
1416 df_recompute_luids (bb);
1417 merge_in_block (max_reg, bb);
1421 /* Discover auto-inc auto-dec instructions. */
1423 namespace {
1425 const pass_data pass_data_inc_dec =
1427 RTL_PASS, /* type */
1428 "auto_inc_dec", /* name */
1429 OPTGROUP_NONE, /* optinfo_flags */
1430 TV_AUTO_INC_DEC, /* tv_id */
1431 0, /* properties_required */
1432 0, /* properties_provided */
1433 0, /* properties_destroyed */
1434 0, /* todo_flags_start */
1435 TODO_df_finish, /* todo_flags_finish */
1438 class pass_inc_dec : public rtl_opt_pass
1440 public:
1441 pass_inc_dec (gcc::context *ctxt)
1442 : rtl_opt_pass (pass_data_inc_dec, ctxt)
1445 /* opt_pass methods: */
1446 virtual bool gate (function *)
1448 if (!AUTO_INC_DEC)
1449 return false;
1451 return (optimize > 0 && flag_auto_inc_dec);
1455 unsigned int execute (function *);
1457 }; // class pass_inc_dec
1459 unsigned int
1460 pass_inc_dec::execute (function *fun ATTRIBUTE_UNUSED)
1462 if (!AUTO_INC_DEC)
1463 return 0;
1465 basic_block bb;
1466 int max_reg = max_reg_num ();
1468 if (!initialized)
1469 init_decision_table ();
1471 mem_tmp = gen_rtx_MEM (Pmode, NULL_RTX);
1473 df_note_add_problem ();
1474 df_analyze ();
1476 reg_next_use = XCNEWVEC (rtx_insn *, max_reg);
1477 reg_next_inc_use = XCNEWVEC (rtx_insn *, max_reg);
1478 reg_next_def = XCNEWVEC (rtx_insn *, max_reg);
1479 FOR_EACH_BB_FN (bb, fun)
1480 merge_in_block (max_reg, bb);
1482 free (reg_next_use);
1483 free (reg_next_inc_use);
1484 free (reg_next_def);
1486 mem_tmp = NULL;
1488 return 0;
1491 } // anon namespace
1493 rtl_opt_pass *
1494 make_pass_inc_dec (gcc::context *ctxt)
1496 return new pass_inc_dec (ctxt);