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