re PR c++/18279 (missing function bodies from -fdump-translation-unit)
[official-gcc.git] / gcc / tree-sra.c
blob62b45e2b30413902960fa1955fd5737ee0f3b7b8
1 /* Scalar Replacement of Aggregates (SRA) converts some structure
2 references into scalar references, exposing them to the scalar
3 optimizers.
4 Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
5 Contributed by Diego Novillo <dnovillo@redhat.com>
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it
10 under the terms of the GNU General Public License as published by the
11 Free Software Foundation; either version 2, or (at your option) any
12 later version.
14 GCC is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING. If not, write to the Free
21 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
22 02110-1301, USA. */
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "ggc.h"
29 #include "tree.h"
31 /* These RTL headers are needed for basic-block.h. */
32 #include "rtl.h"
33 #include "tm_p.h"
34 #include "hard-reg-set.h"
35 #include "basic-block.h"
36 #include "diagnostic.h"
37 #include "langhooks.h"
38 #include "tree-inline.h"
39 #include "tree-flow.h"
40 #include "tree-gimple.h"
41 #include "tree-dump.h"
42 #include "tree-pass.h"
43 #include "timevar.h"
44 #include "flags.h"
45 #include "bitmap.h"
46 #include "obstack.h"
47 #include "target.h"
48 /* expr.h is needed for MOVE_RATIO. */
49 #include "expr.h"
50 #include "params.h"
53 /* This object of this pass is to replace a non-addressable aggregate with a
54 set of independent variables. Most of the time, all of these variables
55 will be scalars. But a secondary objective is to break up larger
56 aggregates into smaller aggregates. In the process we may find that some
57 bits of the larger aggregate can be deleted as unreferenced.
59 This substitution is done globally. More localized substitutions would
60 be the purvey of a load-store motion pass.
62 The optimization proceeds in phases:
64 (1) Identify variables that have types that are candidates for
65 decomposition.
67 (2) Scan the function looking for the ways these variables are used.
68 In particular we're interested in the number of times a variable
69 (or member) is needed as a complete unit, and the number of times
70 a variable (or member) is copied.
72 (3) Based on the usage profile, instantiate substitution variables.
74 (4) Scan the function making replacements.
78 /* The set of aggregate variables that are candidates for scalarization. */
79 static bitmap sra_candidates;
81 /* Set of scalarizable PARM_DECLs that need copy-in operations at the
82 beginning of the function. */
83 static bitmap needs_copy_in;
85 /* Sets of bit pairs that cache type decomposition and instantiation. */
86 static bitmap sra_type_decomp_cache;
87 static bitmap sra_type_inst_cache;
89 /* One of these structures is created for each candidate aggregate
90 and each (accessed) member of such an aggregate. */
91 struct sra_elt
93 /* A tree of the elements. Used when we want to traverse everything. */
94 struct sra_elt *parent;
95 struct sra_elt *children;
96 struct sra_elt *sibling;
98 /* If this element is a root, then this is the VAR_DECL. If this is
99 a sub-element, this is some token used to identify the reference.
100 In the case of COMPONENT_REF, this is the FIELD_DECL. In the case
101 of an ARRAY_REF, this is the (constant) index. In the case of a
102 complex number, this is a zero or one. */
103 tree element;
105 /* The type of the element. */
106 tree type;
108 /* A VAR_DECL, for any sub-element we've decided to replace. */
109 tree replacement;
111 /* The number of times the element is referenced as a whole. I.e.
112 given "a.b.c", this would be incremented for C, but not for A or B. */
113 unsigned int n_uses;
115 /* The number of times the element is copied to or from another
116 scalarizable element. */
117 unsigned int n_copies;
119 /* True if TYPE is scalar. */
120 bool is_scalar;
122 /* True if we saw something about this element that prevents scalarization,
123 such as non-constant indexing. */
124 bool cannot_scalarize;
126 /* True if we've decided that structure-to-structure assignment
127 should happen via memcpy and not per-element. */
128 bool use_block_copy;
130 /* A flag for use with/after random access traversals. */
131 bool visited;
134 /* Random access to the child of a parent is performed by hashing.
135 This prevents quadratic behavior, and allows SRA to function
136 reasonably on larger records. */
137 static htab_t sra_map;
139 /* All structures are allocated out of the following obstack. */
140 static struct obstack sra_obstack;
142 /* Debugging functions. */
143 static void dump_sra_elt_name (FILE *, struct sra_elt *);
144 extern void debug_sra_elt_name (struct sra_elt *);
146 /* Forward declarations. */
147 static tree generate_element_ref (struct sra_elt *);
149 /* Return true if DECL is an SRA candidate. */
151 static bool
152 is_sra_candidate_decl (tree decl)
154 return DECL_P (decl) && bitmap_bit_p (sra_candidates, DECL_UID (decl));
157 /* Return true if TYPE is a scalar type. */
159 static bool
160 is_sra_scalar_type (tree type)
162 enum tree_code code = TREE_CODE (type);
163 return (code == INTEGER_TYPE || code == REAL_TYPE || code == VECTOR_TYPE
164 || code == ENUMERAL_TYPE || code == BOOLEAN_TYPE
165 || code == CHAR_TYPE || code == POINTER_TYPE || code == OFFSET_TYPE
166 || code == REFERENCE_TYPE);
169 /* Return true if TYPE can be decomposed into a set of independent variables.
171 Note that this doesn't imply that all elements of TYPE can be
172 instantiated, just that if we decide to break up the type into
173 separate pieces that it can be done. */
175 static bool
176 type_can_be_decomposed_p (tree type)
178 unsigned int cache = TYPE_UID (TYPE_MAIN_VARIANT (type)) * 2;
179 tree t;
181 /* Avoid searching the same type twice. */
182 if (bitmap_bit_p (sra_type_decomp_cache, cache+0))
183 return true;
184 if (bitmap_bit_p (sra_type_decomp_cache, cache+1))
185 return false;
187 /* The type must have a definite nonzero size. */
188 if (TYPE_SIZE (type) == NULL || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST
189 || integer_zerop (TYPE_SIZE (type)))
190 goto fail;
192 /* The type must be a non-union aggregate. */
193 switch (TREE_CODE (type))
195 case RECORD_TYPE:
197 bool saw_one_field = false;
199 for (t = TYPE_FIELDS (type); t ; t = TREE_CHAIN (t))
200 if (TREE_CODE (t) == FIELD_DECL)
202 /* Reject incorrectly represented bit fields. */
203 if (DECL_BIT_FIELD (t)
204 && (tree_low_cst (DECL_SIZE (t), 1)
205 != TYPE_PRECISION (TREE_TYPE (t))))
206 goto fail;
208 saw_one_field = true;
211 /* Record types must have at least one field. */
212 if (!saw_one_field)
213 goto fail;
215 break;
217 case ARRAY_TYPE:
218 /* Array types must have a fixed lower and upper bound. */
219 t = TYPE_DOMAIN (type);
220 if (t == NULL)
221 goto fail;
222 if (TYPE_MIN_VALUE (t) == NULL || !TREE_CONSTANT (TYPE_MIN_VALUE (t)))
223 goto fail;
224 if (TYPE_MAX_VALUE (t) == NULL || !TREE_CONSTANT (TYPE_MAX_VALUE (t)))
225 goto fail;
226 break;
228 case COMPLEX_TYPE:
229 break;
231 default:
232 goto fail;
235 bitmap_set_bit (sra_type_decomp_cache, cache+0);
236 return true;
238 fail:
239 bitmap_set_bit (sra_type_decomp_cache, cache+1);
240 return false;
243 /* Return true if DECL can be decomposed into a set of independent
244 (though not necessarily scalar) variables. */
246 static bool
247 decl_can_be_decomposed_p (tree var)
249 /* Early out for scalars. */
250 if (is_sra_scalar_type (TREE_TYPE (var)))
251 return false;
253 /* The variable must not be aliased. */
254 if (!is_gimple_non_addressable (var))
256 if (dump_file && (dump_flags & TDF_DETAILS))
258 fprintf (dump_file, "Cannot scalarize variable ");
259 print_generic_expr (dump_file, var, dump_flags);
260 fprintf (dump_file, " because it must live in memory\n");
262 return false;
265 /* The variable must not be volatile. */
266 if (TREE_THIS_VOLATILE (var))
268 if (dump_file && (dump_flags & TDF_DETAILS))
270 fprintf (dump_file, "Cannot scalarize variable ");
271 print_generic_expr (dump_file, var, dump_flags);
272 fprintf (dump_file, " because it is declared volatile\n");
274 return false;
277 /* We must be able to decompose the variable's type. */
278 if (!type_can_be_decomposed_p (TREE_TYPE (var)))
280 if (dump_file && (dump_flags & TDF_DETAILS))
282 fprintf (dump_file, "Cannot scalarize variable ");
283 print_generic_expr (dump_file, var, dump_flags);
284 fprintf (dump_file, " because its type cannot be decomposed\n");
286 return false;
289 return true;
292 /* Return true if TYPE can be *completely* decomposed into scalars. */
294 static bool
295 type_can_instantiate_all_elements (tree type)
297 if (is_sra_scalar_type (type))
298 return true;
299 if (!type_can_be_decomposed_p (type))
300 return false;
302 switch (TREE_CODE (type))
304 case RECORD_TYPE:
306 unsigned int cache = TYPE_UID (TYPE_MAIN_VARIANT (type)) * 2;
307 tree f;
309 if (bitmap_bit_p (sra_type_inst_cache, cache+0))
310 return true;
311 if (bitmap_bit_p (sra_type_inst_cache, cache+1))
312 return false;
314 for (f = TYPE_FIELDS (type); f ; f = TREE_CHAIN (f))
315 if (TREE_CODE (f) == FIELD_DECL)
317 if (!type_can_instantiate_all_elements (TREE_TYPE (f)))
319 bitmap_set_bit (sra_type_inst_cache, cache+1);
320 return false;
324 bitmap_set_bit (sra_type_inst_cache, cache+0);
325 return true;
328 case ARRAY_TYPE:
329 return type_can_instantiate_all_elements (TREE_TYPE (type));
331 case COMPLEX_TYPE:
332 return true;
334 default:
335 gcc_unreachable ();
339 /* Test whether ELT or some sub-element cannot be scalarized. */
341 static bool
342 can_completely_scalarize_p (struct sra_elt *elt)
344 struct sra_elt *c;
346 if (elt->cannot_scalarize)
347 return false;
349 for (c = elt->children; c ; c = c->sibling)
350 if (!can_completely_scalarize_p (c))
351 return false;
353 return true;
357 /* A simplified tree hashing algorithm that only handles the types of
358 trees we expect to find in sra_elt->element. */
360 static hashval_t
361 sra_hash_tree (tree t)
363 hashval_t h;
365 switch (TREE_CODE (t))
367 case VAR_DECL:
368 case PARM_DECL:
369 case RESULT_DECL:
370 h = DECL_UID (t);
371 break;
373 case INTEGER_CST:
374 h = TREE_INT_CST_LOW (t) ^ TREE_INT_CST_HIGH (t);
375 break;
377 case FIELD_DECL:
378 /* We can have types that are compatible, but have different member
379 lists, so we can't hash fields by ID. Use offsets instead. */
380 h = iterative_hash_expr (DECL_FIELD_OFFSET (t), 0);
381 h = iterative_hash_expr (DECL_FIELD_BIT_OFFSET (t), h);
382 break;
384 default:
385 gcc_unreachable ();
388 return h;
391 /* Hash function for type SRA_PAIR. */
393 static hashval_t
394 sra_elt_hash (const void *x)
396 const struct sra_elt *e = x;
397 const struct sra_elt *p;
398 hashval_t h;
400 h = sra_hash_tree (e->element);
402 /* Take into account everything back up the chain. Given that chain
403 lengths are rarely very long, this should be acceptable. If we
404 truly identify this as a performance problem, it should work to
405 hash the pointer value "e->parent". */
406 for (p = e->parent; p ; p = p->parent)
407 h = (h * 65521) ^ sra_hash_tree (p->element);
409 return h;
412 /* Equality function for type SRA_PAIR. */
414 static int
415 sra_elt_eq (const void *x, const void *y)
417 const struct sra_elt *a = x;
418 const struct sra_elt *b = y;
419 tree ae, be;
421 if (a->parent != b->parent)
422 return false;
424 ae = a->element;
425 be = b->element;
427 if (ae == be)
428 return true;
429 if (TREE_CODE (ae) != TREE_CODE (be))
430 return false;
432 switch (TREE_CODE (ae))
434 case VAR_DECL:
435 case PARM_DECL:
436 case RESULT_DECL:
437 /* These are all pointer unique. */
438 return false;
440 case INTEGER_CST:
441 /* Integers are not pointer unique, so compare their values. */
442 return tree_int_cst_equal (ae, be);
444 case FIELD_DECL:
445 /* Fields are unique within a record, but not between
446 compatible records. */
447 if (DECL_FIELD_CONTEXT (ae) == DECL_FIELD_CONTEXT (be))
448 return false;
449 return fields_compatible_p (ae, be);
451 default:
452 gcc_unreachable ();
456 /* Create or return the SRA_ELT structure for CHILD in PARENT. PARENT
457 may be null, in which case CHILD must be a DECL. */
459 static struct sra_elt *
460 lookup_element (struct sra_elt *parent, tree child, tree type,
461 enum insert_option insert)
463 struct sra_elt dummy;
464 struct sra_elt **slot;
465 struct sra_elt *elt;
467 dummy.parent = parent;
468 dummy.element = child;
470 slot = (struct sra_elt **) htab_find_slot (sra_map, &dummy, insert);
471 if (!slot && insert == NO_INSERT)
472 return NULL;
474 elt = *slot;
475 if (!elt && insert == INSERT)
477 *slot = elt = obstack_alloc (&sra_obstack, sizeof (*elt));
478 memset (elt, 0, sizeof (*elt));
480 elt->parent = parent;
481 elt->element = child;
482 elt->type = type;
483 elt->is_scalar = is_sra_scalar_type (type);
485 if (parent)
487 elt->sibling = parent->children;
488 parent->children = elt;
491 /* If this is a parameter, then if we want to scalarize, we have
492 one copy from the true function parameter. Count it now. */
493 if (TREE_CODE (child) == PARM_DECL)
495 elt->n_copies = 1;
496 bitmap_set_bit (needs_copy_in, DECL_UID (child));
500 return elt;
503 /* Return true if the ARRAY_REF in EXPR is a constant, in bounds access. */
505 static bool
506 is_valid_const_index (tree expr)
508 tree dom, t, index = TREE_OPERAND (expr, 1);
510 if (TREE_CODE (index) != INTEGER_CST)
511 return false;
513 /* Watch out for stupid user tricks, indexing outside the array.
515 Careful, we're not called only on scalarizable types, so do not
516 assume constant array bounds. We needn't do anything with such
517 cases, since they'll be referring to objects that we should have
518 already rejected for scalarization, so returning false is fine. */
520 dom = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (expr, 0)));
521 if (dom == NULL)
522 return false;
524 t = TYPE_MIN_VALUE (dom);
525 if (!t || TREE_CODE (t) != INTEGER_CST)
526 return false;
527 if (tree_int_cst_lt (index, t))
528 return false;
530 t = TYPE_MAX_VALUE (dom);
531 if (!t || TREE_CODE (t) != INTEGER_CST)
532 return false;
533 if (tree_int_cst_lt (t, index))
534 return false;
536 return true;
539 /* Create or return the SRA_ELT structure for EXPR if the expression
540 refers to a scalarizable variable. */
542 static struct sra_elt *
543 maybe_lookup_element_for_expr (tree expr)
545 struct sra_elt *elt;
546 tree child;
548 switch (TREE_CODE (expr))
550 case VAR_DECL:
551 case PARM_DECL:
552 case RESULT_DECL:
553 if (is_sra_candidate_decl (expr))
554 return lookup_element (NULL, expr, TREE_TYPE (expr), INSERT);
555 return NULL;
557 case ARRAY_REF:
558 /* We can't scalarize variable array indicies. */
559 if (is_valid_const_index (expr))
560 child = TREE_OPERAND (expr, 1);
561 else
562 return NULL;
563 break;
565 case COMPONENT_REF:
566 /* Don't look through unions. */
567 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) != RECORD_TYPE)
568 return NULL;
569 child = TREE_OPERAND (expr, 1);
570 break;
572 case REALPART_EXPR:
573 child = integer_zero_node;
574 break;
575 case IMAGPART_EXPR:
576 child = integer_one_node;
577 break;
579 default:
580 return NULL;
583 elt = maybe_lookup_element_for_expr (TREE_OPERAND (expr, 0));
584 if (elt)
585 return lookup_element (elt, child, TREE_TYPE (expr), INSERT);
586 return NULL;
590 /* Functions to walk just enough of the tree to see all scalarizable
591 references, and categorize them. */
593 /* A set of callbacks for phases 2 and 4. They'll be invoked for the
594 various kinds of references seen. In all cases, *BSI is an iterator
595 pointing to the statement being processed. */
596 struct sra_walk_fns
598 /* Invoked when ELT is required as a unit. Note that ELT might refer to
599 a leaf node, in which case this is a simple scalar reference. *EXPR_P
600 points to the location of the expression. IS_OUTPUT is true if this
601 is a left-hand-side reference. */
602 void (*use) (struct sra_elt *elt, tree *expr_p,
603 block_stmt_iterator *bsi, bool is_output);
605 /* Invoked when we have a copy between two scalarizable references. */
606 void (*copy) (struct sra_elt *lhs_elt, struct sra_elt *rhs_elt,
607 block_stmt_iterator *bsi);
609 /* Invoked when ELT is initialized from a constant. VALUE may be NULL,
610 in which case it should be treated as an empty CONSTRUCTOR. */
611 void (*init) (struct sra_elt *elt, tree value, block_stmt_iterator *bsi);
613 /* Invoked when we have a copy between one scalarizable reference ELT
614 and one non-scalarizable reference OTHER. IS_OUTPUT is true if ELT
615 is on the left-hand side. */
616 void (*ldst) (struct sra_elt *elt, tree other,
617 block_stmt_iterator *bsi, bool is_output);
619 /* True during phase 2, false during phase 4. */
620 /* ??? This is a hack. */
621 bool initial_scan;
624 #ifdef ENABLE_CHECKING
625 /* Invoked via walk_tree, if *TP contains a candidate decl, return it. */
627 static tree
628 sra_find_candidate_decl (tree *tp, int *walk_subtrees,
629 void *data ATTRIBUTE_UNUSED)
631 tree t = *tp;
632 enum tree_code code = TREE_CODE (t);
634 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
636 *walk_subtrees = 0;
637 if (is_sra_candidate_decl (t))
638 return t;
640 else if (TYPE_P (t))
641 *walk_subtrees = 0;
643 return NULL;
645 #endif
647 /* Walk most expressions looking for a scalarizable aggregate.
648 If we find one, invoke FNS->USE. */
650 static void
651 sra_walk_expr (tree *expr_p, block_stmt_iterator *bsi, bool is_output,
652 const struct sra_walk_fns *fns)
654 tree expr = *expr_p;
655 tree inner = expr;
656 bool disable_scalarization = false;
658 /* We're looking to collect a reference expression between EXPR and INNER,
659 such that INNER is a scalarizable decl and all other nodes through EXPR
660 are references that we can scalarize. If we come across something that
661 we can't scalarize, we reset EXPR. This has the effect of making it
662 appear that we're referring to the larger expression as a whole. */
664 while (1)
665 switch (TREE_CODE (inner))
667 case VAR_DECL:
668 case PARM_DECL:
669 case RESULT_DECL:
670 /* If there is a scalarizable decl at the bottom, then process it. */
671 if (is_sra_candidate_decl (inner))
673 struct sra_elt *elt = maybe_lookup_element_for_expr (expr);
674 if (disable_scalarization)
675 elt->cannot_scalarize = true;
676 else
677 fns->use (elt, expr_p, bsi, is_output);
679 return;
681 case ARRAY_REF:
682 /* Non-constant index means any member may be accessed. Prevent the
683 expression from being scalarized. If we were to treat this as a
684 reference to the whole array, we can wind up with a single dynamic
685 index reference inside a loop being overridden by several constant
686 index references during loop setup. It's possible that this could
687 be avoided by using dynamic usage counts based on BB trip counts
688 (based on loop analysis or profiling), but that hardly seems worth
689 the effort. */
690 /* ??? Hack. Figure out how to push this into the scan routines
691 without duplicating too much code. */
692 if (!is_valid_const_index (inner))
694 disable_scalarization = true;
695 goto use_all;
697 /* ??? Are we assured that non-constant bounds and stride will have
698 the same value everywhere? I don't think Fortran will... */
699 if (TREE_OPERAND (inner, 2) || TREE_OPERAND (inner, 3))
700 goto use_all;
701 inner = TREE_OPERAND (inner, 0);
702 break;
704 case COMPONENT_REF:
705 /* A reference to a union member constitutes a reference to the
706 entire union. */
707 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (inner, 0))) != RECORD_TYPE)
708 goto use_all;
709 /* ??? See above re non-constant stride. */
710 if (TREE_OPERAND (inner, 2))
711 goto use_all;
712 inner = TREE_OPERAND (inner, 0);
713 break;
715 case REALPART_EXPR:
716 case IMAGPART_EXPR:
717 inner = TREE_OPERAND (inner, 0);
718 break;
720 case BIT_FIELD_REF:
721 /* A bit field reference (access to *multiple* fields simultaneously)
722 is not currently scalarized. Consider this an access to the
723 complete outer element, to which walk_tree will bring us next. */
724 goto use_all;
726 case ARRAY_RANGE_REF:
727 /* Similarly, an subrange reference is used to modify indexing. Which
728 means that the canonical element names that we have won't work. */
729 goto use_all;
731 case VIEW_CONVERT_EXPR:
732 case NOP_EXPR:
733 /* Similarly, a view/nop explicitly wants to look at an object in a
734 type other than the one we've scalarized. */
735 goto use_all;
737 case WITH_SIZE_EXPR:
738 /* This is a transparent wrapper. The entire inner expression really
739 is being used. */
740 goto use_all;
742 use_all:
743 expr_p = &TREE_OPERAND (inner, 0);
744 inner = expr = *expr_p;
745 break;
747 default:
748 #ifdef ENABLE_CHECKING
749 /* Validate that we're not missing any references. */
750 gcc_assert (!walk_tree (&inner, sra_find_candidate_decl, NULL, NULL));
751 #endif
752 return;
756 /* Walk a TREE_LIST of values looking for scalarizable aggregates.
757 If we find one, invoke FNS->USE. */
759 static void
760 sra_walk_tree_list (tree list, block_stmt_iterator *bsi, bool is_output,
761 const struct sra_walk_fns *fns)
763 tree op;
764 for (op = list; op ; op = TREE_CHAIN (op))
765 sra_walk_expr (&TREE_VALUE (op), bsi, is_output, fns);
768 /* Walk the arguments of a CALL_EXPR looking for scalarizable aggregates.
769 If we find one, invoke FNS->USE. */
771 static void
772 sra_walk_call_expr (tree expr, block_stmt_iterator *bsi,
773 const struct sra_walk_fns *fns)
775 sra_walk_tree_list (TREE_OPERAND (expr, 1), bsi, false, fns);
778 /* Walk the inputs and outputs of an ASM_EXPR looking for scalarizable
779 aggregates. If we find one, invoke FNS->USE. */
781 static void
782 sra_walk_asm_expr (tree expr, block_stmt_iterator *bsi,
783 const struct sra_walk_fns *fns)
785 sra_walk_tree_list (ASM_INPUTS (expr), bsi, false, fns);
786 sra_walk_tree_list (ASM_OUTPUTS (expr), bsi, true, fns);
789 /* Walk a MODIFY_EXPR and categorize the assignment appropriately. */
791 static void
792 sra_walk_modify_expr (tree expr, block_stmt_iterator *bsi,
793 const struct sra_walk_fns *fns)
795 struct sra_elt *lhs_elt, *rhs_elt;
796 tree lhs, rhs;
798 lhs = TREE_OPERAND (expr, 0);
799 rhs = TREE_OPERAND (expr, 1);
800 lhs_elt = maybe_lookup_element_for_expr (lhs);
801 rhs_elt = maybe_lookup_element_for_expr (rhs);
803 /* If both sides are scalarizable, this is a COPY operation. */
804 if (lhs_elt && rhs_elt)
806 fns->copy (lhs_elt, rhs_elt, bsi);
807 return;
810 /* If the RHS is scalarizable, handle it. There are only two cases. */
811 if (rhs_elt)
813 if (!rhs_elt->is_scalar)
814 fns->ldst (rhs_elt, lhs, bsi, false);
815 else
816 fns->use (rhs_elt, &TREE_OPERAND (expr, 1), bsi, false);
819 /* If it isn't scalarizable, there may be scalarizable variables within, so
820 check for a call or else walk the RHS to see if we need to do any
821 copy-in operations. We need to do it before the LHS is scalarized so
822 that the statements get inserted in the proper place, before any
823 copy-out operations. */
824 else
826 tree call = get_call_expr_in (rhs);
827 if (call)
828 sra_walk_call_expr (call, bsi, fns);
829 else
830 sra_walk_expr (&TREE_OPERAND (expr, 1), bsi, false, fns);
833 /* Likewise, handle the LHS being scalarizable. We have cases similar
834 to those above, but also want to handle RHS being constant. */
835 if (lhs_elt)
837 /* If this is an assignment from a constant, or constructor, then
838 we have access to all of the elements individually. Invoke INIT. */
839 if (TREE_CODE (rhs) == COMPLEX_EXPR
840 || TREE_CODE (rhs) == COMPLEX_CST
841 || TREE_CODE (rhs) == CONSTRUCTOR)
842 fns->init (lhs_elt, rhs, bsi);
844 /* If this is an assignment from read-only memory, treat this as if
845 we'd been passed the constructor directly. Invoke INIT. */
846 else if (TREE_CODE (rhs) == VAR_DECL
847 && TREE_STATIC (rhs)
848 && TREE_READONLY (rhs)
849 && targetm.binds_local_p (rhs))
850 fns->init (lhs_elt, DECL_INITIAL (rhs), bsi);
852 /* If this is a copy from a non-scalarizable lvalue, invoke LDST.
853 The lvalue requirement prevents us from trying to directly scalarize
854 the result of a function call. Which would result in trying to call
855 the function multiple times, and other evil things. */
856 else if (!lhs_elt->is_scalar && is_gimple_addressable (rhs))
857 fns->ldst (lhs_elt, rhs, bsi, true);
859 /* Otherwise we're being used in some context that requires the
860 aggregate to be seen as a whole. Invoke USE. */
861 else
862 fns->use (lhs_elt, &TREE_OPERAND (expr, 0), bsi, true);
865 /* Similarly to above, LHS_ELT being null only means that the LHS as a
866 whole is not a scalarizable reference. There may be occurrences of
867 scalarizable variables within, which implies a USE. */
868 else
869 sra_walk_expr (&TREE_OPERAND (expr, 0), bsi, true, fns);
872 /* Entry point to the walk functions. Search the entire function,
873 invoking the callbacks in FNS on each of the references to
874 scalarizable variables. */
876 static void
877 sra_walk_function (const struct sra_walk_fns *fns)
879 basic_block bb;
880 block_stmt_iterator si, ni;
882 /* ??? Phase 4 could derive some benefit to walking the function in
883 dominator tree order. */
885 FOR_EACH_BB (bb)
886 for (si = bsi_start (bb); !bsi_end_p (si); si = ni)
888 tree stmt, t;
889 stmt_ann_t ann;
891 stmt = bsi_stmt (si);
892 ann = stmt_ann (stmt);
894 ni = si;
895 bsi_next (&ni);
897 /* If the statement has no virtual operands, then it doesn't
898 make any structure references that we care about. */
899 if (ZERO_SSA_OPERANDS (stmt, (SSA_OP_VIRTUAL_DEFS | SSA_OP_VUSE)))
900 continue;
902 switch (TREE_CODE (stmt))
904 case RETURN_EXPR:
905 /* If we have "return <retval>" then the return value is
906 already exposed for our pleasure. Walk it as a USE to
907 force all the components back in place for the return.
909 If we have an embedded assignment, then <retval> is of
910 a type that gets returned in registers in this ABI, and
911 we do not wish to extend their lifetimes. Treat this
912 as a USE of the variable on the RHS of this assignment. */
914 t = TREE_OPERAND (stmt, 0);
915 if (TREE_CODE (t) == MODIFY_EXPR)
916 sra_walk_expr (&TREE_OPERAND (t, 1), &si, false, fns);
917 else
918 sra_walk_expr (&TREE_OPERAND (stmt, 0), &si, false, fns);
919 break;
921 case MODIFY_EXPR:
922 sra_walk_modify_expr (stmt, &si, fns);
923 break;
924 case CALL_EXPR:
925 sra_walk_call_expr (stmt, &si, fns);
926 break;
927 case ASM_EXPR:
928 sra_walk_asm_expr (stmt, &si, fns);
929 break;
931 default:
932 break;
937 /* Phase One: Scan all referenced variables in the program looking for
938 structures that could be decomposed. */
940 static bool
941 find_candidates_for_sra (void)
943 bool any_set = false;
944 tree var;
945 referenced_var_iterator rvi;
947 FOR_EACH_REFERENCED_VAR (var, rvi)
949 if (decl_can_be_decomposed_p (var))
951 bitmap_set_bit (sra_candidates, DECL_UID (var));
952 any_set = true;
956 return any_set;
960 /* Phase Two: Scan all references to scalarizable variables. Count the
961 number of times they are used or copied respectively. */
963 /* Callbacks to fill in SRA_WALK_FNS. Everything but USE is
964 considered a copy, because we can decompose the reference such that
965 the sub-elements needn't be contiguous. */
967 static void
968 scan_use (struct sra_elt *elt, tree *expr_p ATTRIBUTE_UNUSED,
969 block_stmt_iterator *bsi ATTRIBUTE_UNUSED,
970 bool is_output ATTRIBUTE_UNUSED)
972 elt->n_uses += 1;
975 static void
976 scan_copy (struct sra_elt *lhs_elt, struct sra_elt *rhs_elt,
977 block_stmt_iterator *bsi ATTRIBUTE_UNUSED)
979 lhs_elt->n_copies += 1;
980 rhs_elt->n_copies += 1;
983 static void
984 scan_init (struct sra_elt *lhs_elt, tree rhs ATTRIBUTE_UNUSED,
985 block_stmt_iterator *bsi ATTRIBUTE_UNUSED)
987 lhs_elt->n_copies += 1;
990 static void
991 scan_ldst (struct sra_elt *elt, tree other ATTRIBUTE_UNUSED,
992 block_stmt_iterator *bsi ATTRIBUTE_UNUSED,
993 bool is_output ATTRIBUTE_UNUSED)
995 elt->n_copies += 1;
998 /* Dump the values we collected during the scanning phase. */
1000 static void
1001 scan_dump (struct sra_elt *elt)
1003 struct sra_elt *c;
1005 dump_sra_elt_name (dump_file, elt);
1006 fprintf (dump_file, ": n_uses=%u n_copies=%u\n", elt->n_uses, elt->n_copies);
1008 for (c = elt->children; c ; c = c->sibling)
1009 scan_dump (c);
1012 /* Entry point to phase 2. Scan the entire function, building up
1013 scalarization data structures, recording copies and uses. */
1015 static void
1016 scan_function (void)
1018 static const struct sra_walk_fns fns = {
1019 scan_use, scan_copy, scan_init, scan_ldst, true
1021 bitmap_iterator bi;
1023 sra_walk_function (&fns);
1025 if (dump_file && (dump_flags & TDF_DETAILS))
1027 unsigned i;
1029 fputs ("\nScan results:\n", dump_file);
1030 EXECUTE_IF_SET_IN_BITMAP (sra_candidates, 0, i, bi)
1032 tree var = referenced_var (i);
1033 struct sra_elt *elt = lookup_element (NULL, var, NULL, NO_INSERT);
1034 if (elt)
1035 scan_dump (elt);
1037 fputc ('\n', dump_file);
1041 /* Phase Three: Make decisions about which variables to scalarize, if any.
1042 All elements to be scalarized have replacement variables made for them. */
1044 /* A subroutine of build_element_name. Recursively build the element
1045 name on the obstack. */
1047 static void
1048 build_element_name_1 (struct sra_elt *elt)
1050 tree t;
1051 char buffer[32];
1053 if (elt->parent)
1055 build_element_name_1 (elt->parent);
1056 obstack_1grow (&sra_obstack, '$');
1058 if (TREE_CODE (elt->parent->type) == COMPLEX_TYPE)
1060 if (elt->element == integer_zero_node)
1061 obstack_grow (&sra_obstack, "real", 4);
1062 else
1063 obstack_grow (&sra_obstack, "imag", 4);
1064 return;
1068 t = elt->element;
1069 if (TREE_CODE (t) == INTEGER_CST)
1071 /* ??? Eh. Don't bother doing double-wide printing. */
1072 sprintf (buffer, HOST_WIDE_INT_PRINT_DEC, TREE_INT_CST_LOW (t));
1073 obstack_grow (&sra_obstack, buffer, strlen (buffer));
1075 else
1077 tree name = DECL_NAME (t);
1078 if (name)
1079 obstack_grow (&sra_obstack, IDENTIFIER_POINTER (name),
1080 IDENTIFIER_LENGTH (name));
1081 else
1083 sprintf (buffer, "D%u", DECL_UID (t));
1084 obstack_grow (&sra_obstack, buffer, strlen (buffer));
1089 /* Construct a pretty variable name for an element's replacement variable.
1090 The name is built on the obstack. */
1092 static char *
1093 build_element_name (struct sra_elt *elt)
1095 build_element_name_1 (elt);
1096 obstack_1grow (&sra_obstack, '\0');
1097 return XOBFINISH (&sra_obstack, char *);
1100 /* Instantiate an element as an independent variable. */
1102 static void
1103 instantiate_element (struct sra_elt *elt)
1105 struct sra_elt *base_elt;
1106 tree var, base;
1108 for (base_elt = elt; base_elt->parent; base_elt = base_elt->parent)
1109 continue;
1110 base = base_elt->element;
1112 elt->replacement = var = make_rename_temp (elt->type, "SR");
1113 DECL_SOURCE_LOCATION (var) = DECL_SOURCE_LOCATION (base);
1114 DECL_ARTIFICIAL (var) = 1;
1116 if (TREE_THIS_VOLATILE (elt->type))
1118 TREE_THIS_VOLATILE (var) = 1;
1119 TREE_SIDE_EFFECTS (var) = 1;
1122 if (DECL_NAME (base) && !DECL_IGNORED_P (base))
1124 char *pretty_name = build_element_name (elt);
1125 DECL_NAME (var) = get_identifier (pretty_name);
1126 obstack_free (&sra_obstack, pretty_name);
1128 SET_DECL_DEBUG_EXPR (var, generate_element_ref (elt));
1129 DECL_DEBUG_EXPR_IS_FROM (var) = 1;
1131 DECL_IGNORED_P (var) = 0;
1132 TREE_NO_WARNING (var) = TREE_NO_WARNING (base);
1134 else
1136 DECL_IGNORED_P (var) = 1;
1137 /* ??? We can't generate any warning that would be meaningful. */
1138 TREE_NO_WARNING (var) = 1;
1141 if (dump_file)
1143 fputs (" ", dump_file);
1144 dump_sra_elt_name (dump_file, elt);
1145 fputs (" -> ", dump_file);
1146 print_generic_expr (dump_file, var, dump_flags);
1147 fputc ('\n', dump_file);
1151 /* Make one pass across an element tree deciding whether or not it's
1152 profitable to instantiate individual leaf scalars.
1154 PARENT_USES and PARENT_COPIES are the sum of the N_USES and N_COPIES
1155 fields all the way up the tree. */
1157 static void
1158 decide_instantiation_1 (struct sra_elt *elt, unsigned int parent_uses,
1159 unsigned int parent_copies)
1161 if (dump_file && !elt->parent)
1163 fputs ("Initial instantiation for ", dump_file);
1164 dump_sra_elt_name (dump_file, elt);
1165 fputc ('\n', dump_file);
1168 if (elt->cannot_scalarize)
1169 return;
1171 if (elt->is_scalar)
1173 /* The decision is simple: instantiate if we're used more frequently
1174 than the parent needs to be seen as a complete unit. */
1175 if (elt->n_uses + elt->n_copies + parent_copies > parent_uses)
1176 instantiate_element (elt);
1178 else
1180 struct sra_elt *c;
1181 unsigned int this_uses = elt->n_uses + parent_uses;
1182 unsigned int this_copies = elt->n_copies + parent_copies;
1184 for (c = elt->children; c ; c = c->sibling)
1185 decide_instantiation_1 (c, this_uses, this_copies);
1189 /* Compute the size and number of all instantiated elements below ELT.
1190 We will only care about this if the size of the complete structure
1191 fits in a HOST_WIDE_INT, so we don't have to worry about overflow. */
1193 static unsigned int
1194 sum_instantiated_sizes (struct sra_elt *elt, unsigned HOST_WIDE_INT *sizep)
1196 if (elt->replacement)
1198 *sizep += TREE_INT_CST_LOW (TYPE_SIZE_UNIT (elt->type));
1199 return 1;
1201 else
1203 struct sra_elt *c;
1204 unsigned int count = 0;
1206 for (c = elt->children; c ; c = c->sibling)
1207 count += sum_instantiated_sizes (c, sizep);
1209 return count;
1213 /* Instantiate fields in ELT->TYPE that are not currently present as
1214 children of ELT. */
1216 static void instantiate_missing_elements (struct sra_elt *elt);
1218 static void
1219 instantiate_missing_elements_1 (struct sra_elt *elt, tree child, tree type)
1221 struct sra_elt *sub = lookup_element (elt, child, type, INSERT);
1222 if (sub->is_scalar)
1224 if (sub->replacement == NULL)
1225 instantiate_element (sub);
1227 else
1228 instantiate_missing_elements (sub);
1231 static void
1232 instantiate_missing_elements (struct sra_elt *elt)
1234 tree type = elt->type;
1236 switch (TREE_CODE (type))
1238 case RECORD_TYPE:
1240 tree f;
1241 for (f = TYPE_FIELDS (type); f ; f = TREE_CHAIN (f))
1242 if (TREE_CODE (f) == FIELD_DECL)
1243 instantiate_missing_elements_1 (elt, f, TREE_TYPE (f));
1244 break;
1247 case ARRAY_TYPE:
1249 tree i, max, subtype;
1251 i = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
1252 max = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
1253 subtype = TREE_TYPE (type);
1255 while (1)
1257 instantiate_missing_elements_1 (elt, i, subtype);
1258 if (tree_int_cst_equal (i, max))
1259 break;
1260 i = int_const_binop (PLUS_EXPR, i, integer_one_node, true);
1263 break;
1266 case COMPLEX_TYPE:
1267 type = TREE_TYPE (type);
1268 instantiate_missing_elements_1 (elt, integer_zero_node, type);
1269 instantiate_missing_elements_1 (elt, integer_one_node, type);
1270 break;
1272 default:
1273 gcc_unreachable ();
1277 /* Make one pass across an element tree deciding whether to perform block
1278 or element copies. If we decide on element copies, instantiate all
1279 elements. Return true if there are any instantiated sub-elements. */
1281 static bool
1282 decide_block_copy (struct sra_elt *elt)
1284 struct sra_elt *c;
1285 bool any_inst;
1287 /* If scalarization is disabled, respect it. */
1288 if (elt->cannot_scalarize)
1290 elt->use_block_copy = 1;
1292 if (dump_file)
1294 fputs ("Scalarization disabled for ", dump_file);
1295 dump_sra_elt_name (dump_file, elt);
1296 fputc ('\n', dump_file);
1299 /* Disable scalarization of sub-elements */
1300 for (c = elt->children; c; c = c->sibling)
1302 c->cannot_scalarize = 1;
1303 decide_block_copy (c);
1305 return false;
1308 /* Don't decide if we've no uses. */
1309 if (elt->n_uses == 0 && elt->n_copies == 0)
1312 else if (!elt->is_scalar)
1314 tree size_tree = TYPE_SIZE_UNIT (elt->type);
1315 bool use_block_copy = true;
1317 /* Tradeoffs for COMPLEX types pretty much always make it better
1318 to go ahead and split the components. */
1319 if (TREE_CODE (elt->type) == COMPLEX_TYPE)
1320 use_block_copy = false;
1322 /* Don't bother trying to figure out the rest if the structure is
1323 so large we can't do easy arithmetic. This also forces block
1324 copies for variable sized structures. */
1325 else if (host_integerp (size_tree, 1))
1327 unsigned HOST_WIDE_INT full_size, inst_size = 0;
1328 unsigned int max_size;
1330 /* If the sra-max-structure-size parameter is 0, then the
1331 user has not overridden the parameter and we can choose a
1332 sensible default. */
1333 max_size = SRA_MAX_STRUCTURE_SIZE
1334 ? SRA_MAX_STRUCTURE_SIZE
1335 : MOVE_RATIO * UNITS_PER_WORD;
1337 full_size = tree_low_cst (size_tree, 1);
1339 /* ??? What to do here. If there are two fields, and we've only
1340 instantiated one, then instantiating the other is clearly a win.
1341 If there are a large number of fields then the size of the copy
1342 is much more of a factor. */
1344 /* If the structure is small, and we've made copies, go ahead
1345 and instantiate, hoping that the copies will go away. */
1346 if (full_size <= max_size
1347 && elt->n_copies > elt->n_uses)
1348 use_block_copy = false;
1349 else
1351 sum_instantiated_sizes (elt, &inst_size);
1353 if (inst_size * 100 >= full_size * SRA_FIELD_STRUCTURE_RATIO)
1354 use_block_copy = false;
1357 /* In order to avoid block copy, we have to be able to instantiate
1358 all elements of the type. See if this is possible. */
1359 if (!use_block_copy
1360 && (!can_completely_scalarize_p (elt)
1361 || !type_can_instantiate_all_elements (elt->type)))
1362 use_block_copy = true;
1364 elt->use_block_copy = use_block_copy;
1366 if (dump_file)
1368 fprintf (dump_file, "Using %s for ",
1369 use_block_copy ? "block-copy" : "element-copy");
1370 dump_sra_elt_name (dump_file, elt);
1371 fputc ('\n', dump_file);
1374 if (!use_block_copy)
1376 instantiate_missing_elements (elt);
1377 return true;
1381 any_inst = elt->replacement != NULL;
1383 for (c = elt->children; c ; c = c->sibling)
1384 any_inst |= decide_block_copy (c);
1386 return any_inst;
1389 /* Entry point to phase 3. Instantiate scalar replacement variables. */
1391 static void
1392 decide_instantiations (void)
1394 unsigned int i;
1395 bool cleared_any;
1396 bitmap_head done_head;
1397 bitmap_iterator bi;
1399 /* We cannot clear bits from a bitmap we're iterating over,
1400 so save up all the bits to clear until the end. */
1401 bitmap_initialize (&done_head, &bitmap_default_obstack);
1402 cleared_any = false;
1404 EXECUTE_IF_SET_IN_BITMAP (sra_candidates, 0, i, bi)
1406 tree var = referenced_var (i);
1407 struct sra_elt *elt = lookup_element (NULL, var, NULL, NO_INSERT);
1408 if (elt)
1410 decide_instantiation_1 (elt, 0, 0);
1411 if (!decide_block_copy (elt))
1412 elt = NULL;
1414 if (!elt)
1416 bitmap_set_bit (&done_head, i);
1417 cleared_any = true;
1421 if (cleared_any)
1423 bitmap_and_compl_into (sra_candidates, &done_head);
1424 bitmap_and_compl_into (needs_copy_in, &done_head);
1426 bitmap_clear (&done_head);
1428 mark_set_for_renaming (sra_candidates);
1430 if (dump_file)
1431 fputc ('\n', dump_file);
1435 /* Phase Four: Update the function to match the replacements created. */
1437 /* Mark all the variables in V_MAY_DEF or V_MUST_DEF operands for STMT for
1438 renaming. This becomes necessary when we modify all of a non-scalar. */
1440 static void
1441 mark_all_v_defs_1 (tree stmt)
1443 tree sym;
1444 ssa_op_iter iter;
1446 update_stmt_if_modified (stmt);
1448 FOR_EACH_SSA_TREE_OPERAND (sym, stmt, iter, SSA_OP_ALL_VIRTUALS)
1450 if (TREE_CODE (sym) == SSA_NAME)
1451 sym = SSA_NAME_VAR (sym);
1452 mark_sym_for_renaming (sym);
1457 /* Mark all the variables in virtual operands in all the statements in
1458 LIST for renaming. */
1460 static void
1461 mark_all_v_defs (tree list)
1463 if (TREE_CODE (list) != STATEMENT_LIST)
1464 mark_all_v_defs_1 (list);
1465 else
1467 tree_stmt_iterator i;
1468 for (i = tsi_start (list); !tsi_end_p (i); tsi_next (&i))
1469 mark_all_v_defs_1 (tsi_stmt (i));
1474 /* Build a single level component reference to ELT rooted at BASE. */
1476 static tree
1477 generate_one_element_ref (struct sra_elt *elt, tree base)
1479 switch (TREE_CODE (TREE_TYPE (base)))
1481 case RECORD_TYPE:
1483 tree field = elt->element;
1485 /* Watch out for compatible records with differing field lists. */
1486 if (DECL_FIELD_CONTEXT (field) != TYPE_MAIN_VARIANT (TREE_TYPE (base)))
1487 field = find_compatible_field (TREE_TYPE (base), field);
1489 return build (COMPONENT_REF, elt->type, base, field, NULL);
1492 case ARRAY_TYPE:
1493 return build (ARRAY_REF, elt->type, base, elt->element, NULL, NULL);
1495 case COMPLEX_TYPE:
1496 if (elt->element == integer_zero_node)
1497 return build (REALPART_EXPR, elt->type, base);
1498 else
1499 return build (IMAGPART_EXPR, elt->type, base);
1501 default:
1502 gcc_unreachable ();
1506 /* Build a full component reference to ELT rooted at its native variable. */
1508 static tree
1509 generate_element_ref (struct sra_elt *elt)
1511 if (elt->parent)
1512 return generate_one_element_ref (elt, generate_element_ref (elt->parent));
1513 else
1514 return elt->element;
1517 /* Generate a set of assignment statements in *LIST_P to copy all
1518 instantiated elements under ELT to or from the equivalent structure
1519 rooted at EXPR. COPY_OUT controls the direction of the copy, with
1520 true meaning to copy out of EXPR into ELT. */
1522 static void
1523 generate_copy_inout (struct sra_elt *elt, bool copy_out, tree expr,
1524 tree *list_p)
1526 struct sra_elt *c;
1527 tree t;
1529 if (!copy_out && TREE_CODE (expr) == SSA_NAME
1530 && TREE_CODE (TREE_TYPE (expr)) == COMPLEX_TYPE)
1532 tree r, i;
1534 c = lookup_element (elt, integer_zero_node, NULL, NO_INSERT);
1535 r = c->replacement;
1536 c = lookup_element (elt, integer_one_node, NULL, NO_INSERT);
1537 i = c->replacement;
1539 t = build (COMPLEX_EXPR, elt->type, r, i);
1540 t = build (MODIFY_EXPR, void_type_node, expr, t);
1541 SSA_NAME_DEF_STMT (expr) = t;
1542 append_to_statement_list (t, list_p);
1544 else if (elt->replacement)
1546 if (copy_out)
1547 t = build (MODIFY_EXPR, void_type_node, elt->replacement, expr);
1548 else
1549 t = build (MODIFY_EXPR, void_type_node, expr, elt->replacement);
1550 append_to_statement_list (t, list_p);
1552 else
1554 for (c = elt->children; c ; c = c->sibling)
1556 t = generate_one_element_ref (c, unshare_expr (expr));
1557 generate_copy_inout (c, copy_out, t, list_p);
1562 /* Generate a set of assignment statements in *LIST_P to copy all instantiated
1563 elements under SRC to their counterparts under DST. There must be a 1-1
1564 correspondence of instantiated elements. */
1566 static void
1567 generate_element_copy (struct sra_elt *dst, struct sra_elt *src, tree *list_p)
1569 struct sra_elt *dc, *sc;
1571 for (dc = dst->children; dc ; dc = dc->sibling)
1573 sc = lookup_element (src, dc->element, NULL, NO_INSERT);
1574 gcc_assert (sc);
1575 generate_element_copy (dc, sc, list_p);
1578 if (dst->replacement)
1580 tree t;
1582 gcc_assert (src->replacement);
1584 t = build (MODIFY_EXPR, void_type_node, dst->replacement,
1585 src->replacement);
1586 append_to_statement_list (t, list_p);
1590 /* Generate a set of assignment statements in *LIST_P to zero all instantiated
1591 elements under ELT. In addition, do not assign to elements that have been
1592 marked VISITED but do reset the visited flag; this allows easy coordination
1593 with generate_element_init. */
1595 static void
1596 generate_element_zero (struct sra_elt *elt, tree *list_p)
1598 struct sra_elt *c;
1600 if (elt->visited)
1602 elt->visited = false;
1603 return;
1606 for (c = elt->children; c ; c = c->sibling)
1607 generate_element_zero (c, list_p);
1609 if (elt->replacement)
1611 tree t;
1613 gcc_assert (elt->is_scalar);
1614 t = fold_convert (elt->type, integer_zero_node);
1616 t = build (MODIFY_EXPR, void_type_node, elt->replacement, t);
1617 append_to_statement_list (t, list_p);
1621 /* Generate an assignment VAR = INIT, where INIT may need gimplification.
1622 Add the result to *LIST_P. */
1624 static void
1625 generate_one_element_init (tree var, tree init, tree *list_p)
1627 /* The replacement can be almost arbitrarily complex. Gimplify. */
1628 tree stmt = build (MODIFY_EXPR, void_type_node, var, init);
1629 gimplify_and_add (stmt, list_p);
1632 /* Generate a set of assignment statements in *LIST_P to set all instantiated
1633 elements under ELT with the contents of the initializer INIT. In addition,
1634 mark all assigned elements VISITED; this allows easy coordination with
1635 generate_element_zero. Return false if we found a case we couldn't
1636 handle. */
1638 static bool
1639 generate_element_init_1 (struct sra_elt *elt, tree init, tree *list_p)
1641 bool result = true;
1642 enum tree_code init_code;
1643 struct sra_elt *sub;
1644 tree t;
1646 /* We can be passed DECL_INITIAL of a static variable. It might have a
1647 conversion, which we strip off here. */
1648 STRIP_USELESS_TYPE_CONVERSION (init);
1649 init_code = TREE_CODE (init);
1651 if (elt->is_scalar)
1653 if (elt->replacement)
1655 generate_one_element_init (elt->replacement, init, list_p);
1656 elt->visited = true;
1658 return result;
1661 switch (init_code)
1663 case COMPLEX_CST:
1664 case COMPLEX_EXPR:
1665 for (sub = elt->children; sub ; sub = sub->sibling)
1667 if (sub->element == integer_zero_node)
1668 t = (init_code == COMPLEX_EXPR
1669 ? TREE_OPERAND (init, 0) : TREE_REALPART (init));
1670 else
1671 t = (init_code == COMPLEX_EXPR
1672 ? TREE_OPERAND (init, 1) : TREE_IMAGPART (init));
1673 result &= generate_element_init_1 (sub, t, list_p);
1675 break;
1677 case CONSTRUCTOR:
1678 for (t = CONSTRUCTOR_ELTS (init); t ; t = TREE_CHAIN (t))
1680 tree purpose = TREE_PURPOSE (t);
1681 tree value = TREE_VALUE (t);
1683 if (TREE_CODE (purpose) == RANGE_EXPR)
1685 tree lower = TREE_OPERAND (purpose, 0);
1686 tree upper = TREE_OPERAND (purpose, 1);
1688 while (1)
1690 sub = lookup_element (elt, lower, NULL, NO_INSERT);
1691 if (sub != NULL)
1692 result &= generate_element_init_1 (sub, value, list_p);
1693 if (tree_int_cst_equal (lower, upper))
1694 break;
1695 lower = int_const_binop (PLUS_EXPR, lower,
1696 integer_one_node, true);
1699 else
1701 sub = lookup_element (elt, purpose, NULL, NO_INSERT);
1702 if (sub != NULL)
1703 result &= generate_element_init_1 (sub, value, list_p);
1706 break;
1708 default:
1709 elt->visited = true;
1710 result = false;
1713 return result;
1716 /* A wrapper function for generate_element_init_1 that handles cleanup after
1717 gimplification. */
1719 static bool
1720 generate_element_init (struct sra_elt *elt, tree init, tree *list_p)
1722 bool ret;
1724 push_gimplify_context ();
1725 ret = generate_element_init_1 (elt, init, list_p);
1726 pop_gimplify_context (NULL);
1728 /* The replacement can expose previously unreferenced variables. */
1729 if (ret && *list_p)
1731 tree_stmt_iterator i;
1733 for (i = tsi_start (*list_p); !tsi_end_p (i); tsi_next (&i))
1734 find_new_referenced_vars (tsi_stmt_ptr (i));
1737 return ret;
1740 /* Insert STMT on all the outgoing edges out of BB. Note that if BB
1741 has more than one edge, STMT will be replicated for each edge. Also,
1742 abnormal edges will be ignored. */
1744 void
1745 insert_edge_copies (tree stmt, basic_block bb)
1747 edge e;
1748 edge_iterator ei;
1749 bool first_copy;
1751 first_copy = true;
1752 FOR_EACH_EDGE (e, ei, bb->succs)
1754 /* We don't need to insert copies on abnormal edges. The
1755 value of the scalar replacement is not guaranteed to
1756 be valid through an abnormal edge. */
1757 if (!(e->flags & EDGE_ABNORMAL))
1759 if (first_copy)
1761 bsi_insert_on_edge (e, stmt);
1762 first_copy = false;
1764 else
1765 bsi_insert_on_edge (e, unsave_expr_now (stmt));
1770 /* Helper function to insert LIST before BSI, and set up line number info. */
1772 static void
1773 sra_insert_before (block_stmt_iterator *bsi, tree list)
1775 tree stmt = bsi_stmt (*bsi);
1777 if (EXPR_HAS_LOCATION (stmt))
1778 annotate_all_with_locus (&list, EXPR_LOCATION (stmt));
1779 bsi_insert_before (bsi, list, BSI_SAME_STMT);
1782 /* Similarly, but insert after BSI. Handles insertion onto edges as well. */
1784 static void
1785 sra_insert_after (block_stmt_iterator *bsi, tree list)
1787 tree stmt = bsi_stmt (*bsi);
1789 if (EXPR_HAS_LOCATION (stmt))
1790 annotate_all_with_locus (&list, EXPR_LOCATION (stmt));
1792 if (stmt_ends_bb_p (stmt))
1793 insert_edge_copies (list, bsi->bb);
1794 else
1795 bsi_insert_after (bsi, list, BSI_SAME_STMT);
1798 /* Similarly, but replace the statement at BSI. */
1800 static void
1801 sra_replace (block_stmt_iterator *bsi, tree list)
1803 sra_insert_before (bsi, list);
1804 bsi_remove (bsi);
1805 if (bsi_end_p (*bsi))
1806 *bsi = bsi_last (bsi->bb);
1807 else
1808 bsi_prev (bsi);
1811 /* Scalarize a USE. To recap, this is either a simple reference to ELT,
1812 if elt is scalar, or some occurrence of ELT that requires a complete
1813 aggregate. IS_OUTPUT is true if ELT is being modified. */
1815 static void
1816 scalarize_use (struct sra_elt *elt, tree *expr_p, block_stmt_iterator *bsi,
1817 bool is_output)
1819 tree list = NULL, stmt = bsi_stmt (*bsi);
1821 if (elt->replacement)
1823 /* If we have a replacement, then updating the reference is as
1824 simple as modifying the existing statement in place. */
1825 if (is_output)
1826 mark_all_v_defs (stmt);
1827 *expr_p = elt->replacement;
1828 update_stmt (stmt);
1830 else
1832 /* Otherwise we need some copies. If ELT is being read, then we want
1833 to store all (modified) sub-elements back into the structure before
1834 the reference takes place. If ELT is being written, then we want to
1835 load the changed values back into our shadow variables. */
1836 /* ??? We don't check modified for reads, we just always write all of
1837 the values. We should be able to record the SSA number of the VOP
1838 for which the values were last read. If that number matches the
1839 SSA number of the VOP in the current statement, then we needn't
1840 emit an assignment. This would also eliminate double writes when
1841 a structure is passed as more than one argument to a function call.
1842 This optimization would be most effective if sra_walk_function
1843 processed the blocks in dominator order. */
1845 generate_copy_inout (elt, is_output, generate_element_ref (elt), &list);
1846 if (list == NULL)
1847 return;
1848 mark_all_v_defs (list);
1849 if (is_output)
1850 sra_insert_after (bsi, list);
1851 else
1852 sra_insert_before (bsi, list);
1856 /* Scalarize a COPY. To recap, this is an assignment statement between
1857 two scalarizable references, LHS_ELT and RHS_ELT. */
1859 static void
1860 scalarize_copy (struct sra_elt *lhs_elt, struct sra_elt *rhs_elt,
1861 block_stmt_iterator *bsi)
1863 tree list, stmt;
1865 if (lhs_elt->replacement && rhs_elt->replacement)
1867 /* If we have two scalar operands, modify the existing statement. */
1868 stmt = bsi_stmt (*bsi);
1870 /* See the commentary in sra_walk_function concerning
1871 RETURN_EXPR, and why we should never see one here. */
1872 gcc_assert (TREE_CODE (stmt) == MODIFY_EXPR);
1874 TREE_OPERAND (stmt, 0) = lhs_elt->replacement;
1875 TREE_OPERAND (stmt, 1) = rhs_elt->replacement;
1876 update_stmt (stmt);
1878 else if (lhs_elt->use_block_copy || rhs_elt->use_block_copy)
1880 /* If either side requires a block copy, then sync the RHS back
1881 to the original structure, leave the original assignment
1882 statement (which will perform the block copy), then load the
1883 LHS values out of its now-updated original structure. */
1884 /* ??? Could perform a modified pair-wise element copy. That
1885 would at least allow those elements that are instantiated in
1886 both structures to be optimized well. */
1888 list = NULL;
1889 generate_copy_inout (rhs_elt, false,
1890 generate_element_ref (rhs_elt), &list);
1891 if (list)
1893 mark_all_v_defs (list);
1894 sra_insert_before (bsi, list);
1897 list = NULL;
1898 generate_copy_inout (lhs_elt, true,
1899 generate_element_ref (lhs_elt), &list);
1900 if (list)
1902 mark_all_v_defs (list);
1903 sra_insert_after (bsi, list);
1906 else
1908 /* Otherwise both sides must be fully instantiated. In which
1909 case perform pair-wise element assignments and replace the
1910 original block copy statement. */
1912 stmt = bsi_stmt (*bsi);
1913 mark_all_v_defs (stmt);
1915 list = NULL;
1916 generate_element_copy (lhs_elt, rhs_elt, &list);
1917 gcc_assert (list);
1918 mark_all_v_defs (list);
1919 sra_replace (bsi, list);
1923 /* Scalarize an INIT. To recap, this is an assignment to a scalarizable
1924 reference from some form of constructor: CONSTRUCTOR, COMPLEX_CST or
1925 COMPLEX_EXPR. If RHS is NULL, it should be treated as an empty
1926 CONSTRUCTOR. */
1928 static void
1929 scalarize_init (struct sra_elt *lhs_elt, tree rhs, block_stmt_iterator *bsi)
1931 bool result = true;
1932 tree list = NULL;
1934 /* Generate initialization statements for all members extant in the RHS. */
1935 if (rhs)
1937 /* Unshare the expression just in case this is from a decl's initial. */
1938 rhs = unshare_expr (rhs);
1939 result = generate_element_init (lhs_elt, rhs, &list);
1942 /* CONSTRUCTOR is defined such that any member not mentioned is assigned
1943 a zero value. Initialize the rest of the instantiated elements. */
1944 generate_element_zero (lhs_elt, &list);
1946 if (!result)
1948 /* If we failed to convert the entire initializer, then we must
1949 leave the structure assignment in place and must load values
1950 from the structure into the slots for which we did not find
1951 constants. The easiest way to do this is to generate a complete
1952 copy-out, and then follow that with the constant assignments
1953 that we were able to build. DCE will clean things up. */
1954 tree list0 = NULL;
1955 generate_copy_inout (lhs_elt, true, generate_element_ref (lhs_elt),
1956 &list0);
1957 append_to_statement_list (list, &list0);
1958 list = list0;
1961 if (lhs_elt->use_block_copy || !result)
1963 /* Since LHS is not fully instantiated, we must leave the structure
1964 assignment in place. Treating this case differently from a USE
1965 exposes constants to later optimizations. */
1966 if (list)
1968 mark_all_v_defs (list);
1969 sra_insert_after (bsi, list);
1972 else
1974 /* The LHS is fully instantiated. The list of initializations
1975 replaces the original structure assignment. */
1976 gcc_assert (list);
1977 mark_all_v_defs (bsi_stmt (*bsi));
1978 mark_all_v_defs (list);
1979 sra_replace (bsi, list);
1983 /* A subroutine of scalarize_ldst called via walk_tree. Set TREE_NO_TRAP
1984 on all INDIRECT_REFs. */
1986 static tree
1987 mark_notrap (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1989 tree t = *tp;
1991 if (TREE_CODE (t) == INDIRECT_REF)
1993 TREE_THIS_NOTRAP (t) = 1;
1994 *walk_subtrees = 0;
1996 else if (IS_TYPE_OR_DECL_P (t))
1997 *walk_subtrees = 0;
1999 return NULL;
2002 /* Scalarize a LDST. To recap, this is an assignment between one scalarizable
2003 reference ELT and one non-scalarizable reference OTHER. IS_OUTPUT is true
2004 if ELT is on the left-hand side. */
2006 static void
2007 scalarize_ldst (struct sra_elt *elt, tree other,
2008 block_stmt_iterator *bsi, bool is_output)
2010 /* Shouldn't have gotten called for a scalar. */
2011 gcc_assert (!elt->replacement);
2013 if (elt->use_block_copy)
2015 /* Since ELT is not fully instantiated, we have to leave the
2016 block copy in place. Treat this as a USE. */
2017 scalarize_use (elt, NULL, bsi, is_output);
2019 else
2021 /* The interesting case is when ELT is fully instantiated. In this
2022 case we can have each element stored/loaded directly to/from the
2023 corresponding slot in OTHER. This avoids a block copy. */
2025 tree list = NULL, stmt = bsi_stmt (*bsi);
2027 mark_all_v_defs (stmt);
2028 generate_copy_inout (elt, is_output, other, &list);
2029 mark_all_v_defs (list);
2030 gcc_assert (list);
2032 /* Preserve EH semantics. */
2033 if (stmt_ends_bb_p (stmt))
2035 tree_stmt_iterator tsi;
2036 tree first;
2038 /* Extract the first statement from LIST. */
2039 tsi = tsi_start (list);
2040 first = tsi_stmt (tsi);
2041 tsi_delink (&tsi);
2043 /* Replace the old statement with this new representative. */
2044 bsi_replace (bsi, first, true);
2046 if (!tsi_end_p (tsi))
2048 /* If any reference would trap, then they all would. And more
2049 to the point, the first would. Therefore none of the rest
2050 will trap since the first didn't. Indicate this by
2051 iterating over the remaining statements and set
2052 TREE_THIS_NOTRAP in all INDIRECT_REFs. */
2055 walk_tree (tsi_stmt_ptr (tsi), mark_notrap, NULL, NULL);
2056 tsi_next (&tsi);
2058 while (!tsi_end_p (tsi));
2060 insert_edge_copies (list, bsi->bb);
2063 else
2064 sra_replace (bsi, list);
2068 /* Generate initializations for all scalarizable parameters. */
2070 static void
2071 scalarize_parms (void)
2073 tree list = NULL;
2074 unsigned i;
2075 bitmap_iterator bi;
2077 EXECUTE_IF_SET_IN_BITMAP (needs_copy_in, 0, i, bi)
2079 tree var = referenced_var (i);
2080 struct sra_elt *elt = lookup_element (NULL, var, NULL, NO_INSERT);
2081 generate_copy_inout (elt, true, var, &list);
2084 if (list)
2086 insert_edge_copies (list, ENTRY_BLOCK_PTR);
2087 mark_all_v_defs (list);
2091 /* Entry point to phase 4. Update the function to match replacements. */
2093 static void
2094 scalarize_function (void)
2096 static const struct sra_walk_fns fns = {
2097 scalarize_use, scalarize_copy, scalarize_init, scalarize_ldst, false
2100 sra_walk_function (&fns);
2101 scalarize_parms ();
2102 bsi_commit_edge_inserts ();
2106 /* Debug helper function. Print ELT in a nice human-readable format. */
2108 static void
2109 dump_sra_elt_name (FILE *f, struct sra_elt *elt)
2111 if (elt->parent && TREE_CODE (elt->parent->type) == COMPLEX_TYPE)
2113 fputs (elt->element == integer_zero_node ? "__real__ " : "__imag__ ", f);
2114 dump_sra_elt_name (f, elt->parent);
2116 else
2118 if (elt->parent)
2119 dump_sra_elt_name (f, elt->parent);
2120 if (DECL_P (elt->element))
2122 if (TREE_CODE (elt->element) == FIELD_DECL)
2123 fputc ('.', f);
2124 print_generic_expr (f, elt->element, dump_flags);
2126 else
2127 fprintf (f, "[" HOST_WIDE_INT_PRINT_DEC "]",
2128 TREE_INT_CST_LOW (elt->element));
2132 /* Likewise, but callable from the debugger. */
2134 void
2135 debug_sra_elt_name (struct sra_elt *elt)
2137 dump_sra_elt_name (stderr, elt);
2138 fputc ('\n', stderr);
2141 /* Main entry point. */
2143 static void
2144 tree_sra (void)
2146 /* Initialize local variables. */
2147 gcc_obstack_init (&sra_obstack);
2148 sra_candidates = BITMAP_ALLOC (NULL);
2149 needs_copy_in = BITMAP_ALLOC (NULL);
2150 sra_type_decomp_cache = BITMAP_ALLOC (NULL);
2151 sra_type_inst_cache = BITMAP_ALLOC (NULL);
2152 sra_map = htab_create (101, sra_elt_hash, sra_elt_eq, NULL);
2154 /* Scan. If we find anything, instantiate and scalarize. */
2155 if (find_candidates_for_sra ())
2157 scan_function ();
2158 decide_instantiations ();
2159 scalarize_function ();
2162 /* Free allocated memory. */
2163 htab_delete (sra_map);
2164 sra_map = NULL;
2165 BITMAP_FREE (sra_candidates);
2166 BITMAP_FREE (needs_copy_in);
2167 BITMAP_FREE (sra_type_decomp_cache);
2168 BITMAP_FREE (sra_type_inst_cache);
2169 obstack_free (&sra_obstack, NULL);
2172 static bool
2173 gate_sra (void)
2175 return flag_tree_sra != 0;
2178 struct tree_opt_pass pass_sra =
2180 "sra", /* name */
2181 gate_sra, /* gate */
2182 tree_sra, /* execute */
2183 NULL, /* sub */
2184 NULL, /* next */
2185 0, /* static_pass_number */
2186 TV_TREE_SRA, /* tv_id */
2187 PROP_cfg | PROP_ssa | PROP_alias, /* properties_required */
2188 0, /* properties_provided */
2189 0, /* properties_destroyed */
2190 0, /* todo_flags_start */
2191 TODO_dump_func | TODO_update_ssa
2192 | TODO_ggc_collect | TODO_verify_ssa, /* todo_flags_finish */
2193 0 /* letter */