2016-12-19 Will Schmidt <will_schmidt@vnet.ibm.com>
[official-gcc.git] / gcc / compare-elim.c
blobc66f13152ceeb79010c8deb7d99b4aa9797e8308
1 /* Post-reload compare elimination.
2 Copyright (C) 2010-2016 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
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/>. */
20 /* There is a set of targets whose general-purpose move or addition
21 instructions clobber the flags. These targets cannot split their
22 CBRANCH/CSTORE etc patterns before reload is complete, lest reload
23 itself insert these instructions in between the flags setter and user.
24 Because these targets cannot split the compare from the use, they
25 cannot make use of the comparison elimination offered by the combine pass.
27 This is a small pass intended to provide comparison elimination similar to
28 what is available via NOTICE_UPDATE_CC for cc0 targets. This should help
29 encourage cc0 targets to convert to an explicit post-reload representation
30 of the flags.
32 This pass assumes:
34 (0) CBRANCH/CSTORE etc have been split in pass_split_after_reload.
36 (1) All comparison patterns are represented as
38 [(set (reg:CC) (compare:CC (reg) (reg_or_immediate)))]
40 (2) All insn patterns that modify the flags are represented as
42 [(set (reg) (operation)
43 (clobber (reg:CC))]
45 (3) If an insn of form (2) can usefully set the flags, there is
46 another pattern of the form
48 [(set (reg) (operation)
49 (set (reg:CCM) (compare:CCM (operation) (immediate)))]
51 The mode CCM will be chosen as if by SELECT_CC_MODE.
53 Note that unlike NOTICE_UPDATE_CC, we do not handle memory operands.
54 This could be handled as a future enhancement.
57 #include "config.h"
58 #include "system.h"
59 #include "coretypes.h"
60 #include "backend.h"
61 #include "target.h"
62 #include "rtl.h"
63 #include "df.h"
64 #include "memmodel.h"
65 #include "tm_p.h"
66 #include "insn-config.h"
67 #include "recog.h"
68 #include "cfgrtl.h"
69 #include "tree-pass.h"
70 #include "domwalk.h"
73 /* These structures describe a comparison and how it is used. */
75 /* The choice of maximum 3 uses comes from wanting to eliminate the two
76 duplicate compares from a three-way branch on the sign of a value.
77 This is also sufficient to eliminate the duplicate compare against the
78 high-part of a double-word comparison. */
79 #define MAX_CMP_USE 3
81 struct comparison_use
83 /* The instruction in which the result of the compare is used. */
84 rtx_insn *insn;
85 /* The location of the flags register within the use. */
86 rtx *loc;
87 /* The comparison code applied against the flags register. */
88 enum rtx_code code;
91 struct comparison
93 /* The comparison instruction. */
94 rtx_insn *insn;
96 /* The insn prior to the comparison insn that clobbers the flags. */
97 rtx_insn *prev_clobber;
99 /* The two values being compared. These will be either REGs or
100 constants. */
101 rtx in_a, in_b;
103 /* The REG_EH_REGION of the comparison. */
104 rtx eh_note;
106 /* Information about how this comparison is used. */
107 struct comparison_use uses[MAX_CMP_USE];
109 /* The original CC_MODE for this comparison. */
110 machine_mode orig_mode;
112 /* The number of uses identified for this comparison. */
113 unsigned short n_uses;
115 /* True if not all uses of this comparison have been identified.
116 This can happen either for overflowing the array above, or if
117 the flags register is used in some unusual context. */
118 bool missing_uses;
120 /* True if its inputs are still valid at the end of the block. */
121 bool inputs_valid;
124 static vec<comparison *> all_compares;
126 /* Look for a "conforming" comparison, as defined above. If valid, return
127 the rtx for the COMPARE itself. */
129 static rtx
130 conforming_compare (rtx_insn *insn)
132 rtx set, src, dest;
134 set = single_set (insn);
135 if (set == NULL)
136 return NULL;
138 src = SET_SRC (set);
139 if (GET_CODE (src) != COMPARE)
140 return NULL;
142 dest = SET_DEST (set);
143 if (!REG_P (dest) || REGNO (dest) != targetm.flags_regnum)
144 return NULL;
146 if (!REG_P (XEXP (src, 0)))
147 return NULL;
149 if (CONSTANT_P (XEXP (src, 1)) || REG_P (XEXP (src, 1)))
150 return src;
152 if (GET_CODE (XEXP (src, 1)) == UNSPEC)
154 for (int i = 0; i < XVECLEN (XEXP (src, 1), 0); i++)
155 if (!REG_P (XVECEXP (XEXP (src, 1), 0, i)))
156 return NULL;
157 return src;
160 return NULL;
163 /* Look for a pattern of the "correct" form for an insn with a flags clobber
164 for which we may be able to eliminate a compare later. We're not looking
165 to validate any inputs at this time, merely see that the basic shape is
166 correct. The term "arithmetic" may be somewhat misleading... */
168 static bool
169 arithmetic_flags_clobber_p (rtx_insn *insn)
171 rtx pat, x;
173 if (!NONJUMP_INSN_P (insn))
174 return false;
175 pat = PATTERN (insn);
176 if (asm_noperands (pat) >= 0)
177 return false;
179 if (GET_CODE (pat) == PARALLEL && XVECLEN (pat, 0) == 2)
181 x = XVECEXP (pat, 0, 0);
182 if (GET_CODE (x) != SET)
183 return false;
184 x = SET_DEST (x);
185 if (!REG_P (x))
186 return false;
188 x = XVECEXP (pat, 0, 1);
189 if (GET_CODE (x) == CLOBBER)
191 x = XEXP (x, 0);
192 if (REG_P (x) && REGNO (x) == targetm.flags_regnum)
193 return true;
197 return false;
200 /* Look for uses of FLAGS in INSN. If we find one we can analyze, record
201 it in CMP; otherwise indicate that we've missed a use. */
203 static void
204 find_flags_uses_in_insn (struct comparison *cmp, rtx_insn *insn)
206 df_ref use;
208 /* If we've already lost track of uses, don't bother collecting more. */
209 if (cmp->missing_uses)
210 return;
212 /* Find a USE of the flags register. */
213 FOR_EACH_INSN_USE (use, insn)
214 if (DF_REF_REGNO (use) == targetm.flags_regnum)
216 rtx x, *loc;
218 /* If this is an unusual use, quit. */
219 if (DF_REF_TYPE (use) != DF_REF_REG_USE)
220 goto fail;
222 /* If we've run out of slots to record uses, quit. */
223 if (cmp->n_uses == MAX_CMP_USE)
224 goto fail;
226 /* Unfortunately the location of the flags register, while present
227 in the reference structure, doesn't help. We need to find the
228 comparison code that is outer to the actual flags use. */
229 loc = DF_REF_LOC (use);
230 x = PATTERN (insn);
231 if (GET_CODE (x) == PARALLEL)
232 x = XVECEXP (x, 0, 0);
233 x = SET_SRC (x);
234 if (GET_CODE (x) == IF_THEN_ELSE)
235 x = XEXP (x, 0);
236 if (COMPARISON_P (x)
237 && loc == &XEXP (x, 0)
238 && XEXP (x, 1) == const0_rtx)
240 /* We've found a use of the flags that we understand. */
241 struct comparison_use *cuse = &cmp->uses[cmp->n_uses++];
242 cuse->insn = insn;
243 cuse->loc = loc;
244 cuse->code = GET_CODE (x);
246 else
247 goto fail;
249 return;
251 fail:
252 /* We failed to recognize this use of the flags register. */
253 cmp->missing_uses = true;
256 class find_comparison_dom_walker : public dom_walker
258 public:
259 find_comparison_dom_walker (cdi_direction direction)
260 : dom_walker (direction) {}
262 virtual edge before_dom_children (basic_block);
265 /* Return true if conforming COMPARE with EH_NOTE is redundant with comparison
266 CMP and can thus be eliminated. */
268 static bool
269 can_eliminate_compare (rtx compare, rtx eh_note, struct comparison *cmp)
271 /* Take care that it's in the same EH region. */
272 if (cfun->can_throw_non_call_exceptions
273 && !rtx_equal_p (eh_note, cmp->eh_note))
274 return false;
276 /* Make sure the compare is redundant with the previous. */
277 if (!rtx_equal_p (XEXP (compare, 0), cmp->in_a)
278 || !rtx_equal_p (XEXP (compare, 1), cmp->in_b))
279 return false;
281 /* New mode must be compatible with the previous compare mode. */
282 enum machine_mode new_mode
283 = targetm.cc_modes_compatible (GET_MODE (compare), cmp->orig_mode);
285 if (new_mode == VOIDmode)
286 return false;
288 if (cmp->orig_mode != new_mode)
290 /* Generate new comparison for substitution. */
291 rtx flags = gen_rtx_REG (new_mode, targetm.flags_regnum);
292 rtx x = gen_rtx_COMPARE (new_mode, cmp->in_a, cmp->in_b);
293 x = gen_rtx_SET (flags, x);
295 if (!validate_change (cmp->insn, &PATTERN (cmp->insn), x, false))
296 return false;
298 cmp->orig_mode = new_mode;
301 return true;
304 /* Identify comparison instructions within BB. If the flags from the last
305 compare in the BB is live at the end of the block, install the compare
306 in BB->AUX. Called via dom_walker.walk (). */
308 edge
309 find_comparison_dom_walker::before_dom_children (basic_block bb)
311 struct comparison *last_cmp;
312 rtx_insn *insn, *next, *last_clobber;
313 bool last_cmp_valid;
314 bool need_purge = false;
315 bitmap killed;
317 killed = BITMAP_ALLOC (NULL);
319 /* The last comparison that was made. Will be reset to NULL
320 once the flags are clobbered. */
321 last_cmp = NULL;
323 /* True iff the last comparison has not been clobbered, nor
324 have its inputs. Used to eliminate duplicate compares. */
325 last_cmp_valid = false;
327 /* The last insn that clobbered the flags, if that insn is of
328 a form that may be valid for eliminating a following compare.
329 To be reset to NULL once the flags are set otherwise. */
330 last_clobber = NULL;
332 /* Propagate the last live comparison throughout the extended basic block. */
333 if (single_pred_p (bb))
335 last_cmp = (struct comparison *) single_pred (bb)->aux;
336 if (last_cmp)
337 last_cmp_valid = last_cmp->inputs_valid;
340 for (insn = BB_HEAD (bb); insn; insn = next)
342 rtx src;
344 next = (insn == BB_END (bb) ? NULL : NEXT_INSN (insn));
345 if (!NONDEBUG_INSN_P (insn))
346 continue;
348 /* Compute the set of registers modified by this instruction. */
349 bitmap_clear (killed);
350 df_simulate_find_defs (insn, killed);
352 src = conforming_compare (insn);
353 if (src)
355 rtx eh_note = NULL;
357 if (cfun->can_throw_non_call_exceptions)
358 eh_note = find_reg_note (insn, REG_EH_REGION, NULL);
360 if (last_cmp_valid && can_eliminate_compare (src, eh_note, last_cmp))
362 if (eh_note)
363 need_purge = true;
364 delete_insn (insn);
365 continue;
368 last_cmp = XCNEW (struct comparison);
369 last_cmp->insn = insn;
370 last_cmp->prev_clobber = last_clobber;
371 last_cmp->in_a = XEXP (src, 0);
372 last_cmp->in_b = XEXP (src, 1);
373 last_cmp->eh_note = eh_note;
374 last_cmp->orig_mode = GET_MODE (src);
375 all_compares.safe_push (last_cmp);
377 /* It's unusual, but be prepared for comparison patterns that
378 also clobber an input, or perhaps a scratch. */
379 last_clobber = NULL;
380 last_cmp_valid = true;
383 else
385 /* Notice if this instruction uses the flags register. */
386 if (last_cmp)
387 find_flags_uses_in_insn (last_cmp, insn);
389 /* Notice if this instruction kills the flags register. */
390 if (bitmap_bit_p (killed, targetm.flags_regnum))
392 /* See if this insn could be the "clobber" that eliminates
393 a future comparison. */
394 last_clobber = (arithmetic_flags_clobber_p (insn) ? insn : NULL);
396 /* In either case, the previous compare is no longer valid. */
397 last_cmp = NULL;
398 last_cmp_valid = false;
402 /* Notice if any of the inputs to the comparison have changed. */
403 if (last_cmp_valid
404 && (bitmap_bit_p (killed, REGNO (last_cmp->in_a))
405 || (REG_P (last_cmp->in_b)
406 && bitmap_bit_p (killed, REGNO (last_cmp->in_b)))))
407 last_cmp_valid = false;
410 BITMAP_FREE (killed);
412 /* Remember the live comparison for subsequent members of
413 the extended basic block. */
414 if (last_cmp)
416 bb->aux = last_cmp;
417 last_cmp->inputs_valid = last_cmp_valid;
419 /* Look to see if the flags register is live outgoing here, and
420 incoming to any successor not part of the extended basic block. */
421 if (bitmap_bit_p (df_get_live_out (bb), targetm.flags_regnum))
423 edge e;
424 edge_iterator ei;
426 FOR_EACH_EDGE (e, ei, bb->succs)
428 basic_block dest = e->dest;
429 if (bitmap_bit_p (df_get_live_in (bb), targetm.flags_regnum)
430 && !single_pred_p (dest))
432 last_cmp->missing_uses = true;
433 break;
439 /* If we deleted a compare with a REG_EH_REGION note, we may need to
440 remove EH edges. */
441 if (need_purge)
442 purge_dead_edges (bb);
444 return NULL;
447 /* Find all comparisons in the function. */
449 static void
450 find_comparisons (void)
452 calculate_dominance_info (CDI_DOMINATORS);
454 find_comparison_dom_walker (CDI_DOMINATORS)
455 .walk (cfun->cfg->x_entry_block_ptr);
457 clear_aux_for_blocks ();
458 free_dominance_info (CDI_DOMINATORS);
461 /* Select an alternate CC_MODE for a comparison insn comparing A and B.
462 Note that inputs are almost certainly different than the IN_A and IN_B
463 stored in CMP -- we're called while attempting to eliminate the compare
464 after all. Return the new FLAGS rtx if successful, else return NULL.
465 Note that this function may start a change group. */
467 static rtx
468 maybe_select_cc_mode (struct comparison *cmp, rtx a ATTRIBUTE_UNUSED,
469 rtx b ATTRIBUTE_UNUSED)
471 machine_mode sel_mode;
472 const int n = cmp->n_uses;
473 rtx flags = NULL;
475 #ifndef SELECT_CC_MODE
476 /* Minimize code differences when this target macro is undefined. */
477 return NULL;
478 #define SELECT_CC_MODE(A,B,C) (gcc_unreachable (), VOIDmode)
479 #endif
481 /* If we don't have access to all of the uses, we can't validate. */
482 if (cmp->missing_uses || n == 0)
483 return NULL;
485 /* Find a new mode that works for all of the uses. Special case the
486 common case of exactly one use. */
487 if (n == 1)
489 sel_mode = SELECT_CC_MODE (cmp->uses[0].code, a, b);
490 if (sel_mode != cmp->orig_mode)
492 flags = gen_rtx_REG (sel_mode, targetm.flags_regnum);
493 validate_change (cmp->uses[0].insn, cmp->uses[0].loc, flags, true);
496 else
498 int i;
500 sel_mode = SELECT_CC_MODE (cmp->uses[0].code, a, b);
501 for (i = 1; i < n; ++i)
503 machine_mode new_mode = SELECT_CC_MODE (cmp->uses[i].code, a, b);
504 if (new_mode != sel_mode)
506 sel_mode = targetm.cc_modes_compatible (sel_mode, new_mode);
507 if (sel_mode == VOIDmode)
508 return NULL;
512 if (sel_mode != cmp->orig_mode)
514 flags = gen_rtx_REG (sel_mode, targetm.flags_regnum);
515 for (i = 0; i < n; ++i)
516 validate_change (cmp->uses[i].insn, cmp->uses[i].loc, flags, true);
520 return flags;
523 /* Return a register RTX holding the same value at START as REG at END, or
524 NULL_RTX if there is none. */
526 static rtx
527 equivalent_reg_at_start (rtx reg, rtx_insn *end, rtx_insn *start)
529 rtx_insn *bb_head = BB_HEAD (BLOCK_FOR_INSN (end));
531 for (rtx_insn *insn = PREV_INSN (end);
532 insn != start;
533 insn = PREV_INSN (insn))
535 const int abnormal_flags
536 = (DF_REF_CONDITIONAL | DF_REF_PARTIAL | DF_REF_MAY_CLOBBER
537 | DF_REF_MUST_CLOBBER | DF_REF_SIGN_EXTRACT
538 | DF_REF_ZERO_EXTRACT | DF_REF_STRICT_LOW_PART
539 | DF_REF_PRE_POST_MODIFY);
540 df_ref def;
542 /* Note that the BB_HEAD is always either a note or a label, but in
543 any case it means that IN_A is defined outside the block. */
544 if (insn == bb_head)
545 return NULL_RTX;
546 if (NOTE_P (insn) || DEBUG_INSN_P (insn))
547 continue;
549 /* Find a possible def of IN_A in INSN. */
550 FOR_EACH_INSN_DEF (def, insn)
551 if (DF_REF_REGNO (def) == REGNO (reg))
552 break;
554 /* No definitions of IN_A; continue searching. */
555 if (def == NULL)
556 continue;
558 /* Bail if this is not a totally normal set of IN_A. */
559 if (DF_REF_IS_ARTIFICIAL (def))
560 return NULL_RTX;
561 if (DF_REF_FLAGS (def) & abnormal_flags)
562 return NULL_RTX;
564 /* We've found an insn between the compare and the clobber that sets
565 IN_A. Given that pass_cprop_hardreg has not yet run, we still find
566 situations in which we can usefully look through a copy insn. */
567 rtx x = single_set (insn);
568 if (x == NULL_RTX)
569 return NULL_RTX;
570 reg = SET_SRC (x);
571 if (!REG_P (reg))
572 return NULL_RTX;
575 return reg;
578 /* Attempt to replace a comparison with a prior arithmetic insn that can
579 compute the same flags value as the comparison itself. Return true if
580 successful, having made all rtl modifications necessary. */
582 static bool
583 try_eliminate_compare (struct comparison *cmp)
585 rtx x, flags, in_a, in_b, cmp_src;
587 /* We must have found an interesting "clobber" preceding the compare. */
588 if (cmp->prev_clobber == NULL)
589 return false;
591 /* Verify that IN_A is not clobbered in between CMP and PREV_CLOBBER.
592 Given that this target requires this pass, we can assume that most
593 insns do clobber the flags, and so the distance between the compare
594 and the clobber is likely to be small. */
595 /* ??? This is one point at which one could argue that DF_REF_CHAIN would
596 be useful, but it is thought to be too heavy-weight a solution here. */
597 in_a = equivalent_reg_at_start (cmp->in_a, cmp->insn, cmp->prev_clobber);
598 if (!in_a)
599 return false;
601 /* Likewise for IN_B if need be. */
602 if (CONSTANT_P (cmp->in_b))
603 in_b = cmp->in_b;
604 else if (REG_P (cmp->in_b))
606 in_b = equivalent_reg_at_start (cmp->in_b, cmp->insn, cmp->prev_clobber);
607 if (!in_b)
608 return false;
610 else if (GET_CODE (cmp->in_b) == UNSPEC)
612 const int len = XVECLEN (cmp->in_b, 0);
613 rtvec v = rtvec_alloc (len);
614 for (int i = 0; i < len; i++)
616 rtx r = equivalent_reg_at_start (XVECEXP (cmp->in_b, 0, i),
617 cmp->insn, cmp->prev_clobber);
618 if (!r)
619 return false;
620 RTVEC_ELT (v, i) = r;
622 in_b = gen_rtx_UNSPEC (GET_MODE (cmp->in_b), v, XINT (cmp->in_b, 1));
624 else
625 gcc_unreachable ();
627 /* We've reached PREV_CLOBBER without finding a modification of IN_A.
628 Validate that PREV_CLOBBER itself does in fact refer to IN_A. Do
629 recall that we've already validated the shape of PREV_CLOBBER. */
630 rtx_insn *insn = cmp->prev_clobber;
631 x = XVECEXP (PATTERN (insn), 0, 0);
632 if (rtx_equal_p (SET_DEST (x), in_a))
633 cmp_src = SET_SRC (x);
635 /* Also check operations with implicit extensions, e.g.:
636 [(set (reg:DI)
637 (zero_extend:DI (plus:SI (reg:SI) (reg:SI))))
638 (set (reg:CCZ flags)
639 (compare:CCZ (plus:SI (reg:SI) (reg:SI))
640 (const_int 0)))] */
641 else if (REG_P (SET_DEST (x))
642 && REG_P (in_a)
643 && REGNO (SET_DEST (x)) == REGNO (in_a)
644 && (GET_CODE (SET_SRC (x)) == ZERO_EXTEND
645 || GET_CODE (SET_SRC (x)) == SIGN_EXTEND)
646 && GET_MODE (XEXP (SET_SRC (x), 0)) == GET_MODE (in_a))
647 cmp_src = XEXP (SET_SRC (x), 0);
649 /* Also check fully redundant comparisons, e.g.:
650 [(set (reg:SI)
651 (minus:SI (reg:SI) (reg:SI))))
652 (set (reg:CC flags)
653 (compare:CC (reg:SI) (reg:SI)))] */
654 else if (REG_P (in_b)
655 && GET_CODE (SET_SRC (x)) == MINUS
656 && rtx_equal_p (XEXP (SET_SRC (x), 0), in_a)
657 && rtx_equal_p (XEXP (SET_SRC (x), 1), in_b))
658 cmp_src = in_a;
660 else
661 return false;
663 /* Determine if we ought to use a different CC_MODE here. */
664 flags = maybe_select_cc_mode (cmp, cmp_src, in_b);
665 if (flags == NULL)
666 flags = gen_rtx_REG (cmp->orig_mode, targetm.flags_regnum);
668 /* Generate a new comparison for installation in the setter. */
669 x = copy_rtx (cmp_src);
670 x = gen_rtx_COMPARE (GET_MODE (flags), x, in_b);
671 x = gen_rtx_SET (flags, x);
673 /* Succeed if the new instruction is valid. Note that we may have started
674 a change group within maybe_select_cc_mode, therefore we must continue. */
675 validate_change (insn, &XVECEXP (PATTERN (insn), 0, 1), x, true);
676 if (!apply_change_group ())
677 return false;
679 /* Success. Delete the compare insn... */
680 delete_insn (cmp->insn);
682 /* ... and any notes that are now invalid due to multiple sets. */
683 x = find_regno_note (insn, REG_UNUSED, targetm.flags_regnum);
684 if (x)
685 remove_note (insn, x);
686 x = find_reg_note (insn, REG_EQUAL, NULL);
687 if (x)
688 remove_note (insn, x);
689 x = find_reg_note (insn, REG_EQUIV, NULL);
690 if (x)
691 remove_note (insn, x);
693 return true;
696 /* Main entry point to the pass. */
698 static unsigned int
699 execute_compare_elim_after_reload (void)
701 df_analyze ();
703 gcc_checking_assert (!all_compares.exists ());
705 /* Locate all comparisons and their uses, and eliminate duplicates. */
706 find_comparisons ();
707 if (all_compares.exists ())
709 struct comparison *cmp;
710 size_t i;
712 /* Eliminate comparisons that are redundant with flags computation. */
713 FOR_EACH_VEC_ELT (all_compares, i, cmp)
715 try_eliminate_compare (cmp);
716 XDELETE (cmp);
719 all_compares.release ();
722 return 0;
725 namespace {
727 const pass_data pass_data_compare_elim_after_reload =
729 RTL_PASS, /* type */
730 "cmpelim", /* name */
731 OPTGROUP_NONE, /* optinfo_flags */
732 TV_NONE, /* tv_id */
733 0, /* properties_required */
734 0, /* properties_provided */
735 0, /* properties_destroyed */
736 0, /* todo_flags_start */
737 ( TODO_df_finish | TODO_df_verify ), /* todo_flags_finish */
740 class pass_compare_elim_after_reload : public rtl_opt_pass
742 public:
743 pass_compare_elim_after_reload (gcc::context *ctxt)
744 : rtl_opt_pass (pass_data_compare_elim_after_reload, ctxt)
747 /* opt_pass methods: */
748 virtual bool gate (function *)
750 /* Setting this target hook value is how a backend indicates the need. */
751 if (targetm.flags_regnum == INVALID_REGNUM)
752 return false;
753 return flag_compare_elim_after_reload;
756 virtual unsigned int execute (function *)
758 return execute_compare_elim_after_reload ();
761 }; // class pass_compare_elim_after_reload
763 } // anon namespace
765 rtl_opt_pass *
766 make_pass_compare_elim_after_reload (gcc::context *ctxt)
768 return new pass_compare_elim_after_reload (ctxt);