OSDN Git Service

* config/i386/sse.md (*<sse>_maskcmp<mode>3_comm): New pattern.
[pf3gnuchains/gcc-fork.git] / gcc / ipa-split.c
1 /* Function splitting pass
2    Copyright (C) 2010, 2011
3    Free Software Foundation, Inc.
4    Contributed by Jan Hubicka  <jh@suse.cz>
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 /* The purpose of this pass is to split function bodies to improve
23    inlining.  I.e. for function of the form:
24
25    func (...)
26      {
27        if (cheap_test)
28          something_small
29        else
30          something_big
31      }
32
33    Produce:
34
35    func.part (...)
36      {
37         something_big
38      }
39
40    func (...)
41      {
42        if (cheap_test)
43          something_small
44        else
45          func.part (...);
46      }
47
48    When func becomes inlinable and when cheap_test is often true, inlining func,
49    but not fund.part leads to performance improvement similar as inlining
50    original func while the code size growth is smaller.
51
52    The pass is organized in three stages:
53    1) Collect local info about basic block into BB_INFO structure and
54       compute function body estimated size and time.
55    2) Via DFS walk find all possible basic blocks where we can split
56       and chose best one.
57    3) If split point is found, split at the specified BB by creating a clone
58       and updating function to call it.  
59
60    The decisions what functions to split are in execute_split_functions
61    and consider_split.  
62
63    There are several possible future improvements for this pass including:
64
65    1) Splitting to break up large functions
66    2) Splitting to reduce stack frame usage
67    3) Allow split part of function to use values computed in the header part.
68       The values needs to be passed to split function, perhaps via same
69       interface as for nested functions or as argument.
70    4) Support for simple rematerialization.  I.e. when split part use
71       value computed in header from function parameter in very cheap way, we
72       can just recompute it.
73    5) Support splitting of nested functions.
74    6) Support non-SSA arguments.  
75    7) There is nothing preventing us from producing multiple parts of single function
76       when needed or splitting also the parts.  */
77
78 #include "config.h"
79 #include "system.h"
80 #include "coretypes.h"
81 #include "tree.h"
82 #include "target.h"
83 #include "cgraph.h"
84 #include "ipa-prop.h"
85 #include "tree-flow.h"
86 #include "tree-pass.h"
87 #include "flags.h"
88 #include "timevar.h"
89 #include "diagnostic.h"
90 #include "tree-dump.h"
91 #include "tree-inline.h"
92 #include "fibheap.h"
93 #include "params.h"
94 #include "gimple-pretty-print.h"
95 #include "ipa-inline.h"
96
97 /* Per basic block info.  */
98
99 typedef struct
100 {
101   unsigned int size;
102   unsigned int time;
103 } bb_info;
104 DEF_VEC_O(bb_info);
105 DEF_VEC_ALLOC_O(bb_info,heap);
106
107 static VEC(bb_info, heap) *bb_info_vec;
108
109 /* Description of split point.  */
110
111 struct split_point
112 {
113   /* Size of the partitions.  */
114   unsigned int header_time, header_size, split_time, split_size;
115
116   /* SSA names that need to be passed into spit function.  */
117   bitmap ssa_names_to_pass;
118
119   /* Basic block where we split (that will become entry point of new function.  */
120   basic_block entry_bb;
121
122   /* Basic blocks we are splitting away.  */
123   bitmap split_bbs;
124
125   /* True when return value is computed on split part and thus it needs
126      to be returned.  */
127   bool split_part_set_retval;
128 };
129
130 /* Best split point found.  */
131
132 struct split_point best_split_point;
133
134 static tree find_retval (basic_block return_bb);
135
136 /* Callback for walk_stmt_load_store_addr_ops.  If T is non-SSA automatic
137    variable, check it if it is present in bitmap passed via DATA.  */
138
139 static bool
140 test_nonssa_use (gimple stmt ATTRIBUTE_UNUSED, tree t, void *data)
141 {
142   t = get_base_address (t);
143
144   if (!t || is_gimple_reg (t))
145     return false;
146
147   if (TREE_CODE (t) == PARM_DECL
148       || (TREE_CODE (t) == VAR_DECL
149           && auto_var_in_fn_p (t, current_function_decl))
150       || TREE_CODE (t) == RESULT_DECL
151       || TREE_CODE (t) == LABEL_DECL)
152     return bitmap_bit_p ((bitmap)data, DECL_UID (t));
153
154   /* For DECL_BY_REFERENCE, the return value is actually a pointer.  We want
155      to pretend that the value pointed to is actual result decl.  */
156   if ((TREE_CODE (t) == MEM_REF || INDIRECT_REF_P (t))
157       && TREE_CODE (TREE_OPERAND (t, 0)) == SSA_NAME
158       && TREE_CODE (SSA_NAME_VAR (TREE_OPERAND (t, 0))) == RESULT_DECL
159       && DECL_BY_REFERENCE (DECL_RESULT (current_function_decl)))
160     return
161       bitmap_bit_p ((bitmap)data,
162                     DECL_UID (DECL_RESULT (current_function_decl)));
163
164   return false;
165 }
166
167 /* Dump split point CURRENT.  */
168
169 static void
170 dump_split_point (FILE * file, struct split_point *current)
171 {
172   fprintf (file,
173            "Split point at BB %i\n"
174            "  header time: %i header size: %i\n"
175            "  split time: %i split size: %i\n  bbs: ",
176            current->entry_bb->index, current->header_time,
177            current->header_size, current->split_time, current->split_size);
178   dump_bitmap (file, current->split_bbs);
179   fprintf (file, "  SSA names to pass: ");
180   dump_bitmap (file, current->ssa_names_to_pass);
181 }
182
183 /* Look for all BBs in header that might lead to the split part and verify
184    that they are not defining any non-SSA var used by the split part.
185    Parameters are the same as for consider_split.  */
186
187 static bool
188 verify_non_ssa_vars (struct split_point *current, bitmap non_ssa_vars,
189                      basic_block return_bb)
190 {
191   bitmap seen = BITMAP_ALLOC (NULL);
192   VEC (basic_block,heap) *worklist = NULL;
193   edge e;
194   edge_iterator ei;
195   bool ok = true;
196
197   FOR_EACH_EDGE (e, ei, current->entry_bb->preds)
198     if (e->src != ENTRY_BLOCK_PTR
199         && !bitmap_bit_p (current->split_bbs, e->src->index))
200       {
201         VEC_safe_push (basic_block, heap, worklist, e->src);
202         bitmap_set_bit (seen, e->src->index);
203       }
204
205   while (!VEC_empty (basic_block, worklist))
206     {
207       gimple_stmt_iterator bsi;
208       basic_block bb = VEC_pop (basic_block, worklist);
209
210       FOR_EACH_EDGE (e, ei, bb->preds)
211         if (e->src != ENTRY_BLOCK_PTR
212             && bitmap_set_bit (seen, e->src->index))
213           {
214             gcc_checking_assert (!bitmap_bit_p (current->split_bbs,
215                                                 e->src->index));
216             VEC_safe_push (basic_block, heap, worklist, e->src);
217           }
218       for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
219         {
220           gimple stmt = gsi_stmt (bsi);
221           if (is_gimple_debug (stmt))
222             continue;
223           if (walk_stmt_load_store_addr_ops
224               (stmt, non_ssa_vars, test_nonssa_use, test_nonssa_use,
225                test_nonssa_use))
226             {
227               ok = false;
228               goto done;
229             }
230           if (gimple_code (stmt) == GIMPLE_LABEL
231               && test_nonssa_use (stmt, gimple_label_label (stmt),
232                                   non_ssa_vars))
233           {
234             ok = false;
235             goto done;
236           }
237         }
238       for (bsi = gsi_start_phis (bb); !gsi_end_p (bsi); gsi_next (&bsi))
239         {
240           if (walk_stmt_load_store_addr_ops
241               (gsi_stmt (bsi), non_ssa_vars, test_nonssa_use, test_nonssa_use,
242                test_nonssa_use))
243             {
244               ok = false;
245               goto done;
246             }
247         }
248       FOR_EACH_EDGE (e, ei, bb->succs)
249         {
250           if (e->dest != return_bb)
251             continue;
252           for (bsi = gsi_start_phis (return_bb); !gsi_end_p (bsi);
253                gsi_next (&bsi))
254             {
255               gimple stmt = gsi_stmt (bsi);
256               tree op = gimple_phi_arg_def (stmt, e->dest_idx);
257
258               if (!is_gimple_reg (gimple_phi_result (stmt)))
259                 continue;
260               if (TREE_CODE (op) != SSA_NAME
261                   && test_nonssa_use (stmt, op, non_ssa_vars))
262                 {
263                   ok = false;
264                   goto done;
265                 }
266             }
267         }
268     }
269 done:
270   BITMAP_FREE (seen);
271   VEC_free (basic_block, heap, worklist);
272   return ok;
273 }
274
275 /* We found an split_point CURRENT.  NON_SSA_VARS is bitmap of all non ssa
276    variables used and RETURN_BB is return basic block.
277    See if we can split function here.  */
278
279 static void
280 consider_split (struct split_point *current, bitmap non_ssa_vars,
281                 basic_block return_bb)
282 {
283   tree parm;
284   unsigned int num_args = 0;
285   unsigned int call_overhead;
286   edge e;
287   edge_iterator ei;
288   gimple_stmt_iterator bsi;
289   unsigned int i;
290   int incoming_freq = 0;
291   tree retval;
292
293   if (dump_file && (dump_flags & TDF_DETAILS))
294     dump_split_point (dump_file, current);
295
296   FOR_EACH_EDGE (e, ei, current->entry_bb->preds)
297     if (!bitmap_bit_p (current->split_bbs, e->src->index))
298       incoming_freq += EDGE_FREQUENCY (e);
299
300   /* Do not split when we would end up calling function anyway.  */
301   if (incoming_freq
302       >= (ENTRY_BLOCK_PTR->frequency
303           * PARAM_VALUE (PARAM_PARTIAL_INLINING_ENTRY_PROBABILITY) / 100))
304     {
305       if (dump_file && (dump_flags & TDF_DETAILS))
306         fprintf (dump_file,
307                  "  Refused: incoming frequency is too large.\n");
308       return;
309     }
310
311   if (!current->header_size)
312     {
313       if (dump_file && (dump_flags & TDF_DETAILS))
314         fprintf (dump_file, "  Refused: header empty\n");
315       return;
316     }
317
318   /* Verify that PHI args on entry are either virtual or all their operands
319      incoming from header are the same.  */
320   for (bsi = gsi_start_phis (current->entry_bb); !gsi_end_p (bsi); gsi_next (&bsi))
321     {
322       gimple stmt = gsi_stmt (bsi);
323       tree val = NULL;
324
325       if (!is_gimple_reg (gimple_phi_result (stmt)))
326         continue;
327       for (i = 0; i < gimple_phi_num_args (stmt); i++)
328         {
329           edge e = gimple_phi_arg_edge (stmt, i);
330           if (!bitmap_bit_p (current->split_bbs, e->src->index))
331             {
332               tree edge_val = gimple_phi_arg_def (stmt, i);
333               if (val && edge_val != val)
334                 {
335                   if (dump_file && (dump_flags & TDF_DETAILS))
336                     fprintf (dump_file,
337                              "  Refused: entry BB has PHI with multiple variants\n");
338                   return;
339                 }
340               val = edge_val;
341             }
342         }
343     }
344
345
346   /* See what argument we will pass to the split function and compute
347      call overhead.  */
348   call_overhead = eni_size_weights.call_cost;
349   for (parm = DECL_ARGUMENTS (current_function_decl); parm;
350        parm = DECL_CHAIN (parm))
351     {
352       if (!is_gimple_reg (parm))
353         {
354           if (bitmap_bit_p (non_ssa_vars, DECL_UID (parm)))
355             {
356               if (dump_file && (dump_flags & TDF_DETAILS))
357                 fprintf (dump_file,
358                          "  Refused: need to pass non-ssa param values\n");
359               return;
360             }
361         }
362       else if (gimple_default_def (cfun, parm)
363                && bitmap_bit_p (current->ssa_names_to_pass,
364                                 SSA_NAME_VERSION (gimple_default_def
365                                                   (cfun, parm))))
366         {
367           if (!VOID_TYPE_P (TREE_TYPE (parm)))
368             call_overhead += estimate_move_cost (TREE_TYPE (parm));
369           num_args++;
370         }
371     }
372   if (!VOID_TYPE_P (TREE_TYPE (current_function_decl)))
373     call_overhead += estimate_move_cost (TREE_TYPE (current_function_decl));
374
375   if (current->split_size <= call_overhead)
376     {
377       if (dump_file && (dump_flags & TDF_DETAILS))
378         fprintf (dump_file,
379                  "  Refused: split size is smaller than call overhead\n");
380       return;
381     }
382   if (current->header_size + call_overhead
383       >= (unsigned int)(DECL_DECLARED_INLINE_P (current_function_decl)
384                         ? MAX_INLINE_INSNS_SINGLE
385                         : MAX_INLINE_INSNS_AUTO))
386     {
387       if (dump_file && (dump_flags & TDF_DETAILS))
388         fprintf (dump_file,
389                  "  Refused: header size is too large for inline candidate\n");
390       return;
391     }
392
393   /* FIXME: we currently can pass only SSA function parameters to the split
394      arguments.  Once parm_adjustment infrastructure is supported by cloning,
395      we can pass more than that.  */
396   if (num_args != bitmap_count_bits (current->ssa_names_to_pass))
397     {
398       
399       if (dump_file && (dump_flags & TDF_DETAILS))
400         fprintf (dump_file,
401                  "  Refused: need to pass non-param values\n");
402       return;
403     }
404
405   /* When there are non-ssa vars used in the split region, see if they
406      are used in the header region.  If so, reject the split.
407      FIXME: we can use nested function support to access both.  */
408   if (!bitmap_empty_p (non_ssa_vars)
409       && !verify_non_ssa_vars (current, non_ssa_vars, return_bb))
410     {
411       if (dump_file && (dump_flags & TDF_DETAILS))
412         fprintf (dump_file,
413                  "  Refused: split part has non-ssa uses\n");
414       return;
415     }
416   /* See if retval used by return bb is computed by header or split part.
417      When it is computed by split part, we need to produce return statement
418      in the split part and add code to header to pass it around.
419
420      This is bit tricky to test:
421        1) When there is no return_bb or no return value, we always pass
422           value around.
423        2) Invariants are always computed by caller.
424        3) For SSA we need to look if defining statement is in header or split part
425        4) For non-SSA we need to look where the var is computed. */
426   retval = find_retval (return_bb);
427   if (!retval)
428     current->split_part_set_retval = true;
429   else if (is_gimple_min_invariant (retval))
430     current->split_part_set_retval = false;
431   /* Special case is value returned by reference we record as if it was non-ssa
432      set to result_decl.  */
433   else if (TREE_CODE (retval) == SSA_NAME
434            && TREE_CODE (SSA_NAME_VAR (retval)) == RESULT_DECL
435            && DECL_BY_REFERENCE (DECL_RESULT (current_function_decl)))
436     current->split_part_set_retval
437        = bitmap_bit_p (non_ssa_vars, DECL_UID (SSA_NAME_VAR (retval)));
438   else if (TREE_CODE (retval) == SSA_NAME)
439     current->split_part_set_retval
440       = (!SSA_NAME_IS_DEFAULT_DEF (retval)
441          && (bitmap_bit_p (current->split_bbs,
442                           gimple_bb (SSA_NAME_DEF_STMT (retval))->index)
443              || gimple_bb (SSA_NAME_DEF_STMT (retval)) == return_bb));
444   else if (TREE_CODE (retval) == PARM_DECL)
445     current->split_part_set_retval = false;
446   else if (TREE_CODE (retval) == VAR_DECL
447            || TREE_CODE (retval) == RESULT_DECL)
448     current->split_part_set_retval
449       = bitmap_bit_p (non_ssa_vars, DECL_UID (retval));
450   else
451     current->split_part_set_retval = true;
452
453   /* split_function fixes up at most one PHI non-virtual PHI node in return_bb,
454      for the return value.  If there are other PHIs, give up.  */
455   if (return_bb != EXIT_BLOCK_PTR)
456     {
457       gimple_stmt_iterator psi;
458
459       for (psi = gsi_start_phis (return_bb); !gsi_end_p (psi); gsi_next (&psi))
460         if (is_gimple_reg (gimple_phi_result (gsi_stmt (psi)))
461             && !(retval
462                  && current->split_part_set_retval
463                  && TREE_CODE (retval) == SSA_NAME
464                  && !DECL_BY_REFERENCE (DECL_RESULT (current_function_decl))
465                  && SSA_NAME_DEF_STMT (retval) == gsi_stmt (psi)))
466           {
467             if (dump_file && (dump_flags & TDF_DETAILS))
468               fprintf (dump_file,
469                        "  Refused: return bb has extra PHIs\n");
470             return;
471           }
472     }
473
474   if (dump_file && (dump_flags & TDF_DETAILS))
475     fprintf (dump_file, "  Accepted!\n");
476
477   /* At the moment chose split point with lowest frequency and that leaves
478      out smallest size of header.
479      In future we might re-consider this heuristics.  */
480   if (!best_split_point.split_bbs
481       || best_split_point.entry_bb->frequency > current->entry_bb->frequency
482       || (best_split_point.entry_bb->frequency == current->entry_bb->frequency
483           && best_split_point.split_size < current->split_size))
484         
485     {
486       if (dump_file && (dump_flags & TDF_DETAILS))
487         fprintf (dump_file, "  New best split point!\n");
488       if (best_split_point.ssa_names_to_pass)
489         {
490           BITMAP_FREE (best_split_point.ssa_names_to_pass);
491           BITMAP_FREE (best_split_point.split_bbs);
492         }
493       best_split_point = *current;
494       best_split_point.ssa_names_to_pass = BITMAP_ALLOC (NULL);
495       bitmap_copy (best_split_point.ssa_names_to_pass,
496                    current->ssa_names_to_pass);
497       best_split_point.split_bbs = BITMAP_ALLOC (NULL);
498       bitmap_copy (best_split_point.split_bbs, current->split_bbs);
499     }
500 }
501
502 /* Return basic block containing RETURN statement.  We allow basic blocks
503    of the form:
504    <retval> = tmp_var;
505    return <retval>
506    but return_bb can not be more complex than this.
507    If nothing is found, return EXIT_BLOCK_PTR.
508
509    When there are multiple RETURN statement, chose one with return value,
510    since that one is more likely shared by multiple code paths.
511
512    Return BB is special, because for function splitting it is the only
513    basic block that is duplicated in between header and split part of the
514    function.
515
516    TODO: We might support multiple return blocks.  */
517
518 static basic_block
519 find_return_bb (void)
520 {
521   edge e;
522   basic_block return_bb = EXIT_BLOCK_PTR;
523   gimple_stmt_iterator bsi;
524   bool found_return = false;
525   tree retval = NULL_TREE;
526
527   if (!single_pred_p (EXIT_BLOCK_PTR))
528     return return_bb;
529
530   e = single_pred_edge (EXIT_BLOCK_PTR);
531   for (bsi = gsi_last_bb (e->src); !gsi_end_p (bsi); gsi_prev (&bsi))
532     {
533       gimple stmt = gsi_stmt (bsi);
534       if (gimple_code (stmt) == GIMPLE_LABEL || is_gimple_debug (stmt))
535         ;
536       else if (gimple_code (stmt) == GIMPLE_ASSIGN
537                && found_return
538                && gimple_assign_single_p (stmt)
539                && (auto_var_in_fn_p (gimple_assign_rhs1 (stmt),
540                                      current_function_decl)
541                    || is_gimple_min_invariant (gimple_assign_rhs1 (stmt)))
542                && retval == gimple_assign_lhs (stmt))
543         ;
544       else if (gimple_code (stmt) == GIMPLE_RETURN)
545         {
546           found_return = true;
547           retval = gimple_return_retval (stmt);
548         }
549       else
550         break;
551     }
552   if (gsi_end_p (bsi) && found_return)
553     return_bb = e->src;
554
555   return return_bb;
556 }
557
558 /* Given return basic block RETURN_BB, see where return value is really
559    stored.  */
560 static tree
561 find_retval (basic_block return_bb)
562 {
563   gimple_stmt_iterator bsi;
564   for (bsi = gsi_start_bb (return_bb); !gsi_end_p (bsi); gsi_next (&bsi))
565     if (gimple_code (gsi_stmt (bsi)) == GIMPLE_RETURN)
566       return gimple_return_retval (gsi_stmt (bsi));
567     else if (gimple_code (gsi_stmt (bsi)) == GIMPLE_ASSIGN)
568       return gimple_assign_rhs1 (gsi_stmt (bsi));
569   return NULL;
570 }
571
572 /* Callback for walk_stmt_load_store_addr_ops.  If T is non-SSA automatic
573    variable, mark it as used in bitmap passed via DATA.
574    Return true when access to T prevents splitting the function.  */
575
576 static bool
577 mark_nonssa_use (gimple stmt ATTRIBUTE_UNUSED, tree t, void *data)
578 {
579   t = get_base_address (t);
580
581   if (!t || is_gimple_reg (t))
582     return false;
583
584   /* At present we can't pass non-SSA arguments to split function.
585      FIXME: this can be relaxed by passing references to arguments.  */
586   if (TREE_CODE (t) == PARM_DECL)
587     {
588       if (dump_file && (dump_flags & TDF_DETAILS))
589         fprintf (dump_file,
590                  "Cannot split: use of non-ssa function parameter.\n");
591       return true;
592     }
593
594   if ((TREE_CODE (t) == VAR_DECL
595        && auto_var_in_fn_p (t, current_function_decl))
596       || TREE_CODE (t) == RESULT_DECL
597       || TREE_CODE (t) == LABEL_DECL)
598     bitmap_set_bit ((bitmap)data, DECL_UID (t));
599
600   /* For DECL_BY_REFERENCE, the return value is actually a pointer.  We want
601      to pretend that the value pointed to is actual result decl.  */
602   if ((TREE_CODE (t) == MEM_REF || INDIRECT_REF_P (t))
603       && TREE_CODE (TREE_OPERAND (t, 0)) == SSA_NAME
604       && TREE_CODE (SSA_NAME_VAR (TREE_OPERAND (t, 0))) == RESULT_DECL
605       && DECL_BY_REFERENCE (DECL_RESULT (current_function_decl)))
606     return
607       bitmap_bit_p ((bitmap)data,
608                     DECL_UID (DECL_RESULT (current_function_decl)));
609
610   return false;
611 }
612
613 /* Compute local properties of basic block BB we collect when looking for
614    split points.  We look for ssa defs and store them in SET_SSA_NAMES,
615    for ssa uses and store them in USED_SSA_NAMES and for any non-SSA automatic
616    vars stored in NON_SSA_VARS.
617
618    When BB has edge to RETURN_BB, collect uses in RETURN_BB too.  
619
620    Return false when BB contains something that prevents it from being put into
621    split function.  */
622
623 static bool
624 visit_bb (basic_block bb, basic_block return_bb,
625           bitmap set_ssa_names, bitmap used_ssa_names,
626           bitmap non_ssa_vars)
627 {
628   gimple_stmt_iterator bsi;
629   edge e;
630   edge_iterator ei;
631   bool can_split = true;
632
633   for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
634     {
635       gimple stmt = gsi_stmt (bsi);
636       tree op;
637       ssa_op_iter iter;
638       tree decl;
639
640       if (is_gimple_debug (stmt))
641         continue;
642
643       /* FIXME: We can split regions containing EH.  We can not however
644          split RESX, EH_DISPATCH and EH_POINTER referring to same region
645          into different partitions.  This would require tracking of
646          EH regions and checking in consider_split_point if they 
647          are not used elsewhere.  */
648       if (gimple_code (stmt) == GIMPLE_RESX)
649         {
650           if (dump_file && (dump_flags & TDF_DETAILS))
651             fprintf (dump_file, "Cannot split: resx.\n");
652           can_split = false;
653         }
654       if (gimple_code (stmt) == GIMPLE_EH_DISPATCH)
655         {
656           if (dump_file && (dump_flags & TDF_DETAILS))
657             fprintf (dump_file, "Cannot split: eh dispatch.\n");
658           can_split = false;
659         }
660
661       /* Check builtins that prevent splitting.  */
662       if (gimple_code (stmt) == GIMPLE_CALL
663           && (decl = gimple_call_fndecl (stmt)) != NULL_TREE
664           && DECL_BUILT_IN (decl)
665           && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
666         switch (DECL_FUNCTION_CODE (decl))
667           {
668           /* FIXME: once we will allow passing non-parm values to split part,
669              we need to be sure to handle correct builtin_stack_save and
670              builtin_stack_restore.  At the moment we are safe; there is no
671              way to store builtin_stack_save result in non-SSA variable
672              since all calls to those are compiler generated.  */
673           case BUILT_IN_APPLY:
674           case BUILT_IN_APPLY_ARGS:
675           case BUILT_IN_VA_START:
676             if (dump_file && (dump_flags & TDF_DETAILS))
677               fprintf (dump_file,
678                        "Cannot split: builtin_apply and va_start.\n");
679             can_split = false;
680             break;
681           case BUILT_IN_EH_POINTER:
682             if (dump_file && (dump_flags & TDF_DETAILS))
683               fprintf (dump_file, "Cannot split: builtin_eh_pointer.\n");
684             can_split = false;
685             break;
686           default:
687             break;
688           }
689
690       FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_DEF)
691         bitmap_set_bit (set_ssa_names, SSA_NAME_VERSION (op));
692       FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_USE)
693         bitmap_set_bit (used_ssa_names, SSA_NAME_VERSION (op));
694       can_split &= !walk_stmt_load_store_addr_ops (stmt, non_ssa_vars,
695                                                    mark_nonssa_use,
696                                                    mark_nonssa_use,
697                                                    mark_nonssa_use);
698     }
699   for (bsi = gsi_start_phis (bb); !gsi_end_p (bsi); gsi_next (&bsi))
700     {
701       gimple stmt = gsi_stmt (bsi);
702       unsigned int i;
703
704       if (is_gimple_debug (stmt))
705         continue;
706       if (!is_gimple_reg (gimple_phi_result (stmt)))
707         continue;
708       bitmap_set_bit (set_ssa_names,
709                       SSA_NAME_VERSION (gimple_phi_result (stmt)));
710       for (i = 0; i < gimple_phi_num_args (stmt); i++)
711         {
712           tree op = gimple_phi_arg_def (stmt, i);
713           if (TREE_CODE (op) == SSA_NAME)
714             bitmap_set_bit (used_ssa_names, SSA_NAME_VERSION (op));
715         }
716       can_split &= !walk_stmt_load_store_addr_ops (stmt, non_ssa_vars,
717                                                    mark_nonssa_use,
718                                                    mark_nonssa_use,
719                                                    mark_nonssa_use);
720     }
721   /* Record also uses coming from PHI operand in return BB.  */
722   FOR_EACH_EDGE (e, ei, bb->succs)
723     if (e->dest == return_bb)
724       {
725         for (bsi = gsi_start_phis (return_bb); !gsi_end_p (bsi); gsi_next (&bsi))
726           {
727             gimple stmt = gsi_stmt (bsi);
728             tree op = gimple_phi_arg_def (stmt, e->dest_idx);
729
730             if (is_gimple_debug (stmt))
731               continue;
732             if (!is_gimple_reg (gimple_phi_result (stmt)))
733               continue;
734             if (TREE_CODE (op) == SSA_NAME)
735               bitmap_set_bit (used_ssa_names, SSA_NAME_VERSION (op));
736             else
737               can_split &= !mark_nonssa_use (stmt, op, non_ssa_vars);
738           }
739       }
740   return can_split;
741 }
742
743 /* Stack entry for recursive DFS walk in find_split_point.  */
744
745 typedef struct
746 {
747   /* Basic block we are examining.  */
748   basic_block bb;
749
750   /* SSA names set and used by the BB and all BBs reachable
751      from it via DFS walk.  */
752   bitmap set_ssa_names, used_ssa_names;
753   bitmap non_ssa_vars;
754
755   /* All BBS visited from this BB via DFS walk.  */
756   bitmap bbs_visited;
757
758   /* Last examined edge in DFS walk.  Since we walk unoriented graph,
759      the value is up to sum of incoming and outgoing edges of BB.  */
760   unsigned int edge_num;
761
762   /* Stack entry index of earliest BB reachable from current BB
763      or any BB visited later in DFS walk.  */
764   int earliest;
765
766   /* Overall time and size of all BBs reached from this BB in DFS walk.  */
767   int overall_time, overall_size;
768
769   /* When false we can not split on this BB.  */
770   bool can_split;
771 } stack_entry;
772 DEF_VEC_O(stack_entry);
773 DEF_VEC_ALLOC_O(stack_entry,heap);
774
775
776 /* Find all articulations and call consider_split on them.
777    OVERALL_TIME and OVERALL_SIZE is time and size of the function.
778
779    We perform basic algorithm for finding an articulation in a graph
780    created from CFG by considering it to be an unoriented graph.
781
782    The articulation is discovered via DFS walk. We collect earliest
783    basic block on stack that is reachable via backward edge.  Articulation
784    is any basic block such that there is no backward edge bypassing it.
785    To reduce stack usage we maintain heap allocated stack in STACK vector.
786    AUX pointer of BB is set to index it appears in the stack or -1 once
787    it is visited and popped off the stack.
788
789    The algorithm finds articulation after visiting the whole component
790    reachable by it.  This makes it convenient to collect information about
791    the component used by consider_split.  */
792
793 static void
794 find_split_points (int overall_time, int overall_size)
795 {
796   stack_entry first;
797   VEC(stack_entry, heap) *stack = NULL;
798   basic_block bb;
799   basic_block return_bb = find_return_bb ();
800   struct split_point current;
801
802   current.header_time = overall_time;
803   current.header_size = overall_size;
804   current.split_time = 0;
805   current.split_size = 0;
806   current.ssa_names_to_pass = BITMAP_ALLOC (NULL);
807
808   first.bb = ENTRY_BLOCK_PTR;
809   first.edge_num = 0;
810   first.overall_time = 0;
811   first.overall_size = 0;
812   first.earliest = INT_MAX;
813   first.set_ssa_names = 0;
814   first.used_ssa_names = 0;
815   first.bbs_visited = 0;
816   VEC_safe_push (stack_entry, heap, stack, &first);
817   ENTRY_BLOCK_PTR->aux = (void *)(intptr_t)-1;
818
819   while (!VEC_empty (stack_entry, stack))
820     {
821       stack_entry *entry = VEC_last (stack_entry, stack);
822
823       /* We are walking an acyclic graph, so edge_num counts
824          succ and pred edges together.  However when considering
825          articulation, we want to have processed everything reachable
826          from articulation but nothing that reaches into it.  */
827       if (entry->edge_num == EDGE_COUNT (entry->bb->succs)
828           && entry->bb != ENTRY_BLOCK_PTR)
829         {
830           int pos = VEC_length (stack_entry, stack);
831           entry->can_split &= visit_bb (entry->bb, return_bb,
832                                         entry->set_ssa_names,
833                                         entry->used_ssa_names,
834                                         entry->non_ssa_vars);
835           if (pos <= entry->earliest && !entry->can_split
836               && dump_file && (dump_flags & TDF_DETAILS))
837             fprintf (dump_file,
838                      "found articulation at bb %i but can not split\n",
839                      entry->bb->index);
840           if (pos <= entry->earliest && entry->can_split)
841              {
842                if (dump_file && (dump_flags & TDF_DETAILS))
843                  fprintf (dump_file, "found articulation at bb %i\n",
844                           entry->bb->index);
845                current.entry_bb = entry->bb;
846                current.ssa_names_to_pass = BITMAP_ALLOC (NULL);
847                bitmap_and_compl (current.ssa_names_to_pass,
848                                  entry->used_ssa_names, entry->set_ssa_names);
849                current.header_time = overall_time - entry->overall_time;
850                current.header_size = overall_size - entry->overall_size;
851                current.split_time = entry->overall_time;
852                current.split_size = entry->overall_size;
853                current.split_bbs = entry->bbs_visited;
854                consider_split (&current, entry->non_ssa_vars, return_bb);
855                BITMAP_FREE (current.ssa_names_to_pass);
856              }
857         }
858       /* Do actual DFS walk.  */
859       if (entry->edge_num
860           < (EDGE_COUNT (entry->bb->succs)
861              + EDGE_COUNT (entry->bb->preds)))
862         {
863           edge e;
864           basic_block dest;
865           if (entry->edge_num < EDGE_COUNT (entry->bb->succs))
866             {
867               e = EDGE_SUCC (entry->bb, entry->edge_num);
868               dest = e->dest;
869             }
870           else
871             {
872               e = EDGE_PRED (entry->bb, entry->edge_num
873                              - EDGE_COUNT (entry->bb->succs));
874               dest = e->src;
875             }
876
877           entry->edge_num++;
878
879           /* New BB to visit, push it to the stack.  */
880           if (dest != return_bb && dest != EXIT_BLOCK_PTR
881               && !dest->aux)
882             {
883               stack_entry new_entry;
884
885               new_entry.bb = dest;
886               new_entry.edge_num = 0;
887               new_entry.overall_time
888                  = VEC_index (bb_info, bb_info_vec, dest->index)->time;
889               new_entry.overall_size
890                  = VEC_index (bb_info, bb_info_vec, dest->index)->size;
891               new_entry.earliest = INT_MAX;
892               new_entry.set_ssa_names = BITMAP_ALLOC (NULL);
893               new_entry.used_ssa_names = BITMAP_ALLOC (NULL);
894               new_entry.bbs_visited = BITMAP_ALLOC (NULL);
895               new_entry.non_ssa_vars = BITMAP_ALLOC (NULL);
896               new_entry.can_split = true;
897               bitmap_set_bit (new_entry.bbs_visited, dest->index);
898               VEC_safe_push (stack_entry, heap, stack, &new_entry);
899               dest->aux = (void *)(intptr_t)VEC_length (stack_entry, stack);
900             }
901           /* Back edge found, record the earliest point.  */
902           else if ((intptr_t)dest->aux > 0
903                    && (intptr_t)dest->aux < entry->earliest)
904             entry->earliest = (intptr_t)dest->aux;
905         }
906       /* We are done with examining the edges.  Pop off the value from stack
907          and merge stuff we accumulate during the walk.  */
908       else if (entry->bb != ENTRY_BLOCK_PTR)
909         {
910           stack_entry *prev = VEC_index (stack_entry, stack,
911                                          VEC_length (stack_entry, stack) - 2);
912
913           entry->bb->aux = (void *)(intptr_t)-1;
914           prev->can_split &= entry->can_split;
915           if (prev->set_ssa_names)
916             {
917               bitmap_ior_into (prev->set_ssa_names, entry->set_ssa_names);
918               bitmap_ior_into (prev->used_ssa_names, entry->used_ssa_names);
919               bitmap_ior_into (prev->bbs_visited, entry->bbs_visited);
920               bitmap_ior_into (prev->non_ssa_vars, entry->non_ssa_vars);
921             }
922           if (prev->earliest > entry->earliest)
923             prev->earliest = entry->earliest;
924           prev->overall_time += entry->overall_time;
925           prev->overall_size += entry->overall_size;
926           BITMAP_FREE (entry->set_ssa_names);
927           BITMAP_FREE (entry->used_ssa_names);
928           BITMAP_FREE (entry->bbs_visited);
929           BITMAP_FREE (entry->non_ssa_vars);
930           VEC_pop (stack_entry, stack);
931         }
932       else
933         VEC_pop (stack_entry, stack);
934     }
935   ENTRY_BLOCK_PTR->aux = NULL;
936   FOR_EACH_BB (bb)
937     bb->aux = NULL;
938   VEC_free (stack_entry, heap, stack);
939   BITMAP_FREE (current.ssa_names_to_pass);
940 }
941
942 /* Split function at SPLIT_POINT.  */
943
944 static void
945 split_function (struct split_point *split_point)
946 {
947   VEC (tree, heap) *args_to_pass = NULL;
948   bitmap args_to_skip = BITMAP_ALLOC (NULL);
949   tree parm;
950   int num = 0;
951   struct cgraph_node *node;
952   basic_block return_bb = find_return_bb ();
953   basic_block call_bb;
954   gimple_stmt_iterator gsi;
955   gimple call;
956   edge e;
957   edge_iterator ei;
958   tree retval = NULL, real_retval = NULL;
959   bool split_part_return_p = false;
960   gimple last_stmt = NULL;
961   bool conv_needed = false;
962   unsigned int i;
963   tree arg;
964
965   if (dump_file)
966     {
967       fprintf (dump_file, "\n\nSplitting function at:\n");
968       dump_split_point (dump_file, split_point);
969     }
970
971   /* Collect the parameters of new function and args_to_skip bitmap.  */
972   for (parm = DECL_ARGUMENTS (current_function_decl);
973        parm; parm = DECL_CHAIN (parm), num++)
974     if (!is_gimple_reg (parm)
975         || !gimple_default_def (cfun, parm)
976         || !bitmap_bit_p (split_point->ssa_names_to_pass,
977                           SSA_NAME_VERSION (gimple_default_def (cfun, parm))))
978       bitmap_set_bit (args_to_skip, num);
979     else
980       {
981         arg = gimple_default_def (cfun, parm);
982         if (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm))
983             != TYPE_MAIN_VARIANT (TREE_TYPE (arg)))
984           {
985             conv_needed = true;
986             arg = fold_convert (DECL_ARG_TYPE (parm), arg);
987           }
988         VEC_safe_push (tree, heap, args_to_pass, arg);
989       }
990
991   /* See if the split function will return.  */
992   FOR_EACH_EDGE (e, ei, return_bb->preds)
993     if (bitmap_bit_p (split_point->split_bbs, e->src->index))
994       break;
995   if (e)
996     split_part_return_p = true;
997
998   /* Add return block to what will become the split function.
999      We do not return; no return block is needed.  */
1000   if (!split_part_return_p)
1001     ;
1002   /* We have no return block, so nothing is needed.  */
1003   else if (return_bb == EXIT_BLOCK_PTR)
1004     ;
1005   /* When we do not want to return value, we need to construct
1006      new return block with empty return statement.
1007      FIXME: Once we are able to change return type, we should change function
1008      to return void instead of just outputting function with undefined return
1009      value.  For structures this affects quality of codegen.  */
1010   else if (!split_point->split_part_set_retval
1011            && find_retval (return_bb))
1012     {
1013       bool redirected = true;
1014       basic_block new_return_bb = create_basic_block (NULL, 0, return_bb);
1015       gimple_stmt_iterator gsi = gsi_start_bb (new_return_bb);
1016       gsi_insert_after (&gsi, gimple_build_return (NULL), GSI_NEW_STMT);
1017       while (redirected)
1018         {
1019           redirected = false;
1020           FOR_EACH_EDGE (e, ei, return_bb->preds)
1021             if (bitmap_bit_p (split_point->split_bbs, e->src->index))
1022               {
1023                 new_return_bb->count += e->count;
1024                 new_return_bb->frequency += EDGE_FREQUENCY (e);
1025                 redirect_edge_and_branch (e, new_return_bb);
1026                 redirected = true;
1027                 break;
1028               }
1029         }
1030       e = make_edge (new_return_bb, EXIT_BLOCK_PTR, 0);
1031       e->probability = REG_BR_PROB_BASE;
1032       e->count = new_return_bb->count;
1033       bitmap_set_bit (split_point->split_bbs, new_return_bb->index);
1034     }
1035   /* When we pass around the value, use existing return block.  */
1036   else
1037     bitmap_set_bit (split_point->split_bbs, return_bb->index);
1038
1039   /* If RETURN_BB has virtual operand PHIs, they must be removed and the
1040      virtual operand marked for renaming as we change the CFG in a way that
1041      tree-inline is not able to compensate for.
1042
1043      Note this can happen whether or not we have a return value.  If we have
1044      a return value, then RETURN_BB may have PHIs for real operands too.  */
1045   if (return_bb != EXIT_BLOCK_PTR)
1046     {
1047       bool phi_p = false;
1048       for (gsi = gsi_start_phis (return_bb); !gsi_end_p (gsi);)
1049         {
1050           gimple stmt = gsi_stmt (gsi);
1051           if (is_gimple_reg (gimple_phi_result (stmt)))
1052             {
1053               gsi_next (&gsi);
1054               continue;
1055             }
1056           mark_virtual_phi_result_for_renaming (stmt);
1057           remove_phi_node (&gsi, true);
1058           phi_p = true;
1059         }
1060       /* In reality we have to rename the reaching definition of the
1061          virtual operand at return_bb as we will eventually release it
1062          when we remove the code region we outlined.
1063          So we have to rename all immediate virtual uses of that region
1064          if we didn't see a PHI definition yet.  */
1065       /* ???  In real reality we want to set the reaching vdef of the
1066          entry of the SESE region as the vuse of the call and the reaching
1067          vdef of the exit of the SESE region as the vdef of the call.  */
1068       if (!phi_p)
1069         for (gsi = gsi_start_bb (return_bb); !gsi_end_p (gsi); gsi_next (&gsi))
1070           {
1071             gimple stmt = gsi_stmt (gsi);
1072             if (gimple_vuse (stmt))
1073               {
1074                 gimple_set_vuse (stmt, NULL_TREE);
1075                 update_stmt (stmt);
1076               }
1077             if (gimple_vdef (stmt))
1078               break;
1079           }
1080     }
1081
1082   /* Now create the actual clone.  */
1083   rebuild_cgraph_edges ();
1084   node = cgraph_function_versioning (cgraph_get_node (current_function_decl),
1085                                      NULL, NULL,
1086                                      args_to_skip,
1087                                      split_point->split_bbs,
1088                                      split_point->entry_bb, "part");
1089   /* For usual cloning it is enough to clear builtin only when signature
1090      changes.  For partial inlining we however can not expect the part
1091      of builtin implementation to have same semantic as the whole.  */
1092   if (DECL_BUILT_IN (node->decl))
1093     {
1094       DECL_BUILT_IN_CLASS (node->decl) = NOT_BUILT_IN;
1095       DECL_FUNCTION_CODE (node->decl) = (enum built_in_function) 0;
1096     }
1097   cgraph_node_remove_callees (cgraph_get_node (current_function_decl));
1098   if (!split_part_return_p)
1099     TREE_THIS_VOLATILE (node->decl) = 1;
1100   if (dump_file)
1101     dump_function_to_file (node->decl, dump_file, dump_flags);
1102
1103   /* Create the basic block we place call into.  It is the entry basic block
1104      split after last label.  */
1105   call_bb = split_point->entry_bb;
1106   for (gsi = gsi_start_bb (call_bb); !gsi_end_p (gsi);)
1107     if (gimple_code (gsi_stmt (gsi)) == GIMPLE_LABEL)
1108       {
1109         last_stmt = gsi_stmt (gsi);
1110         gsi_next (&gsi);
1111       }
1112     else
1113       break;
1114   e = split_block (split_point->entry_bb, last_stmt);
1115   remove_edge (e);
1116
1117   /* Produce the call statement.  */
1118   gsi = gsi_last_bb (call_bb);
1119   if (conv_needed)
1120     FOR_EACH_VEC_ELT (tree, args_to_pass, i, arg)
1121       if (!is_gimple_val (arg))
1122         {
1123           arg = force_gimple_operand_gsi (&gsi, arg, true, NULL_TREE,
1124                                           false, GSI_NEW_STMT);
1125           VEC_replace (tree, args_to_pass, i, arg);
1126         }
1127   call = gimple_build_call_vec (node->decl, args_to_pass);
1128   gimple_set_block (call, DECL_INITIAL (current_function_decl));
1129
1130   /* We avoid address being taken on any variable used by split part,
1131      so return slot optimization is always possible.  Moreover this is
1132      required to make DECL_BY_REFERENCE work.  */
1133   if (aggregate_value_p (DECL_RESULT (current_function_decl),
1134                          TREE_TYPE (current_function_decl)))
1135     gimple_call_set_return_slot_opt (call, true);
1136
1137   /* Update return value.  This is bit tricky.  When we do not return,
1138      do nothing.  When we return we might need to update return_bb
1139      or produce a new return statement.  */
1140   if (!split_part_return_p)
1141     gsi_insert_after (&gsi, call, GSI_NEW_STMT);
1142   else
1143     {
1144       e = make_edge (call_bb, return_bb,
1145                      return_bb == EXIT_BLOCK_PTR ? 0 : EDGE_FALLTHRU);
1146       e->count = call_bb->count;
1147       e->probability = REG_BR_PROB_BASE;
1148
1149       /* If there is return basic block, see what value we need to store
1150          return value into and put call just before it.  */
1151       if (return_bb != EXIT_BLOCK_PTR)
1152         {
1153           real_retval = retval = find_retval (return_bb);
1154
1155           if (real_retval && split_point->split_part_set_retval)
1156             {
1157               gimple_stmt_iterator psi;
1158
1159               /* See if we need new SSA_NAME for the result.
1160                  When DECL_BY_REFERENCE is true, retval is actually pointer to
1161                  return value and it is constant in whole function.  */
1162               if (TREE_CODE (retval) == SSA_NAME
1163                   && !DECL_BY_REFERENCE (DECL_RESULT (current_function_decl)))
1164                 {
1165                   retval = make_ssa_name (SSA_NAME_VAR (retval), call);
1166
1167                   /* See if there is PHI defining return value.  */
1168                   for (psi = gsi_start_phis (return_bb);
1169                        !gsi_end_p (psi); gsi_next (&psi))
1170                     if (is_gimple_reg (gimple_phi_result (gsi_stmt (psi))))
1171                       break;
1172
1173                   /* When there is PHI, just update its value.  */
1174                   if (TREE_CODE (retval) == SSA_NAME
1175                       && !gsi_end_p (psi))
1176                     add_phi_arg (gsi_stmt (psi), retval, e, UNKNOWN_LOCATION);
1177                   /* Otherwise update the return BB itself.
1178                      find_return_bb allows at most one assignment to return value,
1179                      so update first statement.  */
1180                   else
1181                     {
1182                       gimple_stmt_iterator bsi;
1183                       for (bsi = gsi_start_bb (return_bb); !gsi_end_p (bsi);
1184                            gsi_next (&bsi))
1185                         if (gimple_code (gsi_stmt (bsi)) == GIMPLE_RETURN)
1186                           {
1187                             gimple_return_set_retval (gsi_stmt (bsi), retval);
1188                             break;
1189                           }
1190                         else if (gimple_code (gsi_stmt (bsi)) == GIMPLE_ASSIGN)
1191                           {
1192                             gimple_assign_set_rhs1 (gsi_stmt (bsi), retval);
1193                             break;
1194                           }
1195                       update_stmt (gsi_stmt (bsi));
1196                     }
1197                 }
1198               if (DECL_BY_REFERENCE (DECL_RESULT (current_function_decl)))
1199                 gimple_call_set_lhs (call, build_simple_mem_ref (retval));
1200               else
1201                 gimple_call_set_lhs (call, retval);
1202             }
1203           gsi_insert_after (&gsi, call, GSI_NEW_STMT);
1204         }
1205       /* We don't use return block (there is either no return in function or
1206          multiple of them).  So create new basic block with return statement.
1207          */
1208       else
1209         {
1210           gimple ret;
1211           if (split_point->split_part_set_retval
1212               && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
1213             {
1214               retval = DECL_RESULT (current_function_decl);
1215
1216               /* We use temporary register to hold value when aggregate_value_p
1217                  is false.  Similarly for DECL_BY_REFERENCE we must avoid extra
1218                  copy.  */
1219               if (!aggregate_value_p (retval, TREE_TYPE (current_function_decl))
1220                   && !DECL_BY_REFERENCE (retval))
1221                 retval = create_tmp_reg (TREE_TYPE (retval), NULL);
1222               if (is_gimple_reg (retval))
1223                 {
1224                   /* When returning by reference, there is only one SSA name
1225                      assigned to RESULT_DECL (that is pointer to return value).
1226                      Look it up or create new one if it is missing.  */
1227                   if (DECL_BY_REFERENCE (retval))
1228                     {
1229                       tree retval_name;
1230                       if ((retval_name = gimple_default_def (cfun, retval))
1231                           != NULL)
1232                         retval = retval_name;
1233                       else
1234                         {
1235                           retval_name = make_ssa_name (retval,
1236                                                        gimple_build_nop ());
1237                           set_default_def (retval, retval_name);
1238                           retval = retval_name;
1239                         }
1240                     }
1241                   /* Otherwise produce new SSA name for return value.  */
1242                   else
1243                     retval = make_ssa_name (retval, call);
1244                 }
1245               if (DECL_BY_REFERENCE (DECL_RESULT (current_function_decl)))
1246                 gimple_call_set_lhs (call, build_simple_mem_ref (retval));
1247               else
1248                 gimple_call_set_lhs (call, retval);
1249             }
1250           gsi_insert_after (&gsi, call, GSI_NEW_STMT);
1251           ret = gimple_build_return (retval);
1252           gsi_insert_after (&gsi, ret, GSI_NEW_STMT);
1253         }
1254     }
1255   free_dominance_info (CDI_DOMINATORS);
1256   free_dominance_info (CDI_POST_DOMINATORS);
1257   compute_inline_parameters (node, true);
1258 }
1259
1260 /* Execute function splitting pass.  */
1261
1262 static unsigned int
1263 execute_split_functions (void)
1264 {
1265   gimple_stmt_iterator bsi;
1266   basic_block bb;
1267   int overall_time = 0, overall_size = 0;
1268   int todo = 0;
1269   struct cgraph_node *node = cgraph_get_node (current_function_decl);
1270
1271   if (flags_from_decl_or_type (current_function_decl) & ECF_NORETURN)
1272     {
1273       if (dump_file)
1274         fprintf (dump_file, "Not splitting: noreturn function.\n");
1275       return 0;
1276     }
1277   if (MAIN_NAME_P (DECL_NAME (current_function_decl)))
1278     {
1279       if (dump_file)
1280         fprintf (dump_file, "Not splitting: main function.\n");
1281       return 0;
1282     }
1283   /* This can be relaxed; function might become inlinable after splitting
1284      away the uninlinable part.  */
1285   if (!inline_summary (node)->inlinable)
1286     {
1287       if (dump_file)
1288         fprintf (dump_file, "Not splitting: not inlinable.\n");
1289       return 0;
1290     }
1291   if (DECL_DISREGARD_INLINE_LIMITS (node->decl))
1292     {
1293       if (dump_file)
1294         fprintf (dump_file, "Not splitting: disregarding inline limits.\n");
1295       return 0;
1296     }
1297   /* This can be relaxed; most of versioning tests actually prevents
1298      a duplication.  */
1299   if (!tree_versionable_function_p (current_function_decl))
1300     {
1301       if (dump_file)
1302         fprintf (dump_file, "Not splitting: not versionable.\n");
1303       return 0;
1304     }
1305   /* FIXME: we could support this.  */
1306   if (DECL_STRUCT_FUNCTION (current_function_decl)->static_chain_decl)
1307     {
1308       if (dump_file)
1309         fprintf (dump_file, "Not splitting: nested function.\n");
1310       return 0;
1311     }
1312
1313   /* See if it makes sense to try to split.
1314      It makes sense to split if we inline, that is if we have direct calls to
1315      handle or direct calls are possibly going to appear as result of indirect
1316      inlining or LTO.  Also handle -fprofile-generate as LTO to allow non-LTO
1317      training for LTO -fprofile-use build.
1318
1319      Note that we are not completely conservative about disqualifying functions
1320      called once.  It is possible that the caller is called more then once and
1321      then inlining would still benefit.  */
1322   if ((!node->callers || !node->callers->next_caller)
1323       && !node->address_taken
1324       && (!flag_lto || !node->local.externally_visible))
1325     {
1326       if (dump_file)
1327         fprintf (dump_file, "Not splitting: not called directly "
1328                  "or called once.\n");
1329       return 0;
1330     }
1331
1332   /* FIXME: We can actually split if splitting reduces call overhead.  */
1333   if (!flag_inline_small_functions
1334       && !DECL_DECLARED_INLINE_P (current_function_decl))
1335     {
1336       if (dump_file)
1337         fprintf (dump_file, "Not splitting: not autoinlining and function"
1338                  " is not inline.\n");
1339       return 0;
1340     }
1341
1342   /* Compute local info about basic blocks and determine function size/time.  */
1343   VEC_safe_grow_cleared (bb_info, heap, bb_info_vec, last_basic_block + 1);
1344   memset (&best_split_point, 0, sizeof (best_split_point));
1345   FOR_EACH_BB (bb)
1346     {
1347       int time = 0;
1348       int size = 0;
1349       int freq = compute_call_stmt_bb_frequency (current_function_decl, bb);
1350
1351       if (dump_file && (dump_flags & TDF_DETAILS))
1352         fprintf (dump_file, "Basic block %i\n", bb->index);
1353
1354       for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
1355         {
1356           int this_time, this_size;
1357           gimple stmt = gsi_stmt (bsi);
1358
1359           this_size = estimate_num_insns (stmt, &eni_size_weights);
1360           this_time = estimate_num_insns (stmt, &eni_time_weights) * freq;
1361           size += this_size;
1362           time += this_time;
1363
1364           if (dump_file && (dump_flags & TDF_DETAILS))
1365             {
1366               fprintf (dump_file, "  freq:%6i size:%3i time:%3i ",
1367                        freq, this_size, this_time);
1368               print_gimple_stmt (dump_file, stmt, 0, 0);
1369             }
1370         }
1371       overall_time += time;
1372       overall_size += size;
1373       VEC_index (bb_info, bb_info_vec, bb->index)->time = time;
1374       VEC_index (bb_info, bb_info_vec, bb->index)->size = size;
1375     }
1376   find_split_points (overall_time, overall_size);
1377   if (best_split_point.split_bbs)
1378     {
1379       split_function (&best_split_point);
1380       BITMAP_FREE (best_split_point.ssa_names_to_pass);
1381       BITMAP_FREE (best_split_point.split_bbs);
1382       todo = TODO_update_ssa | TODO_cleanup_cfg;
1383     }
1384   VEC_free (bb_info, heap, bb_info_vec);
1385   bb_info_vec = NULL;
1386   return todo;
1387 }
1388
1389 /* Gate function splitting pass.  When doing profile feedback, we want
1390    to execute the pass after profiling is read.  So disable one in 
1391    early optimization.  */
1392
1393 static bool
1394 gate_split_functions (void)
1395 {
1396   return (flag_partial_inlining
1397           && !profile_arc_flag && !flag_branch_probabilities);
1398 }
1399
1400 struct gimple_opt_pass pass_split_functions =
1401 {
1402  {
1403   GIMPLE_PASS,
1404   "fnsplit",                            /* name */
1405   gate_split_functions,                 /* gate */
1406   execute_split_functions,              /* execute */
1407   NULL,                                 /* sub */
1408   NULL,                                 /* next */
1409   0,                                    /* static_pass_number */
1410   TV_IPA_FNSPLIT,                       /* tv_id */
1411   PROP_cfg,                             /* properties_required */
1412   0,                                    /* properties_provided */
1413   0,                                    /* properties_destroyed */
1414   0,                                    /* todo_flags_start */
1415   TODO_dump_func                        /* todo_flags_finish */
1416  }
1417 };
1418
1419 /* Gate feedback driven function splitting pass.
1420    We don't need to split when profiling at all, we are producing
1421    lousy code anyway.  */
1422
1423 static bool
1424 gate_feedback_split_functions (void)
1425 {
1426   return (flag_partial_inlining
1427           && flag_branch_probabilities);
1428 }
1429
1430 /* Execute function splitting pass.  */
1431
1432 static unsigned int
1433 execute_feedback_split_functions (void)
1434 {
1435   unsigned int retval = execute_split_functions ();
1436   if (retval)
1437     retval |= TODO_rebuild_cgraph_edges;
1438   return retval;
1439 }
1440
1441 struct gimple_opt_pass pass_feedback_split_functions =
1442 {
1443  {
1444   GIMPLE_PASS,
1445   "feedback_fnsplit",                   /* name */
1446   gate_feedback_split_functions,        /* gate */
1447   execute_feedback_split_functions,     /* execute */
1448   NULL,                                 /* sub */
1449   NULL,                                 /* next */
1450   0,                                    /* static_pass_number */
1451   TV_IPA_FNSPLIT,                       /* tv_id */
1452   PROP_cfg,                             /* properties_required */
1453   0,                                    /* properties_provided */
1454   0,                                    /* properties_destroyed */
1455   0,                                    /* todo_flags_start */
1456   TODO_dump_func                        /* todo_flags_finish */
1457  }
1458 };