]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/regcprop.c
Add subreg_memory_offset helper functions
[thirdparty/gcc.git] / gcc / regcprop.c
CommitLineData
2d4749b6 1/* Copy propagation on hard registers for the GNU compiler.
aad93da1 2 Copyright (C) 2000-2017 Free Software Foundation, Inc.
2d4749b6 3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14 License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20#include "config.h"
21#include "system.h"
22#include "coretypes.h"
9ef16211 23#include "backend.h"
2d4749b6 24#include "rtl.h"
9ef16211 25#include "df.h"
ad7b10a2 26#include "memmodel.h"
2d4749b6 27#include "tm_p.h"
28#include "insn-config.h"
29#include "regs.h"
7c29e30e 30#include "emit-rtl.h"
31#include "recog.h"
32#include "diagnostic-core.h"
2d4749b6 33#include "addresses.h"
2d4749b6 34#include "tree-pass.h"
29f9ec8f 35#include "rtl-iter.h"
f14d8d6a 36#include "cfgrtl.h"
2d4749b6 37
38/* The following code does forward propagation of hard register copies.
39 The object is to eliminate as many dependencies as possible, so that
40 we have the most scheduling freedom. As a side effect, we also clean
41 up some silly register allocation decisions made by reload. This
42 code may be obsoleted by a new register allocator. */
43
2058ec71 44/* DEBUG_INSNs aren't changed right away, as doing so might extend the
45 lifetime of a register and get the DEBUG_INSN subsequently reset.
46 So they are queued instead, and updated only when the register is
47 used in some subsequent real insn before it is set. */
48struct queued_debug_insn_change
49{
50 struct queued_debug_insn_change *next;
0991de81 51 rtx_insn *insn;
2058ec71 52 rtx *loc;
53 rtx new_rtx;
54};
55
2d4749b6 56/* For each register, we have a list of registers that contain the same
57 value. The OLDEST_REGNO field points to the head of the list, and
58 the NEXT_REGNO field runs through the list. The MODE field indicates
59 what mode the data is known to be in; this field is VOIDmode when the
60 register is not known to contain valid data. */
61
62struct value_data_entry
63{
3754d046 64 machine_mode mode;
2d4749b6 65 unsigned int oldest_regno;
66 unsigned int next_regno;
2058ec71 67 struct queued_debug_insn_change *debug_insn_changes;
2d4749b6 68};
69
70struct value_data
71{
72 struct value_data_entry e[FIRST_PSEUDO_REGISTER];
73 unsigned int max_value_regs;
2058ec71 74 unsigned int n_debug_insn_changes;
2d4749b6 75};
76
e16712b1 77static object_allocator<queued_debug_insn_change> queued_debug_insn_change_pool
1dc6c44d 78 ("debug insn changes pool");
fe4549c4 79
59483f68 80static bool skip_debug_insn_p;
2058ec71 81
2d4749b6 82static void kill_value_one_regno (unsigned, struct value_data *);
83static void kill_value_regno (unsigned, unsigned, struct value_data *);
29f9ec8f 84static void kill_value (const_rtx, struct value_data *);
3754d046 85static void set_value_regno (unsigned, machine_mode, struct value_data *);
2d4749b6 86static void init_value_data (struct value_data *);
87static void kill_clobbered_value (rtx, const_rtx, void *);
88static void kill_set_value (rtx, const_rtx, void *);
2d4749b6 89static void copy_value (rtx, rtx, struct value_data *);
3754d046 90static bool mode_change_ok (machine_mode, machine_mode,
2d4749b6 91 unsigned int);
3754d046 92static rtx maybe_mode_change (machine_mode, machine_mode,
93 machine_mode, unsigned int, unsigned int);
2d4749b6 94static rtx find_oldest_value_reg (enum reg_class, rtx, struct value_data *);
0991de81 95static bool replace_oldest_value_reg (rtx *, enum reg_class, rtx_insn *,
2d4749b6 96 struct value_data *);
97static bool replace_oldest_value_addr (rtx *, enum reg_class,
3754d046 98 machine_mode, addr_space_t,
0991de81 99 rtx_insn *, struct value_data *);
100static bool replace_oldest_value_mem (rtx, rtx_insn *, struct value_data *);
2d4749b6 101static bool copyprop_hardreg_forward_1 (basic_block, struct value_data *);
102extern void debug_value_data (struct value_data *);
2d4749b6 103static void validate_value_data (struct value_data *);
2d4749b6 104
2058ec71 105/* Free all queued updates for DEBUG_INSNs that change some reg to
106 register REGNO. */
107
108static void
109free_debug_insn_changes (struct value_data *vd, unsigned int regno)
110{
111 struct queued_debug_insn_change *cur, *next;
112 for (cur = vd->e[regno].debug_insn_changes; cur; cur = next)
113 {
114 next = cur->next;
115 --vd->n_debug_insn_changes;
e16712b1 116 queued_debug_insn_change_pool.remove (cur);
2058ec71 117 }
118 vd->e[regno].debug_insn_changes = NULL;
119}
120
2d4749b6 121/* Kill register REGNO. This involves removing it from any value
122 lists, and resetting the value mode to VOIDmode. This is only a
123 helper function; it does not handle any hard registers overlapping
124 with REGNO. */
125
126static void
127kill_value_one_regno (unsigned int regno, struct value_data *vd)
128{
129 unsigned int i, next;
130
131 if (vd->e[regno].oldest_regno != regno)
132 {
133 for (i = vd->e[regno].oldest_regno;
134 vd->e[i].next_regno != regno;
135 i = vd->e[i].next_regno)
136 continue;
137 vd->e[i].next_regno = vd->e[regno].next_regno;
138 }
139 else if ((next = vd->e[regno].next_regno) != INVALID_REGNUM)
140 {
141 for (i = next; i != INVALID_REGNUM; i = vd->e[i].next_regno)
142 vd->e[i].oldest_regno = next;
143 }
144
145 vd->e[regno].mode = VOIDmode;
146 vd->e[regno].oldest_regno = regno;
147 vd->e[regno].next_regno = INVALID_REGNUM;
2058ec71 148 if (vd->e[regno].debug_insn_changes)
149 free_debug_insn_changes (vd, regno);
2d4749b6 150
382ecba7 151 if (flag_checking)
152 validate_value_data (vd);
2d4749b6 153}
154
155/* Kill the value in register REGNO for NREGS, and any other registers
156 whose values overlap. */
157
158static void
159kill_value_regno (unsigned int regno, unsigned int nregs,
160 struct value_data *vd)
161{
162 unsigned int j;
163
164 /* Kill the value we're told to kill. */
165 for (j = 0; j < nregs; ++j)
166 kill_value_one_regno (regno + j, vd);
167
168 /* Kill everything that overlapped what we're told to kill. */
169 if (regno < vd->max_value_regs)
170 j = 0;
171 else
172 j = regno - vd->max_value_regs;
173 for (; j < regno; ++j)
174 {
175 unsigned int i, n;
176 if (vd->e[j].mode == VOIDmode)
177 continue;
178 n = hard_regno_nregs[j][vd->e[j].mode];
179 if (j + n > regno)
180 for (i = 0; i < n; ++i)
181 kill_value_one_regno (j + i, vd);
182 }
183}
184
185/* Kill X. This is a convenience function wrapping kill_value_regno
186 so that we mind the mode the register is in. */
187
188static void
29f9ec8f 189kill_value (const_rtx x, struct value_data *vd)
2d4749b6 190{
2d4749b6 191 if (GET_CODE (x) == SUBREG)
192 {
29f9ec8f 193 rtx tmp = simplify_subreg (GET_MODE (x), SUBREG_REG (x),
194 GET_MODE (SUBREG_REG (x)), SUBREG_BYTE (x));
195 x = tmp ? tmp : SUBREG_REG (x);
2d4749b6 196 }
197 if (REG_P (x))
0933f1d9 198 kill_value_regno (REGNO (x), REG_NREGS (x), vd);
2d4749b6 199}
200
201/* Remember that REGNO is valid in MODE. */
202
203static void
3754d046 204set_value_regno (unsigned int regno, machine_mode mode,
2d4749b6 205 struct value_data *vd)
206{
207 unsigned int nregs;
208
209 vd->e[regno].mode = mode;
210
211 nregs = hard_regno_nregs[regno][mode];
212 if (nregs > vd->max_value_regs)
213 vd->max_value_regs = nregs;
214}
215
216/* Initialize VD such that there are no known relationships between regs. */
217
218static void
219init_value_data (struct value_data *vd)
220{
221 int i;
222 for (i = 0; i < FIRST_PSEUDO_REGISTER; ++i)
223 {
224 vd->e[i].mode = VOIDmode;
225 vd->e[i].oldest_regno = i;
226 vd->e[i].next_regno = INVALID_REGNUM;
2058ec71 227 vd->e[i].debug_insn_changes = NULL;
2d4749b6 228 }
229 vd->max_value_regs = 0;
2058ec71 230 vd->n_debug_insn_changes = 0;
2d4749b6 231}
232
233/* Called through note_stores. If X is clobbered, kill its value. */
234
235static void
236kill_clobbered_value (rtx x, const_rtx set, void *data)
237{
238 struct value_data *const vd = (struct value_data *) data;
239 if (GET_CODE (set) == CLOBBER)
240 kill_value (x, vd);
241}
242
c8010b80 243/* A structure passed as data to kill_set_value through note_stores. */
244struct kill_set_value_data
245{
246 struct value_data *vd;
247 rtx ignore_set_reg;
248};
249
2d4749b6 250/* Called through note_stores. If X is set, not clobbered, kill its
251 current value and install it as the root of its own value list. */
252
253static void
254kill_set_value (rtx x, const_rtx set, void *data)
255{
c8010b80 256 struct kill_set_value_data *ksvd = (struct kill_set_value_data *) data;
257 if (rtx_equal_p (x, ksvd->ignore_set_reg))
258 return;
2d4749b6 259 if (GET_CODE (set) != CLOBBER)
260 {
c8010b80 261 kill_value (x, ksvd->vd);
2d4749b6 262 if (REG_P (x))
c8010b80 263 set_value_regno (REGNO (x), GET_MODE (x), ksvd->vd);
2d4749b6 264 }
265}
266
29f9ec8f 267/* Kill any register used in X as the base of an auto-increment expression,
268 and install that register as the root of its own value list. */
2d4749b6 269
29f9ec8f 270static void
8108f3f0 271kill_autoinc_value (rtx_insn *insn, struct value_data *vd)
2d4749b6 272{
29f9ec8f 273 subrtx_iterator::array_type array;
274 FOR_EACH_SUBRTX (iter, array, PATTERN (insn), NONCONST)
2d4749b6 275 {
29f9ec8f 276 const_rtx x = *iter;
277 if (GET_RTX_CLASS (GET_CODE (x)) == RTX_AUTOINC)
278 {
279 x = XEXP (x, 0);
280 kill_value (x, vd);
281 set_value_regno (REGNO (x), GET_MODE (x), vd);
282 iter.skip_subrtxes ();
283 }
2d4749b6 284 }
2d4749b6 285}
286
287/* Assert that SRC has been copied to DEST. Adjust the data structures
288 to reflect that SRC contains an older copy of the shared value. */
289
290static void
291copy_value (rtx dest, rtx src, struct value_data *vd)
292{
293 unsigned int dr = REGNO (dest);
294 unsigned int sr = REGNO (src);
295 unsigned int dn, sn;
296 unsigned int i;
297
298 /* ??? At present, it's possible to see noop sets. It'd be nice if
299 this were cleaned up beforehand... */
300 if (sr == dr)
301 return;
302
303 /* Do not propagate copies to the stack pointer, as that can leave
304 memory accesses with no scheduling dependency on the stack update. */
305 if (dr == STACK_POINTER_REGNUM)
306 return;
307
308 /* Likewise with the frame pointer, if we're using one. */
309 if (frame_pointer_needed && dr == HARD_FRAME_POINTER_REGNUM)
310 return;
311
312 /* Do not propagate copies to fixed or global registers, patterns
313 can be relying to see particular fixed register or users can
314 expect the chosen global register in asm. */
315 if (fixed_regs[dr] || global_regs[dr])
316 return;
317
318 /* If SRC and DEST overlap, don't record anything. */
0933f1d9 319 dn = REG_NREGS (dest);
320 sn = REG_NREGS (src);
2d4749b6 321 if ((dr > sr && dr < sr + sn)
322 || (sr > dr && sr < dr + dn))
323 return;
324
325 /* If SRC had no assigned mode (i.e. we didn't know it was live)
326 assign it now and assume the value came from an input argument
327 or somesuch. */
328 if (vd->e[sr].mode == VOIDmode)
329 set_value_regno (sr, vd->e[dr].mode, vd);
330
331 /* If we are narrowing the input to a smaller number of hard regs,
332 and it is in big endian, we are really extracting a high part.
333 Since we generally associate a low part of a value with the value itself,
334 we must not do the same for the high part.
335 Note we can still get low parts for the same mode combination through
336 a two-step copy involving differently sized hard regs.
47ae02b7 337 Assume hard regs fr* are 32 bits each, while r* are 64 bits each:
2d4749b6 338 (set (reg:DI r0) (reg:DI fr0))
339 (set (reg:SI fr2) (reg:SI r0))
340 loads the low part of (reg:DI fr0) - i.e. fr1 - into fr2, while:
341 (set (reg:SI fr2) (reg:SI fr0))
342 loads the high part of (reg:DI fr0) into fr2.
343
344 We can't properly represent the latter case in our tables, so don't
345 record anything then. */
346 else if (sn < (unsigned int) hard_regno_nregs[sr][vd->e[sr].mode]
347 && (GET_MODE_SIZE (vd->e[sr].mode) > UNITS_PER_WORD
348 ? WORDS_BIG_ENDIAN : BYTES_BIG_ENDIAN))
349 return;
350
351 /* If SRC had been assigned a mode narrower than the copy, we can't
352 link DEST into the chain, because not all of the pieces of the
353 copy came from oldest_regno. */
354 else if (sn > (unsigned int) hard_regno_nregs[sr][vd->e[sr].mode])
355 return;
356
357 /* Link DR at the end of the value chain used by SR. */
358
359 vd->e[dr].oldest_regno = vd->e[sr].oldest_regno;
360
361 for (i = sr; vd->e[i].next_regno != INVALID_REGNUM; i = vd->e[i].next_regno)
362 continue;
363 vd->e[i].next_regno = dr;
364
382ecba7 365 if (flag_checking)
366 validate_value_data (vd);
2d4749b6 367}
368
369/* Return true if a mode change from ORIG to NEW is allowed for REGNO. */
370
371static bool
3754d046 372mode_change_ok (machine_mode orig_mode, machine_mode new_mode,
2d4749b6 373 unsigned int regno ATTRIBUTE_UNUSED)
374{
974534ab 375 if (partial_subreg_p (orig_mode, new_mode))
2d4749b6 376 return false;
377
378#ifdef CANNOT_CHANGE_MODE_CLASS
379 return !REG_CANNOT_CHANGE_MODE_P (regno, orig_mode, new_mode);
380#endif
381
382 return true;
383}
384
385/* Register REGNO was originally set in ORIG_MODE. It - or a copy of it -
386 was copied in COPY_MODE to COPY_REGNO, and then COPY_REGNO was accessed
387 in NEW_MODE.
388 Return a NEW_MODE rtx for REGNO if that's OK, otherwise return NULL_RTX. */
389
390static rtx
3754d046 391maybe_mode_change (machine_mode orig_mode, machine_mode copy_mode,
392 machine_mode new_mode, unsigned int regno,
2d4749b6 393 unsigned int copy_regno ATTRIBUTE_UNUSED)
394{
974534ab 395 if (partial_subreg_p (copy_mode, orig_mode)
396 && partial_subreg_p (copy_mode, new_mode))
2d4749b6 397 return NULL_RTX;
398
e206fe62 399 /* Avoid creating multiple copies of the stack pointer. Some ports
400 assume there is one and only one stack pointer.
401
402 It's unclear if we need to do the same for other special registers. */
403 if (regno == STACK_POINTER_REGNUM)
404 return NULL_RTX;
405
2d4749b6 406 if (orig_mode == new_mode)
15183fd2 407 return gen_raw_REG (new_mode, regno);
2d4749b6 408 else if (mode_change_ok (orig_mode, new_mode, regno))
409 {
410 int copy_nregs = hard_regno_nregs[copy_regno][copy_mode];
411 int use_nregs = hard_regno_nregs[copy_regno][new_mode];
412 int copy_offset
413 = GET_MODE_SIZE (copy_mode) / copy_nregs * (copy_nregs - use_nregs);
414 int offset
415 = GET_MODE_SIZE (orig_mode) - GET_MODE_SIZE (new_mode) - copy_offset;
416 int byteoffset = offset % UNITS_PER_WORD;
417 int wordoffset = offset - byteoffset;
418
419 offset = ((WORDS_BIG_ENDIAN ? wordoffset : 0)
420 + (BYTES_BIG_ENDIAN ? byteoffset : 0));
3a45e441 421 regno += subreg_regno_offset (regno, orig_mode, offset, new_mode);
422 if (HARD_REGNO_MODE_OK (regno, new_mode))
15183fd2 423 return gen_raw_REG (new_mode, regno);
2d4749b6 424 }
425 return NULL_RTX;
426}
427
428/* Find the oldest copy of the value contained in REGNO that is in
429 register class CL and has mode MODE. If found, return an rtx
430 of that oldest register, otherwise return NULL. */
431
432static rtx
433find_oldest_value_reg (enum reg_class cl, rtx reg, struct value_data *vd)
434{
435 unsigned int regno = REGNO (reg);
3754d046 436 machine_mode mode = GET_MODE (reg);
2d4749b6 437 unsigned int i;
438
439 /* If we are accessing REG in some mode other that what we set it in,
440 make sure that the replacement is valid. In particular, consider
441 (set (reg:DI r11) (...))
442 (set (reg:SI r9) (reg:SI r11))
443 (set (reg:SI r10) (...))
444 (set (...) (reg:DI r9))
445 Replacing r9 with r11 is invalid. */
446 if (mode != vd->e[regno].mode)
447 {
448 if (hard_regno_nregs[regno][mode]
449 > hard_regno_nregs[regno][vd->e[regno].mode])
450 return NULL_RTX;
451 }
452
453 for (i = vd->e[regno].oldest_regno; i != regno; i = vd->e[i].next_regno)
454 {
3754d046 455 machine_mode oldmode = vd->e[i].mode;
2d4749b6 456 rtx new_rtx;
457
458 if (!in_hard_reg_set_p (reg_class_contents[cl], mode, i))
75219367 459 continue;
2d4749b6 460
461 new_rtx = maybe_mode_change (oldmode, vd->e[regno].mode, mode, i, regno);
462 if (new_rtx)
463 {
464 ORIGINAL_REGNO (new_rtx) = ORIGINAL_REGNO (reg);
465 REG_ATTRS (new_rtx) = REG_ATTRS (reg);
466 REG_POINTER (new_rtx) = REG_POINTER (reg);
467 return new_rtx;
468 }
469 }
470
471 return NULL_RTX;
472}
473
474/* If possible, replace the register at *LOC with the oldest register
475 in register class CL. Return true if successfully replaced. */
476
477static bool
0991de81 478replace_oldest_value_reg (rtx *loc, enum reg_class cl, rtx_insn *insn,
2d4749b6 479 struct value_data *vd)
480{
481 rtx new_rtx = find_oldest_value_reg (cl, *loc, vd);
59483f68 482 if (new_rtx && (!DEBUG_INSN_P (insn) || !skip_debug_insn_p))
2d4749b6 483 {
2058ec71 484 if (DEBUG_INSN_P (insn))
485 {
486 struct queued_debug_insn_change *change;
487
488 if (dump_file)
489 fprintf (dump_file, "debug_insn %u: queued replacing reg %u with %u\n",
490 INSN_UID (insn), REGNO (*loc), REGNO (new_rtx));
491
e16712b1 492 change = queued_debug_insn_change_pool.allocate ();
2058ec71 493 change->next = vd->e[REGNO (new_rtx)].debug_insn_changes;
494 change->insn = insn;
495 change->loc = loc;
496 change->new_rtx = new_rtx;
497 vd->e[REGNO (new_rtx)].debug_insn_changes = change;
498 ++vd->n_debug_insn_changes;
499 return true;
500 }
2d4749b6 501 if (dump_file)
502 fprintf (dump_file, "insn %u: replaced reg %u with %u\n",
503 INSN_UID (insn), REGNO (*loc), REGNO (new_rtx));
504
505 validate_change (insn, loc, new_rtx, 1);
506 return true;
507 }
508 return false;
509}
510
511/* Similar to replace_oldest_value_reg, but *LOC contains an address.
512 Adapted from find_reloads_address_1. CL is INDEX_REG_CLASS or
513 BASE_REG_CLASS depending on how the register is being considered. */
514
515static bool
516replace_oldest_value_addr (rtx *loc, enum reg_class cl,
3754d046 517 machine_mode mode, addr_space_t as,
0991de81 518 rtx_insn *insn, struct value_data *vd)
2d4749b6 519{
520 rtx x = *loc;
521 RTX_CODE code = GET_CODE (x);
522 const char *fmt;
523 int i, j;
524 bool changed = false;
525
526 switch (code)
527 {
528 case PLUS:
9845d120 529 if (DEBUG_INSN_P (insn))
530 break;
531
2d4749b6 532 {
533 rtx orig_op0 = XEXP (x, 0);
534 rtx orig_op1 = XEXP (x, 1);
535 RTX_CODE code0 = GET_CODE (orig_op0);
536 RTX_CODE code1 = GET_CODE (orig_op1);
537 rtx op0 = orig_op0;
538 rtx op1 = orig_op1;
539 rtx *locI = NULL;
540 rtx *locB = NULL;
541 enum rtx_code index_code = SCRATCH;
542
543 if (GET_CODE (op0) == SUBREG)
544 {
545 op0 = SUBREG_REG (op0);
546 code0 = GET_CODE (op0);
547 }
548
549 if (GET_CODE (op1) == SUBREG)
550 {
551 op1 = SUBREG_REG (op1);
552 code1 = GET_CODE (op1);
553 }
554
555 if (code0 == MULT || code0 == SIGN_EXTEND || code0 == TRUNCATE
556 || code0 == ZERO_EXTEND || code1 == MEM)
557 {
558 locI = &XEXP (x, 0);
559 locB = &XEXP (x, 1);
560 index_code = GET_CODE (*locI);
561 }
562 else if (code1 == MULT || code1 == SIGN_EXTEND || code1 == TRUNCATE
563 || code1 == ZERO_EXTEND || code0 == MEM)
564 {
565 locI = &XEXP (x, 1);
566 locB = &XEXP (x, 0);
567 index_code = GET_CODE (*locI);
568 }
569 else if (code0 == CONST_INT || code0 == CONST
570 || code0 == SYMBOL_REF || code0 == LABEL_REF)
571 {
572 locB = &XEXP (x, 1);
573 index_code = GET_CODE (XEXP (x, 0));
574 }
575 else if (code1 == CONST_INT || code1 == CONST
576 || code1 == SYMBOL_REF || code1 == LABEL_REF)
577 {
578 locB = &XEXP (x, 0);
579 index_code = GET_CODE (XEXP (x, 1));
580 }
581 else if (code0 == REG && code1 == REG)
582 {
583 int index_op;
584 unsigned regno0 = REGNO (op0), regno1 = REGNO (op1);
585
586 if (REGNO_OK_FOR_INDEX_P (regno1)
f8a8fc7b 587 && regno_ok_for_base_p (regno0, mode, as, PLUS, REG))
2d4749b6 588 index_op = 1;
589 else if (REGNO_OK_FOR_INDEX_P (regno0)
f8a8fc7b 590 && regno_ok_for_base_p (regno1, mode, as, PLUS, REG))
2d4749b6 591 index_op = 0;
f8a8fc7b 592 else if (regno_ok_for_base_p (regno0, mode, as, PLUS, REG)
2d4749b6 593 || REGNO_OK_FOR_INDEX_P (regno1))
594 index_op = 1;
f8a8fc7b 595 else if (regno_ok_for_base_p (regno1, mode, as, PLUS, REG))
2d4749b6 596 index_op = 0;
597 else
598 index_op = 1;
599
600 locI = &XEXP (x, index_op);
601 locB = &XEXP (x, !index_op);
602 index_code = GET_CODE (*locI);
603 }
604 else if (code0 == REG)
605 {
606 locI = &XEXP (x, 0);
607 locB = &XEXP (x, 1);
608 index_code = GET_CODE (*locI);
609 }
610 else if (code1 == REG)
611 {
612 locI = &XEXP (x, 1);
613 locB = &XEXP (x, 0);
614 index_code = GET_CODE (*locI);
615 }
616
617 if (locI)
f8a8fc7b 618 changed |= replace_oldest_value_addr (locI, INDEX_REG_CLASS,
619 mode, as, insn, vd);
2d4749b6 620 if (locB)
621 changed |= replace_oldest_value_addr (locB,
f8a8fc7b 622 base_reg_class (mode, as, PLUS,
2d4749b6 623 index_code),
f8a8fc7b 624 mode, as, insn, vd);
2d4749b6 625 return changed;
626 }
627
628 case POST_INC:
629 case POST_DEC:
630 case POST_MODIFY:
631 case PRE_INC:
632 case PRE_DEC:
633 case PRE_MODIFY:
634 return false;
635
636 case MEM:
637 return replace_oldest_value_mem (x, insn, vd);
638
639 case REG:
640 return replace_oldest_value_reg (loc, cl, insn, vd);
641
642 default:
643 break;
644 }
645
646 fmt = GET_RTX_FORMAT (code);
647 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
648 {
649 if (fmt[i] == 'e')
f8a8fc7b 650 changed |= replace_oldest_value_addr (&XEXP (x, i), cl, mode, as,
2d4749b6 651 insn, vd);
652 else if (fmt[i] == 'E')
653 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
654 changed |= replace_oldest_value_addr (&XVECEXP (x, i, j), cl,
f8a8fc7b 655 mode, as, insn, vd);
2d4749b6 656 }
657
658 return changed;
659}
660
661/* Similar to replace_oldest_value_reg, but X contains a memory. */
662
663static bool
0991de81 664replace_oldest_value_mem (rtx x, rtx_insn *insn, struct value_data *vd)
2d4749b6 665{
9845d120 666 enum reg_class cl;
667
668 if (DEBUG_INSN_P (insn))
669 cl = ALL_REGS;
670 else
f8a8fc7b 671 cl = base_reg_class (GET_MODE (x), MEM_ADDR_SPACE (x), MEM, SCRATCH);
9845d120 672
673 return replace_oldest_value_addr (&XEXP (x, 0), cl,
f8a8fc7b 674 GET_MODE (x), MEM_ADDR_SPACE (x),
675 insn, vd);
2d4749b6 676}
677
2058ec71 678/* Apply all queued updates for DEBUG_INSNs that change some reg to
679 register REGNO. */
680
681static void
682apply_debug_insn_changes (struct value_data *vd, unsigned int regno)
683{
684 struct queued_debug_insn_change *change;
0991de81 685 rtx_insn *last_insn = vd->e[regno].debug_insn_changes->insn;
2058ec71 686
687 for (change = vd->e[regno].debug_insn_changes;
688 change;
689 change = change->next)
690 {
691 if (last_insn != change->insn)
692 {
693 apply_change_group ();
694 last_insn = change->insn;
695 }
696 validate_change (change->insn, change->loc, change->new_rtx, 1);
697 }
698 apply_change_group ();
699}
700
2058ec71 701/* Called via note_uses, for all used registers in a real insn
702 apply DEBUG_INSN changes that change registers to the used
703 registers. */
704
705static void
6243e03f 706cprop_find_used_regs (rtx *loc, void *data)
2058ec71 707{
6243e03f 708 struct value_data *const vd = (struct value_data *) data;
709 subrtx_iterator::array_type array;
710 FOR_EACH_SUBRTX (iter, array, *loc, NONCONST)
711 {
712 const_rtx x = *iter;
713 if (REG_P (x))
714 {
715 unsigned int regno = REGNO (x);
716 if (vd->e[regno].debug_insn_changes)
717 {
718 apply_debug_insn_changes (vd, regno);
719 free_debug_insn_changes (vd, regno);
720 }
721 }
722 }
2058ec71 723}
724
9c4a0128 725/* Apply clobbers of INSN in PATTERN and C_I_F_U to value_data VD. */
726
727static void
728kill_clobbered_values (rtx_insn *insn, struct value_data *vd)
729{
730 note_stores (PATTERN (insn), kill_clobbered_value, vd);
731
732 if (CALL_P (insn))
733 {
734 rtx exp;
735
736 for (exp = CALL_INSN_FUNCTION_USAGE (insn); exp; exp = XEXP (exp, 1))
737 {
738 rtx x = XEXP (exp, 0);
739 if (GET_CODE (x) == CLOBBER)
740 kill_value (SET_DEST (x), vd);
741 }
742 }
743}
744
2d4749b6 745/* Perform the forward copy propagation on basic block BB. */
746
747static bool
748copyprop_hardreg_forward_1 (basic_block bb, struct value_data *vd)
749{
9845d120 750 bool anything_changed = false;
f14d8d6a 751 rtx_insn *insn, *next;
2d4749b6 752
f14d8d6a 753 for (insn = BB_HEAD (bb); ; insn = next)
2d4749b6 754 {
757fefec 755 int n_ops, i, predicated;
2d4749b6 756 bool is_asm, any_replacements;
757 rtx set;
ff5a75fc 758 rtx link;
2d4749b6 759 bool replaced[MAX_RECOG_OPERANDS];
9845d120 760 bool changed = false;
c8010b80 761 struct kill_set_value_data ksvd;
2d4749b6 762
f14d8d6a 763 next = NEXT_INSN (insn);
9845d120 764 if (!NONDEBUG_INSN_P (insn))
2d4749b6 765 {
9845d120 766 if (DEBUG_INSN_P (insn))
767 {
768 rtx loc = INSN_VAR_LOCATION_LOC (insn);
2058ec71 769 if (!VAR_LOC_UNKNOWN_P (loc))
770 replace_oldest_value_addr (&INSN_VAR_LOCATION_LOC (insn),
771 ALL_REGS, GET_MODE (loc),
f8a8fc7b 772 ADDR_SPACE_GENERIC, insn, vd);
9845d120 773 }
774
2d4749b6 775 if (insn == BB_END (bb))
776 break;
777 else
778 continue;
779 }
780
781 set = single_set (insn);
9c1ff919 782
783 /* Detect noop sets and remove them before processing side effects. */
784 if (set && REG_P (SET_DEST (set)) && REG_P (SET_SRC (set)))
785 {
786 unsigned int regno = REGNO (SET_SRC (set));
787 rtx r1 = find_oldest_value_reg (REGNO_REG_CLASS (regno),
788 SET_DEST (set), vd);
789 rtx r2 = find_oldest_value_reg (REGNO_REG_CLASS (regno),
790 SET_SRC (set), vd);
791 if (rtx_equal_p (r1 ? r1 : SET_DEST (set), r2 ? r2 : SET_SRC (set)))
792 {
793 bool last = insn == BB_END (bb);
9c1ff919 794 delete_insn (insn);
795 if (last)
796 break;
797 continue;
798 }
799 }
800
835b8178 801 extract_constrain_insn (insn);
8eaaac4d 802 preprocess_constraints (insn);
89a7a6a5 803 const operand_alternative *op_alt = which_op_alt ();
2d4749b6 804 n_ops = recog_data.n_operands;
805 is_asm = asm_noperands (PATTERN (insn)) >= 0;
806
89a7a6a5 807 /* Simplify the code below by promoting OP_OUT to OP_INOUT
2d4749b6 808 in predicated instructions. */
809
810 predicated = GET_CODE (PATTERN (insn)) == COND_EXEC;
811 for (i = 0; i < n_ops; ++i)
812 {
757fefec 813 int matches = op_alt[i].matches;
757fefec 814 if (matches >= 0 || op_alt[i].matched >= 0
2d4749b6 815 || (predicated && recog_data.operand_type[i] == OP_OUT))
816 recog_data.operand_type[i] = OP_INOUT;
817 }
818
2058ec71 819 /* Apply changes to earlier DEBUG_INSNs if possible. */
820 if (vd->n_debug_insn_changes)
821 note_uses (&PATTERN (insn), cprop_find_used_regs, vd);
822
2d4749b6 823 /* For each earlyclobber operand, zap the value data. */
824 for (i = 0; i < n_ops; i++)
757fefec 825 if (op_alt[i].earlyclobber)
2d4749b6 826 kill_value (recog_data.operand[i], vd);
827
828 /* Within asms, a clobber cannot overlap inputs or outputs.
829 I wouldn't think this were true for regular insns, but
830 scan_rtx treats them like that... */
9c4a0128 831 kill_clobbered_values (insn, vd);
2d4749b6 832
833 /* Kill all auto-incremented values. */
834 /* ??? REG_INC is useless, since stack pushes aren't done that way. */
29f9ec8f 835 kill_autoinc_value (insn, vd);
2d4749b6 836
837 /* Kill all early-clobbered operands. */
838 for (i = 0; i < n_ops; i++)
757fefec 839 if (op_alt[i].earlyclobber)
2d4749b6 840 kill_value (recog_data.operand[i], vd);
841
ff5a75fc 842 /* If we have dead sets in the insn, then we need to note these as we
843 would clobbers. */
844 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
845 {
846 if (REG_NOTE_KIND (link) == REG_UNUSED)
847 {
848 kill_value (XEXP (link, 0), vd);
849 /* Furthermore, if the insn looked like a single-set,
850 but the dead store kills the source value of that
851 set, then we can no-longer use the plain move
852 special case below. */
853 if (set
854 && reg_overlap_mentioned_p (XEXP (link, 0), SET_SRC (set)))
855 set = NULL;
856 }
857 }
858
2d4749b6 859 /* Special-case plain move instructions, since we may well
860 be able to do the move from a different register class. */
861 if (set && REG_P (SET_SRC (set)))
862 {
863 rtx src = SET_SRC (set);
864 unsigned int regno = REGNO (src);
3754d046 865 machine_mode mode = GET_MODE (src);
2d4749b6 866 unsigned int i;
867 rtx new_rtx;
868
869 /* If we are accessing SRC in some mode other that what we
870 set it in, make sure that the replacement is valid. */
871 if (mode != vd->e[regno].mode)
872 {
873 if (hard_regno_nregs[regno][mode]
874 > hard_regno_nregs[regno][vd->e[regno].mode])
875 goto no_move_special_case;
417491d1 876
877 /* And likewise, if we are narrowing on big endian the transformation
878 is also invalid. */
879 if (hard_regno_nregs[regno][mode]
880 < hard_regno_nregs[regno][vd->e[regno].mode]
881 && (GET_MODE_SIZE (vd->e[regno].mode) > UNITS_PER_WORD
882 ? WORDS_BIG_ENDIAN : BYTES_BIG_ENDIAN))
883 goto no_move_special_case;
2d4749b6 884 }
885
886 /* If the destination is also a register, try to find a source
887 register in the same class. */
888 if (REG_P (SET_DEST (set)))
889 {
9c1ff919 890 new_rtx = find_oldest_value_reg (REGNO_REG_CLASS (regno),
891 src, vd);
892
2d4749b6 893 if (new_rtx && validate_change (insn, &SET_SRC (set), new_rtx, 0))
894 {
895 if (dump_file)
896 fprintf (dump_file,
897 "insn %u: replaced reg %u with %u\n",
898 INSN_UID (insn), regno, REGNO (new_rtx));
899 changed = true;
900 goto did_replacement;
901 }
cc7416ff 902 /* We need to re-extract as validate_change clobbers
903 recog_data. */
835b8178 904 extract_constrain_insn (insn);
8eaaac4d 905 preprocess_constraints (insn);
2d4749b6 906 }
907
908 /* Otherwise, try all valid registers and see if its valid. */
909 for (i = vd->e[regno].oldest_regno; i != regno;
910 i = vd->e[i].next_regno)
911 {
912 new_rtx = maybe_mode_change (vd->e[i].mode, vd->e[regno].mode,
913 mode, i, regno);
914 if (new_rtx != NULL_RTX)
915 {
916 if (validate_change (insn, &SET_SRC (set), new_rtx, 0))
917 {
918 ORIGINAL_REGNO (new_rtx) = ORIGINAL_REGNO (src);
919 REG_ATTRS (new_rtx) = REG_ATTRS (src);
920 REG_POINTER (new_rtx) = REG_POINTER (src);
921 if (dump_file)
922 fprintf (dump_file,
923 "insn %u: replaced reg %u with %u\n",
924 INSN_UID (insn), regno, REGNO (new_rtx));
925 changed = true;
926 goto did_replacement;
927 }
cc7416ff 928 /* We need to re-extract as validate_change clobbers
929 recog_data. */
835b8178 930 extract_constrain_insn (insn);
8eaaac4d 931 preprocess_constraints (insn);
2d4749b6 932 }
933 }
934 }
935 no_move_special_case:
936
937 any_replacements = false;
938
939 /* For each input operand, replace a hard register with the
940 eldest live copy that's in an appropriate register class. */
941 for (i = 0; i < n_ops; i++)
942 {
943 replaced[i] = false;
944
945 /* Don't scan match_operand here, since we've no reg class
946 information to pass down. Any operands that we could
947 substitute in will be represented elsewhere. */
948 if (recog_data.constraints[i][0] == '\0')
949 continue;
950
951 /* Don't replace in asms intentionally referencing hard regs. */
952 if (is_asm && REG_P (recog_data.operand[i])
953 && (REGNO (recog_data.operand[i])
954 == ORIGINAL_REGNO (recog_data.operand[i])))
955 continue;
956
957 if (recog_data.operand_type[i] == OP_IN)
958 {
757fefec 959 if (op_alt[i].is_address)
2d4749b6 960 replaced[i]
961 = replace_oldest_value_addr (recog_data.operand_loc[i],
89a7a6a5 962 alternative_class (op_alt, i),
963 VOIDmode, ADDR_SPACE_GENERIC,
964 insn, vd);
2d4749b6 965 else if (REG_P (recog_data.operand[i]))
966 replaced[i]
967 = replace_oldest_value_reg (recog_data.operand_loc[i],
89a7a6a5 968 alternative_class (op_alt, i),
969 insn, vd);
2d4749b6 970 else if (MEM_P (recog_data.operand[i]))
971 replaced[i] = replace_oldest_value_mem (recog_data.operand[i],
972 insn, vd);
973 }
974 else if (MEM_P (recog_data.operand[i]))
975 replaced[i] = replace_oldest_value_mem (recog_data.operand[i],
976 insn, vd);
977
978 /* If we performed any replacement, update match_dups. */
979 if (replaced[i])
980 {
981 int j;
982 rtx new_rtx;
983
984 new_rtx = *recog_data.operand_loc[i];
985 recog_data.operand[i] = new_rtx;
986 for (j = 0; j < recog_data.n_dups; j++)
987 if (recog_data.dup_num[j] == i)
988 validate_unshare_change (insn, recog_data.dup_loc[j], new_rtx, 1);
989
990 any_replacements = true;
991 }
992 }
993
994 if (any_replacements)
995 {
996 if (! apply_change_group ())
997 {
998 for (i = 0; i < n_ops; i++)
999 if (replaced[i])
1000 {
1001 rtx old = *recog_data.operand_loc[i];
1002 recog_data.operand[i] = old;
1003 }
1004
1005 if (dump_file)
1006 fprintf (dump_file,
1007 "insn %u: reg replacements not verified\n",
1008 INSN_UID (insn));
1009 }
1010 else
1011 changed = true;
1012 }
1013
1014 did_replacement:
9845d120 1015 if (changed)
c7458ee3 1016 {
1017 anything_changed = true;
1018
1019 /* If something changed, perhaps further changes to earlier
1020 DEBUG_INSNs can be applied. */
1021 if (vd->n_debug_insn_changes)
1022 note_uses (&PATTERN (insn), cprop_find_used_regs, vd);
1023 }
9845d120 1024
c8010b80 1025 ksvd.vd = vd;
1026 ksvd.ignore_set_reg = NULL_RTX;
1027
2d4749b6 1028 /* Clobber call-clobbered registers. */
1029 if (CALL_P (insn))
c8010b80 1030 {
24ec6636 1031 unsigned int set_regno = INVALID_REGNUM;
1032 unsigned int set_nregs = 0;
1033 unsigned int regno;
c8010b80 1034 rtx exp;
7f73851f 1035 HARD_REG_SET regs_invalidated_by_this_call;
24ec6636 1036
c8010b80 1037 for (exp = CALL_INSN_FUNCTION_USAGE (insn); exp; exp = XEXP (exp, 1))
1038 {
1039 rtx x = XEXP (exp, 0);
1040 if (GET_CODE (x) == SET)
1041 {
1042 rtx dest = SET_DEST (x);
1043 kill_value (dest, vd);
1044 set_value_regno (REGNO (dest), GET_MODE (dest), vd);
1045 copy_value (dest, SET_SRC (x), vd);
1046 ksvd.ignore_set_reg = dest;
1047 set_regno = REGNO (dest);
0933f1d9 1048 set_nregs = REG_NREGS (dest);
c8010b80 1049 break;
1050 }
1051 }
24ec6636 1052
7f73851f 1053 get_call_reg_set_usage (insn,
1054 &regs_invalidated_by_this_call,
1055 regs_invalidated_by_call);
1aafbb7e 1056 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
7f73851f 1057 if ((TEST_HARD_REG_BIT (regs_invalidated_by_this_call, regno)
1aafbb7e 1058 || HARD_REGNO_CALL_PART_CLOBBERED (regno, vd->e[regno].mode))
1059 && (regno < set_regno || regno >= set_regno + set_nregs))
24ec6636 1060 kill_value_regno (regno, 1, vd);
ca719585 1061
1062 /* If SET was seen in CALL_INSN_FUNCTION_USAGE, and SET_SRC
1063 of the SET isn't in regs_invalidated_by_call hard reg set,
1064 but instead among CLOBBERs on the CALL_INSN, we could wrongly
1065 assume the value in it is still live. */
1066 if (ksvd.ignore_set_reg)
9c4a0128 1067 kill_clobbered_values (insn, vd);
c8010b80 1068 }
2d4749b6 1069
d4878205 1070 bool copy_p = (set
1071 && REG_P (SET_DEST (set))
1072 && REG_P (SET_SRC (set)));
1073 bool noop_p = (copy_p
1074 && rtx_equal_p (SET_DEST (set), SET_SRC (set)));
2d4749b6 1075
f14d8d6a 1076 /* If a noop move is using narrower mode than we have recorded,
1077 we need to either remove the noop move, or kill_set_value. */
1078 if (noop_p
974534ab 1079 && partial_subreg_p (GET_MODE (SET_DEST (set)),
1080 vd->e[REGNO (SET_DEST (set))].mode))
f14d8d6a 1081 {
1082 if (noop_move_p (insn))
1083 {
1084 bool last = insn == BB_END (bb);
1085 delete_insn (insn);
1086 if (last)
1087 break;
1088 }
1089 else
1090 noop_p = false;
1091 }
1092
d4878205 1093 if (!noop_p)
1094 {
1095 /* Notice stores. */
1096 note_stores (PATTERN (insn), kill_set_value, &ksvd);
1097
1098 /* Notice copies. */
1099 if (copy_p)
1100 copy_value (SET_DEST (set), SET_SRC (set), vd);
1101 }
2d4749b6 1102
1103 if (insn == BB_END (bb))
1104 break;
1105 }
1106
9845d120 1107 return anything_changed;
2d4749b6 1108}
1109
2d4749b6 1110/* Dump the value chain data to stderr. */
1111
4b987fac 1112DEBUG_FUNCTION void
2d4749b6 1113debug_value_data (struct value_data *vd)
1114{
1115 HARD_REG_SET set;
1116 unsigned int i, j;
1117
1118 CLEAR_HARD_REG_SET (set);
1119
1120 for (i = 0; i < FIRST_PSEUDO_REGISTER; ++i)
1121 if (vd->e[i].oldest_regno == i)
1122 {
1123 if (vd->e[i].mode == VOIDmode)
1124 {
1125 if (vd->e[i].next_regno != INVALID_REGNUM)
1126 fprintf (stderr, "[%u] Bad next_regno for empty chain (%u)\n",
1127 i, vd->e[i].next_regno);
1128 continue;
1129 }
1130
1131 SET_HARD_REG_BIT (set, i);
1132 fprintf (stderr, "[%u %s] ", i, GET_MODE_NAME (vd->e[i].mode));
1133
1134 for (j = vd->e[i].next_regno;
1135 j != INVALID_REGNUM;
1136 j = vd->e[j].next_regno)
1137 {
1138 if (TEST_HARD_REG_BIT (set, j))
1139 {
1140 fprintf (stderr, "[%u] Loop in regno chain\n", j);
1141 return;
1142 }
1143
1144 if (vd->e[j].oldest_regno != i)
1145 {
1146 fprintf (stderr, "[%u] Bad oldest_regno (%u)\n",
1147 j, vd->e[j].oldest_regno);
1148 return;
1149 }
1150 SET_HARD_REG_BIT (set, j);
1151 fprintf (stderr, "[%u %s] ", j, GET_MODE_NAME (vd->e[j].mode));
1152 }
1153 fputc ('\n', stderr);
1154 }
1155
1156 for (i = 0; i < FIRST_PSEUDO_REGISTER; ++i)
1157 if (! TEST_HARD_REG_BIT (set, i)
1158 && (vd->e[i].mode != VOIDmode
1159 || vd->e[i].oldest_regno != i
1160 || vd->e[i].next_regno != INVALID_REGNUM))
1161 fprintf (stderr, "[%u] Non-empty reg in chain (%s %u %i)\n",
1162 i, GET_MODE_NAME (vd->e[i].mode), vd->e[i].oldest_regno,
1163 vd->e[i].next_regno);
1164}
1165
59483f68 1166/* Do copyprop_hardreg_forward_1 for a single basic block BB.
1167 DEBUG_INSN is skipped since we do not want to involve DF related
1168 staff as how it is handled in function pass_cprop_hardreg::execute.
1169
1170 NOTE: Currently it is only used for shrink-wrap. Maybe extend it
1171 to handle DEBUG_INSN for other uses. */
1172
1173void
1174copyprop_hardreg_forward_bb_without_debug_insn (basic_block bb)
1175{
1176 struct value_data *vd;
1177 vd = XNEWVEC (struct value_data, 1);
1178 init_value_data (vd);
1179
1180 skip_debug_insn_p = true;
1181 copyprop_hardreg_forward_1 (bb, vd);
1182 free (vd);
1183 skip_debug_insn_p = false;
1184}
1185
2d4749b6 1186static void
1187validate_value_data (struct value_data *vd)
1188{
1189 HARD_REG_SET set;
1190 unsigned int i, j;
1191
1192 CLEAR_HARD_REG_SET (set);
1193
1194 for (i = 0; i < FIRST_PSEUDO_REGISTER; ++i)
1195 if (vd->e[i].oldest_regno == i)
1196 {
1197 if (vd->e[i].mode == VOIDmode)
1198 {
1199 if (vd->e[i].next_regno != INVALID_REGNUM)
1200 internal_error ("validate_value_data: [%u] Bad next_regno for empty chain (%u)",
1201 i, vd->e[i].next_regno);
1202 continue;
1203 }
1204
1205 SET_HARD_REG_BIT (set, i);
1206
1207 for (j = vd->e[i].next_regno;
1208 j != INVALID_REGNUM;
1209 j = vd->e[j].next_regno)
1210 {
1211 if (TEST_HARD_REG_BIT (set, j))
1212 internal_error ("validate_value_data: Loop in regno chain (%u)",
1213 j);
1214 if (vd->e[j].oldest_regno != i)
1215 internal_error ("validate_value_data: [%u] Bad oldest_regno (%u)",
1216 j, vd->e[j].oldest_regno);
1217
1218 SET_HARD_REG_BIT (set, j);
1219 }
1220 }
1221
1222 for (i = 0; i < FIRST_PSEUDO_REGISTER; ++i)
1223 if (! TEST_HARD_REG_BIT (set, i)
1224 && (vd->e[i].mode != VOIDmode
1225 || vd->e[i].oldest_regno != i
1226 || vd->e[i].next_regno != INVALID_REGNUM))
1227 internal_error ("validate_value_data: [%u] Non-empty reg in chain (%s %u %i)",
1228 i, GET_MODE_NAME (vd->e[i].mode), vd->e[i].oldest_regno,
1229 vd->e[i].next_regno);
1230}
382ecba7 1231
2d4749b6 1232\f
cbe8bda8 1233namespace {
1234
1235const pass_data pass_data_cprop_hardreg =
2d4749b6 1236{
cbe8bda8 1237 RTL_PASS, /* type */
1238 "cprop_hardreg", /* name */
1239 OPTGROUP_NONE, /* optinfo_flags */
cbe8bda8 1240 TV_CPROP_REGISTERS, /* tv_id */
1241 0, /* properties_required */
1242 0, /* properties_provided */
1243 0, /* properties_destroyed */
1244 0, /* todo_flags_start */
8b88439e 1245 TODO_df_finish, /* todo_flags_finish */
2d4749b6 1246};
cbe8bda8 1247
1248class pass_cprop_hardreg : public rtl_opt_pass
1249{
1250public:
9af5ce0c 1251 pass_cprop_hardreg (gcc::context *ctxt)
1252 : rtl_opt_pass (pass_data_cprop_hardreg, ctxt)
cbe8bda8 1253 {}
1254
1255 /* opt_pass methods: */
31315c24 1256 virtual bool gate (function *)
1257 {
1258 return (optimize > 0 && (flag_cprop_registers));
1259 }
1260
65b0537f 1261 virtual unsigned int execute (function *);
cbe8bda8 1262
1263}; // class pass_cprop_hardreg
1264
65b0537f 1265unsigned int
1266pass_cprop_hardreg::execute (function *fun)
1267{
1268 struct value_data *all_vd;
1269 basic_block bb;
65b0537f 1270 bool analyze_called = false;
1271
1272 all_vd = XNEWVEC (struct value_data, last_basic_block_for_fn (fun));
1273
3c6549f8 1274 auto_sbitmap visited (last_basic_block_for_fn (fun));
65b0537f 1275 bitmap_clear (visited);
1276
65b0537f 1277 FOR_EACH_BB_FN (bb, fun)
1278 {
1279 bitmap_set_bit (visited, bb->index);
1280
1281 /* If a block has a single predecessor, that we've already
1282 processed, begin with the value data that was live at
1283 the end of the predecessor block. */
1284 /* ??? Ought to use more intelligent queuing of blocks. */
1285 if (single_pred_p (bb)
1286 && bitmap_bit_p (visited, single_pred (bb)->index)
1287 && ! (single_pred_edge (bb)->flags & (EDGE_ABNORMAL_CALL | EDGE_EH)))
1288 {
1289 all_vd[bb->index] = all_vd[single_pred (bb)->index];
1290 if (all_vd[bb->index].n_debug_insn_changes)
1291 {
1292 unsigned int regno;
1293
1294 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1295 {
1296 if (all_vd[bb->index].e[regno].debug_insn_changes)
1297 {
1298 all_vd[bb->index].e[regno].debug_insn_changes = NULL;
1299 if (--all_vd[bb->index].n_debug_insn_changes == 0)
1300 break;
1301 }
1302 }
1303 }
1304 }
1305 else
1306 init_value_data (all_vd + bb->index);
1307
1308 copyprop_hardreg_forward_1 (bb, all_vd + bb->index);
1309 }
1310
1311 if (MAY_HAVE_DEBUG_INSNS)
1312 {
1313 FOR_EACH_BB_FN (bb, fun)
1314 if (bitmap_bit_p (visited, bb->index)
1315 && all_vd[bb->index].n_debug_insn_changes)
1316 {
1317 unsigned int regno;
1318 bitmap live;
1319
1320 if (!analyze_called)
1321 {
1322 df_analyze ();
1323 analyze_called = true;
1324 }
1325 live = df_get_live_out (bb);
1326 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1327 if (all_vd[bb->index].e[regno].debug_insn_changes)
1328 {
1329 if (REGNO_REG_SET_P (live, regno))
1330 apply_debug_insn_changes (all_vd + bb->index, regno);
1331 if (all_vd[bb->index].n_debug_insn_changes == 0)
1332 break;
1333 }
1334 }
1335
e16712b1 1336 queued_debug_insn_change_pool.release ();
65b0537f 1337 }
1338
65b0537f 1339 free (all_vd);
1340 return 0;
1341}
1342
cbe8bda8 1343} // anon namespace
1344
1345rtl_opt_pass *
1346make_pass_cprop_hardreg (gcc::context *ctxt)
1347{
1348 return new pass_cprop_hardreg (ctxt);
1349}