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