Home | History | Annotate | Download | only in gcc

Lines Matching defs:combined

87    4) The chains are combined together if possible.  If the corresponding
88 elements of two chains are always combined together with the same
302 has_max_use_after (false), all_always_accessed (false), combined (false),
309 combined, and the type of the result. */
342 /* True if this chain was combined together with some other chain. */
343 unsigned combined : 1;
518 /* Checks whether R1 and R2 are combined together using CODE, with the
525 they are combined in a single statement, and returns this statement. */
606 chain->combined ? " (combined)" : "");
2153 gcc_assert (!chain->combined);
2294 if (chain->combined)
2296 /* For combined chains, just remove the statements that are used to
2352 /* For non-combined chains, set up the variables that hold its value. */
2387 if (chain->combined)
2389 /* For combined chains, we can't handle unrolling if we replace
2434 else if (chain->combined)
2436 /* For combined chains, just remove the statements that are used to
2586 /* Returns true if CHAIN is suitable to be combined. */
2591 return (!chain->combined
2715 /* Checks whether R1 and R2 are combined together using CODE, with the result
2786 are combined in a single statement, and returns this statement. */
2939 ch1->combined = true;
2940 ch2->combined = true;
3022 /* Re-association in combined chains may generate statements different to
3024 of combined chain in dominance order so that all uses will be inserted
3026 A) This is necessary for all combined chains.
3030 We first update position information for all combined chains. */
3034 if (ch1->type != CT_COMBINATION || ch1->combined)
3045 if (ch1->type != CT_COMBINATION && !ch1->combined)
3061 if (ch1->combined)
3065 combined stmt must dominates others. */
3071 /* Check if there is use at max distance after root for combined chains