OSDN Git Service

2010-10-08 Jerry DeLisle <jvdelisle@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / matrix-reorg.c
1 /* Matrix layout transformations.
2    Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
3    Contributed by Razya Ladelsky <razya@il.ibm.com>
4    Originally written by Revital Eres and Mustafa Hagog.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
21
22 /*
23    Matrix flattening optimization tries to replace a N-dimensional
24    matrix with its equivalent M-dimensional matrix, where M < N.
25    This first implementation focuses on global matrices defined dynamically.
26
27    When N==1, we actually flatten the whole matrix.
28    For instance consider a two-dimensional array a [dim1] [dim2].
29    The code for allocating space for it usually looks like:
30
31      a = (int **)  malloc(dim1 * sizeof(int *));
32      for (i=0; i<dim1; i++)
33         a[i] = (int *) malloc (dim2 * sizeof(int));
34
35    If the array "a" is found suitable for this optimization,
36    its allocation is replaced by:
37
38      a = (int *) malloc (dim1 * dim2 *sizeof(int));
39
40    and all the references to a[i][j] are replaced by a[i * dim2 + j].
41
42    The two main phases of the optimization are the analysis
43    and transformation.
44    The driver of the optimization is matrix_reorg ().
45
46
47
48    Analysis phase:
49    ===============
50
51    We'll number the dimensions outside-in, meaning the most external
52    is 0, then 1, and so on.
53    The analysis part of the optimization determines K, the escape
54    level of a N-dimensional matrix (K <= N), that allows flattening of
55    the external dimensions 0,1,..., K-1. Escape level 0 means that the
56    whole matrix escapes and no flattening is possible.
57
58    The analysis part is implemented in analyze_matrix_allocation_site()
59    and analyze_matrix_accesses().
60
61    Transformation phase:
62    =====================
63    In this phase we define the new flattened matrices that replace the
64    original matrices in the code.
65    Implemented in transform_allocation_sites(),
66    transform_access_sites().
67
68    Matrix Transposing
69    ==================
70    The idea of Matrix Transposing is organizing the matrix in a different
71    layout such that the dimensions are reordered.
72    This could produce better cache behavior in some cases.
73
74    For example, lets look at the matrix accesses in the following loop:
75
76    for (i=0; i<N; i++)
77     for (j=0; j<M; j++)
78      access to a[i][j]
79
80    This loop can produce good cache behavior because the elements of
81    the inner dimension are accessed sequentially.
82
83   However, if the accesses of the matrix were of the following form:
84
85   for (i=0; i<N; i++)
86    for (j=0; j<M; j++)
87      access to a[j][i]
88
89   In this loop we iterate the columns and not the rows.
90   Therefore, replacing the rows and columns
91   would have had an organization with better (cache) locality.
92   Replacing the dimensions of the matrix is called matrix transposing.
93
94   This  example, of course, could be enhanced to multiple dimensions matrices
95   as well.
96
97   Since a program could include all kind of accesses, there is a decision
98   mechanism, implemented in analyze_transpose(), which implements a
99   heuristic that tries to determine whether to transpose the matrix or not,
100   according to the form of the more dominant accesses.
101   This decision is transferred to the flattening mechanism, and whether
102   the matrix was transposed or not, the matrix is flattened (if possible).
103
104   This decision making is based on profiling information and loop information.
105   If profiling information is available, decision making mechanism will be
106   operated, otherwise the matrix will only be flattened (if possible).
107
108   Both optimizations are described in the paper "Matrix flattening and
109   transposing in GCC" which was presented in GCC summit 2006.
110   http://www.gccsummit.org/2006/2006-GCC-Summit-Proceedings.pdf.  */
111
112 #include "config.h"
113 #include "system.h"
114 #include "coretypes.h"
115 #include "tm.h"
116 #include "tree.h"
117 #include "rtl.h"
118 #include "tree-inline.h"
119 #include "tree-flow.h"
120 #include "tree-flow-inline.h"
121 #include "langhooks.h"
122 #include "hashtab.h"
123 #include "toplev.h"
124 #include "flags.h"
125 #include "ggc.h"
126 #include "debug.h"
127 #include "target.h"
128 #include "cgraph.h"
129 #include "diagnostic-core.h"
130 #include "timevar.h"
131 #include "params.h"
132 #include "fibheap.h"
133 #include "intl.h"
134 #include "function.h"
135 #include "basic-block.h"
136 #include "cfgloop.h"
137 #include "tree-iterator.h"
138 #include "tree-pass.h"
139 #include "opts.h"
140 #include "tree-data-ref.h"
141 #include "tree-chrec.h"
142 #include "tree-scalar-evolution.h"
143 #include "tree-ssa-sccvn.h"
144
145 /* We need to collect a lot of data from the original malloc,
146    particularly as the gimplifier has converted:
147
148    orig_var = (struct_type *) malloc (x * sizeof (struct_type *));
149
150    into
151
152    T3 = <constant> ;  ** <constant> is amount to malloc; precomputed **
153    T4 = malloc (T3);
154    T5 = (struct_type *) T4;
155    orig_var = T5;
156
157    The following struct fields allow us to collect all the necessary data from
158    the gimplified program.  The comments in the struct below are all based
159    on the gimple example above.  */
160
161 struct malloc_call_data
162 {
163   gimple call_stmt;             /* Tree for "T4 = malloc (T3);"                     */
164   tree size_var;                /* Var decl for T3.                                 */
165   tree malloc_size;             /* Tree for "<constant>", the rhs assigned to T3.   */
166 };
167
168 static tree can_calculate_expr_before_stmt (tree, sbitmap);
169 static tree can_calculate_stmt_before_stmt (gimple, sbitmap);
170
171 /* The front end of the compiler, when parsing statements of the form:
172
173    var = (type_cast) malloc (sizeof (type));
174
175    always converts this single statement into the following statements
176    (GIMPLE form):
177
178    T.1 = sizeof (type);
179    T.2 = malloc (T.1);
180    T.3 = (type_cast) T.2;
181    var = T.3;
182
183    Since we need to create new malloc statements and modify the original
184    statements somewhat, we need to find all four of the above statements.
185    Currently record_call_1 (called for building cgraph edges) finds and
186    records the statements containing the actual call to malloc, but we
187    need to find the rest of the variables/statements on our own.  That
188    is what the following function does.  */
189 static void
190 collect_data_for_malloc_call (gimple stmt, struct malloc_call_data *m_data)
191 {
192   tree size_var = NULL;
193   tree malloc_fn_decl;
194   tree arg1;
195
196   gcc_assert (is_gimple_call (stmt));
197
198   malloc_fn_decl = gimple_call_fndecl (stmt);
199   if (malloc_fn_decl == NULL
200       || DECL_FUNCTION_CODE (malloc_fn_decl) != BUILT_IN_MALLOC)
201     return;
202
203   arg1 = gimple_call_arg (stmt, 0);
204   size_var = arg1;
205
206   m_data->call_stmt = stmt;
207   m_data->size_var = size_var;
208   if (TREE_CODE (size_var) != VAR_DECL)
209     m_data->malloc_size = size_var;
210   else
211     m_data->malloc_size = NULL_TREE;
212 }
213
214 /* Information about matrix access site.
215    For example: if an access site of matrix arr is arr[i][j]
216    the ACCESS_SITE_INFO structure will have the address
217    of arr as its stmt.  The INDEX_INFO will hold information about the
218    initial address and index of each dimension.  */
219 struct access_site_info
220 {
221   /* The statement (MEM_REF or POINTER_PLUS_EXPR).  */
222   gimple stmt;
223
224   /* In case of POINTER_PLUS_EXPR, what is the offset.  */
225   tree offset;
226
227   /* The index which created the offset.  */
228   tree index;
229
230   /* The indirection level of this statement.  */
231   int level;
232
233   /* TRUE for allocation site FALSE for access site.  */
234   bool is_alloc;
235
236   /* The function containing the access site.  */
237   tree function_decl;
238
239   /* This access is iterated in the inner most loop */
240   bool iterated_by_inner_most_loop_p;
241 };
242
243 typedef struct access_site_info *access_site_info_p;
244 DEF_VEC_P (access_site_info_p);
245 DEF_VEC_ALLOC_P (access_site_info_p, heap);
246
247 /* Calls to free when flattening a matrix.  */
248
249 struct free_info
250 {
251   gimple stmt;
252   tree func;
253 };
254
255 /* Information about matrix to flatten.  */
256 struct matrix_info
257 {
258   /* Decl tree of this matrix.  */
259   tree decl;
260   /* Number of dimensions; number
261      of "*" in the type declaration.  */
262   int num_dims;
263
264   /* Minimum indirection level that escapes, 0 means that
265      the whole matrix escapes, k means that dimensions
266      0 to ACTUAL_DIM - k escapes.  */
267   int min_indirect_level_escape;
268
269   gimple min_indirect_level_escape_stmt;
270
271   /* Hold the allocation site for each level (dimension).
272      We can use NUM_DIMS as the upper bound and allocate the array
273      once with this number of elements and no need to use realloc and
274      MAX_MALLOCED_LEVEL.  */
275   gimple *malloc_for_level;
276
277   int max_malloced_level;
278
279   /* Is the matrix transposed.  */
280   bool is_transposed_p;
281
282   /* The location of the allocation sites (they must be in one
283      function).  */
284   tree allocation_function_decl;
285
286   /* The calls to free for each level of indirection.  */
287   struct free_info *free_stmts;
288
289   /* An array which holds for each dimension its size. where
290      dimension 0 is the outer most (one that contains all the others).
291    */
292   tree *dimension_size;
293
294   /* An array which holds for each dimension it's original size
295      (before transposing and flattening take place).  */
296   tree *dimension_size_orig;
297
298   /* An array which holds for each dimension the size of the type of
299      of elements accessed in that level (in bytes).  */
300   HOST_WIDE_INT *dimension_type_size;
301
302   int dimension_type_size_len;
303
304   /* An array collecting the count of accesses for each dimension.  */
305   gcov_type *dim_hot_level;
306
307   /* An array of the accesses to be flattened.
308      elements are of type "struct access_site_info *".  */
309   VEC (access_site_info_p, heap) * access_l;
310
311   /* A map of how the dimensions will be organized at the end of
312      the analyses.  */
313   int *dim_map;
314 };
315
316 /* In each phi node we want to record the indirection level we have when we
317    get to the phi node.  Usually we will have phi nodes with more than two
318    arguments, then we must assure that all of them get to the phi node with
319    the same indirection level, otherwise it's not safe to do the flattening.
320    So we record the information regarding the indirection level each time we
321    get to the phi node in this hash table.  */
322
323 struct matrix_access_phi_node
324 {
325   gimple phi;
326   int indirection_level;
327 };
328
329 /* We use this structure to find if the SSA variable is accessed inside the
330    tree and record the tree containing it.  */
331
332 struct ssa_acc_in_tree
333 {
334   /* The variable whose accesses in the tree we are looking for.  */
335   tree ssa_var;
336   /* The tree and code inside it the ssa_var is accessed, currently
337      it could be an MEM_REF or CALL_EXPR.  */
338   enum tree_code t_code;
339   tree t_tree;
340   /* The place in the containing tree.  */
341   tree *tp;
342   tree second_op;
343   bool var_found;
344 };
345
346 static void analyze_matrix_accesses (struct matrix_info *, tree, int, bool,
347                                      sbitmap, bool);
348 static int transform_allocation_sites (void **, void *);
349 static int transform_access_sites (void **, void *);
350 static int analyze_transpose (void **, void *);
351 static int dump_matrix_reorg_analysis (void **, void *);
352
353 static bool check_transpose_p;
354
355 /* Hash function used for the phi nodes.  */
356
357 static hashval_t
358 mat_acc_phi_hash (const void *p)
359 {
360   const struct matrix_access_phi_node *const ma_phi =
361     (const struct matrix_access_phi_node *) p;
362
363   return htab_hash_pointer (ma_phi->phi);
364 }
365
366 /* Equality means phi node pointers are the same.  */
367
368 static int
369 mat_acc_phi_eq (const void *p1, const void *p2)
370 {
371   const struct matrix_access_phi_node *const phi1 =
372     (const struct matrix_access_phi_node *) p1;
373   const struct matrix_access_phi_node *const phi2 =
374     (const struct matrix_access_phi_node *) p2;
375
376   if (phi1->phi == phi2->phi)
377     return 1;
378
379   return 0;
380 }
381
382 /* Hold the PHI nodes we visit during the traversal for escaping
383    analysis.  */
384 static htab_t htab_mat_acc_phi_nodes = NULL;
385
386 /* This hash-table holds the information about the matrices we are
387    going to handle.  */
388 static htab_t matrices_to_reorg = NULL;
389
390 /* Return a hash for MTT, which is really a "matrix_info *".  */
391 static hashval_t
392 mtt_info_hash (const void *mtt)
393 {
394   return htab_hash_pointer (((const struct matrix_info *) mtt)->decl);
395 }
396
397 /* Return true if MTT1 and MTT2 (which are really both of type
398    "matrix_info *") refer to the same decl.  */
399 static int
400 mtt_info_eq (const void *mtt1, const void *mtt2)
401 {
402   const struct matrix_info *const i1 = (const struct matrix_info *) mtt1;
403   const struct matrix_info *const i2 = (const struct matrix_info *) mtt2;
404
405   if (i1->decl == i2->decl)
406     return true;
407
408   return false;
409 }
410
411 /* Return false if STMT may contain a vector expression.
412    In this situation, all matrices should not be flattened.  */
413 static bool
414 may_flatten_matrices_1 (gimple stmt)
415 {
416   switch (gimple_code (stmt))
417     {
418     case GIMPLE_ASSIGN:
419     case GIMPLE_CALL:
420       if (!gimple_has_lhs (stmt))
421         return true;
422       if (TREE_CODE (TREE_TYPE (gimple_get_lhs (stmt))) == VECTOR_TYPE)
423         {
424           if (dump_file)
425             fprintf (dump_file,
426                      "Found vector type, don't flatten matrix\n");
427           return false;
428         }
429       break;
430     case GIMPLE_ASM:
431       /* Asm code could contain vector operations.  */
432       return false;
433       break;
434     default:
435       break;
436     }
437   return true;
438 }
439
440 /* Return false if there are hand-written vectors in the program.
441    We disable the flattening in such a case.  */
442 static bool
443 may_flatten_matrices (struct cgraph_node *node)
444 {
445   tree decl;
446   struct function *func;
447   basic_block bb;
448   gimple_stmt_iterator gsi;
449
450   decl = node->decl;
451   if (node->analyzed)
452     {
453       func = DECL_STRUCT_FUNCTION (decl);
454       FOR_EACH_BB_FN (bb, func)
455         for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
456         if (!may_flatten_matrices_1 (gsi_stmt (gsi)))
457           return false;
458     }
459   return true;
460 }
461
462 /* Given a VAR_DECL, check its type to determine whether it is
463    a definition of a dynamic allocated matrix and therefore is
464    a suitable candidate for the matrix flattening optimization.
465    Return NULL if VAR_DECL is not such decl.  Otherwise, allocate
466    a MATRIX_INFO structure, fill it with the relevant information
467    and return a pointer to it.
468    TODO: handle also statically defined arrays.  */
469 static struct matrix_info *
470 analyze_matrix_decl (tree var_decl)
471 {
472   struct matrix_info *m_node, tmpmi, *mi;
473   tree var_type;
474   int dim_num = 0;
475
476   gcc_assert (matrices_to_reorg);
477
478   if (TREE_CODE (var_decl) == PARM_DECL)
479     var_type = DECL_ARG_TYPE (var_decl);
480   else if (TREE_CODE (var_decl) == VAR_DECL)
481     var_type = TREE_TYPE (var_decl);
482   else
483     return NULL;
484
485   if (!POINTER_TYPE_P (var_type))
486     return NULL;
487
488   while (POINTER_TYPE_P (var_type))
489     {
490       var_type = TREE_TYPE (var_type);
491       dim_num++;
492     }
493
494   if (dim_num <= 1)
495     return NULL;
496
497   if (!COMPLETE_TYPE_P (var_type)
498       || TREE_CODE (TYPE_SIZE_UNIT (var_type)) != INTEGER_CST)
499     return NULL;
500
501   /* Check to see if this pointer is already in there.  */
502   tmpmi.decl = var_decl;
503   mi = (struct matrix_info *) htab_find (matrices_to_reorg, &tmpmi);
504
505   if (mi)
506     return NULL;
507
508   /* Record the matrix.  */
509
510   m_node = (struct matrix_info *) xcalloc (1, sizeof (struct matrix_info));
511   m_node->decl = var_decl;
512   m_node->num_dims = dim_num;
513   m_node->free_stmts
514     = (struct free_info *) xcalloc (dim_num, sizeof (struct free_info));
515
516   /* Init min_indirect_level_escape to -1 to indicate that no escape
517      analysis has been done yet.  */
518   m_node->min_indirect_level_escape = -1;
519   m_node->is_transposed_p = false;
520
521   return m_node;
522 }
523
524 /* Free matrix E.  */
525 static void
526 mat_free (void *e)
527 {
528   struct matrix_info *mat = (struct matrix_info *) e;
529
530   if (!mat)
531     return;
532
533   if (mat->free_stmts)
534     free (mat->free_stmts);
535   if (mat->dim_hot_level)
536     free (mat->dim_hot_level);
537   if (mat->malloc_for_level)
538     free (mat->malloc_for_level);
539 }
540
541 /* Find all potential matrices.
542    TODO: currently we handle only multidimensional
543    dynamically allocated arrays.  */
544 static void
545 find_matrices_decl (void)
546 {
547   struct matrix_info *tmp;
548   PTR *slot;
549   struct varpool_node *vnode;
550
551   gcc_assert (matrices_to_reorg);
552
553   /* For every global variable in the program:
554      Check to see if it's of a candidate type and record it.  */
555   for (vnode = varpool_nodes_queue; vnode; vnode = vnode->next_needed)
556     {
557       tree var_decl = vnode->decl;
558
559       if (!var_decl || TREE_CODE (var_decl) != VAR_DECL)
560         continue;
561
562       if (matrices_to_reorg)
563         if ((tmp = analyze_matrix_decl (var_decl)))
564           {
565             if (!TREE_ADDRESSABLE (var_decl))
566               {
567                 slot = htab_find_slot (matrices_to_reorg, tmp, INSERT);
568                 *slot = tmp;
569               }
570           }
571     }
572   return;
573 }
574
575 /* Mark that the matrix MI escapes at level L.  */
576 static void
577 mark_min_matrix_escape_level (struct matrix_info *mi, int l, gimple s)
578 {
579   if (mi->min_indirect_level_escape == -1
580       || (mi->min_indirect_level_escape > l))
581     {
582       mi->min_indirect_level_escape = l;
583       mi->min_indirect_level_escape_stmt = s;
584     }
585 }
586
587 /* Find if the SSA variable is accessed inside the
588    tree and record the tree containing it.
589    The only relevant uses are the case of SSA_NAME, or SSA inside
590    MEM_REF, PLUS_EXPR, POINTER_PLUS_EXPR, MULT_EXPR.  */
591 static void
592 ssa_accessed_in_tree (tree t, struct ssa_acc_in_tree *a)
593 {
594   a->t_code = TREE_CODE (t);
595   switch (a->t_code)
596     {
597     case SSA_NAME:
598       if (t == a->ssa_var)
599         a->var_found = true;
600       break;
601     case MEM_REF:
602       if (SSA_VAR_P (TREE_OPERAND (t, 0))
603           && TREE_OPERAND (t, 0) == a->ssa_var)
604         a->var_found = true;
605       break;
606     default:
607       break;
608     }
609 }
610
611 /* Find if the SSA variable is accessed on the right hand side of
612    gimple call STMT. */
613
614 static void
615 ssa_accessed_in_call_rhs (gimple stmt, struct ssa_acc_in_tree *a)
616 {
617   tree decl;
618   tree arg;
619   size_t i;
620
621   a->t_code = CALL_EXPR;
622   for (i = 0; i < gimple_call_num_args (stmt); i++)
623     {
624       arg = gimple_call_arg (stmt, i);
625       if (arg == a->ssa_var)
626         {
627           a->var_found = true;
628           decl = gimple_call_fndecl (stmt);
629           a->t_tree = decl;
630           break;
631         }
632     }
633 }
634
635 /* Find if the SSA variable is accessed on the right hand side of
636    gimple assign STMT. */
637
638 static void
639 ssa_accessed_in_assign_rhs (gimple stmt, struct ssa_acc_in_tree *a)
640 {
641
642   a->t_code = gimple_assign_rhs_code (stmt);
643   switch (a->t_code)
644     {
645       tree op1, op2;
646
647     case SSA_NAME:
648     case MEM_REF:
649     CASE_CONVERT:
650     case VIEW_CONVERT_EXPR:
651       ssa_accessed_in_tree (gimple_assign_rhs1 (stmt), a);
652       break;
653     case POINTER_PLUS_EXPR:
654     case PLUS_EXPR:
655     case MULT_EXPR:
656       op1 = gimple_assign_rhs1 (stmt);
657       op2 = gimple_assign_rhs2 (stmt);
658
659       if (op1 == a->ssa_var)
660         {
661           a->var_found = true;
662           a->second_op = op2;
663         }
664       else if (op2 == a->ssa_var)
665         {
666           a->var_found = true;
667           a->second_op = op1;
668         }
669       break;
670     default:
671       break;
672     }
673 }
674
675 /* Record the access/allocation site information for matrix MI so we can
676    handle it later in transformation.  */
677 static void
678 record_access_alloc_site_info (struct matrix_info *mi, gimple stmt, tree offset,
679                                tree index, int level, bool is_alloc)
680 {
681   struct access_site_info *acc_info;
682
683   if (!mi->access_l)
684     mi->access_l = VEC_alloc (access_site_info_p, heap, 100);
685
686   acc_info
687     = (struct access_site_info *)
688     xcalloc (1, sizeof (struct access_site_info));
689   acc_info->stmt = stmt;
690   acc_info->offset = offset;
691   acc_info->index = index;
692   acc_info->function_decl = current_function_decl;
693   acc_info->level = level;
694   acc_info->is_alloc = is_alloc;
695
696   VEC_safe_push (access_site_info_p, heap, mi->access_l, acc_info);
697
698 }
699
700 /* Record the malloc as the allocation site of the given LEVEL.  But
701    first we Make sure that all the size parameters passed to malloc in
702    all the allocation sites could be pre-calculated before the call to
703    the malloc of level 0 (the main malloc call).  */
704 static void
705 add_allocation_site (struct matrix_info *mi, gimple stmt, int level)
706 {
707   struct malloc_call_data mcd;
708
709   /* Make sure that the allocation sites are in the same function.  */
710   if (!mi->allocation_function_decl)
711     mi->allocation_function_decl = current_function_decl;
712   else if (mi->allocation_function_decl != current_function_decl)
713     {
714       int min_malloc_level;
715
716       gcc_assert (mi->malloc_for_level);
717
718       /* Find the minimum malloc level that already has been seen;
719          we known its allocation function must be
720          MI->allocation_function_decl since it's different than
721          CURRENT_FUNCTION_DECL then the escaping level should be
722          MIN (LEVEL, MIN_MALLOC_LEVEL) - 1 , and the allocation function
723          must be set accordingly.  */
724       for (min_malloc_level = 0;
725            min_malloc_level < mi->max_malloced_level
726            && mi->malloc_for_level[min_malloc_level]; min_malloc_level++);
727       if (level < min_malloc_level)
728         {
729           mi->allocation_function_decl = current_function_decl;
730           mark_min_matrix_escape_level (mi, min_malloc_level, stmt);
731         }
732       else
733         {
734           mark_min_matrix_escape_level (mi, level, stmt);
735           /* cannot be that (level == min_malloc_level)
736              we would have returned earlier.  */
737           return;
738         }
739     }
740
741   /* Find the correct malloc information.  */
742   collect_data_for_malloc_call (stmt, &mcd);
743
744   /* We accept only calls to malloc function; we do not accept
745      calls like calloc and realloc.  */
746   if (!mi->malloc_for_level)
747     {
748       mi->malloc_for_level = XCNEWVEC (gimple, level + 1);
749       mi->max_malloced_level = level + 1;
750     }
751   else if (mi->max_malloced_level <= level)
752     {
753       mi->malloc_for_level
754         = XRESIZEVEC (gimple, mi->malloc_for_level, level + 1);
755
756       /* Zero the newly allocated items.  */
757       memset (&(mi->malloc_for_level[mi->max_malloced_level + 1]),
758               0, (level - mi->max_malloced_level) * sizeof (tree));
759
760       mi->max_malloced_level = level + 1;
761     }
762   mi->malloc_for_level[level] = stmt;
763 }
764
765 /* Given an assignment statement STMT that we know that its
766    left-hand-side is the matrix MI variable, we traverse the immediate
767    uses backwards until we get to a malloc site.  We make sure that
768    there is one and only one malloc site that sets this variable.  When
769    we are performing the flattening we generate a new variable that
770    will hold the size for each dimension; each malloc that allocates a
771    dimension has the size parameter; we use that parameter to
772    initialize the dimension size variable so we can use it later in
773    the address calculations.  LEVEL is the dimension we're inspecting.
774    Return if STMT is related to an allocation site.  */
775
776 static void
777 analyze_matrix_allocation_site (struct matrix_info *mi, gimple stmt,
778                                 int level, sbitmap visited)
779 {
780   if (gimple_assign_copy_p (stmt) || gimple_assign_cast_p (stmt))
781     {
782       tree rhs = gimple_assign_rhs1 (stmt);
783
784       if (TREE_CODE (rhs) == SSA_NAME)
785         {
786           gimple def = SSA_NAME_DEF_STMT (rhs);
787
788           analyze_matrix_allocation_site (mi, def, level, visited);
789           return;
790         }
791       /* If we are back to the original matrix variable then we
792          are sure that this is analyzed as an access site.  */
793       else if (rhs == mi->decl)
794         return;
795     }
796   /* A result of call to malloc.  */
797   else if (is_gimple_call (stmt))
798     {
799       int call_flags = gimple_call_flags (stmt);
800
801       if (!(call_flags & ECF_MALLOC))
802         {
803           mark_min_matrix_escape_level (mi, level, stmt);
804           return;
805         }
806       else
807         {
808           tree malloc_fn_decl;
809
810           malloc_fn_decl = gimple_call_fndecl (stmt);
811           if (malloc_fn_decl == NULL_TREE)
812             {
813               mark_min_matrix_escape_level (mi, level, stmt);
814               return;
815             }
816           if (DECL_FUNCTION_CODE (malloc_fn_decl) != BUILT_IN_MALLOC)
817             {
818               if (dump_file)
819                 fprintf (dump_file,
820                          "Matrix %s is an argument to function %s\n",
821                          get_name (mi->decl), get_name (malloc_fn_decl));
822               mark_min_matrix_escape_level (mi, level, stmt);
823               return;
824             }
825         }
826       /* This is a call to malloc of level 'level'.
827          mi->max_malloced_level-1 == level  means that we've
828          seen a malloc statement of level 'level' before.
829          If the statement is not the same one that we've
830          seen before, then there's another malloc statement
831          for the same level, which means that we need to mark
832          it escaping.  */
833       if (mi->malloc_for_level
834           && mi->max_malloced_level-1 == level
835           && mi->malloc_for_level[level] != stmt)
836         {
837           mark_min_matrix_escape_level (mi, level, stmt);
838           return;
839         }
840       else
841         add_allocation_site (mi, stmt, level);
842       return;
843     }
844   /* Looks like we don't know what is happening in this
845      statement so be in the safe side and mark it as escaping.  */
846   mark_min_matrix_escape_level (mi, level, stmt);
847 }
848
849 /* The transposing decision making.
850    In order to to calculate the profitability of transposing, we collect two
851    types of information regarding the accesses:
852    1. profiling information used to express the hotness of an access, that
853    is how often the matrix is accessed by this access site (count of the
854    access site).
855    2. which dimension in the access site is iterated by the inner
856    most loop containing this access.
857
858    The matrix will have a calculated value of weighted hotness for each
859    dimension.
860    Intuitively the hotness level of a dimension is a function of how
861    many times it was the most frequently accessed dimension in the
862    highly executed access sites of this matrix.
863
864    As computed by following equation:
865    m      n
866    __   __
867    \    \  dim_hot_level[i] +=
868    /_   /_
869    j     i
870                  acc[j]->dim[i]->iter_by_inner_loop * count(j)
871
872   Where n is the number of dims and m is the number of the matrix
873   access sites. acc[j]->dim[i]->iter_by_inner_loop is 1 if acc[j]
874   iterates over dim[i] in innermost loop, and is 0 otherwise.
875
876   The organization of the new matrix should be according to the
877   hotness of each dimension. The hotness of the dimension implies
878   the locality of the elements.*/
879 static int
880 analyze_transpose (void **slot, void *data ATTRIBUTE_UNUSED)
881 {
882   struct matrix_info *mi = (struct matrix_info *) *slot;
883   int min_escape_l = mi->min_indirect_level_escape;
884   struct loop *loop;
885   affine_iv iv;
886   struct access_site_info *acc_info;
887   int i;
888
889   if (min_escape_l < 2 || !mi->access_l)
890     {
891       if (mi->access_l)
892         {
893           FOR_EACH_VEC_ELT (access_site_info_p, mi->access_l, i, acc_info)
894             free (acc_info);
895           VEC_free (access_site_info_p, heap, mi->access_l);
896
897         }
898       return 1;
899     }
900   if (!mi->dim_hot_level)
901     mi->dim_hot_level =
902       (gcov_type *) xcalloc (min_escape_l, sizeof (gcov_type));
903
904
905   for (i = 0; VEC_iterate (access_site_info_p, mi->access_l, i, acc_info);
906        i++)
907     {
908       if (gimple_assign_rhs_code (acc_info->stmt) == POINTER_PLUS_EXPR
909           && acc_info->level < min_escape_l)
910         {
911           loop = loop_containing_stmt (acc_info->stmt);
912           if (!loop || loop->inner)
913             {
914               free (acc_info);
915               continue;
916             }
917           if (simple_iv (loop, loop, acc_info->offset, &iv, true))
918             {
919               if (iv.step != NULL)
920                 {
921                   HOST_WIDE_INT istep;
922
923                   istep = int_cst_value (iv.step);
924                   if (istep != 0)
925                     {
926                       acc_info->iterated_by_inner_most_loop_p = 1;
927                       mi->dim_hot_level[acc_info->level] +=
928                         gimple_bb (acc_info->stmt)->count;
929                     }
930
931                 }
932             }
933         }
934       free (acc_info);
935     }
936   VEC_free (access_site_info_p, heap, mi->access_l);
937
938   return 1;
939 }
940
941 /* Find the index which defines the OFFSET from base.
942    We walk from use to def until we find how the offset was defined.  */
943 static tree
944 get_index_from_offset (tree offset, gimple def_stmt)
945 {
946   tree op1, op2, index;
947
948   if (gimple_code (def_stmt) == GIMPLE_PHI)
949     return NULL;
950   if ((gimple_assign_copy_p (def_stmt) || gimple_assign_cast_p (def_stmt))
951       && TREE_CODE (gimple_assign_rhs1 (def_stmt)) == SSA_NAME)
952     return get_index_from_offset (offset,
953                                   SSA_NAME_DEF_STMT (gimple_assign_rhs1 (def_stmt)));
954   else if (is_gimple_assign (def_stmt)
955            && gimple_assign_rhs_code (def_stmt) == MULT_EXPR)
956     {
957       op1 = gimple_assign_rhs1 (def_stmt);
958       op2 = gimple_assign_rhs2 (def_stmt);
959       if (TREE_CODE (op1) != INTEGER_CST && TREE_CODE (op2) != INTEGER_CST)
960         return NULL;
961       index = (TREE_CODE (op1) == INTEGER_CST) ? op2 : op1;
962       return index;
963     }
964   else
965     return NULL_TREE;
966 }
967
968 /* update MI->dimension_type_size[CURRENT_INDIRECT_LEVEL] with the size
969    of the type related to the SSA_VAR, or the type related to the
970    lhs of STMT, in the case that it is an MEM_REF.  */
971 static void
972 update_type_size (struct matrix_info *mi, gimple stmt, tree ssa_var,
973                   int current_indirect_level)
974 {
975   tree lhs;
976   HOST_WIDE_INT type_size;
977
978   /* Update type according to the type of the MEM_REF expr.   */
979   if (is_gimple_assign (stmt)
980       && TREE_CODE (gimple_assign_lhs (stmt)) == MEM_REF)
981     {
982       lhs = gimple_assign_lhs (stmt);
983       gcc_assert (POINTER_TYPE_P
984                   (TREE_TYPE (SSA_NAME_VAR (TREE_OPERAND (lhs, 0)))));
985       type_size =
986         int_size_in_bytes (TREE_TYPE
987                            (TREE_TYPE
988                             (SSA_NAME_VAR (TREE_OPERAND (lhs, 0)))));
989     }
990   else
991     type_size = int_size_in_bytes (TREE_TYPE (ssa_var));
992
993   /* Record the size of elements accessed (as a whole)
994      in the current indirection level (dimension).  If the size of
995      elements is not known at compile time, mark it as escaping.  */
996   if (type_size <= 0)
997     mark_min_matrix_escape_level (mi, current_indirect_level, stmt);
998   else
999     {
1000       int l = current_indirect_level;
1001
1002       if (!mi->dimension_type_size)
1003         {
1004           mi->dimension_type_size
1005             = (HOST_WIDE_INT *) xcalloc (l + 1, sizeof (HOST_WIDE_INT));
1006           mi->dimension_type_size_len = l + 1;
1007         }
1008       else if (mi->dimension_type_size_len < l + 1)
1009         {
1010           mi->dimension_type_size
1011             = (HOST_WIDE_INT *) xrealloc (mi->dimension_type_size,
1012                                           (l + 1) * sizeof (HOST_WIDE_INT));
1013           memset (&mi->dimension_type_size[mi->dimension_type_size_len],
1014                   0, (l + 1 - mi->dimension_type_size_len)
1015                   * sizeof (HOST_WIDE_INT));
1016           mi->dimension_type_size_len = l + 1;
1017         }
1018       /* Make sure all the accesses in the same level have the same size
1019          of the type.  */
1020       if (!mi->dimension_type_size[l])
1021         mi->dimension_type_size[l] = type_size;
1022       else if (mi->dimension_type_size[l] != type_size)
1023         mark_min_matrix_escape_level (mi, l, stmt);
1024     }
1025 }
1026
1027 /* USE_STMT represents a GIMPLE_CALL, where one of the arguments is the
1028    ssa var that we want to check because it came from some use of matrix
1029    MI.  CURRENT_INDIRECT_LEVEL is the indirection level we reached so
1030    far.  */
1031
1032 static int
1033 analyze_accesses_for_call_stmt (struct matrix_info *mi, tree ssa_var,
1034                                 gimple use_stmt, int current_indirect_level)
1035 {
1036   tree fndecl = gimple_call_fndecl (use_stmt);
1037
1038   if (gimple_call_lhs (use_stmt))
1039     {
1040       tree lhs = gimple_call_lhs (use_stmt);
1041       struct ssa_acc_in_tree lhs_acc, rhs_acc;
1042
1043       memset (&lhs_acc, 0, sizeof (lhs_acc));
1044       memset (&rhs_acc, 0, sizeof (rhs_acc));
1045
1046       lhs_acc.ssa_var = ssa_var;
1047       lhs_acc.t_code = ERROR_MARK;
1048       ssa_accessed_in_tree (lhs, &lhs_acc);
1049       rhs_acc.ssa_var = ssa_var;
1050       rhs_acc.t_code = ERROR_MARK;
1051       ssa_accessed_in_call_rhs (use_stmt, &rhs_acc);
1052
1053       /* The SSA must be either in the left side or in the right side,
1054          to understand what is happening.
1055          In case the SSA_NAME is found in both sides we should be escaping
1056          at this level because in this case we cannot calculate the
1057          address correctly.  */
1058       if ((lhs_acc.var_found && rhs_acc.var_found
1059            && lhs_acc.t_code == MEM_REF)
1060           || (!rhs_acc.var_found && !lhs_acc.var_found))
1061         {
1062           mark_min_matrix_escape_level (mi, current_indirect_level, use_stmt);
1063           return current_indirect_level;
1064         }
1065       gcc_assert (!rhs_acc.var_found || !lhs_acc.var_found);
1066
1067       /* If we are storing to the matrix at some level, then mark it as
1068          escaping at that level.  */
1069       if (lhs_acc.var_found)
1070         {
1071           int l = current_indirect_level + 1;
1072
1073           gcc_assert (lhs_acc.t_code == MEM_REF);
1074           mark_min_matrix_escape_level (mi, l, use_stmt);
1075           return current_indirect_level;
1076         }
1077     }
1078
1079   if (fndecl)
1080     {
1081       if (DECL_FUNCTION_CODE (fndecl) != BUILT_IN_FREE)
1082         {
1083           if (dump_file)
1084             fprintf (dump_file,
1085                      "Matrix %s: Function call %s, level %d escapes.\n",
1086                      get_name (mi->decl), get_name (fndecl),
1087                      current_indirect_level);
1088           mark_min_matrix_escape_level (mi, current_indirect_level, use_stmt);
1089         }
1090       else if (mi->free_stmts[current_indirect_level].stmt != NULL
1091                && mi->free_stmts[current_indirect_level].stmt != use_stmt)
1092         mark_min_matrix_escape_level (mi, current_indirect_level, use_stmt);
1093       else
1094         {
1095           /*Record the free statements so we can delete them
1096              later. */
1097           int l = current_indirect_level;
1098
1099           mi->free_stmts[l].stmt = use_stmt;
1100           mi->free_stmts[l].func = current_function_decl;
1101         }
1102     }
1103   return current_indirect_level;
1104 }
1105
1106 /* USE_STMT represents a phi node of the ssa var that we want to
1107    check  because it came from some use of matrix
1108    MI.
1109    We check all the escaping levels that get to the PHI node
1110    and make sure they are all the same escaping;
1111    if not (which is rare) we let the escaping level be the
1112    minimum level that gets into that PHI because starting from
1113    that level we cannot expect the behavior of the indirections.
1114    CURRENT_INDIRECT_LEVEL is the indirection level we reached so far.  */
1115
1116 static void
1117 analyze_accesses_for_phi_node (struct matrix_info *mi, gimple use_stmt,
1118                                int current_indirect_level, sbitmap visited,
1119                                bool record_accesses)
1120 {
1121
1122   struct matrix_access_phi_node tmp_maphi, *maphi, **pmaphi;
1123
1124   tmp_maphi.phi = use_stmt;
1125   if ((maphi = (struct matrix_access_phi_node *)
1126        htab_find (htab_mat_acc_phi_nodes, &tmp_maphi)))
1127     {
1128       if (maphi->indirection_level == current_indirect_level)
1129         return;
1130       else
1131         {
1132           int level = MIN (maphi->indirection_level,
1133                            current_indirect_level);
1134           size_t j;
1135           gimple stmt = NULL;
1136
1137           maphi->indirection_level = level;
1138           for (j = 0; j < gimple_phi_num_args (use_stmt); j++)
1139             {
1140               tree def = PHI_ARG_DEF (use_stmt, j);
1141
1142               if (gimple_code (SSA_NAME_DEF_STMT (def)) != GIMPLE_PHI)
1143                 stmt = SSA_NAME_DEF_STMT (def);
1144             }
1145           mark_min_matrix_escape_level (mi, level, stmt);
1146         }
1147       return;
1148     }
1149   maphi = (struct matrix_access_phi_node *)
1150     xcalloc (1, sizeof (struct matrix_access_phi_node));
1151   maphi->phi = use_stmt;
1152   maphi->indirection_level = current_indirect_level;
1153
1154   /* Insert to hash table.  */
1155   pmaphi = (struct matrix_access_phi_node **)
1156     htab_find_slot (htab_mat_acc_phi_nodes, maphi, INSERT);
1157   gcc_assert (pmaphi);
1158   *pmaphi = maphi;
1159
1160   if (!TEST_BIT (visited, SSA_NAME_VERSION (PHI_RESULT (use_stmt))))
1161     {
1162       SET_BIT (visited, SSA_NAME_VERSION (PHI_RESULT (use_stmt)));
1163       analyze_matrix_accesses (mi, PHI_RESULT (use_stmt),
1164                                current_indirect_level, false, visited,
1165                                record_accesses);
1166       RESET_BIT (visited, SSA_NAME_VERSION (PHI_RESULT (use_stmt)));
1167     }
1168 }
1169
1170 /* USE_STMT represents an assign statement (the rhs or lhs include
1171    the ssa var that we want to check  because it came from some use of matrix
1172    MI.  CURRENT_INDIRECT_LEVEL is the indirection level we reached so far.  */
1173
1174 static int
1175 analyze_accesses_for_assign_stmt (struct matrix_info *mi, tree ssa_var,
1176                                   gimple use_stmt, int current_indirect_level,
1177                                   bool last_op, sbitmap visited,
1178                                   bool record_accesses)
1179 {
1180   tree lhs = gimple_get_lhs (use_stmt);
1181   struct ssa_acc_in_tree lhs_acc, rhs_acc;
1182
1183   memset (&lhs_acc, 0, sizeof (lhs_acc));
1184   memset (&rhs_acc, 0, sizeof (rhs_acc));
1185
1186   lhs_acc.ssa_var = ssa_var;
1187   lhs_acc.t_code = ERROR_MARK;
1188   ssa_accessed_in_tree (lhs, &lhs_acc);
1189   rhs_acc.ssa_var = ssa_var;
1190   rhs_acc.t_code = ERROR_MARK;
1191   ssa_accessed_in_assign_rhs (use_stmt, &rhs_acc);
1192
1193   /* The SSA must be either in the left side or in the right side,
1194      to understand what is happening.
1195      In case the SSA_NAME is found in both sides we should be escaping
1196      at this level because in this case we cannot calculate the
1197      address correctly.  */
1198   if ((lhs_acc.var_found && rhs_acc.var_found
1199        && lhs_acc.t_code == MEM_REF)
1200       || (!rhs_acc.var_found && !lhs_acc.var_found))
1201     {
1202       mark_min_matrix_escape_level (mi, current_indirect_level, use_stmt);
1203       return current_indirect_level;
1204     }
1205   gcc_assert (!rhs_acc.var_found || !lhs_acc.var_found);
1206
1207   /* If we are storing to the matrix at some level, then mark it as
1208      escaping at that level.  */
1209   if (lhs_acc.var_found)
1210     {
1211       int l = current_indirect_level + 1;
1212
1213       gcc_assert (lhs_acc.t_code == MEM_REF);
1214
1215       if (!(gimple_assign_copy_p (use_stmt)
1216             || gimple_assign_cast_p (use_stmt))
1217           || (TREE_CODE (gimple_assign_rhs1 (use_stmt)) != SSA_NAME))
1218         mark_min_matrix_escape_level (mi, l, use_stmt);
1219       else
1220         {
1221           gimple def_stmt = SSA_NAME_DEF_STMT (gimple_assign_rhs1 (use_stmt));
1222           analyze_matrix_allocation_site (mi, def_stmt, l, visited);
1223           if (record_accesses)
1224             record_access_alloc_site_info (mi, use_stmt, NULL_TREE,
1225                                            NULL_TREE, l, true);
1226           update_type_size (mi, use_stmt, NULL, l);
1227         }
1228       return current_indirect_level;
1229     }
1230   /* Now, check the right-hand-side, to see how the SSA variable
1231      is used.  */
1232   if (rhs_acc.var_found)
1233     {
1234       if (rhs_acc.t_code != MEM_REF
1235           && rhs_acc.t_code != POINTER_PLUS_EXPR && rhs_acc.t_code != SSA_NAME)
1236         {
1237           mark_min_matrix_escape_level (mi, current_indirect_level, use_stmt);
1238           return current_indirect_level;
1239         }
1240       /* If the access in the RHS has an indirection increase the
1241          indirection level.  */
1242       if (rhs_acc.t_code == MEM_REF)
1243         {
1244           if (record_accesses)
1245             record_access_alloc_site_info (mi, use_stmt, NULL_TREE,
1246                                            NULL_TREE,
1247                                            current_indirect_level, true);
1248           current_indirect_level += 1;
1249         }
1250       else if (rhs_acc.t_code == POINTER_PLUS_EXPR)
1251         {
1252           gcc_assert (rhs_acc.second_op);
1253           if (last_op)
1254             /* Currently we support only one PLUS expression on the
1255                SSA_NAME that holds the base address of the current
1256                indirection level; to support more general case there
1257                is a need to hold a stack of expressions and regenerate
1258                the calculation later.  */
1259             mark_min_matrix_escape_level (mi, current_indirect_level,
1260                                           use_stmt);
1261           else
1262             {
1263               tree index;
1264               tree op1, op2;
1265
1266               op1 = gimple_assign_rhs1 (use_stmt);
1267               op2 = gimple_assign_rhs2 (use_stmt);
1268
1269               op2 = (op1 == ssa_var) ? op2 : op1;
1270               if (TREE_CODE (op2) == INTEGER_CST)
1271                 index =
1272                   build_int_cst (TREE_TYPE (op1),
1273                                  TREE_INT_CST_LOW (op2) /
1274                                  int_size_in_bytes (TREE_TYPE (op1)));
1275               else
1276                 {
1277                   index =
1278                     get_index_from_offset (op2, SSA_NAME_DEF_STMT (op2));
1279                   if (index == NULL_TREE)
1280                     {
1281                       mark_min_matrix_escape_level (mi,
1282                                                     current_indirect_level,
1283                                                     use_stmt);
1284                       return current_indirect_level;
1285                     }
1286                 }
1287               if (record_accesses)
1288                 record_access_alloc_site_info (mi, use_stmt, op2,
1289                                                index,
1290                                                current_indirect_level, false);
1291             }
1292         }
1293       /* If we are storing this level of indirection mark it as
1294          escaping.  */
1295       if (lhs_acc.t_code == MEM_REF || TREE_CODE (lhs) != SSA_NAME)
1296         {
1297           int l = current_indirect_level;
1298
1299           /* One exception is when we are storing to the matrix
1300              variable itself; this is the case of malloc, we must make
1301              sure that it's the one and only one call to malloc so
1302              we call analyze_matrix_allocation_site to check
1303              this out.  */
1304           if (TREE_CODE (lhs) != VAR_DECL || lhs != mi->decl)
1305             mark_min_matrix_escape_level (mi, current_indirect_level,
1306                                           use_stmt);
1307           else
1308             {
1309               /* Also update the escaping level.  */
1310               analyze_matrix_allocation_site (mi, use_stmt, l, visited);
1311               if (record_accesses)
1312                 record_access_alloc_site_info (mi, use_stmt, NULL_TREE,
1313                                                NULL_TREE, l, true);
1314             }
1315         }
1316       else
1317         {
1318           /* We are placing it in an SSA, follow that SSA.  */
1319           analyze_matrix_accesses (mi, lhs,
1320                                    current_indirect_level,
1321                                    rhs_acc.t_code == POINTER_PLUS_EXPR,
1322                                    visited, record_accesses);
1323         }
1324     }
1325   return current_indirect_level;
1326 }
1327
1328 /* Given a SSA_VAR (coming from a use statement of the matrix MI),
1329    follow its uses and level of indirection and find out the minimum
1330    indirection level it escapes in (the highest dimension) and the maximum
1331    level it is accessed in (this will be the actual dimension of the
1332    matrix).  The information is accumulated in MI.
1333    We look at the immediate uses, if one escapes we finish; if not,
1334    we make a recursive call for each one of the immediate uses of the
1335    resulting SSA name.  */
1336 static void
1337 analyze_matrix_accesses (struct matrix_info *mi, tree ssa_var,
1338                          int current_indirect_level, bool last_op,
1339                          sbitmap visited, bool record_accesses)
1340 {
1341   imm_use_iterator imm_iter;
1342   use_operand_p use_p;
1343
1344   update_type_size (mi, SSA_NAME_DEF_STMT (ssa_var), ssa_var,
1345                     current_indirect_level);
1346
1347   /* We don't go beyond the escaping level when we are performing the
1348      flattening.  NOTE: we keep the last indirection level that doesn't
1349      escape.  */
1350   if (mi->min_indirect_level_escape > -1
1351       && mi->min_indirect_level_escape <= current_indirect_level)
1352     return;
1353
1354 /* Now go over the uses of the SSA_NAME and check how it is used in
1355    each one of them.  We are mainly looking for the pattern MEM_REF,
1356    then a POINTER_PLUS_EXPR, then MEM_REF etc.  while in between there could
1357    be any number of copies and casts.  */
1358   gcc_assert (TREE_CODE (ssa_var) == SSA_NAME);
1359
1360   FOR_EACH_IMM_USE_FAST (use_p, imm_iter, ssa_var)
1361   {
1362     gimple use_stmt = USE_STMT (use_p);
1363     if (gimple_code (use_stmt) == GIMPLE_PHI)
1364       /* We check all the escaping levels that get to the PHI node
1365          and make sure they are all the same escaping;
1366          if not (which is rare) we let the escaping level be the
1367          minimum level that gets into that PHI because starting from
1368          that level we cannot expect the behavior of the indirections.  */
1369
1370       analyze_accesses_for_phi_node (mi, use_stmt, current_indirect_level,
1371                                      visited, record_accesses);
1372
1373     else if (is_gimple_call (use_stmt))
1374       analyze_accesses_for_call_stmt (mi, ssa_var, use_stmt,
1375                                       current_indirect_level);
1376     else if (is_gimple_assign (use_stmt))
1377       current_indirect_level =
1378         analyze_accesses_for_assign_stmt (mi, ssa_var, use_stmt,
1379                                           current_indirect_level, last_op,
1380                                           visited, record_accesses);
1381   }
1382 }
1383
1384 typedef struct
1385 {
1386   tree fn;
1387   gimple stmt;
1388 } check_var_data;
1389
1390 /* A walk_tree function to go over the VAR_DECL, PARM_DECL nodes of
1391    the malloc size expression and check that those aren't changed
1392    over the function.  */
1393 static tree
1394 check_var_notmodified_p (tree * tp, int *walk_subtrees, void *data)
1395 {
1396   basic_block bb;
1397   tree t = *tp;
1398   check_var_data *callback_data = (check_var_data*) data;
1399   tree fn = callback_data->fn;
1400   gimple_stmt_iterator gsi;
1401   gimple stmt;
1402
1403   if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
1404     return NULL_TREE;
1405
1406   FOR_EACH_BB_FN (bb, DECL_STRUCT_FUNCTION (fn))
1407   {
1408     for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1409       {
1410         stmt = gsi_stmt (gsi);
1411         if (!is_gimple_assign (stmt) && !is_gimple_call (stmt))
1412           continue;
1413         if (gimple_get_lhs (stmt) == t)
1414           {
1415             callback_data->stmt = stmt;
1416             return t;
1417           }
1418       }
1419   }
1420   *walk_subtrees = 1;
1421   return NULL_TREE;
1422 }
1423
1424 /* Go backwards in the use-def chains and find out the expression
1425    represented by the possible SSA name in STMT, until it is composed
1426    of only VAR_DECL, PARM_DECL and INT_CST.  In case of phi nodes
1427    we make sure that all the arguments represent the same subexpression,
1428    otherwise we fail.  */
1429
1430 static tree
1431 can_calculate_stmt_before_stmt (gimple stmt, sbitmap visited)
1432 {
1433   tree op1, op2, res;
1434   enum tree_code code;
1435
1436   switch (gimple_code (stmt))
1437     {
1438     case GIMPLE_ASSIGN:
1439       code = gimple_assign_rhs_code (stmt);
1440       op1 = gimple_assign_rhs1 (stmt);
1441
1442       switch (code)
1443         {
1444         case POINTER_PLUS_EXPR:
1445         case PLUS_EXPR:
1446         case MINUS_EXPR:
1447         case MULT_EXPR:
1448
1449           op2 = gimple_assign_rhs2 (stmt);
1450           op1 = can_calculate_expr_before_stmt (op1, visited);
1451           if (!op1)
1452             return NULL_TREE;
1453           op2 = can_calculate_expr_before_stmt (op2, visited);
1454           if (op2)
1455             return fold_build2 (code, gimple_expr_type (stmt), op1, op2);
1456           return NULL_TREE;
1457
1458         CASE_CONVERT:
1459           res = can_calculate_expr_before_stmt (op1, visited);
1460           if (res != NULL_TREE)
1461             return build1 (code, gimple_expr_type (stmt), res);
1462           else
1463             return NULL_TREE;
1464
1465         default:
1466           if (gimple_assign_single_p (stmt))
1467             return can_calculate_expr_before_stmt (op1, visited);
1468           else
1469             return NULL_TREE;
1470         }
1471
1472     case GIMPLE_PHI:
1473       {
1474         size_t j;
1475
1476         res = NULL_TREE;
1477         /* Make sure all the arguments represent the same value.  */
1478         for (j = 0; j < gimple_phi_num_args (stmt); j++)
1479           {
1480             tree new_res;
1481             tree def = PHI_ARG_DEF (stmt, j);
1482
1483             new_res = can_calculate_expr_before_stmt (def, visited);
1484             if (res == NULL_TREE)
1485               res = new_res;
1486             else if (!new_res || !expressions_equal_p (res, new_res))
1487               return NULL_TREE;
1488           }
1489         return res;
1490       }
1491
1492     default:
1493       return NULL_TREE;
1494     }
1495 }
1496
1497 /* Go backwards in the use-def chains and find out the expression
1498    represented by the possible SSA name in EXPR, until it is composed
1499    of only VAR_DECL, PARM_DECL and INT_CST.  In case of phi nodes
1500    we make sure that all the arguments represent the same subexpression,
1501    otherwise we fail.  */
1502 static tree
1503 can_calculate_expr_before_stmt (tree expr, sbitmap visited)
1504 {
1505   gimple def_stmt;
1506   tree res;
1507
1508   switch (TREE_CODE (expr))
1509     {
1510     case SSA_NAME:
1511       /* Case of loop, we don't know to represent this expression.  */
1512       if (TEST_BIT (visited, SSA_NAME_VERSION (expr)))
1513         return NULL_TREE;
1514
1515       SET_BIT (visited, SSA_NAME_VERSION (expr));
1516       def_stmt = SSA_NAME_DEF_STMT (expr);
1517       res = can_calculate_stmt_before_stmt (def_stmt, visited);
1518       RESET_BIT (visited, SSA_NAME_VERSION (expr));
1519       return res;
1520     case VAR_DECL:
1521     case PARM_DECL:
1522     case INTEGER_CST:
1523       return expr;
1524
1525     default:
1526       return NULL_TREE;
1527     }
1528 }
1529
1530 /* There should be only one allocation function for the dimensions
1531    that don't escape. Here we check the allocation sites in this
1532    function. We must make sure that all the dimensions are allocated
1533    using malloc and that the malloc size parameter expression could be
1534    pre-calculated before the call to the malloc of dimension 0.
1535
1536    Given a candidate matrix for flattening -- MI -- check if it's
1537    appropriate for flattening -- we analyze the allocation
1538    sites that we recorded in the previous analysis.  The result of the
1539    analysis is a level of indirection (matrix dimension) in which the
1540    flattening is safe.  We check the following conditions:
1541    1. There is only one allocation site for each dimension.
1542    2. The allocation sites of all the dimensions are in the same
1543       function.
1544       (The above two are being taken care of during the analysis when
1545       we check the allocation site).
1546    3. All the dimensions that we flatten are allocated at once; thus
1547       the total size must be known before the allocation of the
1548       dimension 0 (top level) -- we must make sure we represent the
1549       size of the allocation as an expression of global parameters or
1550       constants and that those doesn't change over the function.  */
1551
1552 static int
1553 check_allocation_function (void **slot, void *data ATTRIBUTE_UNUSED)
1554 {
1555   int level;
1556   struct matrix_info *mi = (struct matrix_info *) *slot;
1557   sbitmap visited;
1558
1559   if (!mi->malloc_for_level)
1560     return 1;
1561
1562   visited = sbitmap_alloc (num_ssa_names);
1563
1564   /* Do nothing if the current function is not the allocation
1565      function of MI.  */
1566   if (mi->allocation_function_decl != current_function_decl
1567       /* We aren't in the main allocation function yet.  */
1568       || !mi->malloc_for_level[0])
1569     return 1;
1570
1571   for (level = 1; level < mi->max_malloced_level; level++)
1572     if (!mi->malloc_for_level[level])
1573       break;
1574
1575   mark_min_matrix_escape_level (mi, level, NULL);
1576
1577   /* Check if the expression of the size passed to malloc could be
1578      pre-calculated before the malloc of level 0.  */
1579   for (level = 1; level < mi->min_indirect_level_escape; level++)
1580     {
1581       gimple call_stmt;
1582       tree size;
1583       struct malloc_call_data mcd = {NULL, NULL_TREE, NULL_TREE};
1584
1585       call_stmt = mi->malloc_for_level[level];
1586
1587       /* Find the correct malloc information.  */
1588       collect_data_for_malloc_call (call_stmt, &mcd);
1589
1590       /* No need to check anticipation for constants.  */
1591       if (TREE_CODE (mcd.size_var) == INTEGER_CST)
1592         {
1593           if (!mi->dimension_size)
1594             {
1595               mi->dimension_size =
1596                 (tree *) xcalloc (mi->min_indirect_level_escape,
1597                                   sizeof (tree));
1598               mi->dimension_size_orig =
1599                 (tree *) xcalloc (mi->min_indirect_level_escape,
1600                                   sizeof (tree));
1601             }
1602           mi->dimension_size[level] = mcd.size_var;
1603           mi->dimension_size_orig[level] = mcd.size_var;
1604           continue;
1605         }
1606       /* ??? Here we should also add the way to calculate the size
1607          expression not only know that it is anticipated.  */
1608       sbitmap_zero (visited);
1609       size = can_calculate_expr_before_stmt (mcd.size_var, visited);
1610       if (size == NULL_TREE)
1611         {
1612           mark_min_matrix_escape_level (mi, level, call_stmt);
1613           if (dump_file)
1614             fprintf (dump_file,
1615                      "Matrix %s: Cannot calculate the size of allocation, escaping at level %d\n",
1616                      get_name (mi->decl), level);
1617           break;
1618         }
1619       if (!mi->dimension_size)
1620         {
1621           mi->dimension_size =
1622             (tree *) xcalloc (mi->min_indirect_level_escape, sizeof (tree));
1623           mi->dimension_size_orig =
1624             (tree *) xcalloc (mi->min_indirect_level_escape, sizeof (tree));
1625         }
1626       mi->dimension_size[level] = size;
1627       mi->dimension_size_orig[level] = size;
1628     }
1629
1630   /* We don't need those anymore.  */
1631   for (level = mi->min_indirect_level_escape;
1632        level < mi->max_malloced_level; level++)
1633     mi->malloc_for_level[level] = NULL;
1634   return 1;
1635 }
1636
1637 /* Track all access and allocation sites.  */
1638 static void
1639 find_sites_in_func (bool record)
1640 {
1641   sbitmap visited_stmts_1;
1642
1643   gimple_stmt_iterator gsi;
1644   gimple stmt;
1645   basic_block bb;
1646   struct matrix_info tmpmi, *mi;
1647
1648   visited_stmts_1 = sbitmap_alloc (num_ssa_names);
1649
1650   FOR_EACH_BB (bb)
1651   {
1652     for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1653       {
1654         tree lhs;
1655
1656         stmt = gsi_stmt (gsi);
1657         lhs = gimple_get_lhs (stmt);
1658         if (lhs != NULL_TREE
1659             && TREE_CODE (lhs) == VAR_DECL)
1660           {
1661             tmpmi.decl = lhs;
1662             if ((mi = (struct matrix_info *) htab_find (matrices_to_reorg,
1663                                                         &tmpmi)))
1664               {
1665                 sbitmap_zero (visited_stmts_1);
1666                 analyze_matrix_allocation_site (mi, stmt, 0, visited_stmts_1);
1667               }
1668           }
1669         if (is_gimple_assign (stmt)
1670             && gimple_assign_single_p (stmt)
1671             && TREE_CODE (lhs) == SSA_NAME
1672             && TREE_CODE (gimple_assign_rhs1 (stmt)) == VAR_DECL)
1673           {
1674             tmpmi.decl = gimple_assign_rhs1 (stmt);
1675             if ((mi = (struct matrix_info *) htab_find (matrices_to_reorg,
1676                                                         &tmpmi)))
1677               {
1678                 sbitmap_zero (visited_stmts_1);
1679                 analyze_matrix_accesses (mi, lhs, 0,
1680                                          false, visited_stmts_1, record);
1681               }
1682           }
1683       }
1684   }
1685   sbitmap_free (visited_stmts_1);
1686 }
1687
1688 /* Traverse the use-def chains to see if there are matrices that
1689    are passed through pointers and we cannot know how they are accessed.
1690    For each SSA-name defined by a global variable of our interest,
1691    we traverse the use-def chains of the SSA and follow the indirections,
1692    and record in what level of indirection the use of the variable
1693    escapes.  A use of a pointer escapes when it is passed to a function,
1694    stored into memory or assigned (except in malloc and free calls).  */
1695
1696 static void
1697 record_all_accesses_in_func (void)
1698 {
1699   unsigned i;
1700   sbitmap visited_stmts_1;
1701
1702   visited_stmts_1 = sbitmap_alloc (num_ssa_names);
1703
1704   for (i = 0; i < num_ssa_names; i++)
1705     {
1706       struct matrix_info tmpmi, *mi;
1707       tree ssa_var = ssa_name (i);
1708       tree rhs, lhs;
1709
1710       if (!ssa_var
1711           || !is_gimple_assign (SSA_NAME_DEF_STMT (ssa_var))
1712           || !gimple_assign_single_p (SSA_NAME_DEF_STMT (ssa_var)))
1713         continue;
1714       rhs = gimple_assign_rhs1 (SSA_NAME_DEF_STMT (ssa_var));
1715       lhs = gimple_assign_lhs (SSA_NAME_DEF_STMT (ssa_var));
1716       if (TREE_CODE (rhs) != VAR_DECL && TREE_CODE (lhs) != VAR_DECL)
1717         continue;
1718
1719       /* If the RHS is a matrix that we want to analyze, follow the def-use
1720          chain for this SSA_VAR and check for escapes or apply the
1721          flattening.  */
1722       tmpmi.decl = rhs;
1723       if ((mi = (struct matrix_info *) htab_find (matrices_to_reorg, &tmpmi)))
1724         {
1725           /* This variable will track the visited PHI nodes, so we can limit
1726              its size to the maximum number of SSA names.  */
1727           sbitmap_zero (visited_stmts_1);
1728           analyze_matrix_accesses (mi, ssa_var,
1729                                    0, false, visited_stmts_1, true);
1730
1731         }
1732     }
1733   sbitmap_free (visited_stmts_1);
1734 }
1735
1736 /* Used when we want to convert the expression: RESULT = something *
1737    ORIG to RESULT = something * NEW_VAL. If ORIG and NEW_VAL are power
1738    of 2, shift operations can be done, else division and
1739    multiplication.  */
1740
1741 static tree
1742 compute_offset (HOST_WIDE_INT orig, HOST_WIDE_INT new_val, tree result)
1743 {
1744
1745   int x, y;
1746   tree result1, ratio, log, orig_tree, new_tree;
1747
1748   x = exact_log2 (orig);
1749   y = exact_log2 (new_val);
1750
1751   if (x != -1 && y != -1)
1752     {
1753       if (x == y)
1754         return result;
1755       else if (x > y)
1756         {
1757           log = build_int_cst (TREE_TYPE (result), x - y);
1758           result1 =
1759             fold_build2 (LSHIFT_EXPR, TREE_TYPE (result), result, log);
1760           return result1;
1761         }
1762       log = build_int_cst (TREE_TYPE (result), y - x);
1763       result1 = fold_build2 (RSHIFT_EXPR, TREE_TYPE (result), result, log);
1764
1765       return result1;
1766     }
1767   orig_tree = build_int_cst (TREE_TYPE (result), orig);
1768   new_tree = build_int_cst (TREE_TYPE (result), new_val);
1769   ratio = fold_build2 (TRUNC_DIV_EXPR, TREE_TYPE (result), result, orig_tree);
1770   result1 = fold_build2 (MULT_EXPR, TREE_TYPE (result), ratio, new_tree);
1771
1772   return result1;
1773 }
1774
1775
1776 /* We know that we are allowed to perform matrix flattening (according to the
1777    escape analysis), so we traverse the use-def chains of the SSA vars
1778    defined by the global variables pointing to the matrices of our interest.
1779    in each use of the SSA we calculate the offset from the base address
1780    according to the following equation:
1781
1782      a[I1][I2]...[Ik] , where D1..Dk is the length of each dimension and the
1783      escaping level is m <= k, and a' is the new allocated matrix,
1784      will be translated to :
1785
1786        b[I(m+1)]...[Ik]
1787
1788        where
1789        b = a' + I1*D2...*Dm + I2*D3...Dm + ... + Im
1790                                                       */
1791
1792 static int
1793 transform_access_sites (void **slot, void *data ATTRIBUTE_UNUSED)
1794 {
1795   gimple_stmt_iterator gsi;
1796   struct matrix_info *mi = (struct matrix_info *) *slot;
1797   int min_escape_l = mi->min_indirect_level_escape;
1798   struct access_site_info *acc_info;
1799   enum tree_code code;
1800   int i;
1801
1802   if (min_escape_l < 2 || !mi->access_l)
1803     return 1;
1804   for (i = 0; VEC_iterate (access_site_info_p, mi->access_l, i, acc_info);
1805        i++)
1806     {
1807       /* This is possible because we collect the access sites before
1808          we determine the final minimum indirection level.  */
1809       if (acc_info->level >= min_escape_l)
1810         {
1811           free (acc_info);
1812           continue;
1813         }
1814       if (acc_info->is_alloc)
1815         {
1816           if (acc_info->level >= 0 && gimple_bb (acc_info->stmt))
1817             {
1818               ssa_op_iter iter;
1819               tree def;
1820               gimple stmt = acc_info->stmt;
1821               tree lhs;
1822
1823               FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_DEF)
1824                 mark_sym_for_renaming (SSA_NAME_VAR (def));
1825               gsi = gsi_for_stmt (stmt);
1826               gcc_assert (is_gimple_assign (acc_info->stmt));
1827               lhs = gimple_assign_lhs (acc_info->stmt);
1828               if (TREE_CODE (lhs) == SSA_NAME
1829                   && acc_info->level < min_escape_l - 1)
1830                 {
1831                   imm_use_iterator imm_iter;
1832                   use_operand_p use_p;
1833                   gimple use_stmt;
1834
1835                   FOR_EACH_IMM_USE_STMT (use_stmt, imm_iter, lhs)
1836                     FOR_EACH_IMM_USE_ON_STMT (use_p, imm_iter)
1837                   {
1838                     tree rhs, tmp;
1839                     gimple new_stmt;
1840
1841                     gcc_assert (gimple_assign_rhs_code (acc_info->stmt)
1842                                 == MEM_REF);
1843                     /* Emit convert statement to convert to type of use.  */
1844                     tmp = create_tmp_var (TREE_TYPE (lhs), "new");
1845                     add_referenced_var (tmp);
1846                     rhs = gimple_assign_rhs1 (acc_info->stmt);
1847                     rhs = fold_convert (TREE_TYPE (tmp),
1848                                         TREE_OPERAND (rhs, 0));
1849                     new_stmt = gimple_build_assign (tmp, rhs);
1850                     tmp = make_ssa_name (tmp, new_stmt);
1851                     gimple_assign_set_lhs (new_stmt, tmp);
1852                     gsi = gsi_for_stmt (acc_info->stmt);
1853                     gsi_insert_after (&gsi, new_stmt, GSI_SAME_STMT);
1854                     SET_USE (use_p, tmp);
1855                   }
1856                 }
1857               if (acc_info->level < min_escape_l - 1)
1858                 gsi_remove (&gsi, true);
1859             }
1860           free (acc_info);
1861           continue;
1862         }
1863       code = gimple_assign_rhs_code (acc_info->stmt);
1864       if (code == MEM_REF
1865           && acc_info->level < min_escape_l - 1)
1866         {
1867           /* Replace the MEM_REF with NOP (cast) usually we are casting
1868              from "pointer to type" to "type".  */
1869           tree t =
1870             build1 (NOP_EXPR, TREE_TYPE (gimple_assign_rhs1 (acc_info->stmt)),
1871                     TREE_OPERAND (gimple_assign_rhs1 (acc_info->stmt), 0));
1872           gimple_assign_set_rhs_code (acc_info->stmt, NOP_EXPR);
1873           gimple_assign_set_rhs1 (acc_info->stmt, t);
1874         }
1875       else if (code == POINTER_PLUS_EXPR
1876                && acc_info->level < (min_escape_l))
1877         {
1878           imm_use_iterator imm_iter;
1879           use_operand_p use_p;
1880
1881           tree offset;
1882           int k = acc_info->level;
1883           tree num_elements, total_elements;
1884           tree tmp1;
1885           tree d_size = mi->dimension_size[k];
1886
1887           /* We already make sure in the analysis that the first operand
1888              is the base and the second is the offset.  */
1889           offset = acc_info->offset;
1890           if (mi->dim_map[k] == min_escape_l - 1)
1891             {
1892               if (!check_transpose_p || mi->is_transposed_p == false)
1893                 tmp1 = offset;
1894               else
1895                 {
1896                   tree new_offset;
1897
1898                   new_offset =
1899                     compute_offset (mi->dimension_type_size[min_escape_l],
1900                                     mi->dimension_type_size[k + 1], offset);
1901
1902                   total_elements = new_offset;
1903                   if (new_offset != offset)
1904                     {
1905                       gsi = gsi_for_stmt (acc_info->stmt);
1906                       tmp1 = force_gimple_operand_gsi (&gsi, total_elements,
1907                                                        true, NULL,
1908                                                        true, GSI_SAME_STMT);
1909                     }
1910                   else
1911                     tmp1 = offset;
1912                 }
1913             }
1914           else
1915             {
1916               d_size = mi->dimension_size[mi->dim_map[k] + 1];
1917               num_elements =
1918                 fold_build2 (MULT_EXPR, sizetype, fold_convert (sizetype, acc_info->index),
1919                             fold_convert (sizetype, d_size));
1920               add_referenced_var (d_size);
1921               gsi = gsi_for_stmt (acc_info->stmt);
1922               tmp1 = force_gimple_operand_gsi (&gsi, num_elements, true,
1923                                                NULL, true, GSI_SAME_STMT);
1924             }
1925           /* Replace the offset if needed.  */
1926           if (tmp1 != offset)
1927             {
1928               if (TREE_CODE (offset) == SSA_NAME)
1929                 {
1930                   gimple use_stmt;
1931
1932                   FOR_EACH_IMM_USE_STMT (use_stmt, imm_iter, offset)
1933                     FOR_EACH_IMM_USE_ON_STMT (use_p, imm_iter)
1934                       if (use_stmt == acc_info->stmt)
1935                         SET_USE (use_p, tmp1);
1936                 }
1937               else
1938                 {
1939                   gcc_assert (TREE_CODE (offset) == INTEGER_CST);
1940                   gimple_assign_set_rhs2 (acc_info->stmt, tmp1);
1941                   update_stmt (acc_info->stmt);
1942                 }
1943             }
1944         }
1945       /* ??? meanwhile this happens because we record the same access
1946          site more than once; we should be using a hash table to
1947          avoid this and insert the STMT of the access site only
1948          once.
1949          else
1950          gcc_unreachable (); */
1951       free (acc_info);
1952     }
1953   VEC_free (access_site_info_p, heap, mi->access_l);
1954
1955   update_ssa (TODO_update_ssa);
1956 #ifdef ENABLE_CHECKING
1957   verify_ssa (true);
1958 #endif
1959   return 1;
1960 }
1961
1962 /* Sort A array of counts. Arrange DIM_MAP to reflect the new order.  */
1963
1964 static void
1965 sort_dim_hot_level (gcov_type * a, int *dim_map, int n)
1966 {
1967   int i, j, tmp1;
1968   gcov_type tmp;
1969
1970   for (i = 0; i < n - 1; i++)
1971     {
1972       for (j = 0; j < n - 1 - i; j++)
1973         {
1974           if (a[j + 1] < a[j])
1975             {
1976               tmp = a[j];       /* swap a[j] and a[j+1]      */
1977               a[j] = a[j + 1];
1978               a[j + 1] = tmp;
1979               tmp1 = dim_map[j];
1980               dim_map[j] = dim_map[j + 1];
1981               dim_map[j + 1] = tmp1;
1982             }
1983         }
1984     }
1985 }
1986
1987 /* Replace multiple mallocs (one for each dimension) to one malloc
1988    with the size of DIM1*DIM2*...*DIMN*size_of_element
1989    Make sure that we hold the size in the malloc site inside a
1990    new global variable; this way we ensure that the size doesn't
1991    change and it is accessible from all the other functions that
1992    uses the matrix.  Also, the original calls to free are deleted,
1993    and replaced by a new call to free the flattened matrix.  */
1994
1995 static int
1996 transform_allocation_sites (void **slot, void *data ATTRIBUTE_UNUSED)
1997 {
1998   int i;
1999   struct matrix_info *mi;
2000   tree type, oldfn, prev_dim_size;
2001   gimple call_stmt_0, use_stmt;
2002   struct cgraph_node *c_node;
2003   struct cgraph_edge *e;
2004   gimple_stmt_iterator gsi;
2005   struct malloc_call_data mcd = {NULL, NULL_TREE, NULL_TREE};
2006   HOST_WIDE_INT element_size;
2007
2008   imm_use_iterator imm_iter;
2009   use_operand_p use_p;
2010   tree old_size_0, tmp;
2011   int min_escape_l;
2012   int id;
2013
2014   mi = (struct matrix_info *) *slot;
2015
2016   min_escape_l = mi->min_indirect_level_escape;
2017
2018   if (!mi->malloc_for_level)
2019     mi->min_indirect_level_escape = 0;
2020
2021   if (mi->min_indirect_level_escape < 2)
2022     return 1;
2023
2024   mi->dim_map = (int *) xcalloc (mi->min_indirect_level_escape, sizeof (int));
2025   for (i = 0; i < mi->min_indirect_level_escape; i++)
2026     mi->dim_map[i] = i;
2027   if (check_transpose_p)
2028     {
2029       int i;
2030
2031       if (dump_file)
2032         {
2033           fprintf (dump_file, "Matrix %s:\n", get_name (mi->decl));
2034           for (i = 0; i < min_escape_l; i++)
2035             {
2036               fprintf (dump_file, "dim %d before sort ", i);
2037               if (mi->dim_hot_level)
2038                 fprintf (dump_file,
2039                          "count is  " HOST_WIDEST_INT_PRINT_DEC "  \n",
2040                          mi->dim_hot_level[i]);
2041             }
2042         }
2043       sort_dim_hot_level (mi->dim_hot_level, mi->dim_map,
2044                           mi->min_indirect_level_escape);
2045       if (dump_file)
2046         for (i = 0; i < min_escape_l; i++)
2047           {
2048             fprintf (dump_file, "dim %d after sort\n", i);
2049             if (mi->dim_hot_level)
2050               fprintf (dump_file, "count is  " HOST_WIDE_INT_PRINT_DEC
2051                        "  \n", (HOST_WIDE_INT) mi->dim_hot_level[i]);
2052           }
2053       for (i = 0; i < mi->min_indirect_level_escape; i++)
2054         {
2055           if (dump_file)
2056             fprintf (dump_file, "dim_map[%d] after sort %d\n", i,
2057                      mi->dim_map[i]);
2058           if (mi->dim_map[i] != i)
2059             {
2060               if (dump_file)
2061                 fprintf (dump_file,
2062                          "Transposed dimensions: dim %d is now dim %d\n",
2063                          mi->dim_map[i], i);
2064               mi->is_transposed_p = true;
2065             }
2066         }
2067     }
2068   else
2069     {
2070       for (i = 0; i < mi->min_indirect_level_escape; i++)
2071         mi->dim_map[i] = i;
2072     }
2073   /* Call statement of allocation site of level 0.  */
2074   call_stmt_0 = mi->malloc_for_level[0];
2075
2076   /* Finds the correct malloc information.  */
2077   collect_data_for_malloc_call (call_stmt_0, &mcd);
2078
2079   mi->dimension_size[0] = mcd.size_var;
2080   mi->dimension_size_orig[0] = mcd.size_var;
2081   /* Make sure that the variables in the size expression for
2082      all the dimensions (above level 0) aren't modified in
2083      the allocation function.  */
2084   for (i = 1; i < mi->min_indirect_level_escape; i++)
2085     {
2086       tree t;
2087       check_var_data data;
2088
2089       /* mi->dimension_size must contain the expression of the size calculated
2090          in check_allocation_function.  */
2091       gcc_assert (mi->dimension_size[i]);
2092
2093       data.fn = mi->allocation_function_decl;
2094       data.stmt = NULL;
2095       t = walk_tree_without_duplicates (&(mi->dimension_size[i]),
2096                                         check_var_notmodified_p,
2097                                         &data);
2098       if (t != NULL_TREE)
2099         {
2100           mark_min_matrix_escape_level (mi, i, data.stmt);
2101           break;
2102         }
2103     }
2104
2105   if (mi->min_indirect_level_escape < 2)
2106     return 1;
2107
2108   /* Since we should make sure that the size expression is available
2109      before the call to malloc of level 0.  */
2110   gsi = gsi_for_stmt (call_stmt_0);
2111
2112   /* Find out the size of each dimension by looking at the malloc
2113      sites and create a global variable to hold it.
2114      We add the assignment to the global before the malloc of level 0.  */
2115
2116   /* To be able to produce gimple temporaries.  */
2117   oldfn = current_function_decl;
2118   current_function_decl = mi->allocation_function_decl;
2119   push_cfun (DECL_STRUCT_FUNCTION (mi->allocation_function_decl));
2120
2121   /* Set the dimension sizes as follows:
2122      DIM_SIZE[i] = DIM_SIZE[n] * ... * DIM_SIZE[i]
2123      where n is the maximum non escaping level.  */
2124   element_size = mi->dimension_type_size[mi->min_indirect_level_escape];
2125   prev_dim_size = NULL_TREE;
2126
2127   for (i = mi->min_indirect_level_escape - 1; i >= 0; i--)
2128     {
2129       tree dim_size, dim_var;
2130       gimple stmt;
2131       tree d_type_size;
2132
2133       /* Now put the size expression in a global variable and initialize it to
2134          the size expression before the malloc of level 0.  */
2135       dim_var =
2136         add_new_static_var (TREE_TYPE
2137                             (mi->dimension_size_orig[mi->dim_map[i]]));
2138       type = TREE_TYPE (mi->dimension_size_orig[mi->dim_map[i]]);
2139
2140       /* DIM_SIZE = MALLOC_SIZE_PARAM / TYPE_SIZE.  */
2141       /* Find which dim ID becomes dim I.  */
2142       for (id = 0; id < mi->min_indirect_level_escape; id++)
2143         if (mi->dim_map[id] == i)
2144           break;
2145        d_type_size =
2146         build_int_cst (type, mi->dimension_type_size[id + 1]);
2147       if (!prev_dim_size)
2148         prev_dim_size = build_int_cst (type, element_size);
2149       if (!check_transpose_p && i == mi->min_indirect_level_escape - 1)
2150         {
2151           dim_size = mi->dimension_size_orig[id];
2152         }
2153       else
2154         {
2155           dim_size =
2156             fold_build2 (TRUNC_DIV_EXPR, type, mi->dimension_size_orig[id],
2157                          d_type_size);
2158
2159           dim_size = fold_build2 (MULT_EXPR, type, dim_size, prev_dim_size);
2160         }
2161       dim_size = force_gimple_operand_gsi (&gsi, dim_size, true, NULL,
2162                                            true, GSI_SAME_STMT);
2163       /* GLOBAL_HOLDING_THE_SIZE = DIM_SIZE.  */
2164       stmt = gimple_build_assign (dim_var, dim_size);
2165       mark_symbols_for_renaming (stmt);
2166       gsi_insert_before (&gsi, stmt, GSI_SAME_STMT);
2167
2168       prev_dim_size = mi->dimension_size[i] = dim_var;
2169     }
2170   update_ssa (TODO_update_ssa);
2171   /* Replace the malloc size argument in the malloc of level 0 to be
2172      the size of all the dimensions.  */
2173   c_node = cgraph_node (mi->allocation_function_decl);
2174   old_size_0 = gimple_call_arg (call_stmt_0, 0);
2175   tmp = force_gimple_operand_gsi (&gsi, mi->dimension_size[0], true,
2176                                   NULL, true, GSI_SAME_STMT);
2177   if (TREE_CODE (old_size_0) == SSA_NAME)
2178     {
2179       FOR_EACH_IMM_USE_STMT (use_stmt, imm_iter, old_size_0)
2180         FOR_EACH_IMM_USE_ON_STMT (use_p, imm_iter)
2181         if (use_stmt == call_stmt_0)
2182         SET_USE (use_p, tmp);
2183     }
2184   /* When deleting the calls to malloc we need also to remove the edge from
2185      the call graph to keep it consistent.  Notice that cgraph_edge may
2186      create a new node in the call graph if there is no node for the given
2187      declaration; this shouldn't be the case but currently there is no way to
2188      check this outside of "cgraph.c".  */
2189   for (i = 1; i < mi->min_indirect_level_escape; i++)
2190     {
2191       gimple_stmt_iterator gsi;
2192
2193       gimple call_stmt = mi->malloc_for_level[i];
2194       gcc_assert (is_gimple_call (call_stmt));
2195       e = cgraph_edge (c_node, call_stmt);
2196       gcc_assert (e);
2197       cgraph_remove_edge (e);
2198       gsi = gsi_for_stmt (call_stmt);
2199       /* Remove the call stmt.  */
2200       gsi_remove (&gsi, true);
2201       /* Remove the assignment of the allocated area.  */
2202       FOR_EACH_IMM_USE_STMT (use_stmt, imm_iter,
2203                              gimple_call_lhs (call_stmt))
2204       {
2205         gsi = gsi_for_stmt (use_stmt);
2206         gsi_remove (&gsi, true);
2207       }
2208     }
2209   update_ssa (TODO_update_ssa);
2210 #ifdef ENABLE_CHECKING
2211   verify_ssa (true);
2212 #endif
2213   /* Delete the calls to free.  */
2214   for (i = 1; i < mi->min_indirect_level_escape; i++)
2215     {
2216       gimple_stmt_iterator gsi;
2217
2218       /* ??? wonder why this case is possible but we failed on it once.  */
2219       if (!mi->free_stmts[i].stmt)
2220         continue;
2221
2222       c_node = cgraph_node (mi->free_stmts[i].func);
2223       gcc_assert (is_gimple_call (mi->free_stmts[i].stmt));
2224       e = cgraph_edge (c_node, mi->free_stmts[i].stmt);
2225       gcc_assert (e);
2226       cgraph_remove_edge (e);
2227       current_function_decl = mi->free_stmts[i].func;
2228       set_cfun (DECL_STRUCT_FUNCTION (mi->free_stmts[i].func));
2229       gsi = gsi_for_stmt (mi->free_stmts[i].stmt);
2230       gsi_remove (&gsi, true);
2231     }
2232   /* Return to the previous situation.  */
2233   current_function_decl = oldfn;
2234   pop_cfun ();
2235   return 1;
2236
2237 }
2238
2239
2240 /* Print out the results of the escape analysis.  */
2241 static int
2242 dump_matrix_reorg_analysis (void **slot, void *data ATTRIBUTE_UNUSED)
2243 {
2244   struct matrix_info *mi = (struct matrix_info *) *slot;
2245
2246   if (!dump_file)
2247     return 1;
2248   fprintf (dump_file, "Matrix \"%s\"; Escaping Level: %d, Num Dims: %d,",
2249            get_name (mi->decl), mi->min_indirect_level_escape, mi->num_dims);
2250   fprintf (dump_file, " Malloc Dims: %d, ", mi->max_malloced_level);
2251   fprintf (dump_file, "\n");
2252   if (mi->min_indirect_level_escape >= 2)
2253     fprintf (dump_file, "Flattened %d dimensions \n",
2254              mi->min_indirect_level_escape);
2255   return 1;
2256 }
2257
2258 /* Perform matrix flattening.  */
2259
2260 static unsigned int
2261 matrix_reorg (void)
2262 {
2263   struct cgraph_node *node;
2264
2265   if (profile_info)
2266     check_transpose_p = true;
2267   else
2268     check_transpose_p = false;
2269   /* If there are hand written vectors, we skip this optimization.  */
2270   for (node = cgraph_nodes; node; node = node->next)
2271     if (!may_flatten_matrices (node))
2272       return 0;
2273   matrices_to_reorg = htab_create (37, mtt_info_hash, mtt_info_eq, mat_free);
2274   /* Find and record all potential matrices in the program.  */
2275   find_matrices_decl ();
2276   /* Analyze the accesses of the matrices (escaping analysis).  */
2277   for (node = cgraph_nodes; node; node = node->next)
2278     if (node->analyzed)
2279       {
2280         tree temp_fn;
2281
2282         temp_fn = current_function_decl;
2283         current_function_decl = node->decl;
2284         push_cfun (DECL_STRUCT_FUNCTION (node->decl));
2285         bitmap_obstack_initialize (NULL);
2286         gimple_register_cfg_hooks ();
2287
2288         if (!gimple_in_ssa_p (cfun))
2289           {
2290             free_dominance_info (CDI_DOMINATORS);
2291             free_dominance_info (CDI_POST_DOMINATORS);
2292             pop_cfun ();
2293             current_function_decl = temp_fn;
2294             bitmap_obstack_release (NULL);
2295
2296             return 0;
2297           }
2298
2299 #ifdef ENABLE_CHECKING
2300         verify_flow_info ();
2301 #endif
2302
2303         if (!matrices_to_reorg)
2304           {
2305             free_dominance_info (CDI_DOMINATORS);
2306             free_dominance_info (CDI_POST_DOMINATORS);
2307             pop_cfun ();
2308             current_function_decl = temp_fn;
2309             bitmap_obstack_release (NULL);
2310
2311             return 0;
2312           }
2313
2314         /* Create htap for phi nodes.  */
2315         htab_mat_acc_phi_nodes = htab_create (37, mat_acc_phi_hash,
2316                                               mat_acc_phi_eq, free);
2317         if (!check_transpose_p)
2318           find_sites_in_func (false);
2319         else
2320           {
2321             find_sites_in_func (true);
2322             loop_optimizer_init (LOOPS_NORMAL);
2323             if (current_loops)
2324               scev_initialize ();
2325             htab_traverse (matrices_to_reorg, analyze_transpose, NULL);
2326             if (current_loops)
2327               {
2328                 scev_finalize ();
2329                 loop_optimizer_finalize ();
2330                 current_loops = NULL;
2331               }
2332           }
2333         /* If the current function is the allocation function for any of
2334            the matrices we check its allocation and the escaping level.  */
2335         htab_traverse (matrices_to_reorg, check_allocation_function, NULL);
2336         free_dominance_info (CDI_DOMINATORS);
2337         free_dominance_info (CDI_POST_DOMINATORS);
2338         pop_cfun ();
2339         current_function_decl = temp_fn;
2340         bitmap_obstack_release (NULL);
2341       }
2342   htab_traverse (matrices_to_reorg, transform_allocation_sites, NULL);
2343   /* Now transform the accesses.  */
2344   for (node = cgraph_nodes; node; node = node->next)
2345     if (node->analyzed)
2346       {
2347         /* Remember that allocation sites have been handled.  */
2348         tree temp_fn;
2349
2350         temp_fn = current_function_decl;
2351         current_function_decl = node->decl;
2352         push_cfun (DECL_STRUCT_FUNCTION (node->decl));
2353         bitmap_obstack_initialize (NULL);
2354         gimple_register_cfg_hooks ();
2355         record_all_accesses_in_func ();
2356         htab_traverse (matrices_to_reorg, transform_access_sites, NULL);
2357         cgraph_rebuild_references ();
2358         free_dominance_info (CDI_DOMINATORS);
2359         free_dominance_info (CDI_POST_DOMINATORS);
2360         pop_cfun ();
2361         current_function_decl = temp_fn;
2362         bitmap_obstack_release (NULL);
2363       }
2364   htab_traverse (matrices_to_reorg, dump_matrix_reorg_analysis, NULL);
2365
2366   current_function_decl = NULL;
2367   set_cfun (NULL);
2368   matrices_to_reorg = NULL;
2369   return 0;
2370 }
2371
2372
2373 /* The condition for matrix flattening to be performed.  */
2374 static bool
2375 gate_matrix_reorg (void)
2376 {
2377   return flag_ipa_matrix_reorg && flag_whole_program;
2378 }
2379
2380 struct simple_ipa_opt_pass pass_ipa_matrix_reorg =
2381 {
2382  {
2383   SIMPLE_IPA_PASS,
2384   "matrix-reorg",               /* name */
2385   gate_matrix_reorg,            /* gate */
2386   matrix_reorg,                 /* execute */
2387   NULL,                         /* sub */
2388   NULL,                         /* next */
2389   0,                            /* static_pass_number */
2390   TV_NONE,                      /* tv_id */
2391   0,                            /* properties_required */
2392   0,                            /* properties_provided */
2393   0,                            /* properties_destroyed */
2394   0,                            /* todo_flags_start */
2395   TODO_dump_cgraph | TODO_dump_func     /* todo_flags_finish */
2396  }
2397 };