1 /* Instruction scheduling pass. This file computes dependencies between
3 Copyright (C) 1992-2015 Free Software Foundation, Inc.
4 Contributed by Michael Tiemann (tiemann@cygnus.com) Enhanced by,
5 and currently maintained by, Jim Wilson (wilson@cygnus.com)
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
25 #include "coretypes.h"
27 #include "diagnostic-core.h"
32 #include "double-int.h"
38 #include "tree.h" /* FIXME: Used by call_may_noreturn_p. */
40 #include "hard-reg-set.h"
45 #include "insn-config.h"
46 #include "insn-attr.h"
50 #include "dominance.h"
54 #include "basic-block.h"
55 #include "sched-int.h"
61 #ifdef INSN_SCHEDULING
63 #ifdef ENABLE_CHECKING
69 /* Holds current parameters for the dependency analyzer. */
70 struct sched_deps_info_def
*sched_deps_info
;
72 /* The data is specific to the Haifa scheduler. */
73 vec
<haifa_deps_insn_data_def
>
76 /* Return the major type present in the DS. */
84 return REG_DEP_OUTPUT
;
87 return REG_DEP_CONTROL
;
89 gcc_assert (ds
& DEP_ANTI
);
94 /* Return equivalent dep_status. */
96 dk_to_ds (enum reg_note dk
)
106 case REG_DEP_CONTROL
:
110 gcc_assert (dk
== REG_DEP_ANTI
);
115 /* Functions to operate with dependence information container - dep_t. */
117 /* Init DEP with the arguments. */
119 init_dep_1 (dep_t dep
, rtx_insn
*pro
, rtx_insn
*con
, enum reg_note type
, ds_t ds
)
123 DEP_TYPE (dep
) = type
;
124 DEP_STATUS (dep
) = ds
;
125 DEP_COST (dep
) = UNKNOWN_DEP_COST
;
126 DEP_NONREG (dep
) = 0;
127 DEP_MULTIPLE (dep
) = 0;
128 DEP_REPLACE (dep
) = NULL
;
131 /* Init DEP with the arguments.
132 While most of the scheduler (including targets) only need the major type
133 of the dependency, it is convenient to hide full dep_status from them. */
135 init_dep (dep_t dep
, rtx_insn
*pro
, rtx_insn
*con
, enum reg_note kind
)
139 if ((current_sched_info
->flags
& USE_DEPS_LIST
))
140 ds
= dk_to_ds (kind
);
144 init_dep_1 (dep
, pro
, con
, kind
, ds
);
147 /* Make a copy of FROM in TO. */
149 copy_dep (dep_t to
, dep_t from
)
151 memcpy (to
, from
, sizeof (*to
));
154 static void dump_ds (FILE *, ds_t
);
156 /* Define flags for dump_dep (). */
158 /* Dump producer of the dependence. */
159 #define DUMP_DEP_PRO (2)
161 /* Dump consumer of the dependence. */
162 #define DUMP_DEP_CON (4)
164 /* Dump type of the dependence. */
165 #define DUMP_DEP_TYPE (8)
167 /* Dump status of the dependence. */
168 #define DUMP_DEP_STATUS (16)
170 /* Dump all information about the dependence. */
171 #define DUMP_DEP_ALL (DUMP_DEP_PRO | DUMP_DEP_CON | DUMP_DEP_TYPE \
175 FLAGS is a bit mask specifying what information about DEP needs
177 If FLAGS has the very first bit set, then dump all information about DEP
178 and propagate this bit into the callee dump functions. */
180 dump_dep (FILE *dump
, dep_t dep
, int flags
)
183 flags
|= DUMP_DEP_ALL
;
187 if (flags
& DUMP_DEP_PRO
)
188 fprintf (dump
, "%d; ", INSN_UID (DEP_PRO (dep
)));
190 if (flags
& DUMP_DEP_CON
)
191 fprintf (dump
, "%d; ", INSN_UID (DEP_CON (dep
)));
193 if (flags
& DUMP_DEP_TYPE
)
196 enum reg_note type
= DEP_TYPE (dep
);
208 case REG_DEP_CONTROL
:
221 fprintf (dump
, "%c; ", t
);
224 if (flags
& DUMP_DEP_STATUS
)
226 if (current_sched_info
->flags
& USE_DEPS_LIST
)
227 dump_ds (dump
, DEP_STATUS (dep
));
233 /* Default flags for dump_dep (). */
234 static int dump_dep_flags
= (DUMP_DEP_PRO
| DUMP_DEP_CON
);
236 /* Dump all fields of DEP to STDERR. */
238 sd_debug_dep (dep_t dep
)
240 dump_dep (stderr
, dep
, 1);
241 fprintf (stderr
, "\n");
244 /* Determine whether DEP is a dependency link of a non-debug insn on a
248 depl_on_debug_p (dep_link_t dep
)
250 return (DEBUG_INSN_P (DEP_LINK_PRO (dep
))
251 && !DEBUG_INSN_P (DEP_LINK_CON (dep
)));
254 /* Functions to operate with a single link from the dependencies lists -
257 /* Attach L to appear after link X whose &DEP_LINK_NEXT (X) is given by
260 attach_dep_link (dep_link_t l
, dep_link_t
*prev_nextp
)
262 dep_link_t next
= *prev_nextp
;
264 gcc_assert (DEP_LINK_PREV_NEXTP (l
) == NULL
265 && DEP_LINK_NEXT (l
) == NULL
);
267 /* Init node being inserted. */
268 DEP_LINK_PREV_NEXTP (l
) = prev_nextp
;
269 DEP_LINK_NEXT (l
) = next
;
274 gcc_assert (DEP_LINK_PREV_NEXTP (next
) == prev_nextp
);
276 DEP_LINK_PREV_NEXTP (next
) = &DEP_LINK_NEXT (l
);
283 /* Add dep_link LINK to deps_list L. */
285 add_to_deps_list (dep_link_t link
, deps_list_t l
)
287 attach_dep_link (link
, &DEPS_LIST_FIRST (l
));
289 /* Don't count debug deps. */
290 if (!depl_on_debug_p (link
))
291 ++DEPS_LIST_N_LINKS (l
);
294 /* Detach dep_link L from the list. */
296 detach_dep_link (dep_link_t l
)
298 dep_link_t
*prev_nextp
= DEP_LINK_PREV_NEXTP (l
);
299 dep_link_t next
= DEP_LINK_NEXT (l
);
304 DEP_LINK_PREV_NEXTP (next
) = prev_nextp
;
306 DEP_LINK_PREV_NEXTP (l
) = NULL
;
307 DEP_LINK_NEXT (l
) = NULL
;
310 /* Remove link LINK from list LIST. */
312 remove_from_deps_list (dep_link_t link
, deps_list_t list
)
314 detach_dep_link (link
);
316 /* Don't count debug deps. */
317 if (!depl_on_debug_p (link
))
318 --DEPS_LIST_N_LINKS (list
);
321 /* Move link LINK from list FROM to list TO. */
323 move_dep_link (dep_link_t link
, deps_list_t from
, deps_list_t to
)
325 remove_from_deps_list (link
, from
);
326 add_to_deps_list (link
, to
);
329 /* Return true of LINK is not attached to any list. */
331 dep_link_is_detached_p (dep_link_t link
)
333 return DEP_LINK_PREV_NEXTP (link
) == NULL
;
336 /* Pool to hold all dependency nodes (dep_node_t). */
337 static alloc_pool dn_pool
;
339 /* Number of dep_nodes out there. */
340 static int dn_pool_diff
= 0;
342 /* Create a dep_node. */
344 create_dep_node (void)
346 dep_node_t n
= (dep_node_t
) pool_alloc (dn_pool
);
347 dep_link_t back
= DEP_NODE_BACK (n
);
348 dep_link_t forw
= DEP_NODE_FORW (n
);
350 DEP_LINK_NODE (back
) = n
;
351 DEP_LINK_NEXT (back
) = NULL
;
352 DEP_LINK_PREV_NEXTP (back
) = NULL
;
354 DEP_LINK_NODE (forw
) = n
;
355 DEP_LINK_NEXT (forw
) = NULL
;
356 DEP_LINK_PREV_NEXTP (forw
) = NULL
;
363 /* Delete dep_node N. N must not be connected to any deps_list. */
365 delete_dep_node (dep_node_t n
)
367 gcc_assert (dep_link_is_detached_p (DEP_NODE_BACK (n
))
368 && dep_link_is_detached_p (DEP_NODE_FORW (n
)));
370 XDELETE (DEP_REPLACE (DEP_NODE_DEP (n
)));
374 pool_free (dn_pool
, n
);
377 /* Pool to hold dependencies lists (deps_list_t). */
378 static alloc_pool dl_pool
;
380 /* Number of deps_lists out there. */
381 static int dl_pool_diff
= 0;
383 /* Functions to operate with dependences lists - deps_list_t. */
385 /* Return true if list L is empty. */
387 deps_list_empty_p (deps_list_t l
)
389 return DEPS_LIST_N_LINKS (l
) == 0;
392 /* Create a new deps_list. */
394 create_deps_list (void)
396 deps_list_t l
= (deps_list_t
) pool_alloc (dl_pool
);
398 DEPS_LIST_FIRST (l
) = NULL
;
399 DEPS_LIST_N_LINKS (l
) = 0;
405 /* Free deps_list L. */
407 free_deps_list (deps_list_t l
)
409 gcc_assert (deps_list_empty_p (l
));
413 pool_free (dl_pool
, l
);
416 /* Return true if there is no dep_nodes and deps_lists out there.
417 After the region is scheduled all the dependency nodes and lists
418 should [generally] be returned to pool. */
420 deps_pools_are_empty_p (void)
422 return dn_pool_diff
== 0 && dl_pool_diff
== 0;
425 /* Remove all elements from L. */
427 clear_deps_list (deps_list_t l
)
431 dep_link_t link
= DEPS_LIST_FIRST (l
);
436 remove_from_deps_list (link
, l
);
441 /* Decide whether a dependency should be treated as a hard or a speculative
444 dep_spec_p (dep_t dep
)
446 if (current_sched_info
->flags
& DO_SPECULATION
)
448 if (DEP_STATUS (dep
) & SPECULATIVE
)
451 if (current_sched_info
->flags
& DO_PREDICATION
)
453 if (DEP_TYPE (dep
) == REG_DEP_CONTROL
)
456 if (DEP_REPLACE (dep
) != NULL
)
461 static regset reg_pending_sets
;
462 static regset reg_pending_clobbers
;
463 static regset reg_pending_uses
;
464 static regset reg_pending_control_uses
;
465 static enum reg_pending_barrier_mode reg_pending_barrier
;
467 /* Hard registers implicitly clobbered or used (or may be implicitly
468 clobbered or used) by the currently analyzed insn. For example,
469 insn in its constraint has one register class. Even if there is
470 currently no hard register in the insn, the particular hard
471 register will be in the insn after reload pass because the
472 constraint requires it. */
473 static HARD_REG_SET implicit_reg_pending_clobbers
;
474 static HARD_REG_SET implicit_reg_pending_uses
;
476 /* To speed up the test for duplicate dependency links we keep a
477 record of dependencies created by add_dependence when the average
478 number of instructions in a basic block is very large.
480 Studies have shown that there is typically around 5 instructions between
481 branches for typical C code. So we can make a guess that the average
482 basic block is approximately 5 instructions long; we will choose 100X
483 the average size as a very large basic block.
485 Each insn has associated bitmaps for its dependencies. Each bitmap
486 has enough entries to represent a dependency on any other insn in
487 the insn chain. All bitmap for true dependencies cache is
488 allocated then the rest two ones are also allocated. */
489 static bitmap_head
*true_dependency_cache
= NULL
;
490 static bitmap_head
*output_dependency_cache
= NULL
;
491 static bitmap_head
*anti_dependency_cache
= NULL
;
492 static bitmap_head
*control_dependency_cache
= NULL
;
493 static bitmap_head
*spec_dependency_cache
= NULL
;
494 static int cache_size
;
496 /* True if we should mark added dependencies as a non-register deps. */
497 static bool mark_as_hard
;
499 static int deps_may_trap_p (const_rtx
);
500 static void add_dependence_1 (rtx_insn
*, rtx_insn
*, enum reg_note
);
501 static void add_dependence_list (rtx_insn
*, rtx_insn_list
*, int,
502 enum reg_note
, bool);
503 static void add_dependence_list_and_free (struct deps_desc
*, rtx_insn
*,
504 rtx_insn_list
**, int, enum reg_note
,
506 static void delete_all_dependences (rtx_insn
*);
507 static void chain_to_prev_insn (rtx_insn
*);
509 static void flush_pending_lists (struct deps_desc
*, rtx_insn
*, int, int);
510 static void sched_analyze_1 (struct deps_desc
*, rtx
, rtx_insn
*);
511 static void sched_analyze_2 (struct deps_desc
*, rtx
, rtx_insn
*);
512 static void sched_analyze_insn (struct deps_desc
*, rtx
, rtx_insn
*);
514 static bool sched_has_condition_p (const rtx_insn
*);
515 static int conditions_mutex_p (const_rtx
, const_rtx
, bool, bool);
517 static enum DEPS_ADJUST_RESULT
maybe_add_or_update_dep_1 (dep_t
, bool,
519 static enum DEPS_ADJUST_RESULT
add_or_update_dep_1 (dep_t
, bool, rtx
, rtx
);
521 #ifdef ENABLE_CHECKING
522 static void check_dep (dep_t
, bool);
525 /* Return nonzero if a load of the memory reference MEM can cause a trap. */
528 deps_may_trap_p (const_rtx mem
)
530 const_rtx addr
= XEXP (mem
, 0);
532 if (REG_P (addr
) && REGNO (addr
) >= FIRST_PSEUDO_REGISTER
)
534 const_rtx t
= get_reg_known_value (REGNO (addr
));
538 return rtx_addr_can_trap_p (addr
);
542 /* Find the condition under which INSN is executed. If REV is not NULL,
543 it is set to TRUE when the returned comparison should be reversed
544 to get the actual condition. */
546 sched_get_condition_with_rev_uncached (const rtx_insn
*insn
, bool *rev
)
548 rtx pat
= PATTERN (insn
);
554 if (GET_CODE (pat
) == COND_EXEC
)
555 return COND_EXEC_TEST (pat
);
557 if (!any_condjump_p (insn
) || !onlyjump_p (insn
))
560 src
= SET_SRC (pc_set (insn
));
562 if (XEXP (src
, 2) == pc_rtx
)
563 return XEXP (src
, 0);
564 else if (XEXP (src
, 1) == pc_rtx
)
566 rtx cond
= XEXP (src
, 0);
567 enum rtx_code revcode
= reversed_comparison_code (cond
, insn
);
569 if (revcode
== UNKNOWN
)
580 /* Return the condition under which INSN does not execute (i.e. the
581 not-taken condition for a conditional branch), or NULL if we cannot
582 find such a condition. The caller should make a copy of the condition
585 sched_get_reverse_condition_uncached (const rtx_insn
*insn
)
588 rtx cond
= sched_get_condition_with_rev_uncached (insn
, &rev
);
589 if (cond
== NULL_RTX
)
593 enum rtx_code revcode
= reversed_comparison_code (cond
, insn
);
594 cond
= gen_rtx_fmt_ee (revcode
, GET_MODE (cond
),
601 /* Caching variant of sched_get_condition_with_rev_uncached.
602 We only do actual work the first time we come here for an insn; the
603 results are cached in INSN_CACHED_COND and INSN_REVERSE_COND. */
605 sched_get_condition_with_rev (const rtx_insn
*insn
, bool *rev
)
609 if (INSN_LUID (insn
) == 0)
610 return sched_get_condition_with_rev_uncached (insn
, rev
);
612 if (INSN_CACHED_COND (insn
) == const_true_rtx
)
615 if (INSN_CACHED_COND (insn
) != NULL_RTX
)
618 *rev
= INSN_REVERSE_COND (insn
);
619 return INSN_CACHED_COND (insn
);
622 INSN_CACHED_COND (insn
) = sched_get_condition_with_rev_uncached (insn
, &tmp
);
623 INSN_REVERSE_COND (insn
) = tmp
;
625 if (INSN_CACHED_COND (insn
) == NULL_RTX
)
627 INSN_CACHED_COND (insn
) = const_true_rtx
;
632 *rev
= INSN_REVERSE_COND (insn
);
633 return INSN_CACHED_COND (insn
);
636 /* True when we can find a condition under which INSN is executed. */
638 sched_has_condition_p (const rtx_insn
*insn
)
640 return !! sched_get_condition_with_rev (insn
, NULL
);
645 /* Return nonzero if conditions COND1 and COND2 can never be both true. */
647 conditions_mutex_p (const_rtx cond1
, const_rtx cond2
, bool rev1
, bool rev2
)
649 if (COMPARISON_P (cond1
)
650 && COMPARISON_P (cond2
)
651 && GET_CODE (cond1
) ==
653 ? reversed_comparison_code (cond2
, NULL
)
655 && rtx_equal_p (XEXP (cond1
, 0), XEXP (cond2
, 0))
656 && XEXP (cond1
, 1) == XEXP (cond2
, 1))
661 /* Return true if insn1 and insn2 can never depend on one another because
662 the conditions under which they are executed are mutually exclusive. */
664 sched_insns_conditions_mutex_p (const rtx_insn
*insn1
, const rtx_insn
*insn2
)
667 bool rev1
= false, rev2
= false;
669 /* df doesn't handle conditional lifetimes entirely correctly;
670 calls mess up the conditional lifetimes. */
671 if (!CALL_P (insn1
) && !CALL_P (insn2
))
673 cond1
= sched_get_condition_with_rev (insn1
, &rev1
);
674 cond2
= sched_get_condition_with_rev (insn2
, &rev2
);
676 && conditions_mutex_p (cond1
, cond2
, rev1
, rev2
)
677 /* Make sure first instruction doesn't affect condition of second
678 instruction if switched. */
679 && !modified_in_p (cond1
, insn2
)
680 /* Make sure second instruction doesn't affect condition of first
681 instruction if switched. */
682 && !modified_in_p (cond2
, insn1
))
689 /* Return true if INSN can potentially be speculated with type DS. */
691 sched_insn_is_legitimate_for_speculation_p (const rtx_insn
*insn
, ds_t ds
)
693 if (HAS_INTERNAL_DEP (insn
))
696 if (!NONJUMP_INSN_P (insn
))
699 if (SCHED_GROUP_P (insn
))
702 if (IS_SPECULATION_CHECK_P (CONST_CAST_RTX_INSN (insn
)))
705 if (side_effects_p (PATTERN (insn
)))
709 /* The following instructions, which depend on a speculatively scheduled
710 instruction, cannot be speculatively scheduled along. */
712 if (may_trap_or_fault_p (PATTERN (insn
)))
713 /* If instruction might fault, it cannot be speculatively scheduled.
714 For control speculation it's obvious why and for data speculation
715 it's because the insn might get wrong input if speculation
716 wasn't successful. */
719 if ((ds
& BE_IN_DATA
)
720 && sched_has_condition_p (insn
))
721 /* If this is a predicated instruction, then it cannot be
722 speculatively scheduled. See PR35659. */
729 /* Initialize LIST_PTR to point to one of the lists present in TYPES_PTR,
730 initialize RESOLVED_P_PTR with true if that list consists of resolved deps,
731 and remove the type of returned [through LIST_PTR] list from TYPES_PTR.
732 This function is used to switch sd_iterator to the next list.
733 !!! For internal use only. Might consider moving it to sched-int.h. */
735 sd_next_list (const_rtx insn
, sd_list_types_def
*types_ptr
,
736 deps_list_t
*list_ptr
, bool *resolved_p_ptr
)
738 sd_list_types_def types
= *types_ptr
;
740 if (types
& SD_LIST_HARD_BACK
)
742 *list_ptr
= INSN_HARD_BACK_DEPS (insn
);
743 *resolved_p_ptr
= false;
744 *types_ptr
= types
& ~SD_LIST_HARD_BACK
;
746 else if (types
& SD_LIST_SPEC_BACK
)
748 *list_ptr
= INSN_SPEC_BACK_DEPS (insn
);
749 *resolved_p_ptr
= false;
750 *types_ptr
= types
& ~SD_LIST_SPEC_BACK
;
752 else if (types
& SD_LIST_FORW
)
754 *list_ptr
= INSN_FORW_DEPS (insn
);
755 *resolved_p_ptr
= false;
756 *types_ptr
= types
& ~SD_LIST_FORW
;
758 else if (types
& SD_LIST_RES_BACK
)
760 *list_ptr
= INSN_RESOLVED_BACK_DEPS (insn
);
761 *resolved_p_ptr
= true;
762 *types_ptr
= types
& ~SD_LIST_RES_BACK
;
764 else if (types
& SD_LIST_RES_FORW
)
766 *list_ptr
= INSN_RESOLVED_FORW_DEPS (insn
);
767 *resolved_p_ptr
= true;
768 *types_ptr
= types
& ~SD_LIST_RES_FORW
;
773 *resolved_p_ptr
= false;
774 *types_ptr
= SD_LIST_NONE
;
778 /* Return the summary size of INSN's lists defined by LIST_TYPES. */
780 sd_lists_size (const_rtx insn
, sd_list_types_def list_types
)
784 while (list_types
!= SD_LIST_NONE
)
789 sd_next_list (insn
, &list_types
, &list
, &resolved_p
);
791 size
+= DEPS_LIST_N_LINKS (list
);
797 /* Return true if INSN's lists defined by LIST_TYPES are all empty. */
800 sd_lists_empty_p (const_rtx insn
, sd_list_types_def list_types
)
802 while (list_types
!= SD_LIST_NONE
)
807 sd_next_list (insn
, &list_types
, &list
, &resolved_p
);
808 if (!deps_list_empty_p (list
))
815 /* Initialize data for INSN. */
817 sd_init_insn (rtx insn
)
819 INSN_HARD_BACK_DEPS (insn
) = create_deps_list ();
820 INSN_SPEC_BACK_DEPS (insn
) = create_deps_list ();
821 INSN_RESOLVED_BACK_DEPS (insn
) = create_deps_list ();
822 INSN_FORW_DEPS (insn
) = create_deps_list ();
823 INSN_RESOLVED_FORW_DEPS (insn
) = create_deps_list ();
825 /* ??? It would be nice to allocate dependency caches here. */
828 /* Free data for INSN. */
830 sd_finish_insn (rtx insn
)
832 /* ??? It would be nice to deallocate dependency caches here. */
834 free_deps_list (INSN_HARD_BACK_DEPS (insn
));
835 INSN_HARD_BACK_DEPS (insn
) = NULL
;
837 free_deps_list (INSN_SPEC_BACK_DEPS (insn
));
838 INSN_SPEC_BACK_DEPS (insn
) = NULL
;
840 free_deps_list (INSN_RESOLVED_BACK_DEPS (insn
));
841 INSN_RESOLVED_BACK_DEPS (insn
) = NULL
;
843 free_deps_list (INSN_FORW_DEPS (insn
));
844 INSN_FORW_DEPS (insn
) = NULL
;
846 free_deps_list (INSN_RESOLVED_FORW_DEPS (insn
));
847 INSN_RESOLVED_FORW_DEPS (insn
) = NULL
;
850 /* Find a dependency between producer PRO and consumer CON.
851 Search through resolved dependency lists if RESOLVED_P is true.
852 If no such dependency is found return NULL,
853 otherwise return the dependency and initialize SD_IT_PTR [if it is nonnull]
854 with an iterator pointing to it. */
856 sd_find_dep_between_no_cache (rtx pro
, rtx con
, bool resolved_p
,
857 sd_iterator_def
*sd_it_ptr
)
859 sd_list_types_def pro_list_type
;
860 sd_list_types_def con_list_type
;
861 sd_iterator_def sd_it
;
863 bool found_p
= false;
867 pro_list_type
= SD_LIST_RES_FORW
;
868 con_list_type
= SD_LIST_RES_BACK
;
872 pro_list_type
= SD_LIST_FORW
;
873 con_list_type
= SD_LIST_BACK
;
876 /* Walk through either back list of INSN or forw list of ELEM
877 depending on which one is shorter. */
878 if (sd_lists_size (con
, con_list_type
) < sd_lists_size (pro
, pro_list_type
))
880 /* Find the dep_link with producer PRO in consumer's back_deps. */
881 FOR_EACH_DEP (con
, con_list_type
, sd_it
, dep
)
882 if (DEP_PRO (dep
) == pro
)
890 /* Find the dep_link with consumer CON in producer's forw_deps. */
891 FOR_EACH_DEP (pro
, pro_list_type
, sd_it
, dep
)
892 if (DEP_CON (dep
) == con
)
901 if (sd_it_ptr
!= NULL
)
910 /* Find a dependency between producer PRO and consumer CON.
911 Use dependency [if available] to check if dependency is present at all.
912 Search through resolved dependency lists if RESOLVED_P is true.
913 If the dependency or NULL if none found. */
915 sd_find_dep_between (rtx pro
, rtx con
, bool resolved_p
)
917 if (true_dependency_cache
!= NULL
)
918 /* Avoiding the list walk below can cut compile times dramatically
921 int elem_luid
= INSN_LUID (pro
);
922 int insn_luid
= INSN_LUID (con
);
924 if (!bitmap_bit_p (&true_dependency_cache
[insn_luid
], elem_luid
)
925 && !bitmap_bit_p (&output_dependency_cache
[insn_luid
], elem_luid
)
926 && !bitmap_bit_p (&anti_dependency_cache
[insn_luid
], elem_luid
)
927 && !bitmap_bit_p (&control_dependency_cache
[insn_luid
], elem_luid
))
931 return sd_find_dep_between_no_cache (pro
, con
, resolved_p
, NULL
);
934 /* Add or update a dependence described by DEP.
935 MEM1 and MEM2, if non-null, correspond to memory locations in case of
938 The function returns a value indicating if an old entry has been changed
939 or a new entry has been added to insn's backward deps.
941 This function merely checks if producer and consumer is the same insn
942 and doesn't create a dep in this case. Actual manipulation of
943 dependence data structures is performed in add_or_update_dep_1. */
944 static enum DEPS_ADJUST_RESULT
945 maybe_add_or_update_dep_1 (dep_t dep
, bool resolved_p
, rtx mem1
, rtx mem2
)
947 rtx_insn
*elem
= DEP_PRO (dep
);
948 rtx_insn
*insn
= DEP_CON (dep
);
950 gcc_assert (INSN_P (insn
) && INSN_P (elem
));
952 /* Don't depend an insn on itself. */
955 if (sched_deps_info
->generate_spec_deps
)
956 /* INSN has an internal dependence, which we can't overcome. */
957 HAS_INTERNAL_DEP (insn
) = 1;
962 return add_or_update_dep_1 (dep
, resolved_p
, mem1
, mem2
);
965 /* Ask dependency caches what needs to be done for dependence DEP.
966 Return DEP_CREATED if new dependence should be created and there is no
967 need to try to find one searching the dependencies lists.
968 Return DEP_PRESENT if there already is a dependence described by DEP and
969 hence nothing is to be done.
970 Return DEP_CHANGED if there already is a dependence, but it should be
971 updated to incorporate additional information from DEP. */
972 static enum DEPS_ADJUST_RESULT
973 ask_dependency_caches (dep_t dep
)
975 int elem_luid
= INSN_LUID (DEP_PRO (dep
));
976 int insn_luid
= INSN_LUID (DEP_CON (dep
));
978 gcc_assert (true_dependency_cache
!= NULL
979 && output_dependency_cache
!= NULL
980 && anti_dependency_cache
!= NULL
981 && control_dependency_cache
!= NULL
);
983 if (!(current_sched_info
->flags
& USE_DEPS_LIST
))
985 enum reg_note present_dep_type
;
987 if (bitmap_bit_p (&true_dependency_cache
[insn_luid
], elem_luid
))
988 present_dep_type
= REG_DEP_TRUE
;
989 else if (bitmap_bit_p (&output_dependency_cache
[insn_luid
], elem_luid
))
990 present_dep_type
= REG_DEP_OUTPUT
;
991 else if (bitmap_bit_p (&anti_dependency_cache
[insn_luid
], elem_luid
))
992 present_dep_type
= REG_DEP_ANTI
;
993 else if (bitmap_bit_p (&control_dependency_cache
[insn_luid
], elem_luid
))
994 present_dep_type
= REG_DEP_CONTROL
;
996 /* There is no existing dep so it should be created. */
999 if ((int) DEP_TYPE (dep
) >= (int) present_dep_type
)
1000 /* DEP does not add anything to the existing dependence. */
1005 ds_t present_dep_types
= 0;
1007 if (bitmap_bit_p (&true_dependency_cache
[insn_luid
], elem_luid
))
1008 present_dep_types
|= DEP_TRUE
;
1009 if (bitmap_bit_p (&output_dependency_cache
[insn_luid
], elem_luid
))
1010 present_dep_types
|= DEP_OUTPUT
;
1011 if (bitmap_bit_p (&anti_dependency_cache
[insn_luid
], elem_luid
))
1012 present_dep_types
|= DEP_ANTI
;
1013 if (bitmap_bit_p (&control_dependency_cache
[insn_luid
], elem_luid
))
1014 present_dep_types
|= DEP_CONTROL
;
1016 if (present_dep_types
== 0)
1017 /* There is no existing dep so it should be created. */
1020 if (!(current_sched_info
->flags
& DO_SPECULATION
)
1021 || !bitmap_bit_p (&spec_dependency_cache
[insn_luid
], elem_luid
))
1023 if ((present_dep_types
| (DEP_STATUS (dep
) & DEP_TYPES
))
1024 == present_dep_types
)
1025 /* DEP does not add anything to the existing dependence. */
1030 /* Only true dependencies can be data speculative and
1031 only anti dependencies can be control speculative. */
1032 gcc_assert ((present_dep_types
& (DEP_TRUE
| DEP_ANTI
))
1033 == present_dep_types
);
1035 /* if (DEP is SPECULATIVE) then
1036 ..we should update DEP_STATUS
1038 ..we should reset existing dep to non-speculative. */
1045 /* Set dependency caches according to DEP. */
1047 set_dependency_caches (dep_t dep
)
1049 int elem_luid
= INSN_LUID (DEP_PRO (dep
));
1050 int insn_luid
= INSN_LUID (DEP_CON (dep
));
1052 if (!(current_sched_info
->flags
& USE_DEPS_LIST
))
1054 switch (DEP_TYPE (dep
))
1057 bitmap_set_bit (&true_dependency_cache
[insn_luid
], elem_luid
);
1060 case REG_DEP_OUTPUT
:
1061 bitmap_set_bit (&output_dependency_cache
[insn_luid
], elem_luid
);
1065 bitmap_set_bit (&anti_dependency_cache
[insn_luid
], elem_luid
);
1068 case REG_DEP_CONTROL
:
1069 bitmap_set_bit (&control_dependency_cache
[insn_luid
], elem_luid
);
1078 ds_t ds
= DEP_STATUS (dep
);
1081 bitmap_set_bit (&true_dependency_cache
[insn_luid
], elem_luid
);
1082 if (ds
& DEP_OUTPUT
)
1083 bitmap_set_bit (&output_dependency_cache
[insn_luid
], elem_luid
);
1085 bitmap_set_bit (&anti_dependency_cache
[insn_luid
], elem_luid
);
1086 if (ds
& DEP_CONTROL
)
1087 bitmap_set_bit (&control_dependency_cache
[insn_luid
], elem_luid
);
1089 if (ds
& SPECULATIVE
)
1091 gcc_assert (current_sched_info
->flags
& DO_SPECULATION
);
1092 bitmap_set_bit (&spec_dependency_cache
[insn_luid
], elem_luid
);
1097 /* Type of dependence DEP have changed from OLD_TYPE. Update dependency
1098 caches accordingly. */
1100 update_dependency_caches (dep_t dep
, enum reg_note old_type
)
1102 int elem_luid
= INSN_LUID (DEP_PRO (dep
));
1103 int insn_luid
= INSN_LUID (DEP_CON (dep
));
1105 /* Clear corresponding cache entry because type of the link
1106 may have changed. Keep them if we use_deps_list. */
1107 if (!(current_sched_info
->flags
& USE_DEPS_LIST
))
1111 case REG_DEP_OUTPUT
:
1112 bitmap_clear_bit (&output_dependency_cache
[insn_luid
], elem_luid
);
1116 bitmap_clear_bit (&anti_dependency_cache
[insn_luid
], elem_luid
);
1119 case REG_DEP_CONTROL
:
1120 bitmap_clear_bit (&control_dependency_cache
[insn_luid
], elem_luid
);
1128 set_dependency_caches (dep
);
1131 /* Convert a dependence pointed to by SD_IT to be non-speculative. */
1133 change_spec_dep_to_hard (sd_iterator_def sd_it
)
1135 dep_node_t node
= DEP_LINK_NODE (*sd_it
.linkp
);
1136 dep_link_t link
= DEP_NODE_BACK (node
);
1137 dep_t dep
= DEP_NODE_DEP (node
);
1138 rtx_insn
*elem
= DEP_PRO (dep
);
1139 rtx_insn
*insn
= DEP_CON (dep
);
1141 move_dep_link (link
, INSN_SPEC_BACK_DEPS (insn
), INSN_HARD_BACK_DEPS (insn
));
1143 DEP_STATUS (dep
) &= ~SPECULATIVE
;
1145 if (true_dependency_cache
!= NULL
)
1146 /* Clear the cache entry. */
1147 bitmap_clear_bit (&spec_dependency_cache
[INSN_LUID (insn
)],
1151 /* Update DEP to incorporate information from NEW_DEP.
1152 SD_IT points to DEP in case it should be moved to another list.
1153 MEM1 and MEM2, if nonnull, correspond to memory locations in case if
1154 data-speculative dependence should be updated. */
1155 static enum DEPS_ADJUST_RESULT
1156 update_dep (dep_t dep
, dep_t new_dep
,
1157 sd_iterator_def sd_it ATTRIBUTE_UNUSED
,
1158 rtx mem1 ATTRIBUTE_UNUSED
,
1159 rtx mem2 ATTRIBUTE_UNUSED
)
1161 enum DEPS_ADJUST_RESULT res
= DEP_PRESENT
;
1162 enum reg_note old_type
= DEP_TYPE (dep
);
1163 bool was_spec
= dep_spec_p (dep
);
1165 DEP_NONREG (dep
) |= DEP_NONREG (new_dep
);
1166 DEP_MULTIPLE (dep
) = 1;
1168 /* If this is a more restrictive type of dependence than the
1169 existing one, then change the existing dependence to this
1171 if ((int) DEP_TYPE (new_dep
) < (int) old_type
)
1173 DEP_TYPE (dep
) = DEP_TYPE (new_dep
);
1177 if (current_sched_info
->flags
& USE_DEPS_LIST
)
1178 /* Update DEP_STATUS. */
1180 ds_t dep_status
= DEP_STATUS (dep
);
1181 ds_t ds
= DEP_STATUS (new_dep
);
1182 ds_t new_status
= ds
| dep_status
;
1184 if (new_status
& SPECULATIVE
)
1186 /* Either existing dep or a dep we're adding or both are
1188 if (!(ds
& SPECULATIVE
)
1189 || !(dep_status
& SPECULATIVE
))
1190 /* The new dep can't be speculative. */
1191 new_status
&= ~SPECULATIVE
;
1194 /* Both are speculative. Merge probabilities. */
1199 dw
= estimate_dep_weak (mem1
, mem2
);
1200 ds
= set_dep_weak (ds
, BEGIN_DATA
, dw
);
1203 new_status
= ds_merge (dep_status
, ds
);
1209 if (dep_status
!= ds
)
1211 DEP_STATUS (dep
) = ds
;
1216 if (was_spec
&& !dep_spec_p (dep
))
1217 /* The old dep was speculative, but now it isn't. */
1218 change_spec_dep_to_hard (sd_it
);
1220 if (true_dependency_cache
!= NULL
1221 && res
== DEP_CHANGED
)
1222 update_dependency_caches (dep
, old_type
);
1227 /* Add or update a dependence described by DEP.
1228 MEM1 and MEM2, if non-null, correspond to memory locations in case of
1231 The function returns a value indicating if an old entry has been changed
1232 or a new entry has been added to insn's backward deps or nothing has
1233 been updated at all. */
1234 static enum DEPS_ADJUST_RESULT
1235 add_or_update_dep_1 (dep_t new_dep
, bool resolved_p
,
1236 rtx mem1 ATTRIBUTE_UNUSED
, rtx mem2 ATTRIBUTE_UNUSED
)
1238 bool maybe_present_p
= true;
1239 bool present_p
= false;
1241 gcc_assert (INSN_P (DEP_PRO (new_dep
)) && INSN_P (DEP_CON (new_dep
))
1242 && DEP_PRO (new_dep
) != DEP_CON (new_dep
));
1244 #ifdef ENABLE_CHECKING
1245 check_dep (new_dep
, mem1
!= NULL
);
1248 if (true_dependency_cache
!= NULL
)
1250 switch (ask_dependency_caches (new_dep
))
1254 sd_iterator_def sd_it
;
1256 present_dep
= sd_find_dep_between_no_cache (DEP_PRO (new_dep
),
1258 resolved_p
, &sd_it
);
1259 DEP_MULTIPLE (present_dep
) = 1;
1263 maybe_present_p
= true;
1268 maybe_present_p
= false;
1278 /* Check that we don't already have this dependence. */
1279 if (maybe_present_p
)
1282 sd_iterator_def sd_it
;
1284 gcc_assert (true_dependency_cache
== NULL
|| present_p
);
1286 present_dep
= sd_find_dep_between_no_cache (DEP_PRO (new_dep
),
1288 resolved_p
, &sd_it
);
1290 if (present_dep
!= NULL
)
1291 /* We found an existing dependency between ELEM and INSN. */
1292 return update_dep (present_dep
, new_dep
, sd_it
, mem1
, mem2
);
1294 /* We didn't find a dep, it shouldn't present in the cache. */
1295 gcc_assert (!present_p
);
1298 /* Might want to check one level of transitivity to save conses.
1299 This check should be done in maybe_add_or_update_dep_1.
1300 Since we made it to add_or_update_dep_1, we must create
1301 (or update) a link. */
1303 if (mem1
!= NULL_RTX
)
1305 gcc_assert (sched_deps_info
->generate_spec_deps
);
1306 DEP_STATUS (new_dep
) = set_dep_weak (DEP_STATUS (new_dep
), BEGIN_DATA
,
1307 estimate_dep_weak (mem1
, mem2
));
1310 sd_add_dep (new_dep
, resolved_p
);
1315 /* Initialize BACK_LIST_PTR with consumer's backward list and
1316 FORW_LIST_PTR with producer's forward list. If RESOLVED_P is true
1317 initialize with lists that hold resolved deps. */
1319 get_back_and_forw_lists (dep_t dep
, bool resolved_p
,
1320 deps_list_t
*back_list_ptr
,
1321 deps_list_t
*forw_list_ptr
)
1323 rtx_insn
*con
= DEP_CON (dep
);
1327 if (dep_spec_p (dep
))
1328 *back_list_ptr
= INSN_SPEC_BACK_DEPS (con
);
1330 *back_list_ptr
= INSN_HARD_BACK_DEPS (con
);
1332 *forw_list_ptr
= INSN_FORW_DEPS (DEP_PRO (dep
));
1336 *back_list_ptr
= INSN_RESOLVED_BACK_DEPS (con
);
1337 *forw_list_ptr
= INSN_RESOLVED_FORW_DEPS (DEP_PRO (dep
));
1341 /* Add dependence described by DEP.
1342 If RESOLVED_P is true treat the dependence as a resolved one. */
1344 sd_add_dep (dep_t dep
, bool resolved_p
)
1346 dep_node_t n
= create_dep_node ();
1347 deps_list_t con_back_deps
;
1348 deps_list_t pro_forw_deps
;
1349 rtx_insn
*elem
= DEP_PRO (dep
);
1350 rtx_insn
*insn
= DEP_CON (dep
);
1352 gcc_assert (INSN_P (insn
) && INSN_P (elem
) && insn
!= elem
);
1354 if ((current_sched_info
->flags
& DO_SPECULATION
) == 0
1355 || !sched_insn_is_legitimate_for_speculation_p (insn
, DEP_STATUS (dep
)))
1356 DEP_STATUS (dep
) &= ~SPECULATIVE
;
1358 copy_dep (DEP_NODE_DEP (n
), dep
);
1360 get_back_and_forw_lists (dep
, resolved_p
, &con_back_deps
, &pro_forw_deps
);
1362 add_to_deps_list (DEP_NODE_BACK (n
), con_back_deps
);
1364 #ifdef ENABLE_CHECKING
1365 check_dep (dep
, false);
1368 add_to_deps_list (DEP_NODE_FORW (n
), pro_forw_deps
);
1370 /* If we are adding a dependency to INSN's LOG_LINKs, then note that
1371 in the bitmap caches of dependency information. */
1372 if (true_dependency_cache
!= NULL
)
1373 set_dependency_caches (dep
);
1376 /* Add or update backward dependence between INSN and ELEM
1377 with given type DEP_TYPE and dep_status DS.
1378 This function is a convenience wrapper. */
1379 enum DEPS_ADJUST_RESULT
1380 sd_add_or_update_dep (dep_t dep
, bool resolved_p
)
1382 return add_or_update_dep_1 (dep
, resolved_p
, NULL_RTX
, NULL_RTX
);
1385 /* Resolved dependence pointed to by SD_IT.
1386 SD_IT will advance to the next element. */
1388 sd_resolve_dep (sd_iterator_def sd_it
)
1390 dep_node_t node
= DEP_LINK_NODE (*sd_it
.linkp
);
1391 dep_t dep
= DEP_NODE_DEP (node
);
1392 rtx_insn
*pro
= DEP_PRO (dep
);
1393 rtx_insn
*con
= DEP_CON (dep
);
1395 if (dep_spec_p (dep
))
1396 move_dep_link (DEP_NODE_BACK (node
), INSN_SPEC_BACK_DEPS (con
),
1397 INSN_RESOLVED_BACK_DEPS (con
));
1399 move_dep_link (DEP_NODE_BACK (node
), INSN_HARD_BACK_DEPS (con
),
1400 INSN_RESOLVED_BACK_DEPS (con
));
1402 move_dep_link (DEP_NODE_FORW (node
), INSN_FORW_DEPS (pro
),
1403 INSN_RESOLVED_FORW_DEPS (pro
));
1406 /* Perform the inverse operation of sd_resolve_dep. Restore the dependence
1407 pointed to by SD_IT to unresolved state. */
1409 sd_unresolve_dep (sd_iterator_def sd_it
)
1411 dep_node_t node
= DEP_LINK_NODE (*sd_it
.linkp
);
1412 dep_t dep
= DEP_NODE_DEP (node
);
1413 rtx_insn
*pro
= DEP_PRO (dep
);
1414 rtx_insn
*con
= DEP_CON (dep
);
1416 if (dep_spec_p (dep
))
1417 move_dep_link (DEP_NODE_BACK (node
), INSN_RESOLVED_BACK_DEPS (con
),
1418 INSN_SPEC_BACK_DEPS (con
));
1420 move_dep_link (DEP_NODE_BACK (node
), INSN_RESOLVED_BACK_DEPS (con
),
1421 INSN_HARD_BACK_DEPS (con
));
1423 move_dep_link (DEP_NODE_FORW (node
), INSN_RESOLVED_FORW_DEPS (pro
),
1424 INSN_FORW_DEPS (pro
));
1427 /* Make TO depend on all the FROM's producers.
1428 If RESOLVED_P is true add dependencies to the resolved lists. */
1430 sd_copy_back_deps (rtx_insn
*to
, rtx_insn
*from
, bool resolved_p
)
1432 sd_list_types_def list_type
;
1433 sd_iterator_def sd_it
;
1436 list_type
= resolved_p
? SD_LIST_RES_BACK
: SD_LIST_BACK
;
1438 FOR_EACH_DEP (from
, list_type
, sd_it
, dep
)
1440 dep_def _new_dep
, *new_dep
= &_new_dep
;
1442 copy_dep (new_dep
, dep
);
1443 DEP_CON (new_dep
) = to
;
1444 sd_add_dep (new_dep
, resolved_p
);
1448 /* Remove a dependency referred to by SD_IT.
1449 SD_IT will point to the next dependence after removal. */
1451 sd_delete_dep (sd_iterator_def sd_it
)
1453 dep_node_t n
= DEP_LINK_NODE (*sd_it
.linkp
);
1454 dep_t dep
= DEP_NODE_DEP (n
);
1455 rtx_insn
*pro
= DEP_PRO (dep
);
1456 rtx_insn
*con
= DEP_CON (dep
);
1457 deps_list_t con_back_deps
;
1458 deps_list_t pro_forw_deps
;
1460 if (true_dependency_cache
!= NULL
)
1462 int elem_luid
= INSN_LUID (pro
);
1463 int insn_luid
= INSN_LUID (con
);
1465 bitmap_clear_bit (&true_dependency_cache
[insn_luid
], elem_luid
);
1466 bitmap_clear_bit (&anti_dependency_cache
[insn_luid
], elem_luid
);
1467 bitmap_clear_bit (&control_dependency_cache
[insn_luid
], elem_luid
);
1468 bitmap_clear_bit (&output_dependency_cache
[insn_luid
], elem_luid
);
1470 if (current_sched_info
->flags
& DO_SPECULATION
)
1471 bitmap_clear_bit (&spec_dependency_cache
[insn_luid
], elem_luid
);
1474 get_back_and_forw_lists (dep
, sd_it
.resolved_p
,
1475 &con_back_deps
, &pro_forw_deps
);
1477 remove_from_deps_list (DEP_NODE_BACK (n
), con_back_deps
);
1478 remove_from_deps_list (DEP_NODE_FORW (n
), pro_forw_deps
);
1480 delete_dep_node (n
);
1483 /* Dump size of the lists. */
1484 #define DUMP_LISTS_SIZE (2)
1486 /* Dump dependencies of the lists. */
1487 #define DUMP_LISTS_DEPS (4)
1489 /* Dump all information about the lists. */
1490 #define DUMP_LISTS_ALL (DUMP_LISTS_SIZE | DUMP_LISTS_DEPS)
1492 /* Dump deps_lists of INSN specified by TYPES to DUMP.
1493 FLAGS is a bit mask specifying what information about the lists needs
1495 If FLAGS has the very first bit set, then dump all information about
1496 the lists and propagate this bit into the callee dump functions. */
1498 dump_lists (FILE *dump
, rtx insn
, sd_list_types_def types
, int flags
)
1500 sd_iterator_def sd_it
;
1507 flags
|= DUMP_LISTS_ALL
;
1509 fprintf (dump
, "[");
1511 if (flags
& DUMP_LISTS_SIZE
)
1512 fprintf (dump
, "%d; ", sd_lists_size (insn
, types
));
1514 if (flags
& DUMP_LISTS_DEPS
)
1516 FOR_EACH_DEP (insn
, types
, sd_it
, dep
)
1518 dump_dep (dump
, dep
, dump_dep_flags
| all
);
1519 fprintf (dump
, " ");
1524 /* Dump all information about deps_lists of INSN specified by TYPES
1527 sd_debug_lists (rtx insn
, sd_list_types_def types
)
1529 dump_lists (stderr
, insn
, types
, 1);
1530 fprintf (stderr
, "\n");
1533 /* A wrapper around add_dependence_1, to add a dependence of CON on
1534 PRO, with type DEP_TYPE. This function implements special handling
1535 for REG_DEP_CONTROL dependencies. For these, we optionally promote
1536 the type to REG_DEP_ANTI if we can determine that predication is
1537 impossible; otherwise we add additional true dependencies on the
1538 INSN_COND_DEPS list of the jump (which PRO must be). */
1540 add_dependence (rtx_insn
*con
, rtx_insn
*pro
, enum reg_note dep_type
)
1542 if (dep_type
== REG_DEP_CONTROL
1543 && !(current_sched_info
->flags
& DO_PREDICATION
))
1544 dep_type
= REG_DEP_ANTI
;
1546 /* A REG_DEP_CONTROL dependence may be eliminated through predication,
1547 so we must also make the insn dependent on the setter of the
1549 if (dep_type
== REG_DEP_CONTROL
)
1551 rtx_insn
*real_pro
= pro
;
1552 rtx_insn
*other
= real_insn_for_shadow (real_pro
);
1555 if (other
!= NULL_RTX
)
1557 cond
= sched_get_reverse_condition_uncached (real_pro
);
1558 /* Verify that the insn does not use a different value in
1559 the condition register than the one that was present at
1561 if (cond
== NULL_RTX
)
1562 dep_type
= REG_DEP_ANTI
;
1563 else if (INSN_CACHED_COND (real_pro
) == const_true_rtx
)
1566 CLEAR_HARD_REG_SET (uses
);
1567 note_uses (&PATTERN (con
), record_hard_reg_uses
, &uses
);
1568 if (TEST_HARD_REG_BIT (uses
, REGNO (XEXP (cond
, 0))))
1569 dep_type
= REG_DEP_ANTI
;
1571 if (dep_type
== REG_DEP_CONTROL
)
1573 if (sched_verbose
>= 5)
1574 fprintf (sched_dump
, "making DEP_CONTROL for %d\n",
1575 INSN_UID (real_pro
));
1576 add_dependence_list (con
, INSN_COND_DEPS (real_pro
), 0,
1577 REG_DEP_TRUE
, false);
1581 add_dependence_1 (con
, pro
, dep_type
);
1584 /* A convenience wrapper to operate on an entire list. HARD should be
1585 true if DEP_NONREG should be set on newly created dependencies. */
1588 add_dependence_list (rtx_insn
*insn
, rtx_insn_list
*list
, int uncond
,
1589 enum reg_note dep_type
, bool hard
)
1591 mark_as_hard
= hard
;
1592 for (; list
; list
= list
->next ())
1594 if (uncond
|| ! sched_insns_conditions_mutex_p (insn
, list
->insn ()))
1595 add_dependence (insn
, list
->insn (), dep_type
);
1597 mark_as_hard
= false;
1600 /* Similar, but free *LISTP at the same time, when the context
1601 is not readonly. HARD should be true if DEP_NONREG should be set on
1602 newly created dependencies. */
1605 add_dependence_list_and_free (struct deps_desc
*deps
, rtx_insn
*insn
,
1606 rtx_insn_list
**listp
,
1607 int uncond
, enum reg_note dep_type
, bool hard
)
1609 add_dependence_list (insn
, *listp
, uncond
, dep_type
, hard
);
1611 /* We don't want to short-circuit dependencies involving debug
1612 insns, because they may cause actual dependencies to be
1614 if (deps
->readonly
|| DEBUG_INSN_P (insn
))
1617 free_INSN_LIST_list (listp
);
1620 /* Remove all occurrences of INSN from LIST. Return the number of
1621 occurrences removed. */
1624 remove_from_dependence_list (rtx_insn
*insn
, rtx_insn_list
**listp
)
1630 if ((*listp
)->insn () == insn
)
1632 remove_free_INSN_LIST_node (listp
);
1637 listp
= (rtx_insn_list
**)&XEXP (*listp
, 1);
1643 /* Same as above, but process two lists at once. */
1645 remove_from_both_dependence_lists (rtx_insn
*insn
,
1646 rtx_insn_list
**listp
,
1647 rtx_expr_list
**exprp
)
1653 if (XEXP (*listp
, 0) == insn
)
1655 remove_free_INSN_LIST_node (listp
);
1656 remove_free_EXPR_LIST_node (exprp
);
1661 listp
= (rtx_insn_list
**)&XEXP (*listp
, 1);
1662 exprp
= (rtx_expr_list
**)&XEXP (*exprp
, 1);
1668 /* Clear all dependencies for an insn. */
1670 delete_all_dependences (rtx_insn
*insn
)
1672 sd_iterator_def sd_it
;
1675 /* The below cycle can be optimized to clear the caches and back_deps
1676 in one call but that would provoke duplication of code from
1679 for (sd_it
= sd_iterator_start (insn
, SD_LIST_BACK
);
1680 sd_iterator_cond (&sd_it
, &dep
);)
1681 sd_delete_dep (sd_it
);
1684 /* All insns in a scheduling group except the first should only have
1685 dependencies on the previous insn in the group. So we find the
1686 first instruction in the scheduling group by walking the dependence
1687 chains backwards. Then we add the dependencies for the group to
1688 the previous nonnote insn. */
1691 chain_to_prev_insn (rtx_insn
*insn
)
1693 sd_iterator_def sd_it
;
1695 rtx_insn
*prev_nonnote
;
1697 FOR_EACH_DEP (insn
, SD_LIST_BACK
, sd_it
, dep
)
1700 rtx_insn
*pro
= DEP_PRO (dep
);
1704 i
= prev_nonnote_insn (i
);
1708 } while (SCHED_GROUP_P (i
) || DEBUG_INSN_P (i
));
1710 if (! sched_insns_conditions_mutex_p (i
, pro
))
1711 add_dependence (i
, pro
, DEP_TYPE (dep
));
1715 delete_all_dependences (insn
);
1717 prev_nonnote
= prev_nonnote_nondebug_insn (insn
);
1718 if (BLOCK_FOR_INSN (insn
) == BLOCK_FOR_INSN (prev_nonnote
)
1719 && ! sched_insns_conditions_mutex_p (insn
, prev_nonnote
))
1720 add_dependence (insn
, prev_nonnote
, REG_DEP_ANTI
);
1723 /* Process an insn's memory dependencies. There are four kinds of
1726 (0) read dependence: read follows read
1727 (1) true dependence: read follows write
1728 (2) output dependence: write follows write
1729 (3) anti dependence: write follows read
1731 We are careful to build only dependencies which actually exist, and
1732 use transitivity to avoid building too many links. */
1734 /* Add an INSN and MEM reference pair to a pending INSN_LIST and MEM_LIST.
1735 The MEM is a memory reference contained within INSN, which we are saving
1736 so that we can do memory aliasing on it. */
1739 add_insn_mem_dependence (struct deps_desc
*deps
, bool read_p
,
1740 rtx_insn
*insn
, rtx mem
)
1742 rtx_insn_list
**insn_list
;
1743 rtx_insn_list
*insn_node
;
1744 rtx_expr_list
**mem_list
;
1745 rtx_expr_list
*mem_node
;
1747 gcc_assert (!deps
->readonly
);
1750 insn_list
= &deps
->pending_read_insns
;
1751 mem_list
= &deps
->pending_read_mems
;
1752 if (!DEBUG_INSN_P (insn
))
1753 deps
->pending_read_list_length
++;
1757 insn_list
= &deps
->pending_write_insns
;
1758 mem_list
= &deps
->pending_write_mems
;
1759 deps
->pending_write_list_length
++;
1762 insn_node
= alloc_INSN_LIST (insn
, *insn_list
);
1763 *insn_list
= insn_node
;
1765 if (sched_deps_info
->use_cselib
)
1767 mem
= shallow_copy_rtx (mem
);
1768 XEXP (mem
, 0) = cselib_subst_to_values_from_insn (XEXP (mem
, 0),
1769 GET_MODE (mem
), insn
);
1771 mem_node
= alloc_EXPR_LIST (VOIDmode
, canon_rtx (mem
), *mem_list
);
1772 *mem_list
= mem_node
;
1775 /* Make a dependency between every memory reference on the pending lists
1776 and INSN, thus flushing the pending lists. FOR_READ is true if emitting
1777 dependencies for a read operation, similarly with FOR_WRITE. */
1780 flush_pending_lists (struct deps_desc
*deps
, rtx_insn
*insn
, int for_read
,
1785 add_dependence_list_and_free (deps
, insn
, &deps
->pending_read_insns
,
1786 1, REG_DEP_ANTI
, true);
1787 if (!deps
->readonly
)
1789 free_EXPR_LIST_list (&deps
->pending_read_mems
);
1790 deps
->pending_read_list_length
= 0;
1794 add_dependence_list_and_free (deps
, insn
, &deps
->pending_write_insns
, 1,
1795 for_read
? REG_DEP_ANTI
: REG_DEP_OUTPUT
,
1798 add_dependence_list_and_free (deps
, insn
,
1799 &deps
->last_pending_memory_flush
, 1,
1800 for_read
? REG_DEP_ANTI
: REG_DEP_OUTPUT
,
1803 add_dependence_list_and_free (deps
, insn
, &deps
->pending_jump_insns
, 1,
1804 REG_DEP_ANTI
, true);
1806 if (DEBUG_INSN_P (insn
))
1809 free_INSN_LIST_list (&deps
->pending_read_insns
);
1810 free_INSN_LIST_list (&deps
->pending_write_insns
);
1811 free_INSN_LIST_list (&deps
->last_pending_memory_flush
);
1812 free_INSN_LIST_list (&deps
->pending_jump_insns
);
1815 if (!deps
->readonly
)
1817 free_EXPR_LIST_list (&deps
->pending_write_mems
);
1818 deps
->pending_write_list_length
= 0;
1820 deps
->last_pending_memory_flush
= alloc_INSN_LIST (insn
, NULL_RTX
);
1821 deps
->pending_flush_length
= 1;
1823 mark_as_hard
= false;
1826 /* Instruction which dependencies we are analyzing. */
1827 static rtx_insn
*cur_insn
= NULL
;
1829 /* Implement hooks for haifa scheduler. */
1832 haifa_start_insn (rtx_insn
*insn
)
1834 gcc_assert (insn
&& !cur_insn
);
1840 haifa_finish_insn (void)
1846 haifa_note_reg_set (int regno
)
1848 SET_REGNO_REG_SET (reg_pending_sets
, regno
);
1852 haifa_note_reg_clobber (int regno
)
1854 SET_REGNO_REG_SET (reg_pending_clobbers
, regno
);
1858 haifa_note_reg_use (int regno
)
1860 SET_REGNO_REG_SET (reg_pending_uses
, regno
);
1864 haifa_note_mem_dep (rtx mem
, rtx pending_mem
, rtx_insn
*pending_insn
, ds_t ds
)
1866 if (!(ds
& SPECULATIVE
))
1869 pending_mem
= NULL_RTX
;
1872 gcc_assert (ds
& BEGIN_DATA
);
1875 dep_def _dep
, *dep
= &_dep
;
1877 init_dep_1 (dep
, pending_insn
, cur_insn
, ds_to_dt (ds
),
1878 current_sched_info
->flags
& USE_DEPS_LIST
? ds
: 0);
1879 DEP_NONREG (dep
) = 1;
1880 maybe_add_or_update_dep_1 (dep
, false, pending_mem
, mem
);
1886 haifa_note_dep (rtx_insn
*elem
, ds_t ds
)
1891 init_dep (dep
, elem
, cur_insn
, ds_to_dt (ds
));
1893 DEP_NONREG (dep
) = 1;
1894 maybe_add_or_update_dep_1 (dep
, false, NULL_RTX
, NULL_RTX
);
1898 note_reg_use (int r
)
1900 if (sched_deps_info
->note_reg_use
)
1901 sched_deps_info
->note_reg_use (r
);
1905 note_reg_set (int r
)
1907 if (sched_deps_info
->note_reg_set
)
1908 sched_deps_info
->note_reg_set (r
);
1912 note_reg_clobber (int r
)
1914 if (sched_deps_info
->note_reg_clobber
)
1915 sched_deps_info
->note_reg_clobber (r
);
1919 note_mem_dep (rtx m1
, rtx m2
, rtx_insn
*e
, ds_t ds
)
1921 if (sched_deps_info
->note_mem_dep
)
1922 sched_deps_info
->note_mem_dep (m1
, m2
, e
, ds
);
1926 note_dep (rtx_insn
*e
, ds_t ds
)
1928 if (sched_deps_info
->note_dep
)
1929 sched_deps_info
->note_dep (e
, ds
);
1932 /* Return corresponding to DS reg_note. */
1937 return REG_DEP_TRUE
;
1938 else if (ds
& DEP_OUTPUT
)
1939 return REG_DEP_OUTPUT
;
1940 else if (ds
& DEP_ANTI
)
1941 return REG_DEP_ANTI
;
1944 gcc_assert (ds
& DEP_CONTROL
);
1945 return REG_DEP_CONTROL
;
1951 /* Functions for computation of info needed for register pressure
1952 sensitive insn scheduling. */
1955 /* Allocate and return reg_use_data structure for REGNO and INSN. */
1956 static struct reg_use_data
*
1957 create_insn_reg_use (int regno
, rtx_insn
*insn
)
1959 struct reg_use_data
*use
;
1961 use
= (struct reg_use_data
*) xmalloc (sizeof (struct reg_use_data
));
1964 use
->next_insn_use
= INSN_REG_USE_LIST (insn
);
1965 INSN_REG_USE_LIST (insn
) = use
;
1969 /* Allocate reg_set_data structure for REGNO and INSN. */
1971 create_insn_reg_set (int regno
, rtx insn
)
1973 struct reg_set_data
*set
;
1975 set
= (struct reg_set_data
*) xmalloc (sizeof (struct reg_set_data
));
1978 set
->next_insn_set
= INSN_REG_SET_LIST (insn
);
1979 INSN_REG_SET_LIST (insn
) = set
;
1982 /* Set up insn register uses for INSN and dependency context DEPS. */
1984 setup_insn_reg_uses (struct deps_desc
*deps
, rtx_insn
*insn
)
1987 reg_set_iterator rsi
;
1988 struct reg_use_data
*use
, *use2
, *next
;
1989 struct deps_reg
*reg_last
;
1991 EXECUTE_IF_SET_IN_REG_SET (reg_pending_uses
, 0, i
, rsi
)
1993 if (i
< FIRST_PSEUDO_REGISTER
1994 && TEST_HARD_REG_BIT (ira_no_alloc_regs
, i
))
1997 if (find_regno_note (insn
, REG_DEAD
, i
) == NULL_RTX
1998 && ! REGNO_REG_SET_P (reg_pending_sets
, i
)
1999 && ! REGNO_REG_SET_P (reg_pending_clobbers
, i
))
2000 /* Ignore use which is not dying. */
2003 use
= create_insn_reg_use (i
, insn
);
2004 use
->next_regno_use
= use
;
2005 reg_last
= &deps
->reg_last
[i
];
2007 /* Create the cycle list of uses. */
2008 for (rtx_insn_list
*list
= reg_last
->uses
; list
; list
= list
->next ())
2010 use2
= create_insn_reg_use (i
, list
->insn ());
2011 next
= use
->next_regno_use
;
2012 use
->next_regno_use
= use2
;
2013 use2
->next_regno_use
= next
;
2018 /* Register pressure info for the currently processed insn. */
2019 static struct reg_pressure_data reg_pressure_info
[N_REG_CLASSES
];
2021 /* Return TRUE if INSN has the use structure for REGNO. */
2023 insn_use_p (rtx insn
, int regno
)
2025 struct reg_use_data
*use
;
2027 for (use
= INSN_REG_USE_LIST (insn
); use
!= NULL
; use
= use
->next_insn_use
)
2028 if (use
->regno
== regno
)
2033 /* Update the register pressure info after birth of pseudo register REGNO
2034 in INSN. Arguments CLOBBER_P and UNUSED_P say correspondingly that
2035 the register is in clobber or unused after the insn. */
2037 mark_insn_pseudo_birth (rtx insn
, int regno
, bool clobber_p
, bool unused_p
)
2042 gcc_assert (regno
>= FIRST_PSEUDO_REGISTER
);
2043 cl
= sched_regno_pressure_class
[regno
];
2046 incr
= ira_reg_class_max_nregs
[cl
][PSEUDO_REGNO_MODE (regno
)];
2049 new_incr
= reg_pressure_info
[cl
].clobber_increase
+ incr
;
2050 reg_pressure_info
[cl
].clobber_increase
= new_incr
;
2054 new_incr
= reg_pressure_info
[cl
].unused_set_increase
+ incr
;
2055 reg_pressure_info
[cl
].unused_set_increase
= new_incr
;
2059 new_incr
= reg_pressure_info
[cl
].set_increase
+ incr
;
2060 reg_pressure_info
[cl
].set_increase
= new_incr
;
2061 if (! insn_use_p (insn
, regno
))
2062 reg_pressure_info
[cl
].change
+= incr
;
2063 create_insn_reg_set (regno
, insn
);
2065 gcc_assert (new_incr
< (1 << INCREASE_BITS
));
2069 /* Like mark_insn_pseudo_regno_birth except that NREGS saying how many
2070 hard registers involved in the birth. */
2072 mark_insn_hard_regno_birth (rtx insn
, int regno
, int nregs
,
2073 bool clobber_p
, bool unused_p
)
2076 int new_incr
, last
= regno
+ nregs
;
2078 while (regno
< last
)
2080 gcc_assert (regno
< FIRST_PSEUDO_REGISTER
);
2081 if (! TEST_HARD_REG_BIT (ira_no_alloc_regs
, regno
))
2083 cl
= sched_regno_pressure_class
[regno
];
2088 new_incr
= reg_pressure_info
[cl
].clobber_increase
+ 1;
2089 reg_pressure_info
[cl
].clobber_increase
= new_incr
;
2093 new_incr
= reg_pressure_info
[cl
].unused_set_increase
+ 1;
2094 reg_pressure_info
[cl
].unused_set_increase
= new_incr
;
2098 new_incr
= reg_pressure_info
[cl
].set_increase
+ 1;
2099 reg_pressure_info
[cl
].set_increase
= new_incr
;
2100 if (! insn_use_p (insn
, regno
))
2101 reg_pressure_info
[cl
].change
+= 1;
2102 create_insn_reg_set (regno
, insn
);
2104 gcc_assert (new_incr
< (1 << INCREASE_BITS
));
2111 /* Update the register pressure info after birth of pseudo or hard
2112 register REG in INSN. Arguments CLOBBER_P and UNUSED_P say
2113 correspondingly that the register is in clobber or unused after the
2116 mark_insn_reg_birth (rtx insn
, rtx reg
, bool clobber_p
, bool unused_p
)
2120 if (GET_CODE (reg
) == SUBREG
)
2121 reg
= SUBREG_REG (reg
);
2126 regno
= REGNO (reg
);
2127 if (regno
< FIRST_PSEUDO_REGISTER
)
2128 mark_insn_hard_regno_birth (insn
, regno
,
2129 hard_regno_nregs
[regno
][GET_MODE (reg
)],
2130 clobber_p
, unused_p
);
2132 mark_insn_pseudo_birth (insn
, regno
, clobber_p
, unused_p
);
2135 /* Update the register pressure info after death of pseudo register
2138 mark_pseudo_death (int regno
)
2143 gcc_assert (regno
>= FIRST_PSEUDO_REGISTER
);
2144 cl
= sched_regno_pressure_class
[regno
];
2147 incr
= ira_reg_class_max_nregs
[cl
][PSEUDO_REGNO_MODE (regno
)];
2148 reg_pressure_info
[cl
].change
-= incr
;
2152 /* Like mark_pseudo_death except that NREGS saying how many hard
2153 registers involved in the death. */
2155 mark_hard_regno_death (int regno
, int nregs
)
2158 int last
= regno
+ nregs
;
2160 while (regno
< last
)
2162 gcc_assert (regno
< FIRST_PSEUDO_REGISTER
);
2163 if (! TEST_HARD_REG_BIT (ira_no_alloc_regs
, regno
))
2165 cl
= sched_regno_pressure_class
[regno
];
2167 reg_pressure_info
[cl
].change
-= 1;
2173 /* Update the register pressure info after death of pseudo or hard
2176 mark_reg_death (rtx reg
)
2180 if (GET_CODE (reg
) == SUBREG
)
2181 reg
= SUBREG_REG (reg
);
2186 regno
= REGNO (reg
);
2187 if (regno
< FIRST_PSEUDO_REGISTER
)
2188 mark_hard_regno_death (regno
, hard_regno_nregs
[regno
][GET_MODE (reg
)]);
2190 mark_pseudo_death (regno
);
2193 /* Process SETTER of REG. DATA is an insn containing the setter. */
2195 mark_insn_reg_store (rtx reg
, const_rtx setter
, void *data
)
2197 if (setter
!= NULL_RTX
&& GET_CODE (setter
) != SET
)
2200 ((rtx
) data
, reg
, false,
2201 find_reg_note ((const_rtx
) data
, REG_UNUSED
, reg
) != NULL_RTX
);
2204 /* Like mark_insn_reg_store except notice just CLOBBERs; ignore SETs. */
2206 mark_insn_reg_clobber (rtx reg
, const_rtx setter
, void *data
)
2208 if (GET_CODE (setter
) == CLOBBER
)
2209 mark_insn_reg_birth ((rtx
) data
, reg
, true, false);
2212 /* Set up reg pressure info related to INSN. */
2214 init_insn_reg_pressure_info (rtx_insn
*insn
)
2218 static struct reg_pressure_data
*pressure_info
;
2221 gcc_assert (sched_pressure
!= SCHED_PRESSURE_NONE
);
2223 if (! INSN_P (insn
))
2226 for (i
= 0; i
< ira_pressure_classes_num
; i
++)
2228 cl
= ira_pressure_classes
[i
];
2229 reg_pressure_info
[cl
].clobber_increase
= 0;
2230 reg_pressure_info
[cl
].set_increase
= 0;
2231 reg_pressure_info
[cl
].unused_set_increase
= 0;
2232 reg_pressure_info
[cl
].change
= 0;
2235 note_stores (PATTERN (insn
), mark_insn_reg_clobber
, insn
);
2237 note_stores (PATTERN (insn
), mark_insn_reg_store
, insn
);
2240 for (link
= REG_NOTES (insn
); link
; link
= XEXP (link
, 1))
2241 if (REG_NOTE_KIND (link
) == REG_INC
)
2242 mark_insn_reg_store (XEXP (link
, 0), NULL_RTX
, insn
);
2245 for (link
= REG_NOTES (insn
); link
; link
= XEXP (link
, 1))
2246 if (REG_NOTE_KIND (link
) == REG_DEAD
)
2247 mark_reg_death (XEXP (link
, 0));
2249 len
= sizeof (struct reg_pressure_data
) * ira_pressure_classes_num
;
2251 = INSN_REG_PRESSURE (insn
) = (struct reg_pressure_data
*) xmalloc (len
);
2252 if (sched_pressure
== SCHED_PRESSURE_WEIGHTED
)
2253 INSN_MAX_REG_PRESSURE (insn
) = (int *) xcalloc (ira_pressure_classes_num
2255 for (i
= 0; i
< ira_pressure_classes_num
; i
++)
2257 cl
= ira_pressure_classes
[i
];
2258 pressure_info
[i
].clobber_increase
2259 = reg_pressure_info
[cl
].clobber_increase
;
2260 pressure_info
[i
].set_increase
= reg_pressure_info
[cl
].set_increase
;
2261 pressure_info
[i
].unused_set_increase
2262 = reg_pressure_info
[cl
].unused_set_increase
;
2263 pressure_info
[i
].change
= reg_pressure_info
[cl
].change
;
2270 /* Internal variable for sched_analyze_[12] () functions.
2271 If it is nonzero, this means that sched_analyze_[12] looks
2272 at the most toplevel SET. */
2273 static bool can_start_lhs_rhs_p
;
2275 /* Extend reg info for the deps context DEPS given that
2276 we have just generated a register numbered REGNO. */
2278 extend_deps_reg_info (struct deps_desc
*deps
, int regno
)
2280 int max_regno
= regno
+ 1;
2282 gcc_assert (!reload_completed
);
2284 /* In a readonly context, it would not hurt to extend info,
2285 but it should not be needed. */
2286 if (reload_completed
&& deps
->readonly
)
2288 deps
->max_reg
= max_regno
;
2292 if (max_regno
> deps
->max_reg
)
2294 deps
->reg_last
= XRESIZEVEC (struct deps_reg
, deps
->reg_last
,
2296 memset (&deps
->reg_last
[deps
->max_reg
],
2297 0, (max_regno
- deps
->max_reg
)
2298 * sizeof (struct deps_reg
));
2299 deps
->max_reg
= max_regno
;
2303 /* Extends REG_INFO_P if needed. */
2305 maybe_extend_reg_info_p (void)
2307 /* Extend REG_INFO_P, if needed. */
2308 if ((unsigned int)max_regno
- 1 >= reg_info_p_size
)
2310 size_t new_reg_info_p_size
= max_regno
+ 128;
2312 gcc_assert (!reload_completed
&& sel_sched_p ());
2314 reg_info_p
= (struct reg_info_t
*) xrecalloc (reg_info_p
,
2315 new_reg_info_p_size
,
2317 sizeof (*reg_info_p
));
2318 reg_info_p_size
= new_reg_info_p_size
;
2322 /* Analyze a single reference to register (reg:MODE REGNO) in INSN.
2323 The type of the reference is specified by REF and can be SET,
2324 CLOBBER, PRE_DEC, POST_DEC, PRE_INC, POST_INC or USE. */
2327 sched_analyze_reg (struct deps_desc
*deps
, int regno
, machine_mode mode
,
2328 enum rtx_code ref
, rtx_insn
*insn
)
2330 /* We could emit new pseudos in renaming. Extend the reg structures. */
2331 if (!reload_completed
&& sel_sched_p ()
2332 && (regno
>= max_reg_num () - 1 || regno
>= deps
->max_reg
))
2333 extend_deps_reg_info (deps
, regno
);
2335 maybe_extend_reg_info_p ();
2337 /* A hard reg in a wide mode may really be multiple registers.
2338 If so, mark all of them just like the first. */
2339 if (regno
< FIRST_PSEUDO_REGISTER
)
2341 int i
= hard_regno_nregs
[regno
][mode
];
2345 note_reg_set (regno
+ i
);
2347 else if (ref
== USE
)
2350 note_reg_use (regno
+ i
);
2355 note_reg_clobber (regno
+ i
);
2359 /* ??? Reload sometimes emits USEs and CLOBBERs of pseudos that
2360 it does not reload. Ignore these as they have served their
2362 else if (regno
>= deps
->max_reg
)
2364 enum rtx_code code
= GET_CODE (PATTERN (insn
));
2365 gcc_assert (code
== USE
|| code
== CLOBBER
);
2371 note_reg_set (regno
);
2372 else if (ref
== USE
)
2373 note_reg_use (regno
);
2375 note_reg_clobber (regno
);
2377 /* Pseudos that are REG_EQUIV to something may be replaced
2378 by that during reloading. We need only add dependencies for
2379 the address in the REG_EQUIV note. */
2380 if (!reload_completed
&& get_reg_known_equiv_p (regno
))
2382 rtx t
= get_reg_known_value (regno
);
2384 sched_analyze_2 (deps
, XEXP (t
, 0), insn
);
2387 /* Don't let it cross a call after scheduling if it doesn't
2388 already cross one. */
2389 if (REG_N_CALLS_CROSSED (regno
) == 0)
2391 if (!deps
->readonly
&& ref
== USE
&& !DEBUG_INSN_P (insn
))
2392 deps
->sched_before_next_call
2393 = alloc_INSN_LIST (insn
, deps
->sched_before_next_call
);
2395 add_dependence_list (insn
, deps
->last_function_call
, 1,
2396 REG_DEP_ANTI
, false);
2401 /* Analyze a single SET, CLOBBER, PRE_DEC, POST_DEC, PRE_INC or POST_INC
2402 rtx, X, creating all dependencies generated by the write to the
2403 destination of X, and reads of everything mentioned. */
2406 sched_analyze_1 (struct deps_desc
*deps
, rtx x
, rtx_insn
*insn
)
2408 rtx dest
= XEXP (x
, 0);
2409 enum rtx_code code
= GET_CODE (x
);
2410 bool cslr_p
= can_start_lhs_rhs_p
;
2412 can_start_lhs_rhs_p
= false;
2418 if (cslr_p
&& sched_deps_info
->start_lhs
)
2419 sched_deps_info
->start_lhs (dest
);
2421 if (GET_CODE (dest
) == PARALLEL
)
2425 for (i
= XVECLEN (dest
, 0) - 1; i
>= 0; i
--)
2426 if (XEXP (XVECEXP (dest
, 0, i
), 0) != 0)
2427 sched_analyze_1 (deps
,
2428 gen_rtx_CLOBBER (VOIDmode
,
2429 XEXP (XVECEXP (dest
, 0, i
), 0)),
2432 if (cslr_p
&& sched_deps_info
->finish_lhs
)
2433 sched_deps_info
->finish_lhs ();
2437 can_start_lhs_rhs_p
= cslr_p
;
2439 sched_analyze_2 (deps
, SET_SRC (x
), insn
);
2441 can_start_lhs_rhs_p
= false;
2447 while (GET_CODE (dest
) == STRICT_LOW_PART
|| GET_CODE (dest
) == SUBREG
2448 || GET_CODE (dest
) == ZERO_EXTRACT
)
2450 if (GET_CODE (dest
) == STRICT_LOW_PART
2451 || GET_CODE (dest
) == ZERO_EXTRACT
2452 || df_read_modify_subreg_p (dest
))
2454 /* These both read and modify the result. We must handle
2455 them as writes to get proper dependencies for following
2456 instructions. We must handle them as reads to get proper
2457 dependencies from this to previous instructions.
2458 Thus we need to call sched_analyze_2. */
2460 sched_analyze_2 (deps
, XEXP (dest
, 0), insn
);
2462 if (GET_CODE (dest
) == ZERO_EXTRACT
)
2464 /* The second and third arguments are values read by this insn. */
2465 sched_analyze_2 (deps
, XEXP (dest
, 1), insn
);
2466 sched_analyze_2 (deps
, XEXP (dest
, 2), insn
);
2468 dest
= XEXP (dest
, 0);
2473 int regno
= REGNO (dest
);
2474 machine_mode mode
= GET_MODE (dest
);
2476 sched_analyze_reg (deps
, regno
, mode
, code
, insn
);
2479 /* Treat all writes to a stack register as modifying the TOS. */
2480 if (regno
>= FIRST_STACK_REG
&& regno
<= LAST_STACK_REG
)
2482 /* Avoid analyzing the same register twice. */
2483 if (regno
!= FIRST_STACK_REG
)
2484 sched_analyze_reg (deps
, FIRST_STACK_REG
, mode
, code
, insn
);
2486 add_to_hard_reg_set (&implicit_reg_pending_uses
, mode
,
2491 else if (MEM_P (dest
))
2493 /* Writing memory. */
2496 if (sched_deps_info
->use_cselib
)
2498 machine_mode address_mode
= get_address_mode (dest
);
2500 t
= shallow_copy_rtx (dest
);
2501 cselib_lookup_from_insn (XEXP (t
, 0), address_mode
, 1,
2502 GET_MODE (t
), insn
);
2504 = cselib_subst_to_values_from_insn (XEXP (t
, 0), GET_MODE (t
),
2509 /* Pending lists can't get larger with a readonly context. */
2511 && ((deps
->pending_read_list_length
+ deps
->pending_write_list_length
)
2512 >= MAX_PENDING_LIST_LENGTH
))
2514 /* Flush all pending reads and writes to prevent the pending lists
2515 from getting any larger. Insn scheduling runs too slowly when
2516 these lists get long. When compiling GCC with itself,
2517 this flush occurs 8 times for sparc, and 10 times for m88k using
2518 the default value of 32. */
2519 flush_pending_lists (deps
, insn
, false, true);
2523 rtx_insn_list
*pending
;
2524 rtx_expr_list
*pending_mem
;
2526 pending
= deps
->pending_read_insns
;
2527 pending_mem
= deps
->pending_read_mems
;
2530 if (anti_dependence (pending_mem
->element (), t
)
2531 && ! sched_insns_conditions_mutex_p (insn
, pending
->insn ()))
2532 note_mem_dep (t
, pending_mem
->element (), pending
->insn (),
2535 pending
= pending
->next ();
2536 pending_mem
= pending_mem
->next ();
2539 pending
= deps
->pending_write_insns
;
2540 pending_mem
= deps
->pending_write_mems
;
2543 if (output_dependence (pending_mem
->element (), t
)
2544 && ! sched_insns_conditions_mutex_p (insn
, pending
->insn ()))
2545 note_mem_dep (t
, pending_mem
->element (),
2549 pending
= pending
->next ();
2550 pending_mem
= pending_mem
-> next ();
2553 add_dependence_list (insn
, deps
->last_pending_memory_flush
, 1,
2554 REG_DEP_ANTI
, true);
2555 add_dependence_list (insn
, deps
->pending_jump_insns
, 1,
2556 REG_DEP_CONTROL
, true);
2558 if (!deps
->readonly
)
2559 add_insn_mem_dependence (deps
, false, insn
, dest
);
2561 sched_analyze_2 (deps
, XEXP (dest
, 0), insn
);
2564 if (cslr_p
&& sched_deps_info
->finish_lhs
)
2565 sched_deps_info
->finish_lhs ();
2567 /* Analyze reads. */
2568 if (GET_CODE (x
) == SET
)
2570 can_start_lhs_rhs_p
= cslr_p
;
2572 sched_analyze_2 (deps
, SET_SRC (x
), insn
);
2574 can_start_lhs_rhs_p
= false;
2578 /* Analyze the uses of memory and registers in rtx X in INSN. */
2580 sched_analyze_2 (struct deps_desc
*deps
, rtx x
, rtx_insn
*insn
)
2586 bool cslr_p
= can_start_lhs_rhs_p
;
2588 can_start_lhs_rhs_p
= false;
2594 if (cslr_p
&& sched_deps_info
->start_rhs
)
2595 sched_deps_info
->start_rhs (x
);
2597 code
= GET_CODE (x
);
2605 /* Ignore constants. */
2606 if (cslr_p
&& sched_deps_info
->finish_rhs
)
2607 sched_deps_info
->finish_rhs ();
2615 /* User of CC0 depends on immediately preceding insn. */
2616 SCHED_GROUP_P (insn
) = 1;
2617 /* Don't move CC0 setter to another block (it can set up the
2618 same flag for previous CC0 users which is safe). */
2619 CANT_MOVE (prev_nonnote_insn (insn
)) = 1;
2621 if (cslr_p
&& sched_deps_info
->finish_rhs
)
2622 sched_deps_info
->finish_rhs ();
2628 int regno
= REGNO (x
);
2629 machine_mode mode
= GET_MODE (x
);
2631 sched_analyze_reg (deps
, regno
, mode
, USE
, insn
);
2634 /* Treat all reads of a stack register as modifying the TOS. */
2635 if (regno
>= FIRST_STACK_REG
&& regno
<= LAST_STACK_REG
)
2637 /* Avoid analyzing the same register twice. */
2638 if (regno
!= FIRST_STACK_REG
)
2639 sched_analyze_reg (deps
, FIRST_STACK_REG
, mode
, USE
, insn
);
2640 sched_analyze_reg (deps
, FIRST_STACK_REG
, mode
, SET
, insn
);
2644 if (cslr_p
&& sched_deps_info
->finish_rhs
)
2645 sched_deps_info
->finish_rhs ();
2652 /* Reading memory. */
2654 rtx_insn_list
*pending
;
2655 rtx_expr_list
*pending_mem
;
2658 if (sched_deps_info
->use_cselib
)
2660 machine_mode address_mode
= get_address_mode (t
);
2662 t
= shallow_copy_rtx (t
);
2663 cselib_lookup_from_insn (XEXP (t
, 0), address_mode
, 1,
2664 GET_MODE (t
), insn
);
2666 = cselib_subst_to_values_from_insn (XEXP (t
, 0), GET_MODE (t
),
2670 if (!DEBUG_INSN_P (insn
))
2673 pending
= deps
->pending_read_insns
;
2674 pending_mem
= deps
->pending_read_mems
;
2677 if (read_dependence (pending_mem
->element (), t
)
2678 && ! sched_insns_conditions_mutex_p (insn
,
2680 note_mem_dep (t
, pending_mem
->element (),
2684 pending
= pending
->next ();
2685 pending_mem
= pending_mem
->next ();
2688 pending
= deps
->pending_write_insns
;
2689 pending_mem
= deps
->pending_write_mems
;
2692 if (true_dependence (pending_mem
->element (), VOIDmode
, t
)
2693 && ! sched_insns_conditions_mutex_p (insn
,
2695 note_mem_dep (t
, pending_mem
->element (),
2697 sched_deps_info
->generate_spec_deps
2698 ? BEGIN_DATA
| DEP_TRUE
: DEP_TRUE
);
2700 pending
= pending
->next ();
2701 pending_mem
= pending_mem
->next ();
2704 for (u
= deps
->last_pending_memory_flush
; u
; u
= XEXP (u
, 1))
2705 add_dependence (insn
, as_a
<rtx_insn
*> (XEXP (u
, 0)),
2708 for (u
= deps
->pending_jump_insns
; u
; u
= XEXP (u
, 1))
2709 if (deps_may_trap_p (x
))
2711 if ((sched_deps_info
->generate_spec_deps
)
2712 && sel_sched_p () && (spec_info
->mask
& BEGIN_CONTROL
))
2714 ds_t ds
= set_dep_weak (DEP_ANTI
, BEGIN_CONTROL
,
2717 note_dep (as_a
<rtx_insn
*> (XEXP (u
, 0)), ds
);
2720 add_dependence (insn
, as_a
<rtx_insn
*> (XEXP (u
, 0)),
2725 /* Always add these dependencies to pending_reads, since
2726 this insn may be followed by a write. */
2727 if (!deps
->readonly
)
2729 if ((deps
->pending_read_list_length
2730 + deps
->pending_write_list_length
)
2731 >= MAX_PENDING_LIST_LENGTH
2732 && !DEBUG_INSN_P (insn
))
2733 flush_pending_lists (deps
, insn
, true, true);
2734 add_insn_mem_dependence (deps
, true, insn
, x
);
2737 sched_analyze_2 (deps
, XEXP (x
, 0), insn
);
2739 if (cslr_p
&& sched_deps_info
->finish_rhs
)
2740 sched_deps_info
->finish_rhs ();
2745 /* Force pending stores to memory in case a trap handler needs them. */
2747 flush_pending_lists (deps
, insn
, true, false);
2751 if (PREFETCH_SCHEDULE_BARRIER_P (x
))
2752 reg_pending_barrier
= TRUE_BARRIER
;
2753 /* Prefetch insn contains addresses only. So if the prefetch
2754 address has no registers, there will be no dependencies on
2755 the prefetch insn. This is wrong with result code
2756 correctness point of view as such prefetch can be moved below
2757 a jump insn which usually generates MOVE_BARRIER preventing
2758 to move insns containing registers or memories through the
2759 barrier. It is also wrong with generated code performance
2760 point of view as prefetch withouth dependecies will have a
2761 tendency to be issued later instead of earlier. It is hard
2762 to generate accurate dependencies for prefetch insns as
2763 prefetch has only the start address but it is better to have
2764 something than nothing. */
2765 if (!deps
->readonly
)
2767 rtx x
= gen_rtx_MEM (Pmode
, XEXP (PATTERN (insn
), 0));
2768 if (sched_deps_info
->use_cselib
)
2769 cselib_lookup_from_insn (x
, Pmode
, true, VOIDmode
, insn
);
2770 add_insn_mem_dependence (deps
, true, insn
, x
);
2774 case UNSPEC_VOLATILE
:
2775 flush_pending_lists (deps
, insn
, true, true);
2781 /* Traditional and volatile asm instructions must be considered to use
2782 and clobber all hard registers, all pseudo-registers and all of
2783 memory. So must TRAP_IF and UNSPEC_VOLATILE operations.
2785 Consider for instance a volatile asm that changes the fpu rounding
2786 mode. An insn should not be moved across this even if it only uses
2787 pseudo-regs because it might give an incorrectly rounded result. */
2788 if ((code
!= ASM_OPERANDS
|| MEM_VOLATILE_P (x
))
2789 && !DEBUG_INSN_P (insn
))
2790 reg_pending_barrier
= TRUE_BARRIER
;
2792 /* For all ASM_OPERANDS, we must traverse the vector of input operands.
2793 We can not just fall through here since then we would be confused
2794 by the ASM_INPUT rtx inside ASM_OPERANDS, which do not indicate
2795 traditional asms unlike their normal usage. */
2797 if (code
== ASM_OPERANDS
)
2799 for (j
= 0; j
< ASM_OPERANDS_INPUT_LENGTH (x
); j
++)
2800 sched_analyze_2 (deps
, ASM_OPERANDS_INPUT (x
, j
), insn
);
2802 if (cslr_p
&& sched_deps_info
->finish_rhs
)
2803 sched_deps_info
->finish_rhs ();
2814 /* These both read and modify the result. We must handle them as writes
2815 to get proper dependencies for following instructions. We must handle
2816 them as reads to get proper dependencies from this to previous
2817 instructions. Thus we need to pass them to both sched_analyze_1
2818 and sched_analyze_2. We must call sched_analyze_2 first in order
2819 to get the proper antecedent for the read. */
2820 sched_analyze_2 (deps
, XEXP (x
, 0), insn
);
2821 sched_analyze_1 (deps
, x
, insn
);
2823 if (cslr_p
&& sched_deps_info
->finish_rhs
)
2824 sched_deps_info
->finish_rhs ();
2830 /* op0 = op0 + op1 */
2831 sched_analyze_2 (deps
, XEXP (x
, 0), insn
);
2832 sched_analyze_2 (deps
, XEXP (x
, 1), insn
);
2833 sched_analyze_1 (deps
, x
, insn
);
2835 if (cslr_p
&& sched_deps_info
->finish_rhs
)
2836 sched_deps_info
->finish_rhs ();
2844 /* Other cases: walk the insn. */
2845 fmt
= GET_RTX_FORMAT (code
);
2846 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
2849 sched_analyze_2 (deps
, XEXP (x
, i
), insn
);
2850 else if (fmt
[i
] == 'E')
2851 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
2852 sched_analyze_2 (deps
, XVECEXP (x
, i
, j
), insn
);
2855 if (cslr_p
&& sched_deps_info
->finish_rhs
)
2856 sched_deps_info
->finish_rhs ();
2859 /* Try to group two fuseable insns together to prevent scheduler
2860 from scheduling them apart. */
2863 sched_macro_fuse_insns (rtx_insn
*insn
)
2867 if (any_condjump_p (insn
))
2869 unsigned int condreg1
, condreg2
;
2871 targetm
.fixed_condition_code_regs (&condreg1
, &condreg2
);
2872 cc_reg_1
= gen_rtx_REG (CCmode
, condreg1
);
2873 prev
= prev_nonnote_nondebug_insn (insn
);
2874 if (!reg_referenced_p (cc_reg_1
, PATTERN (insn
))
2876 || !modified_in_p (cc_reg_1
, prev
))
2881 rtx insn_set
= single_set (insn
);
2883 prev
= prev_nonnote_nondebug_insn (insn
);
2886 || !single_set (prev
))
2891 if (targetm
.sched
.macro_fusion_pair_p (prev
, insn
))
2892 SCHED_GROUP_P (insn
) = 1;
2896 /* Analyze an INSN with pattern X to find all dependencies. */
2898 sched_analyze_insn (struct deps_desc
*deps
, rtx x
, rtx_insn
*insn
)
2900 RTX_CODE code
= GET_CODE (x
);
2903 reg_set_iterator rsi
;
2905 if (! reload_completed
)
2909 extract_insn (insn
);
2910 preprocess_constraints (insn
);
2911 ira_implicitly_set_insn_hard_regs (&temp
);
2912 AND_COMPL_HARD_REG_SET (temp
, ira_no_alloc_regs
);
2913 IOR_HARD_REG_SET (implicit_reg_pending_clobbers
, temp
);
2916 can_start_lhs_rhs_p
= (NONJUMP_INSN_P (insn
)
2919 /* Group compare and branch insns for macro-fusion. */
2920 if (targetm
.sched
.macro_fusion_p
2921 && targetm
.sched
.macro_fusion_p ())
2922 sched_macro_fuse_insns (insn
);
2925 /* Avoid moving trapping instructions across function calls that might
2926 not always return. */
2927 add_dependence_list (insn
, deps
->last_function_call_may_noreturn
,
2928 1, REG_DEP_ANTI
, true);
2930 /* We must avoid creating a situation in which two successors of the
2931 current block have different unwind info after scheduling. If at any
2932 point the two paths re-join this leads to incorrect unwind info. */
2933 /* ??? There are certain situations involving a forced frame pointer in
2934 which, with extra effort, we could fix up the unwind info at a later
2935 CFG join. However, it seems better to notice these cases earlier
2936 during prologue generation and avoid marking the frame pointer setup
2937 as frame-related at all. */
2938 if (RTX_FRAME_RELATED_P (insn
))
2940 /* Make sure prologue insn is scheduled before next jump. */
2941 deps
->sched_before_next_jump
2942 = alloc_INSN_LIST (insn
, deps
->sched_before_next_jump
);
2944 /* Make sure epilogue insn is scheduled after preceding jumps. */
2945 add_dependence_list (insn
, deps
->pending_jump_insns
, 1, REG_DEP_ANTI
,
2949 if (code
== COND_EXEC
)
2951 sched_analyze_2 (deps
, COND_EXEC_TEST (x
), insn
);
2953 /* ??? Should be recording conditions so we reduce the number of
2954 false dependencies. */
2955 x
= COND_EXEC_CODE (x
);
2956 code
= GET_CODE (x
);
2958 if (code
== SET
|| code
== CLOBBER
)
2960 sched_analyze_1 (deps
, x
, insn
);
2962 /* Bare clobber insns are used for letting life analysis, reg-stack
2963 and others know that a value is dead. Depend on the last call
2964 instruction so that reg-stack won't get confused. */
2965 if (code
== CLOBBER
)
2966 add_dependence_list (insn
, deps
->last_function_call
, 1,
2967 REG_DEP_OUTPUT
, true);
2969 else if (code
== PARALLEL
)
2971 for (i
= XVECLEN (x
, 0); i
--;)
2973 rtx sub
= XVECEXP (x
, 0, i
);
2974 code
= GET_CODE (sub
);
2976 if (code
== COND_EXEC
)
2978 sched_analyze_2 (deps
, COND_EXEC_TEST (sub
), insn
);
2979 sub
= COND_EXEC_CODE (sub
);
2980 code
= GET_CODE (sub
);
2982 if (code
== SET
|| code
== CLOBBER
)
2983 sched_analyze_1 (deps
, sub
, insn
);
2985 sched_analyze_2 (deps
, sub
, insn
);
2989 sched_analyze_2 (deps
, x
, insn
);
2991 /* Mark registers CLOBBERED or used by called function. */
2994 for (link
= CALL_INSN_FUNCTION_USAGE (insn
); link
; link
= XEXP (link
, 1))
2996 if (GET_CODE (XEXP (link
, 0)) == CLOBBER
)
2997 sched_analyze_1 (deps
, XEXP (link
, 0), insn
);
2998 else if (GET_CODE (XEXP (link
, 0)) != SET
)
2999 sched_analyze_2 (deps
, XEXP (link
, 0), insn
);
3001 /* Don't schedule anything after a tail call, tail call needs
3002 to use at least all call-saved registers. */
3003 if (SIBLING_CALL_P (insn
))
3004 reg_pending_barrier
= TRUE_BARRIER
;
3005 else if (find_reg_note (insn
, REG_SETJMP
, NULL
))
3006 reg_pending_barrier
= MOVE_BARRIER
;
3012 next
= next_nonnote_nondebug_insn (insn
);
3013 if (next
&& BARRIER_P (next
))
3014 reg_pending_barrier
= MOVE_BARRIER
;
3017 rtx_insn_list
*pending
;
3018 rtx_expr_list
*pending_mem
;
3020 if (sched_deps_info
->compute_jump_reg_dependencies
)
3022 (*sched_deps_info
->compute_jump_reg_dependencies
)
3023 (insn
, reg_pending_control_uses
);
3025 /* Make latency of jump equal to 0 by using anti-dependence. */
3026 EXECUTE_IF_SET_IN_REG_SET (reg_pending_control_uses
, 0, i
, rsi
)
3028 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
3029 add_dependence_list (insn
, reg_last
->sets
, 0, REG_DEP_ANTI
,
3031 add_dependence_list (insn
, reg_last
->implicit_sets
,
3032 0, REG_DEP_ANTI
, false);
3033 add_dependence_list (insn
, reg_last
->clobbers
, 0,
3034 REG_DEP_ANTI
, false);
3038 /* All memory writes and volatile reads must happen before the
3039 jump. Non-volatile reads must happen before the jump iff
3040 the result is needed by the above register used mask. */
3042 pending
= deps
->pending_write_insns
;
3043 pending_mem
= deps
->pending_write_mems
;
3046 if (! sched_insns_conditions_mutex_p (insn
, pending
->insn ()))
3047 add_dependence (insn
, pending
->insn (),
3049 pending
= pending
->next ();
3050 pending_mem
= pending_mem
->next ();
3053 pending
= deps
->pending_read_insns
;
3054 pending_mem
= deps
->pending_read_mems
;
3057 if (MEM_VOLATILE_P (pending_mem
->element ())
3058 && ! sched_insns_conditions_mutex_p (insn
, pending
->insn ()))
3059 add_dependence (insn
, pending
->insn (),
3061 pending
= pending
->next ();
3062 pending_mem
= pending_mem
->next ();
3065 add_dependence_list (insn
, deps
->last_pending_memory_flush
, 1,
3066 REG_DEP_ANTI
, true);
3067 add_dependence_list (insn
, deps
->pending_jump_insns
, 1,
3068 REG_DEP_ANTI
, true);
3072 /* If this instruction can throw an exception, then moving it changes
3073 where block boundaries fall. This is mighty confusing elsewhere.
3074 Therefore, prevent such an instruction from being moved. Same for
3075 non-jump instructions that define block boundaries.
3076 ??? Unclear whether this is still necessary in EBB mode. If not,
3077 add_branch_dependences should be adjusted for RGN mode instead. */
3078 if (((CALL_P (insn
) || JUMP_P (insn
)) && can_throw_internal (insn
))
3079 || (NONJUMP_INSN_P (insn
) && control_flow_insn_p (insn
)))
3080 reg_pending_barrier
= MOVE_BARRIER
;
3082 if (sched_pressure
!= SCHED_PRESSURE_NONE
)
3084 setup_insn_reg_uses (deps
, insn
);
3085 init_insn_reg_pressure_info (insn
);
3088 /* Add register dependencies for insn. */
3089 if (DEBUG_INSN_P (insn
))
3091 rtx_insn
*prev
= deps
->last_debug_insn
;
3094 if (!deps
->readonly
)
3095 deps
->last_debug_insn
= insn
;
3098 add_dependence (insn
, prev
, REG_DEP_ANTI
);
3100 add_dependence_list (insn
, deps
->last_function_call
, 1,
3101 REG_DEP_ANTI
, false);
3103 if (!sel_sched_p ())
3104 for (u
= deps
->last_pending_memory_flush
; u
; u
= XEXP (u
, 1))
3105 add_dependence (insn
, as_a
<rtx_insn
*> (XEXP (u
, 0)), REG_DEP_ANTI
);
3107 EXECUTE_IF_SET_IN_REG_SET (reg_pending_uses
, 0, i
, rsi
)
3109 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
3110 add_dependence_list (insn
, reg_last
->sets
, 1, REG_DEP_ANTI
, false);
3111 /* There's no point in making REG_DEP_CONTROL dependencies for
3113 add_dependence_list (insn
, reg_last
->clobbers
, 1, REG_DEP_ANTI
,
3116 if (!deps
->readonly
)
3117 reg_last
->uses
= alloc_INSN_LIST (insn
, reg_last
->uses
);
3119 CLEAR_REG_SET (reg_pending_uses
);
3121 /* Quite often, a debug insn will refer to stuff in the
3122 previous instruction, but the reason we want this
3123 dependency here is to make sure the scheduler doesn't
3124 gratuitously move a debug insn ahead. This could dirty
3125 DF flags and cause additional analysis that wouldn't have
3126 occurred in compilation without debug insns, and such
3127 additional analysis can modify the generated code. */
3128 prev
= PREV_INSN (insn
);
3130 if (prev
&& NONDEBUG_INSN_P (prev
))
3131 add_dependence (insn
, prev
, REG_DEP_ANTI
);
3135 regset_head set_or_clobbered
;
3137 EXECUTE_IF_SET_IN_REG_SET (reg_pending_uses
, 0, i
, rsi
)
3139 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
3140 add_dependence_list (insn
, reg_last
->sets
, 0, REG_DEP_TRUE
, false);
3141 add_dependence_list (insn
, reg_last
->implicit_sets
, 0, REG_DEP_ANTI
,
3143 add_dependence_list (insn
, reg_last
->clobbers
, 0, REG_DEP_TRUE
,
3146 if (!deps
->readonly
)
3148 reg_last
->uses
= alloc_INSN_LIST (insn
, reg_last
->uses
);
3149 reg_last
->uses_length
++;
3153 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
3154 if (TEST_HARD_REG_BIT (implicit_reg_pending_uses
, i
))
3156 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
3157 add_dependence_list (insn
, reg_last
->sets
, 0, REG_DEP_TRUE
, false);
3158 add_dependence_list (insn
, reg_last
->implicit_sets
, 0,
3159 REG_DEP_ANTI
, false);
3160 add_dependence_list (insn
, reg_last
->clobbers
, 0, REG_DEP_TRUE
,
3163 if (!deps
->readonly
)
3165 reg_last
->uses
= alloc_INSN_LIST (insn
, reg_last
->uses
);
3166 reg_last
->uses_length
++;
3170 if (targetm
.sched
.exposed_pipeline
)
3172 INIT_REG_SET (&set_or_clobbered
);
3173 bitmap_ior (&set_or_clobbered
, reg_pending_clobbers
,
3175 EXECUTE_IF_SET_IN_REG_SET (&set_or_clobbered
, 0, i
, rsi
)
3177 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
3179 for (list
= reg_last
->uses
; list
; list
= XEXP (list
, 1))
3181 rtx other
= XEXP (list
, 0);
3182 if (INSN_CACHED_COND (other
) != const_true_rtx
3183 && refers_to_regno_p (i
, INSN_CACHED_COND (other
)))
3184 INSN_CACHED_COND (other
) = const_true_rtx
;
3189 /* If the current insn is conditional, we can't free any
3191 if (sched_has_condition_p (insn
))
3193 EXECUTE_IF_SET_IN_REG_SET (reg_pending_clobbers
, 0, i
, rsi
)
3195 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
3196 add_dependence_list (insn
, reg_last
->sets
, 0, REG_DEP_OUTPUT
,
3198 add_dependence_list (insn
, reg_last
->implicit_sets
, 0,
3199 REG_DEP_ANTI
, false);
3200 add_dependence_list (insn
, reg_last
->uses
, 0, REG_DEP_ANTI
,
3202 add_dependence_list (insn
, reg_last
->control_uses
, 0,
3203 REG_DEP_CONTROL
, false);
3205 if (!deps
->readonly
)
3208 = alloc_INSN_LIST (insn
, reg_last
->clobbers
);
3209 reg_last
->clobbers_length
++;
3212 EXECUTE_IF_SET_IN_REG_SET (reg_pending_sets
, 0, i
, rsi
)
3214 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
3215 add_dependence_list (insn
, reg_last
->sets
, 0, REG_DEP_OUTPUT
,
3217 add_dependence_list (insn
, reg_last
->implicit_sets
, 0,
3218 REG_DEP_ANTI
, false);
3219 add_dependence_list (insn
, reg_last
->clobbers
, 0, REG_DEP_OUTPUT
,
3221 add_dependence_list (insn
, reg_last
->uses
, 0, REG_DEP_ANTI
,
3223 add_dependence_list (insn
, reg_last
->control_uses
, 0,
3224 REG_DEP_CONTROL
, false);
3226 if (!deps
->readonly
)
3227 reg_last
->sets
= alloc_INSN_LIST (insn
, reg_last
->sets
);
3232 EXECUTE_IF_SET_IN_REG_SET (reg_pending_clobbers
, 0, i
, rsi
)
3234 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
3235 if (reg_last
->uses_length
>= MAX_PENDING_LIST_LENGTH
3236 || reg_last
->clobbers_length
>= MAX_PENDING_LIST_LENGTH
)
3238 add_dependence_list_and_free (deps
, insn
, ®_last
->sets
, 0,
3239 REG_DEP_OUTPUT
, false);
3240 add_dependence_list_and_free (deps
, insn
,
3241 ®_last
->implicit_sets
, 0,
3242 REG_DEP_ANTI
, false);
3243 add_dependence_list_and_free (deps
, insn
, ®_last
->uses
, 0,
3244 REG_DEP_ANTI
, false);
3245 add_dependence_list_and_free (deps
, insn
,
3246 ®_last
->control_uses
, 0,
3247 REG_DEP_ANTI
, false);
3248 add_dependence_list_and_free (deps
, insn
,
3249 ®_last
->clobbers
, 0,
3250 REG_DEP_OUTPUT
, false);
3252 if (!deps
->readonly
)
3254 reg_last
->sets
= alloc_INSN_LIST (insn
, reg_last
->sets
);
3255 reg_last
->clobbers_length
= 0;
3256 reg_last
->uses_length
= 0;
3261 add_dependence_list (insn
, reg_last
->sets
, 0, REG_DEP_OUTPUT
,
3263 add_dependence_list (insn
, reg_last
->implicit_sets
, 0,
3264 REG_DEP_ANTI
, false);
3265 add_dependence_list (insn
, reg_last
->uses
, 0, REG_DEP_ANTI
,
3267 add_dependence_list (insn
, reg_last
->control_uses
, 0,
3268 REG_DEP_CONTROL
, false);
3271 if (!deps
->readonly
)
3273 reg_last
->clobbers_length
++;
3275 = alloc_INSN_LIST (insn
, reg_last
->clobbers
);
3278 EXECUTE_IF_SET_IN_REG_SET (reg_pending_sets
, 0, i
, rsi
)
3280 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
3282 add_dependence_list_and_free (deps
, insn
, ®_last
->sets
, 0,
3283 REG_DEP_OUTPUT
, false);
3284 add_dependence_list_and_free (deps
, insn
,
3285 ®_last
->implicit_sets
,
3286 0, REG_DEP_ANTI
, false);
3287 add_dependence_list_and_free (deps
, insn
, ®_last
->clobbers
, 0,
3288 REG_DEP_OUTPUT
, false);
3289 add_dependence_list_and_free (deps
, insn
, ®_last
->uses
, 0,
3290 REG_DEP_ANTI
, false);
3291 add_dependence_list (insn
, reg_last
->control_uses
, 0,
3292 REG_DEP_CONTROL
, false);
3294 if (!deps
->readonly
)
3296 reg_last
->sets
= alloc_INSN_LIST (insn
, reg_last
->sets
);
3297 reg_last
->uses_length
= 0;
3298 reg_last
->clobbers_length
= 0;
3302 if (!deps
->readonly
)
3304 EXECUTE_IF_SET_IN_REG_SET (reg_pending_control_uses
, 0, i
, rsi
)
3306 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
3307 reg_last
->control_uses
3308 = alloc_INSN_LIST (insn
, reg_last
->control_uses
);
3313 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
3314 if (TEST_HARD_REG_BIT (implicit_reg_pending_clobbers
, i
))
3316 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
3317 add_dependence_list (insn
, reg_last
->sets
, 0, REG_DEP_ANTI
, false);
3318 add_dependence_list (insn
, reg_last
->clobbers
, 0, REG_DEP_ANTI
, false);
3319 add_dependence_list (insn
, reg_last
->uses
, 0, REG_DEP_ANTI
, false);
3320 add_dependence_list (insn
, reg_last
->control_uses
, 0, REG_DEP_ANTI
,
3323 if (!deps
->readonly
)
3324 reg_last
->implicit_sets
3325 = alloc_INSN_LIST (insn
, reg_last
->implicit_sets
);
3328 if (!deps
->readonly
)
3330 IOR_REG_SET (&deps
->reg_last_in_use
, reg_pending_uses
);
3331 IOR_REG_SET (&deps
->reg_last_in_use
, reg_pending_clobbers
);
3332 IOR_REG_SET (&deps
->reg_last_in_use
, reg_pending_sets
);
3333 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
3334 if (TEST_HARD_REG_BIT (implicit_reg_pending_uses
, i
)
3335 || TEST_HARD_REG_BIT (implicit_reg_pending_clobbers
, i
))
3336 SET_REGNO_REG_SET (&deps
->reg_last_in_use
, i
);
3338 /* Set up the pending barrier found. */
3339 deps
->last_reg_pending_barrier
= reg_pending_barrier
;
3342 CLEAR_REG_SET (reg_pending_uses
);
3343 CLEAR_REG_SET (reg_pending_clobbers
);
3344 CLEAR_REG_SET (reg_pending_sets
);
3345 CLEAR_REG_SET (reg_pending_control_uses
);
3346 CLEAR_HARD_REG_SET (implicit_reg_pending_clobbers
);
3347 CLEAR_HARD_REG_SET (implicit_reg_pending_uses
);
3349 /* Add dependencies if a scheduling barrier was found. */
3350 if (reg_pending_barrier
)
3352 /* In the case of barrier the most added dependencies are not
3353 real, so we use anti-dependence here. */
3354 if (sched_has_condition_p (insn
))
3356 EXECUTE_IF_SET_IN_REG_SET (&deps
->reg_last_in_use
, 0, i
, rsi
)
3358 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
3359 add_dependence_list (insn
, reg_last
->uses
, 0, REG_DEP_ANTI
,
3361 add_dependence_list (insn
, reg_last
->sets
, 0,
3362 reg_pending_barrier
== TRUE_BARRIER
3363 ? REG_DEP_TRUE
: REG_DEP_ANTI
, true);
3364 add_dependence_list (insn
, reg_last
->implicit_sets
, 0,
3365 REG_DEP_ANTI
, true);
3366 add_dependence_list (insn
, reg_last
->clobbers
, 0,
3367 reg_pending_barrier
== TRUE_BARRIER
3368 ? REG_DEP_TRUE
: REG_DEP_ANTI
, true);
3373 EXECUTE_IF_SET_IN_REG_SET (&deps
->reg_last_in_use
, 0, i
, rsi
)
3375 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
3376 add_dependence_list_and_free (deps
, insn
, ®_last
->uses
, 0,
3377 REG_DEP_ANTI
, true);
3378 add_dependence_list_and_free (deps
, insn
,
3379 ®_last
->control_uses
, 0,
3380 REG_DEP_CONTROL
, true);
3381 add_dependence_list_and_free (deps
, insn
, ®_last
->sets
, 0,
3382 reg_pending_barrier
== TRUE_BARRIER
3383 ? REG_DEP_TRUE
: REG_DEP_ANTI
,
3385 add_dependence_list_and_free (deps
, insn
,
3386 ®_last
->implicit_sets
, 0,
3387 REG_DEP_ANTI
, true);
3388 add_dependence_list_and_free (deps
, insn
, ®_last
->clobbers
, 0,
3389 reg_pending_barrier
== TRUE_BARRIER
3390 ? REG_DEP_TRUE
: REG_DEP_ANTI
,
3393 if (!deps
->readonly
)
3395 reg_last
->uses_length
= 0;
3396 reg_last
->clobbers_length
= 0;
3401 if (!deps
->readonly
)
3402 for (i
= 0; i
< (unsigned)deps
->max_reg
; i
++)
3404 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
3405 reg_last
->sets
= alloc_INSN_LIST (insn
, reg_last
->sets
);
3406 SET_REGNO_REG_SET (&deps
->reg_last_in_use
, i
);
3409 /* Don't flush pending lists on speculative checks for
3410 selective scheduling. */
3411 if (!sel_sched_p () || !sel_insn_is_speculation_check (insn
))
3412 flush_pending_lists (deps
, insn
, true, true);
3414 reg_pending_barrier
= NOT_A_BARRIER
;
3417 /* If a post-call group is still open, see if it should remain so.
3418 This insn must be a simple move of a hard reg to a pseudo or
3421 We must avoid moving these insns for correctness on targets
3422 with small register classes, and for special registers like
3423 PIC_OFFSET_TABLE_REGNUM. For simplicity, extend this to all
3424 hard regs for all targets. */
3426 if (deps
->in_post_call_group_p
)
3428 rtx tmp
, set
= single_set (insn
);
3429 int src_regno
, dest_regno
;
3433 if (DEBUG_INSN_P (insn
))
3434 /* We don't want to mark debug insns as part of the same
3435 sched group. We know they really aren't, but if we use
3436 debug insns to tell that a call group is over, we'll
3437 get different code if debug insns are not there and
3438 instructions that follow seem like they should be part
3441 Also, if we did, chain_to_prev_insn would move the
3442 deps of the debug insn to the call insn, modifying
3443 non-debug post-dependency counts of the debug insn
3444 dependencies and otherwise messing with the scheduling
3447 Instead, let such debug insns be scheduled freely, but
3448 keep the call group open in case there are insns that
3449 should be part of it afterwards. Since we grant debug
3450 insns higher priority than even sched group insns, it
3451 will all turn out all right. */
3452 goto debug_dont_end_call_group
;
3454 goto end_call_group
;
3457 tmp
= SET_DEST (set
);
3458 if (GET_CODE (tmp
) == SUBREG
)
3459 tmp
= SUBREG_REG (tmp
);
3461 dest_regno
= REGNO (tmp
);
3463 goto end_call_group
;
3465 tmp
= SET_SRC (set
);
3466 if (GET_CODE (tmp
) == SUBREG
)
3467 tmp
= SUBREG_REG (tmp
);
3468 if ((GET_CODE (tmp
) == PLUS
3469 || GET_CODE (tmp
) == MINUS
)
3470 && REG_P (XEXP (tmp
, 0))
3471 && REGNO (XEXP (tmp
, 0)) == STACK_POINTER_REGNUM
3472 && dest_regno
== STACK_POINTER_REGNUM
)
3473 src_regno
= STACK_POINTER_REGNUM
;
3474 else if (REG_P (tmp
))
3475 src_regno
= REGNO (tmp
);
3477 goto end_call_group
;
3479 if (src_regno
< FIRST_PSEUDO_REGISTER
3480 || dest_regno
< FIRST_PSEUDO_REGISTER
)
3483 && deps
->in_post_call_group_p
== post_call_initial
)
3484 deps
->in_post_call_group_p
= post_call
;
3486 if (!sel_sched_p () || sched_emulate_haifa_p
)
3488 SCHED_GROUP_P (insn
) = 1;
3489 CANT_MOVE (insn
) = 1;
3495 if (!deps
->readonly
)
3496 deps
->in_post_call_group_p
= not_post_call
;
3500 debug_dont_end_call_group
:
3501 if ((current_sched_info
->flags
& DO_SPECULATION
)
3502 && !sched_insn_is_legitimate_for_speculation_p (insn
, 0))
3503 /* INSN has an internal dependency (e.g. r14 = [r14]) and thus cannot
3507 sel_mark_hard_insn (insn
);
3510 sd_iterator_def sd_it
;
3513 for (sd_it
= sd_iterator_start (insn
, SD_LIST_SPEC_BACK
);
3514 sd_iterator_cond (&sd_it
, &dep
);)
3515 change_spec_dep_to_hard (sd_it
);
3519 /* We do not yet have code to adjust REG_ARGS_SIZE, therefore we must
3520 honor their original ordering. */
3521 if (find_reg_note (insn
, REG_ARGS_SIZE
, NULL
))
3523 if (deps
->last_args_size
)
3524 add_dependence (insn
, deps
->last_args_size
, REG_DEP_OUTPUT
);
3525 deps
->last_args_size
= insn
;
3529 /* Return TRUE if INSN might not always return normally (e.g. call exit,
3530 longjmp, loop forever, ...). */
3531 /* FIXME: Why can't this function just use flags_from_decl_or_type and
3532 test for ECF_NORETURN? */
3534 call_may_noreturn_p (rtx_insn
*insn
)
3538 /* const or pure calls that aren't looping will always return. */
3539 if (RTL_CONST_OR_PURE_CALL_P (insn
)
3540 && !RTL_LOOPING_CONST_OR_PURE_CALL_P (insn
))
3543 call
= get_call_rtx_from (insn
);
3544 if (call
&& GET_CODE (XEXP (XEXP (call
, 0), 0)) == SYMBOL_REF
)
3546 rtx symbol
= XEXP (XEXP (call
, 0), 0);
3547 if (SYMBOL_REF_DECL (symbol
)
3548 && TREE_CODE (SYMBOL_REF_DECL (symbol
)) == FUNCTION_DECL
)
3550 if (DECL_BUILT_IN_CLASS (SYMBOL_REF_DECL (symbol
))
3552 switch (DECL_FUNCTION_CODE (SYMBOL_REF_DECL (symbol
)))
3555 case BUILT_IN_BCOPY
:
3556 case BUILT_IN_BZERO
:
3557 case BUILT_IN_INDEX
:
3558 case BUILT_IN_MEMCHR
:
3559 case BUILT_IN_MEMCMP
:
3560 case BUILT_IN_MEMCPY
:
3561 case BUILT_IN_MEMMOVE
:
3562 case BUILT_IN_MEMPCPY
:
3563 case BUILT_IN_MEMSET
:
3564 case BUILT_IN_RINDEX
:
3565 case BUILT_IN_STPCPY
:
3566 case BUILT_IN_STPNCPY
:
3567 case BUILT_IN_STRCAT
:
3568 case BUILT_IN_STRCHR
:
3569 case BUILT_IN_STRCMP
:
3570 case BUILT_IN_STRCPY
:
3571 case BUILT_IN_STRCSPN
:
3572 case BUILT_IN_STRLEN
:
3573 case BUILT_IN_STRNCAT
:
3574 case BUILT_IN_STRNCMP
:
3575 case BUILT_IN_STRNCPY
:
3576 case BUILT_IN_STRPBRK
:
3577 case BUILT_IN_STRRCHR
:
3578 case BUILT_IN_STRSPN
:
3579 case BUILT_IN_STRSTR
:
3580 /* Assume certain string/memory builtins always return. */
3588 /* For all other calls assume that they might not always return. */
3592 /* Return true if INSN should be made dependent on the previous instruction
3593 group, and if all INSN's dependencies should be moved to the first
3594 instruction of that group. */
3597 chain_to_prev_insn_p (rtx_insn
*insn
)
3601 /* INSN forms a group with the previous instruction. */
3602 if (SCHED_GROUP_P (insn
))
3605 /* If the previous instruction clobbers a register R and this one sets
3606 part of R, the clobber was added specifically to help us track the
3607 liveness of R. There's no point scheduling the clobber and leaving
3608 INSN behind, especially if we move the clobber to another block. */
3609 prev
= prev_nonnote_nondebug_insn (insn
);
3612 && BLOCK_FOR_INSN (prev
) == BLOCK_FOR_INSN (insn
)
3613 && GET_CODE (PATTERN (prev
)) == CLOBBER
)
3615 x
= XEXP (PATTERN (prev
), 0);
3616 if (set_of (x
, insn
))
3623 /* Analyze INSN with DEPS as a context. */
3625 deps_analyze_insn (struct deps_desc
*deps
, rtx_insn
*insn
)
3627 if (sched_deps_info
->start_insn
)
3628 sched_deps_info
->start_insn (insn
);
3630 /* Record the condition for this insn. */
3631 if (NONDEBUG_INSN_P (insn
))
3634 sched_get_condition_with_rev (insn
, NULL
);
3635 t
= INSN_CACHED_COND (insn
);
3636 INSN_COND_DEPS (insn
) = NULL
;
3637 if (reload_completed
3638 && (current_sched_info
->flags
& DO_PREDICATION
)
3640 && REG_P (XEXP (t
, 0))
3641 && CONSTANT_P (XEXP (t
, 1)))
3645 rtx_insn_list
*cond_deps
= NULL
;
3648 nregs
= hard_regno_nregs
[regno
][GET_MODE (t
)];
3651 struct deps_reg
*reg_last
= &deps
->reg_last
[regno
+ nregs
];
3652 cond_deps
= concat_INSN_LIST (reg_last
->sets
, cond_deps
);
3653 cond_deps
= concat_INSN_LIST (reg_last
->clobbers
, cond_deps
);
3654 cond_deps
= concat_INSN_LIST (reg_last
->implicit_sets
, cond_deps
);
3656 INSN_COND_DEPS (insn
) = cond_deps
;
3662 /* Make each JUMP_INSN (but not a speculative check)
3663 a scheduling barrier for memory references. */
3666 && sel_insn_is_speculation_check (insn
)))
3668 /* Keep the list a reasonable size. */
3669 if (deps
->pending_flush_length
++ >= MAX_PENDING_LIST_LENGTH
)
3670 flush_pending_lists (deps
, insn
, true, true);
3672 deps
->pending_jump_insns
3673 = alloc_INSN_LIST (insn
, deps
->pending_jump_insns
);
3676 /* For each insn which shouldn't cross a jump, add a dependence. */
3677 add_dependence_list_and_free (deps
, insn
,
3678 &deps
->sched_before_next_jump
, 1,
3679 REG_DEP_ANTI
, true);
3681 sched_analyze_insn (deps
, PATTERN (insn
), insn
);
3683 else if (NONJUMP_INSN_P (insn
) || DEBUG_INSN_P (insn
))
3685 sched_analyze_insn (deps
, PATTERN (insn
), insn
);
3687 else if (CALL_P (insn
))
3691 CANT_MOVE (insn
) = 1;
3693 if (find_reg_note (insn
, REG_SETJMP
, NULL
))
3695 /* This is setjmp. Assume that all registers, not just
3696 hard registers, may be clobbered by this call. */
3697 reg_pending_barrier
= MOVE_BARRIER
;
3701 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
3702 /* A call may read and modify global register variables. */
3705 SET_REGNO_REG_SET (reg_pending_sets
, i
);
3706 SET_HARD_REG_BIT (implicit_reg_pending_uses
, i
);
3708 /* Other call-clobbered hard regs may be clobbered.
3709 Since we only have a choice between 'might be clobbered'
3710 and 'definitely not clobbered', we must include all
3711 partly call-clobbered registers here. */
3712 else if (HARD_REGNO_CALL_PART_CLOBBERED (i
, reg_raw_mode
[i
])
3713 || TEST_HARD_REG_BIT (regs_invalidated_by_call
, i
))
3714 SET_REGNO_REG_SET (reg_pending_clobbers
, i
);
3715 /* We don't know what set of fixed registers might be used
3716 by the function, but it is certain that the stack pointer
3717 is among them, but be conservative. */
3718 else if (fixed_regs
[i
])
3719 SET_HARD_REG_BIT (implicit_reg_pending_uses
, i
);
3720 /* The frame pointer is normally not used by the function
3721 itself, but by the debugger. */
3722 /* ??? MIPS o32 is an exception. It uses the frame pointer
3723 in the macro expansion of jal but does not represent this
3724 fact in the call_insn rtl. */
3725 else if (i
== FRAME_POINTER_REGNUM
3726 || (i
== HARD_FRAME_POINTER_REGNUM
3727 && (! reload_completed
|| frame_pointer_needed
)))
3728 SET_HARD_REG_BIT (implicit_reg_pending_uses
, i
);
3731 /* For each insn which shouldn't cross a call, add a dependence
3732 between that insn and this call insn. */
3733 add_dependence_list_and_free (deps
, insn
,
3734 &deps
->sched_before_next_call
, 1,
3735 REG_DEP_ANTI
, true);
3737 sched_analyze_insn (deps
, PATTERN (insn
), insn
);
3739 /* If CALL would be in a sched group, then this will violate
3740 convention that sched group insns have dependencies only on the
3741 previous instruction.
3743 Of course one can say: "Hey! What about head of the sched group?"
3744 And I will answer: "Basic principles (one dep per insn) are always
3746 gcc_assert (!SCHED_GROUP_P (insn
));
3748 /* In the absence of interprocedural alias analysis, we must flush
3749 all pending reads and writes, and start new dependencies starting
3750 from here. But only flush writes for constant calls (which may
3751 be passed a pointer to something we haven't written yet). */
3752 flush_pending_lists (deps
, insn
, true, ! RTL_CONST_OR_PURE_CALL_P (insn
));
3754 if (!deps
->readonly
)
3756 /* Remember the last function call for limiting lifetimes. */
3757 free_INSN_LIST_list (&deps
->last_function_call
);
3758 deps
->last_function_call
= alloc_INSN_LIST (insn
, NULL_RTX
);
3760 if (call_may_noreturn_p (insn
))
3762 /* Remember the last function call that might not always return
3763 normally for limiting moves of trapping insns. */
3764 free_INSN_LIST_list (&deps
->last_function_call_may_noreturn
);
3765 deps
->last_function_call_may_noreturn
3766 = alloc_INSN_LIST (insn
, NULL_RTX
);
3769 /* Before reload, begin a post-call group, so as to keep the
3770 lifetimes of hard registers correct. */
3771 if (! reload_completed
)
3772 deps
->in_post_call_group_p
= post_call
;
3776 if (sched_deps_info
->use_cselib
)
3777 cselib_process_insn (insn
);
3779 if (sched_deps_info
->finish_insn
)
3780 sched_deps_info
->finish_insn ();
3782 /* Fixup the dependencies in the sched group. */
3783 if ((NONJUMP_INSN_P (insn
) || JUMP_P (insn
))
3784 && chain_to_prev_insn_p (insn
)
3786 chain_to_prev_insn (insn
);
3789 /* Initialize DEPS for the new block beginning with HEAD. */
3791 deps_start_bb (struct deps_desc
*deps
, rtx_insn
*head
)
3793 gcc_assert (!deps
->readonly
);
3795 /* Before reload, if the previous block ended in a call, show that
3796 we are inside a post-call group, so as to keep the lifetimes of
3797 hard registers correct. */
3798 if (! reload_completed
&& !LABEL_P (head
))
3800 rtx_insn
*insn
= prev_nonnote_nondebug_insn (head
);
3802 if (insn
&& CALL_P (insn
))
3803 deps
->in_post_call_group_p
= post_call_initial
;
3807 /* Analyze every insn between HEAD and TAIL inclusive, creating backward
3808 dependencies for each insn. */
3810 sched_analyze (struct deps_desc
*deps
, rtx_insn
*head
, rtx_insn
*tail
)
3814 if (sched_deps_info
->use_cselib
)
3815 cselib_init (CSELIB_RECORD_MEMORY
);
3817 deps_start_bb (deps
, head
);
3819 for (insn
= head
;; insn
= NEXT_INSN (insn
))
3824 /* And initialize deps_lists. */
3825 sd_init_insn (insn
);
3826 /* Clean up SCHED_GROUP_P which may be set by last
3828 if (SCHED_GROUP_P (insn
))
3829 SCHED_GROUP_P (insn
) = 0;
3832 deps_analyze_insn (deps
, insn
);
3836 if (sched_deps_info
->use_cselib
)
3844 /* Helper for sched_free_deps ().
3845 Delete INSN's (RESOLVED_P) backward dependencies. */
3847 delete_dep_nodes_in_back_deps (rtx_insn
*insn
, bool resolved_p
)
3849 sd_iterator_def sd_it
;
3851 sd_list_types_def types
;
3854 types
= SD_LIST_RES_BACK
;
3856 types
= SD_LIST_BACK
;
3858 for (sd_it
= sd_iterator_start (insn
, types
);
3859 sd_iterator_cond (&sd_it
, &dep
);)
3861 dep_link_t link
= *sd_it
.linkp
;
3862 dep_node_t node
= DEP_LINK_NODE (link
);
3863 deps_list_t back_list
;
3864 deps_list_t forw_list
;
3866 get_back_and_forw_lists (dep
, resolved_p
, &back_list
, &forw_list
);
3867 remove_from_deps_list (link
, back_list
);
3868 delete_dep_node (node
);
3872 /* Delete (RESOLVED_P) dependencies between HEAD and TAIL together with
3875 sched_free_deps (rtx_insn
*head
, rtx_insn
*tail
, bool resolved_p
)
3878 rtx_insn
*next_tail
= NEXT_INSN (tail
);
3880 /* We make two passes since some insns may be scheduled before their
3881 dependencies are resolved. */
3882 for (insn
= head
; insn
!= next_tail
; insn
= NEXT_INSN (insn
))
3883 if (INSN_P (insn
) && INSN_LUID (insn
) > 0)
3885 /* Clear forward deps and leave the dep_nodes to the
3886 corresponding back_deps list. */
3888 clear_deps_list (INSN_RESOLVED_FORW_DEPS (insn
));
3890 clear_deps_list (INSN_FORW_DEPS (insn
));
3892 for (insn
= head
; insn
!= next_tail
; insn
= NEXT_INSN (insn
))
3893 if (INSN_P (insn
) && INSN_LUID (insn
) > 0)
3895 /* Clear resolved back deps together with its dep_nodes. */
3896 delete_dep_nodes_in_back_deps (insn
, resolved_p
);
3898 sd_finish_insn (insn
);
3902 /* Initialize variables for region data dependence analysis.
3903 When LAZY_REG_LAST is true, do not allocate reg_last array
3904 of struct deps_desc immediately. */
3907 init_deps (struct deps_desc
*deps
, bool lazy_reg_last
)
3909 int max_reg
= (reload_completed
? FIRST_PSEUDO_REGISTER
: max_reg_num ());
3911 deps
->max_reg
= max_reg
;
3913 deps
->reg_last
= NULL
;
3915 deps
->reg_last
= XCNEWVEC (struct deps_reg
, max_reg
);
3916 INIT_REG_SET (&deps
->reg_last_in_use
);
3918 deps
->pending_read_insns
= 0;
3919 deps
->pending_read_mems
= 0;
3920 deps
->pending_write_insns
= 0;
3921 deps
->pending_write_mems
= 0;
3922 deps
->pending_jump_insns
= 0;
3923 deps
->pending_read_list_length
= 0;
3924 deps
->pending_write_list_length
= 0;
3925 deps
->pending_flush_length
= 0;
3926 deps
->last_pending_memory_flush
= 0;
3927 deps
->last_function_call
= 0;
3928 deps
->last_function_call_may_noreturn
= 0;
3929 deps
->sched_before_next_call
= 0;
3930 deps
->sched_before_next_jump
= 0;
3931 deps
->in_post_call_group_p
= not_post_call
;
3932 deps
->last_debug_insn
= 0;
3933 deps
->last_args_size
= 0;
3934 deps
->last_reg_pending_barrier
= NOT_A_BARRIER
;
3938 /* Init only reg_last field of DEPS, which was not allocated before as
3939 we inited DEPS lazily. */
3941 init_deps_reg_last (struct deps_desc
*deps
)
3943 gcc_assert (deps
&& deps
->max_reg
> 0);
3944 gcc_assert (deps
->reg_last
== NULL
);
3946 deps
->reg_last
= XCNEWVEC (struct deps_reg
, deps
->max_reg
);
3950 /* Free insn lists found in DEPS. */
3953 free_deps (struct deps_desc
*deps
)
3956 reg_set_iterator rsi
;
3958 /* We set max_reg to 0 when this context was already freed. */
3959 if (deps
->max_reg
== 0)
3961 gcc_assert (deps
->reg_last
== NULL
);
3966 free_INSN_LIST_list (&deps
->pending_read_insns
);
3967 free_EXPR_LIST_list (&deps
->pending_read_mems
);
3968 free_INSN_LIST_list (&deps
->pending_write_insns
);
3969 free_EXPR_LIST_list (&deps
->pending_write_mems
);
3970 free_INSN_LIST_list (&deps
->last_pending_memory_flush
);
3972 /* Without the EXECUTE_IF_SET, this loop is executed max_reg * nr_regions
3973 times. For a testcase with 42000 regs and 8000 small basic blocks,
3974 this loop accounted for nearly 60% (84 sec) of the total -O2 runtime. */
3975 EXECUTE_IF_SET_IN_REG_SET (&deps
->reg_last_in_use
, 0, i
, rsi
)
3977 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
3979 free_INSN_LIST_list (®_last
->uses
);
3981 free_INSN_LIST_list (®_last
->sets
);
3982 if (reg_last
->implicit_sets
)
3983 free_INSN_LIST_list (®_last
->implicit_sets
);
3984 if (reg_last
->control_uses
)
3985 free_INSN_LIST_list (®_last
->control_uses
);
3986 if (reg_last
->clobbers
)
3987 free_INSN_LIST_list (®_last
->clobbers
);
3989 CLEAR_REG_SET (&deps
->reg_last_in_use
);
3991 /* As we initialize reg_last lazily, it is possible that we didn't allocate
3993 free (deps
->reg_last
);
3994 deps
->reg_last
= NULL
;
3999 /* Remove INSN from dependence contexts DEPS. */
4001 remove_from_deps (struct deps_desc
*deps
, rtx_insn
*insn
)
4005 reg_set_iterator rsi
;
4007 removed
= remove_from_both_dependence_lists (insn
, &deps
->pending_read_insns
,
4008 &deps
->pending_read_mems
);
4009 if (!DEBUG_INSN_P (insn
))
4010 deps
->pending_read_list_length
-= removed
;
4011 removed
= remove_from_both_dependence_lists (insn
, &deps
->pending_write_insns
,
4012 &deps
->pending_write_mems
);
4013 deps
->pending_write_list_length
-= removed
;
4015 removed
= remove_from_dependence_list (insn
, &deps
->pending_jump_insns
);
4016 deps
->pending_flush_length
-= removed
;
4017 removed
= remove_from_dependence_list (insn
, &deps
->last_pending_memory_flush
);
4018 deps
->pending_flush_length
-= removed
;
4020 EXECUTE_IF_SET_IN_REG_SET (&deps
->reg_last_in_use
, 0, i
, rsi
)
4022 struct deps_reg
*reg_last
= &deps
->reg_last
[i
];
4024 remove_from_dependence_list (insn
, ®_last
->uses
);
4026 remove_from_dependence_list (insn
, ®_last
->sets
);
4027 if (reg_last
->implicit_sets
)
4028 remove_from_dependence_list (insn
, ®_last
->implicit_sets
);
4029 if (reg_last
->clobbers
)
4030 remove_from_dependence_list (insn
, ®_last
->clobbers
);
4031 if (!reg_last
->uses
&& !reg_last
->sets
&& !reg_last
->implicit_sets
4032 && !reg_last
->clobbers
)
4033 CLEAR_REGNO_REG_SET (&deps
->reg_last_in_use
, i
);
4038 remove_from_dependence_list (insn
, &deps
->last_function_call
);
4039 remove_from_dependence_list (insn
,
4040 &deps
->last_function_call_may_noreturn
);
4042 remove_from_dependence_list (insn
, &deps
->sched_before_next_call
);
4045 /* Init deps data vector. */
4047 init_deps_data_vector (void)
4049 int reserve
= (sched_max_luid
+ 1 - h_d_i_d
.length ());
4050 if (reserve
> 0 && ! h_d_i_d
.space (reserve
))
4051 h_d_i_d
.safe_grow_cleared (3 * sched_max_luid
/ 2);
4054 /* If it is profitable to use them, initialize or extend (depending on
4055 GLOBAL_P) dependency data. */
4057 sched_deps_init (bool global_p
)
4059 /* Average number of insns in the basic block.
4060 '+ 1' is used to make it nonzero. */
4061 int insns_in_block
= sched_max_luid
/ n_basic_blocks_for_fn (cfun
) + 1;
4063 init_deps_data_vector ();
4065 /* We use another caching mechanism for selective scheduling, so
4066 we don't use this one. */
4067 if (!sel_sched_p () && global_p
&& insns_in_block
> 100 * 5)
4069 /* ?!? We could save some memory by computing a per-region luid mapping
4070 which could reduce both the number of vectors in the cache and the
4071 size of each vector. Instead we just avoid the cache entirely unless
4072 the average number of instructions in a basic block is very high. See
4073 the comment before the declaration of true_dependency_cache for
4074 what we consider "very high". */
4076 extend_dependency_caches (sched_max_luid
, true);
4081 dl_pool
= create_alloc_pool ("deps_list", sizeof (struct _deps_list
),
4082 /* Allocate lists for one block at a time. */
4084 dn_pool
= create_alloc_pool ("dep_node", sizeof (struct _dep_node
),
4085 /* Allocate nodes for one block at a time.
4086 We assume that average insn has
4088 5 * insns_in_block
);
4093 /* Create or extend (depending on CREATE_P) dependency caches to
4096 extend_dependency_caches (int n
, bool create_p
)
4098 if (create_p
|| true_dependency_cache
)
4100 int i
, luid
= cache_size
+ n
;
4102 true_dependency_cache
= XRESIZEVEC (bitmap_head
, true_dependency_cache
,
4104 output_dependency_cache
= XRESIZEVEC (bitmap_head
,
4105 output_dependency_cache
, luid
);
4106 anti_dependency_cache
= XRESIZEVEC (bitmap_head
, anti_dependency_cache
,
4108 control_dependency_cache
= XRESIZEVEC (bitmap_head
, control_dependency_cache
,
4111 if (current_sched_info
->flags
& DO_SPECULATION
)
4112 spec_dependency_cache
= XRESIZEVEC (bitmap_head
, spec_dependency_cache
,
4115 for (i
= cache_size
; i
< luid
; i
++)
4117 bitmap_initialize (&true_dependency_cache
[i
], 0);
4118 bitmap_initialize (&output_dependency_cache
[i
], 0);
4119 bitmap_initialize (&anti_dependency_cache
[i
], 0);
4120 bitmap_initialize (&control_dependency_cache
[i
], 0);
4122 if (current_sched_info
->flags
& DO_SPECULATION
)
4123 bitmap_initialize (&spec_dependency_cache
[i
], 0);
4129 /* Finalize dependency information for the whole function. */
4131 sched_deps_finish (void)
4133 gcc_assert (deps_pools_are_empty_p ());
4134 free_alloc_pool_if_empty (&dn_pool
);
4135 free_alloc_pool_if_empty (&dl_pool
);
4136 gcc_assert (dn_pool
== NULL
&& dl_pool
== NULL
);
4141 if (true_dependency_cache
)
4145 for (i
= 0; i
< cache_size
; i
++)
4147 bitmap_clear (&true_dependency_cache
[i
]);
4148 bitmap_clear (&output_dependency_cache
[i
]);
4149 bitmap_clear (&anti_dependency_cache
[i
]);
4150 bitmap_clear (&control_dependency_cache
[i
]);
4152 if (sched_deps_info
->generate_spec_deps
)
4153 bitmap_clear (&spec_dependency_cache
[i
]);
4155 free (true_dependency_cache
);
4156 true_dependency_cache
= NULL
;
4157 free (output_dependency_cache
);
4158 output_dependency_cache
= NULL
;
4159 free (anti_dependency_cache
);
4160 anti_dependency_cache
= NULL
;
4161 free (control_dependency_cache
);
4162 control_dependency_cache
= NULL
;
4164 if (sched_deps_info
->generate_spec_deps
)
4166 free (spec_dependency_cache
);
4167 spec_dependency_cache
= NULL
;
4173 /* Initialize some global variables needed by the dependency analysis
4177 init_deps_global (void)
4179 CLEAR_HARD_REG_SET (implicit_reg_pending_clobbers
);
4180 CLEAR_HARD_REG_SET (implicit_reg_pending_uses
);
4181 reg_pending_sets
= ALLOC_REG_SET (®_obstack
);
4182 reg_pending_clobbers
= ALLOC_REG_SET (®_obstack
);
4183 reg_pending_uses
= ALLOC_REG_SET (®_obstack
);
4184 reg_pending_control_uses
= ALLOC_REG_SET (®_obstack
);
4185 reg_pending_barrier
= NOT_A_BARRIER
;
4187 if (!sel_sched_p () || sched_emulate_haifa_p
)
4189 sched_deps_info
->start_insn
= haifa_start_insn
;
4190 sched_deps_info
->finish_insn
= haifa_finish_insn
;
4192 sched_deps_info
->note_reg_set
= haifa_note_reg_set
;
4193 sched_deps_info
->note_reg_clobber
= haifa_note_reg_clobber
;
4194 sched_deps_info
->note_reg_use
= haifa_note_reg_use
;
4196 sched_deps_info
->note_mem_dep
= haifa_note_mem_dep
;
4197 sched_deps_info
->note_dep
= haifa_note_dep
;
4201 /* Free everything used by the dependency analysis code. */
4204 finish_deps_global (void)
4206 FREE_REG_SET (reg_pending_sets
);
4207 FREE_REG_SET (reg_pending_clobbers
);
4208 FREE_REG_SET (reg_pending_uses
);
4209 FREE_REG_SET (reg_pending_control_uses
);
4212 /* Estimate the weakness of dependence between MEM1 and MEM2. */
4214 estimate_dep_weak (rtx mem1
, rtx mem2
)
4219 /* MEMs are the same - don't speculate. */
4220 return MIN_DEP_WEAK
;
4222 r1
= XEXP (mem1
, 0);
4223 r2
= XEXP (mem2
, 0);
4226 || (REG_P (r1
) && REG_P (r2
)
4227 && REGNO (r1
) == REGNO (r2
)))
4228 /* Again, MEMs are the same. */
4229 return MIN_DEP_WEAK
;
4230 else if ((REG_P (r1
) && !REG_P (r2
))
4231 || (!REG_P (r1
) && REG_P (r2
)))
4232 /* Different addressing modes - reason to be more speculative,
4234 return NO_DEP_WEAK
- (NO_DEP_WEAK
- UNCERTAIN_DEP_WEAK
) / 2;
4236 /* We can't say anything about the dependence. */
4237 return UNCERTAIN_DEP_WEAK
;
4240 /* Add or update backward dependence between INSN and ELEM with type DEP_TYPE.
4241 This function can handle same INSN and ELEM (INSN == ELEM).
4242 It is a convenience wrapper. */
4244 add_dependence_1 (rtx_insn
*insn
, rtx_insn
*elem
, enum reg_note dep_type
)
4249 if (dep_type
== REG_DEP_TRUE
)
4251 else if (dep_type
== REG_DEP_OUTPUT
)
4253 else if (dep_type
== REG_DEP_CONTROL
)
4257 gcc_assert (dep_type
== REG_DEP_ANTI
);
4261 /* When add_dependence is called from inside sched-deps.c, we expect
4262 cur_insn to be non-null. */
4263 internal
= cur_insn
!= NULL
;
4265 gcc_assert (insn
== cur_insn
);
4269 note_dep (elem
, ds
);
4274 /* Return weakness of speculative type TYPE in the dep_status DS,
4275 without checking to prevent ICEs on malformed input. */
4277 get_dep_weak_1 (ds_t ds
, ds_t type
)
4283 case BEGIN_DATA
: ds
>>= BEGIN_DATA_BITS_OFFSET
; break;
4284 case BE_IN_DATA
: ds
>>= BE_IN_DATA_BITS_OFFSET
; break;
4285 case BEGIN_CONTROL
: ds
>>= BEGIN_CONTROL_BITS_OFFSET
; break;
4286 case BE_IN_CONTROL
: ds
>>= BE_IN_CONTROL_BITS_OFFSET
; break;
4287 default: gcc_unreachable ();
4293 /* Return weakness of speculative type TYPE in the dep_status DS. */
4295 get_dep_weak (ds_t ds
, ds_t type
)
4297 dw_t dw
= get_dep_weak_1 (ds
, type
);
4299 gcc_assert (MIN_DEP_WEAK
<= dw
&& dw
<= MAX_DEP_WEAK
);
4303 /* Return the dep_status, which has the same parameters as DS, except for
4304 speculative type TYPE, that will have weakness DW. */
4306 set_dep_weak (ds_t ds
, ds_t type
, dw_t dw
)
4308 gcc_assert (MIN_DEP_WEAK
<= dw
&& dw
<= MAX_DEP_WEAK
);
4313 case BEGIN_DATA
: ds
|= ((ds_t
) dw
) << BEGIN_DATA_BITS_OFFSET
; break;
4314 case BE_IN_DATA
: ds
|= ((ds_t
) dw
) << BE_IN_DATA_BITS_OFFSET
; break;
4315 case BEGIN_CONTROL
: ds
|= ((ds_t
) dw
) << BEGIN_CONTROL_BITS_OFFSET
; break;
4316 case BE_IN_CONTROL
: ds
|= ((ds_t
) dw
) << BE_IN_CONTROL_BITS_OFFSET
; break;
4317 default: gcc_unreachable ();
4322 /* Return the join of two dep_statuses DS1 and DS2.
4323 If MAX_P is true then choose the greater probability,
4324 otherwise multiply probabilities.
4325 This function assumes that both DS1 and DS2 contain speculative bits. */
4327 ds_merge_1 (ds_t ds1
, ds_t ds2
, bool max_p
)
4331 gcc_assert ((ds1
& SPECULATIVE
) && (ds2
& SPECULATIVE
));
4333 ds
= (ds1
& DEP_TYPES
) | (ds2
& DEP_TYPES
);
4335 t
= FIRST_SPEC_TYPE
;
4338 if ((ds1
& t
) && !(ds2
& t
))
4340 else if (!(ds1
& t
) && (ds2
& t
))
4342 else if ((ds1
& t
) && (ds2
& t
))
4344 dw_t dw1
= get_dep_weak (ds1
, t
);
4345 dw_t dw2
= get_dep_weak (ds2
, t
);
4350 dw
= ((ds_t
) dw1
) * ((ds_t
) dw2
);
4352 if (dw
< MIN_DEP_WEAK
)
4363 ds
= set_dep_weak (ds
, t
, (dw_t
) dw
);
4366 if (t
== LAST_SPEC_TYPE
)
4368 t
<<= SPEC_TYPE_SHIFT
;
4375 /* Return the join of two dep_statuses DS1 and DS2.
4376 This function assumes that both DS1 and DS2 contain speculative bits. */
4378 ds_merge (ds_t ds1
, ds_t ds2
)
4380 return ds_merge_1 (ds1
, ds2
, false);
4383 /* Return the join of two dep_statuses DS1 and DS2. */
4385 ds_full_merge (ds_t ds
, ds_t ds2
, rtx mem1
, rtx mem2
)
4387 ds_t new_status
= ds
| ds2
;
4389 if (new_status
& SPECULATIVE
)
4391 if ((ds
&& !(ds
& SPECULATIVE
))
4392 || (ds2
&& !(ds2
& SPECULATIVE
)))
4393 /* Then this dep can't be speculative. */
4394 new_status
&= ~SPECULATIVE
;
4397 /* Both are speculative. Merging probabilities. */
4402 dw
= estimate_dep_weak (mem1
, mem2
);
4403 ds
= set_dep_weak (ds
, BEGIN_DATA
, dw
);
4411 new_status
= ds_merge (ds2
, ds
);
4418 /* Return the join of DS1 and DS2. Use maximum instead of multiplying
4421 ds_max_merge (ds_t ds1
, ds_t ds2
)
4423 if (ds1
== 0 && ds2
== 0)
4426 if (ds1
== 0 && ds2
!= 0)
4429 if (ds1
!= 0 && ds2
== 0)
4432 return ds_merge_1 (ds1
, ds2
, true);
4435 /* Return the probability of speculation success for the speculation
4443 dt
= FIRST_SPEC_TYPE
;
4448 res
*= (ds_t
) get_dep_weak (ds
, dt
);
4452 if (dt
== LAST_SPEC_TYPE
)
4454 dt
<<= SPEC_TYPE_SHIFT
;
4460 res
/= MAX_DEP_WEAK
;
4462 if (res
< MIN_DEP_WEAK
)
4465 gcc_assert (res
<= MAX_DEP_WEAK
);
4470 /* Return a dep status that contains all speculation types of DS. */
4472 ds_get_speculation_types (ds_t ds
)
4474 if (ds
& BEGIN_DATA
)
4476 if (ds
& BE_IN_DATA
)
4478 if (ds
& BEGIN_CONTROL
)
4479 ds
|= BEGIN_CONTROL
;
4480 if (ds
& BE_IN_CONTROL
)
4481 ds
|= BE_IN_CONTROL
;
4483 return ds
& SPECULATIVE
;
4486 /* Return a dep status that contains maximal weakness for each speculation
4487 type present in DS. */
4489 ds_get_max_dep_weak (ds_t ds
)
4491 if (ds
& BEGIN_DATA
)
4492 ds
= set_dep_weak (ds
, BEGIN_DATA
, MAX_DEP_WEAK
);
4493 if (ds
& BE_IN_DATA
)
4494 ds
= set_dep_weak (ds
, BE_IN_DATA
, MAX_DEP_WEAK
);
4495 if (ds
& BEGIN_CONTROL
)
4496 ds
= set_dep_weak (ds
, BEGIN_CONTROL
, MAX_DEP_WEAK
);
4497 if (ds
& BE_IN_CONTROL
)
4498 ds
= set_dep_weak (ds
, BE_IN_CONTROL
, MAX_DEP_WEAK
);
4503 /* Dump information about the dependence status S. */
4505 dump_ds (FILE *f
, ds_t s
)
4510 fprintf (f
, "BEGIN_DATA: %d; ", get_dep_weak_1 (s
, BEGIN_DATA
));
4512 fprintf (f
, "BE_IN_DATA: %d; ", get_dep_weak_1 (s
, BE_IN_DATA
));
4513 if (s
& BEGIN_CONTROL
)
4514 fprintf (f
, "BEGIN_CONTROL: %d; ", get_dep_weak_1 (s
, BEGIN_CONTROL
));
4515 if (s
& BE_IN_CONTROL
)
4516 fprintf (f
, "BE_IN_CONTROL: %d; ", get_dep_weak_1 (s
, BE_IN_CONTROL
));
4519 fprintf (f
, "HARD_DEP; ");
4522 fprintf (f
, "DEP_TRUE; ");
4524 fprintf (f
, "DEP_OUTPUT; ");
4526 fprintf (f
, "DEP_ANTI; ");
4527 if (s
& DEP_CONTROL
)
4528 fprintf (f
, "DEP_CONTROL; ");
4536 dump_ds (stderr
, s
);
4537 fprintf (stderr
, "\n");
4540 #ifdef ENABLE_CHECKING
4541 /* Verify that dependence type and status are consistent.
4542 If RELAXED_P is true, then skip dep_weakness checks. */
4544 check_dep (dep_t dep
, bool relaxed_p
)
4546 enum reg_note dt
= DEP_TYPE (dep
);
4547 ds_t ds
= DEP_STATUS (dep
);
4549 gcc_assert (DEP_PRO (dep
) != DEP_CON (dep
));
4551 if (!(current_sched_info
->flags
& USE_DEPS_LIST
))
4553 gcc_assert (ds
== 0);
4557 /* Check that dependence type contains the same bits as the status. */
4558 if (dt
== REG_DEP_TRUE
)
4559 gcc_assert (ds
& DEP_TRUE
);
4560 else if (dt
== REG_DEP_OUTPUT
)
4561 gcc_assert ((ds
& DEP_OUTPUT
)
4562 && !(ds
& DEP_TRUE
));
4563 else if (dt
== REG_DEP_ANTI
)
4564 gcc_assert ((ds
& DEP_ANTI
)
4565 && !(ds
& (DEP_OUTPUT
| DEP_TRUE
)));
4567 gcc_assert (dt
== REG_DEP_CONTROL
4568 && (ds
& DEP_CONTROL
)
4569 && !(ds
& (DEP_OUTPUT
| DEP_ANTI
| DEP_TRUE
)));
4571 /* HARD_DEP can not appear in dep_status of a link. */
4572 gcc_assert (!(ds
& HARD_DEP
));
4574 /* Check that dependence status is set correctly when speculation is not
4576 if (!sched_deps_info
->generate_spec_deps
)
4577 gcc_assert (!(ds
& SPECULATIVE
));
4578 else if (ds
& SPECULATIVE
)
4582 ds_t type
= FIRST_SPEC_TYPE
;
4584 /* Check that dependence weakness is in proper range. */
4588 get_dep_weak (ds
, type
);
4590 if (type
== LAST_SPEC_TYPE
)
4592 type
<<= SPEC_TYPE_SHIFT
;
4597 if (ds
& BEGIN_SPEC
)
4599 /* Only true dependence can be data speculative. */
4600 if (ds
& BEGIN_DATA
)
4601 gcc_assert (ds
& DEP_TRUE
);
4603 /* Control dependencies in the insn scheduler are represented by
4604 anti-dependencies, therefore only anti dependence can be
4605 control speculative. */
4606 if (ds
& BEGIN_CONTROL
)
4607 gcc_assert (ds
& DEP_ANTI
);
4611 /* Subsequent speculations should resolve true dependencies. */
4612 gcc_assert ((ds
& DEP_TYPES
) == DEP_TRUE
);
4615 /* Check that true and anti dependencies can't have other speculative
4618 gcc_assert (ds
& (BEGIN_DATA
| BE_IN_SPEC
));
4619 /* An output dependence can't be speculative at all. */
4620 gcc_assert (!(ds
& DEP_OUTPUT
));
4622 gcc_assert (ds
& BEGIN_CONTROL
);
4625 #endif /* ENABLE_CHECKING */
4627 /* The following code discovers opportunities to switch a memory reference
4628 and an increment by modifying the address. We ensure that this is done
4629 only for dependencies that are only used to show a single register
4630 dependence (using DEP_NONREG and DEP_MULTIPLE), and so that every memory
4631 instruction involved is subject to only one dep that can cause a pattern
4634 When we discover a suitable dependency, we fill in the dep_replacement
4635 structure to show how to modify the memory reference. */
4637 /* Holds information about a pair of memory reference and register increment
4638 insns which depend on each other, but could possibly be interchanged. */
4645 /* A register occurring in the memory address for which we wish to break
4646 the dependence. This must be identical to the destination register of
4649 /* Any kind of index that is added to that register. */
4651 /* The constant offset used in the memory address. */
4652 HOST_WIDE_INT mem_constant
;
4653 /* The constant added in the increment insn. Negated if the increment is
4654 after the memory address. */
4655 HOST_WIDE_INT inc_constant
;
4656 /* The source register used in the increment. May be different from mem_reg0
4657 if the increment occurs before the memory address. */
4661 /* Verify that the memory location described in MII can be replaced with
4662 one using NEW_ADDR. Return the new memory reference or NULL_RTX. The
4663 insn remains unchanged by this function. */
4666 attempt_change (struct mem_inc_info
*mii
, rtx new_addr
)
4668 rtx mem
= *mii
->mem_loc
;
4671 /* Jump through a lot of hoops to keep the attributes up to date. We
4672 do not want to call one of the change address variants that take
4673 an offset even though we know the offset in many cases. These
4674 assume you are changing where the address is pointing by the
4676 new_mem
= replace_equiv_address_nv (mem
, new_addr
);
4677 if (! validate_change (mii
->mem_insn
, mii
->mem_loc
, new_mem
, 0))
4679 if (sched_verbose
>= 5)
4680 fprintf (sched_dump
, "validation failure\n");
4684 /* Put back the old one. */
4685 validate_change (mii
->mem_insn
, mii
->mem_loc
, mem
, 0);
4690 /* Return true if INSN is of a form "a = b op c" where a and b are
4691 regs. op is + if c is a reg and +|- if c is a const. Fill in
4692 informantion in MII about what is found.
4693 BEFORE_MEM indicates whether the increment is found before or after
4694 a corresponding memory reference. */
4697 parse_add_or_inc (struct mem_inc_info
*mii
, rtx_insn
*insn
, bool before_mem
)
4699 rtx pat
= single_set (insn
);
4703 if (RTX_FRAME_RELATED_P (insn
) || !pat
)
4706 /* Result must be single reg. */
4707 if (!REG_P (SET_DEST (pat
)))
4710 if (GET_CODE (SET_SRC (pat
)) != PLUS
)
4713 mii
->inc_insn
= insn
;
4714 src
= SET_SRC (pat
);
4715 mii
->inc_input
= XEXP (src
, 0);
4717 if (!REG_P (XEXP (src
, 0)))
4720 if (!rtx_equal_p (SET_DEST (pat
), mii
->mem_reg0
))
4723 cst
= XEXP (src
, 1);
4724 if (!CONST_INT_P (cst
))
4726 mii
->inc_constant
= INTVAL (cst
);
4728 regs_equal
= rtx_equal_p (mii
->inc_input
, mii
->mem_reg0
);
4732 mii
->inc_constant
= -mii
->inc_constant
;
4737 if (regs_equal
&& REGNO (SET_DEST (pat
)) == STACK_POINTER_REGNUM
)
4739 /* Note that the sign has already been reversed for !before_mem. */
4740 #ifdef STACK_GROWS_DOWNWARD
4741 return mii
->inc_constant
> 0;
4743 return mii
->inc_constant
< 0;
4749 /* Once a suitable mem reference has been found and the corresponding data
4750 in MII has been filled in, this function is called to find a suitable
4751 add or inc insn involving the register we found in the memory
4755 find_inc (struct mem_inc_info
*mii
, bool backwards
)
4757 sd_iterator_def sd_it
;
4760 sd_it
= sd_iterator_start (mii
->mem_insn
,
4761 backwards
? SD_LIST_HARD_BACK
: SD_LIST_FORW
);
4762 while (sd_iterator_cond (&sd_it
, &dep
))
4764 dep_node_t node
= DEP_LINK_NODE (*sd_it
.linkp
);
4765 rtx_insn
*pro
= DEP_PRO (dep
);
4766 rtx_insn
*con
= DEP_CON (dep
);
4767 rtx_insn
*inc_cand
= backwards
? pro
: con
;
4768 if (DEP_NONREG (dep
) || DEP_MULTIPLE (dep
))
4770 if (parse_add_or_inc (mii
, inc_cand
, backwards
))
4772 struct dep_replacement
*desc
;
4774 rtx newaddr
, newmem
;
4776 if (sched_verbose
>= 5)
4777 fprintf (sched_dump
, "candidate mem/inc pair: %d %d\n",
4778 INSN_UID (mii
->mem_insn
), INSN_UID (inc_cand
));
4780 /* Need to assure that none of the operands of the inc
4781 instruction are assigned to by the mem insn. */
4782 FOR_EACH_INSN_DEF (def
, mii
->mem_insn
)
4783 if (reg_overlap_mentioned_p (DF_REF_REG (def
), mii
->inc_input
)
4784 || reg_overlap_mentioned_p (DF_REF_REG (def
), mii
->mem_reg0
))
4786 if (sched_verbose
>= 5)
4787 fprintf (sched_dump
,
4788 "inc conflicts with store failure.\n");
4792 newaddr
= mii
->inc_input
;
4793 if (mii
->mem_index
!= NULL_RTX
)
4794 newaddr
= gen_rtx_PLUS (GET_MODE (newaddr
), newaddr
,
4796 newaddr
= plus_constant (GET_MODE (newaddr
), newaddr
,
4797 mii
->mem_constant
+ mii
->inc_constant
);
4798 newmem
= attempt_change (mii
, newaddr
);
4799 if (newmem
== NULL_RTX
)
4801 if (sched_verbose
>= 5)
4802 fprintf (sched_dump
, "successful address replacement\n");
4803 desc
= XCNEW (struct dep_replacement
);
4804 DEP_REPLACE (dep
) = desc
;
4805 desc
->loc
= mii
->mem_loc
;
4806 desc
->newval
= newmem
;
4807 desc
->orig
= *desc
->loc
;
4808 desc
->insn
= mii
->mem_insn
;
4809 move_dep_link (DEP_NODE_BACK (node
), INSN_HARD_BACK_DEPS (con
),
4810 INSN_SPEC_BACK_DEPS (con
));
4813 FOR_EACH_DEP (mii
->inc_insn
, SD_LIST_BACK
, sd_it
, dep
)
4814 add_dependence_1 (mii
->mem_insn
, DEP_PRO (dep
),
4819 FOR_EACH_DEP (mii
->inc_insn
, SD_LIST_FORW
, sd_it
, dep
)
4820 add_dependence_1 (DEP_CON (dep
), mii
->mem_insn
,
4826 sd_iterator_next (&sd_it
);
4831 /* A recursive function that walks ADDRESS_OF_X to find memory references
4832 which could be modified during scheduling. We call find_inc for each
4833 one we find that has a recognizable form. MII holds information about
4834 the pair of memory/increment instructions.
4835 We ensure that every instruction with a memory reference (which will be
4836 the location of the replacement) is assigned at most one breakable
4840 find_mem (struct mem_inc_info
*mii
, rtx
*address_of_x
)
4842 rtx x
= *address_of_x
;
4843 enum rtx_code code
= GET_CODE (x
);
4844 const char *const fmt
= GET_RTX_FORMAT (code
);
4849 rtx reg0
= XEXP (x
, 0);
4851 mii
->mem_loc
= address_of_x
;
4852 mii
->mem_index
= NULL_RTX
;
4853 mii
->mem_constant
= 0;
4854 if (GET_CODE (reg0
) == PLUS
&& CONST_INT_P (XEXP (reg0
, 1)))
4856 mii
->mem_constant
= INTVAL (XEXP (reg0
, 1));
4857 reg0
= XEXP (reg0
, 0);
4859 if (GET_CODE (reg0
) == PLUS
)
4861 mii
->mem_index
= XEXP (reg0
, 1);
4862 reg0
= XEXP (reg0
, 0);
4867 int occurrences
= 0;
4869 /* Make sure this reg appears only once in this insn. Can't use
4870 count_occurrences since that only works for pseudos. */
4871 FOR_EACH_INSN_USE (use
, mii
->mem_insn
)
4872 if (reg_overlap_mentioned_p (reg0
, DF_REF_REG (use
)))
4873 if (++occurrences
> 1)
4875 if (sched_verbose
>= 5)
4876 fprintf (sched_dump
, "mem count failure\n");
4880 mii
->mem_reg0
= reg0
;
4881 return find_inc (mii
, true) || find_inc (mii
, false);
4886 if (code
== SIGN_EXTRACT
|| code
== ZERO_EXTRACT
)
4888 /* If REG occurs inside a MEM used in a bit-field reference,
4889 that is unacceptable. */
4893 /* Time for some deep diving. */
4894 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
4898 if (find_mem (mii
, &XEXP (x
, i
)))
4901 else if (fmt
[i
] == 'E')
4904 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
4905 if (find_mem (mii
, &XVECEXP (x
, i
, j
)))
4913 /* Examine the instructions between HEAD and TAIL and try to find
4914 dependencies that can be broken by modifying one of the patterns. */
4917 find_modifiable_mems (rtx_insn
*head
, rtx_insn
*tail
)
4919 rtx_insn
*insn
, *next_tail
= NEXT_INSN (tail
);
4920 int success_in_block
= 0;
4922 for (insn
= head
; insn
!= next_tail
; insn
= NEXT_INSN (insn
))
4924 struct mem_inc_info mii
;
4926 if (!NONDEBUG_INSN_P (insn
) || RTX_FRAME_RELATED_P (insn
))
4929 mii
.mem_insn
= insn
;
4930 if (find_mem (&mii
, &PATTERN (insn
)))
4933 if (success_in_block
&& sched_verbose
>= 5)
4934 fprintf (sched_dump
, "%d candidates for address modification found.\n",
4938 #endif /* INSN_SCHEDULING */