PR c/67106
[official-gcc.git] / gcc / passes.def
blob28cb4c1cf1fc12aa9ac6bc78d1ba6c9461c738ab
1 /* Description of pass structure
2 Copyright (C) 1987-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
21 Macros that should be defined when using this file:
22 INSERT_PASSES_AFTER (PASS)
23 PUSH_INSERT_PASSES_WITHIN (PASS)
24 POP_INSERT_PASSES ()
25 NEXT_PASS (PASS)
26 TERMINATE_PASS_LIST ()
29 /* All passes needed to lower the function into shape optimizers can
30 operate on. These passes are always run first on the function, but
31 backend might produce already lowered functions that are not processed
32 by these passes. */
33 INSERT_PASSES_AFTER (all_lowering_passes)
34 NEXT_PASS (pass_warn_unused_result);
35 NEXT_PASS (pass_diagnose_omp_blocks);
36 NEXT_PASS (pass_diagnose_tm_blocks);
37 NEXT_PASS (pass_lower_omp);
38 NEXT_PASS (pass_lower_cf);
39 NEXT_PASS (pass_lower_tm);
40 NEXT_PASS (pass_refactor_eh);
41 NEXT_PASS (pass_lower_eh);
42 NEXT_PASS (pass_build_cfg);
43 NEXT_PASS (pass_warn_function_return);
44 NEXT_PASS (pass_expand_omp);
45 NEXT_PASS (pass_build_cgraph_edges);
46 TERMINATE_PASS_LIST ()
48 /* Interprocedural optimization passes. */
49 INSERT_PASSES_AFTER (all_small_ipa_passes)
50 NEXT_PASS (pass_ipa_free_lang_data);
51 NEXT_PASS (pass_ipa_function_and_variable_visibility);
52 NEXT_PASS (pass_ipa_chkp_versioning);
53 NEXT_PASS (pass_ipa_chkp_early_produce_thunks);
54 NEXT_PASS (pass_build_ssa_passes);
55 PUSH_INSERT_PASSES_WITHIN (pass_build_ssa_passes)
56 NEXT_PASS (pass_fixup_cfg);
57 NEXT_PASS (pass_init_datastructures);
58 NEXT_PASS (pass_build_ssa);
59 NEXT_PASS (pass_ubsan);
60 NEXT_PASS (pass_early_warn_uninitialized);
61 NEXT_PASS (pass_nothrow);
62 POP_INSERT_PASSES ()
64 NEXT_PASS (pass_chkp_instrumentation_passes);
65 PUSH_INSERT_PASSES_WITHIN (pass_chkp_instrumentation_passes)
66 NEXT_PASS (pass_fixup_cfg);
67 NEXT_PASS (pass_chkp);
68 NEXT_PASS (pass_rebuild_cgraph_edges);
69 POP_INSERT_PASSES ()
71 NEXT_PASS (pass_local_optimization_passes);
72 PUSH_INSERT_PASSES_WITHIN (pass_local_optimization_passes)
73 NEXT_PASS (pass_fixup_cfg);
74 NEXT_PASS (pass_rebuild_cgraph_edges);
75 NEXT_PASS (pass_inline_parameters);
76 NEXT_PASS (pass_early_inline);
77 NEXT_PASS (pass_all_early_optimizations);
78 PUSH_INSERT_PASSES_WITHIN (pass_all_early_optimizations)
79 NEXT_PASS (pass_remove_cgraph_callee_edges);
80 NEXT_PASS (pass_object_sizes, true /* insert_min_max_p */);
81 /* Don't record nonzero bits before IPA to avoid
82 using too much memory. */
83 NEXT_PASS (pass_ccp, false /* nonzero_p */);
84 /* After CCP we rewrite no longer addressed locals into SSA
85 form if possible. */
86 NEXT_PASS (pass_forwprop);
87 NEXT_PASS (pass_sra_early);
88 /* pass_build_ealias is a dummy pass that ensures that we
89 execute TODO_rebuild_alias at this point. */
90 NEXT_PASS (pass_build_ealias);
91 /* Pass group that runs when the function is an offloaded function
92 containing oacc kernels loops. Part 1. */
93 NEXT_PASS (pass_oacc_kernels);
94 PUSH_INSERT_PASSES_WITHIN (pass_oacc_kernels)
95 NEXT_PASS (pass_ch);
96 POP_INSERT_PASSES ()
97 NEXT_PASS (pass_fre);
98 /* Pass group that runs when the function is an offloaded function
99 containing oacc kernels loops. Part 2. */
100 NEXT_PASS (pass_oacc_kernels2);
101 PUSH_INSERT_PASSES_WITHIN (pass_oacc_kernels2)
102 /* We use pass_lim to rewrite in-memory iteration and reduction
103 variable accesses in loops into local variables accesses. */
104 NEXT_PASS (pass_lim);
105 NEXT_PASS (pass_dominator, false /* may_peel_loop_headers_p */);
106 NEXT_PASS (pass_dce);
107 NEXT_PASS (pass_expand_omp_ssa);
108 POP_INSERT_PASSES ()
109 NEXT_PASS (pass_merge_phi);
110 NEXT_PASS (pass_dse);
111 NEXT_PASS (pass_cd_dce);
112 NEXT_PASS (pass_early_ipa_sra);
113 NEXT_PASS (pass_tail_recursion);
114 NEXT_PASS (pass_convert_switch);
115 NEXT_PASS (pass_cleanup_eh);
116 NEXT_PASS (pass_profile);
117 NEXT_PASS (pass_local_pure_const);
118 /* Split functions creates parts that are not run through
119 early optimizations again. It is thus good idea to do this
120 late. */
121 NEXT_PASS (pass_split_functions);
122 POP_INSERT_PASSES ()
123 NEXT_PASS (pass_release_ssa_names);
124 NEXT_PASS (pass_rebuild_cgraph_edges);
125 NEXT_PASS (pass_inline_parameters);
126 POP_INSERT_PASSES ()
127 NEXT_PASS (pass_ipa_chkp_produce_thunks);
128 NEXT_PASS (pass_ipa_auto_profile);
129 NEXT_PASS (pass_ipa_free_inline_summary);
130 NEXT_PASS (pass_ipa_tree_profile);
131 PUSH_INSERT_PASSES_WITHIN (pass_ipa_tree_profile)
132 NEXT_PASS (pass_feedback_split_functions);
133 POP_INSERT_PASSES ()
134 NEXT_PASS (pass_ipa_increase_alignment);
135 NEXT_PASS (pass_ipa_tm);
136 NEXT_PASS (pass_ipa_lower_emutls);
137 TERMINATE_PASS_LIST ()
139 INSERT_PASSES_AFTER (all_regular_ipa_passes)
140 NEXT_PASS (pass_ipa_whole_program_visibility);
141 NEXT_PASS (pass_ipa_profile);
142 NEXT_PASS (pass_ipa_icf);
143 NEXT_PASS (pass_ipa_devirt);
144 NEXT_PASS (pass_ipa_cp);
145 NEXT_PASS (pass_ipa_cdtor_merge);
146 NEXT_PASS (pass_target_clone);
147 NEXT_PASS (pass_ipa_inline);
148 NEXT_PASS (pass_ipa_pure_const);
149 NEXT_PASS (pass_ipa_reference);
150 /* This pass needs to be scheduled after any IP code duplication. */
151 NEXT_PASS (pass_ipa_single_use);
152 /* Comdat privatization come last, as direct references to comdat local
153 symbols are not allowed outside of the comdat group. Privatizing early
154 would result in missed optimizations due to this restriction. */
155 NEXT_PASS (pass_ipa_comdats);
156 TERMINATE_PASS_LIST ()
158 /* Simple IPA passes executed after the regular passes. In WHOPR mode the
159 passes are executed after partitioning and thus see just parts of the
160 compiled unit. */
161 INSERT_PASSES_AFTER (all_late_ipa_passes)
162 NEXT_PASS (pass_ipa_pta);
163 NEXT_PASS (pass_dispatcher_calls);
164 NEXT_PASS (pass_omp_simd_clone);
165 TERMINATE_PASS_LIST ()
167 /* These passes are run after IPA passes on every function that is being
168 output to the assembler file. */
169 INSERT_PASSES_AFTER (all_passes)
170 NEXT_PASS (pass_fixup_cfg);
171 NEXT_PASS (pass_lower_eh_dispatch);
172 NEXT_PASS (pass_oacc_device_lower);
173 NEXT_PASS (pass_all_optimizations);
174 PUSH_INSERT_PASSES_WITHIN (pass_all_optimizations)
175 NEXT_PASS (pass_remove_cgraph_callee_edges);
176 /* Initial scalar cleanups before alias computation.
177 They ensure memory accesses are not indirect wherever possible. */
178 NEXT_PASS (pass_strip_predict_hints);
179 NEXT_PASS (pass_ccp, true /* nonzero_p */);
180 /* After CCP we rewrite no longer addressed locals into SSA
181 form if possible. */
182 NEXT_PASS (pass_complete_unrolli);
183 NEXT_PASS (pass_backprop);
184 NEXT_PASS (pass_phiprop);
185 NEXT_PASS (pass_forwprop);
186 NEXT_PASS (pass_object_sizes, false /* insert_min_max_p */);
187 /* pass_build_alias is a dummy pass that ensures that we
188 execute TODO_rebuild_alias at this point. */
189 NEXT_PASS (pass_build_alias);
190 NEXT_PASS (pass_return_slot);
191 NEXT_PASS (pass_fre);
192 NEXT_PASS (pass_merge_phi);
193 NEXT_PASS (pass_vrp, true /* warn_array_bounds_p */);
194 NEXT_PASS (pass_chkp_opt);
195 NEXT_PASS (pass_dce);
196 NEXT_PASS (pass_stdarg);
197 NEXT_PASS (pass_call_cdce);
198 NEXT_PASS (pass_cselim);
199 NEXT_PASS (pass_copy_prop);
200 NEXT_PASS (pass_tree_ifcombine);
201 NEXT_PASS (pass_merge_phi);
202 NEXT_PASS (pass_phiopt);
203 NEXT_PASS (pass_tail_recursion);
204 NEXT_PASS (pass_ch);
205 NEXT_PASS (pass_lower_complex);
206 NEXT_PASS (pass_sra);
207 /* The dom pass will also resolve all __builtin_constant_p calls
208 that are still there to 0. This has to be done after some
209 propagations have already run, but before some more dead code
210 is removed, and this place fits nicely. Remember this when
211 trying to move or duplicate pass_dominator somewhere earlier. */
212 NEXT_PASS (pass_dominator, true /* may_peel_loop_headers_p */);
213 /* At this point the majority of const/copy propagations
214 are exposed. Go ahead and identify paths that should never
215 be executed in a conforming program and isolate those paths.
217 This will expose more degenerate PHIs in the main path and
218 expose more PRE/DOM optimization opportunities. */
219 NEXT_PASS (pass_isolate_erroneous_paths);
220 /* The only const/copy propagation opportunities left after
221 DOM and erroneous path isolation should be due to degenerate PHI nodes.
222 So rather than run the full propagators, run a specialized pass which
223 only examines PHIs to discover const/copy propagation
224 opportunities. */
225 NEXT_PASS (pass_phi_only_cprop);
226 NEXT_PASS (pass_dse);
227 NEXT_PASS (pass_reassoc, true /* insert_powi_p */);
228 NEXT_PASS (pass_dce);
229 NEXT_PASS (pass_forwprop);
230 NEXT_PASS (pass_phiopt);
231 NEXT_PASS (pass_ccp, true /* nonzero_p */);
232 /* After CCP we rewrite no longer addressed locals into SSA
233 form if possible. */
234 NEXT_PASS (pass_cse_sincos);
235 NEXT_PASS (pass_optimize_bswap);
236 NEXT_PASS (pass_laddress);
237 NEXT_PASS (pass_split_crit_edges);
238 NEXT_PASS (pass_pre);
239 NEXT_PASS (pass_sink_code);
240 NEXT_PASS (pass_asan);
241 NEXT_PASS (pass_tsan);
242 /* Pass group that runs when 1) enabled, 2) there are loops
243 in the function. Make sure to run pass_fix_loops before
244 to discover/remove loops before running the gate function
245 of pass_tree_loop. */
246 NEXT_PASS (pass_fix_loops);
247 NEXT_PASS (pass_tree_loop);
248 PUSH_INSERT_PASSES_WITHIN (pass_tree_loop)
249 NEXT_PASS (pass_tree_loop_init);
250 NEXT_PASS (pass_lim);
251 NEXT_PASS (pass_copy_prop);
252 NEXT_PASS (pass_dce);
253 NEXT_PASS (pass_tree_unswitch);
254 NEXT_PASS (pass_scev_cprop);
255 NEXT_PASS (pass_record_bounds);
256 NEXT_PASS (pass_loop_distribution);
257 NEXT_PASS (pass_copy_prop);
258 NEXT_PASS (pass_graphite);
259 PUSH_INSERT_PASSES_WITHIN (pass_graphite)
260 NEXT_PASS (pass_graphite_transforms);
261 NEXT_PASS (pass_lim);
262 NEXT_PASS (pass_copy_prop);
263 NEXT_PASS (pass_dce);
264 POP_INSERT_PASSES ()
265 NEXT_PASS (pass_iv_canon);
266 NEXT_PASS (pass_parallelize_loops);
267 PUSH_INSERT_PASSES_WITHIN (pass_parallelize_loops)
268 NEXT_PASS (pass_expand_omp_ssa);
269 POP_INSERT_PASSES ()
270 NEXT_PASS (pass_ch_vect);
271 NEXT_PASS (pass_if_conversion);
272 /* pass_vectorize must immediately follow pass_if_conversion.
273 Please do not add any other passes in between. */
274 NEXT_PASS (pass_vectorize);
275 PUSH_INSERT_PASSES_WITHIN (pass_vectorize)
276 NEXT_PASS (pass_dce);
277 POP_INSERT_PASSES ()
278 NEXT_PASS (pass_predcom);
279 NEXT_PASS (pass_complete_unroll);
280 NEXT_PASS (pass_slp_vectorize);
281 NEXT_PASS (pass_loop_prefetch);
282 /* Run IVOPTs after the last pass that uses data-reference analysis
283 as that doesn't handle TARGET_MEM_REFs. */
284 NEXT_PASS (pass_iv_optimize);
285 NEXT_PASS (pass_lim);
286 NEXT_PASS (pass_tree_loop_done);
287 POP_INSERT_PASSES ()
288 /* Pass group that runs when pass_tree_loop is disabled or there
289 are no loops in the function. */
290 NEXT_PASS (pass_tree_no_loop);
291 PUSH_INSERT_PASSES_WITHIN (pass_tree_no_loop)
292 NEXT_PASS (pass_slp_vectorize);
293 POP_INSERT_PASSES ()
294 NEXT_PASS (pass_simduid_cleanup);
295 NEXT_PASS (pass_lower_vector_ssa);
296 NEXT_PASS (pass_split_paths);
297 NEXT_PASS (pass_cse_reciprocals);
298 NEXT_PASS (pass_reassoc, false /* insert_powi_p */);
299 NEXT_PASS (pass_strength_reduction);
300 NEXT_PASS (pass_tracer);
301 NEXT_PASS (pass_dominator, false /* may_peel_loop_headers_p */);
302 NEXT_PASS (pass_strlen);
303 NEXT_PASS (pass_vrp, false /* warn_array_bounds_p */);
304 /* The only const/copy propagation opportunities left after
305 DOM and VRP should be due to degenerate PHI nodes. So rather than
306 run the full propagators, run a specialized pass which
307 only examines PHIs to discover const/copy propagation
308 opportunities. */
309 NEXT_PASS (pass_phi_only_cprop);
310 NEXT_PASS (pass_cd_dce);
311 NEXT_PASS (pass_dse);
312 NEXT_PASS (pass_forwprop);
313 NEXT_PASS (pass_phiopt);
314 NEXT_PASS (pass_fold_builtins);
315 NEXT_PASS (pass_optimize_widening_mul);
316 NEXT_PASS (pass_tail_calls);
317 /* FIXME: If DCE is not run before checking for uninitialized uses,
318 we may get false warnings (e.g., testsuite/gcc.dg/uninit-5.c).
319 However, this also causes us to misdiagnose cases that should be
320 real warnings (e.g., testsuite/gcc.dg/pr18501.c).
322 To fix the false positives in uninit-5.c, we would have to
323 account for the predicates protecting the set and the use of each
324 variable. Using a representation like Gated Single Assignment
325 may help. */
326 /* Split critical edges before late uninit warning to reduce the
327 number of false positives from it. */
328 NEXT_PASS (pass_split_crit_edges);
329 NEXT_PASS (pass_late_warn_uninitialized);
330 NEXT_PASS (pass_uncprop);
331 NEXT_PASS (pass_local_pure_const);
332 POP_INSERT_PASSES ()
333 NEXT_PASS (pass_all_optimizations_g);
334 PUSH_INSERT_PASSES_WITHIN (pass_all_optimizations_g)
335 NEXT_PASS (pass_remove_cgraph_callee_edges);
336 NEXT_PASS (pass_strip_predict_hints);
337 /* Lower remaining pieces of GIMPLE. */
338 NEXT_PASS (pass_lower_complex);
339 NEXT_PASS (pass_lower_vector_ssa);
340 /* Perform simple scalar cleanup which is constant/copy propagation. */
341 NEXT_PASS (pass_ccp, true /* nonzero_p */);
342 NEXT_PASS (pass_object_sizes);
343 /* Fold remaining builtins. */
344 NEXT_PASS (pass_fold_builtins);
345 /* Copy propagation also copy-propagates constants, this is necessary
346 to forward object-size and builtin folding results properly. */
347 NEXT_PASS (pass_copy_prop);
348 NEXT_PASS (pass_dce);
349 NEXT_PASS (pass_asan);
350 NEXT_PASS (pass_tsan);
351 /* ??? We do want some kind of loop invariant motion, but we possibly
352 need to adjust LIM to be more friendly towards preserving accurate
353 debug information here. */
354 /* Split critical edges before late uninit warning to reduce the
355 number of false positives from it. */
356 NEXT_PASS (pass_split_crit_edges);
357 NEXT_PASS (pass_late_warn_uninitialized);
358 NEXT_PASS (pass_uncprop);
359 NEXT_PASS (pass_local_pure_const);
360 POP_INSERT_PASSES ()
361 NEXT_PASS (pass_tm_init);
362 PUSH_INSERT_PASSES_WITHIN (pass_tm_init)
363 NEXT_PASS (pass_tm_mark);
364 NEXT_PASS (pass_tm_memopt);
365 NEXT_PASS (pass_tm_edges);
366 POP_INSERT_PASSES ()
367 NEXT_PASS (pass_simduid_cleanup);
368 NEXT_PASS (pass_vtable_verify);
369 NEXT_PASS (pass_lower_vaarg);
370 NEXT_PASS (pass_lower_vector);
371 NEXT_PASS (pass_lower_complex_O0);
372 NEXT_PASS (pass_asan_O0);
373 NEXT_PASS (pass_tsan_O0);
374 NEXT_PASS (pass_sanopt);
375 NEXT_PASS (pass_cleanup_eh);
376 NEXT_PASS (pass_lower_resx);
377 NEXT_PASS (pass_nrv);
378 NEXT_PASS (pass_cleanup_cfg_post_optimizing);
379 NEXT_PASS (pass_warn_function_noreturn);
381 NEXT_PASS (pass_expand);
383 NEXT_PASS (pass_rest_of_compilation);
384 PUSH_INSERT_PASSES_WITHIN (pass_rest_of_compilation)
385 NEXT_PASS (pass_instantiate_virtual_regs);
386 NEXT_PASS (pass_into_cfg_layout_mode);
387 NEXT_PASS (pass_jump);
388 NEXT_PASS (pass_lower_subreg);
389 NEXT_PASS (pass_df_initialize_opt);
390 NEXT_PASS (pass_cse);
391 NEXT_PASS (pass_rtl_fwprop);
392 NEXT_PASS (pass_rtl_cprop);
393 NEXT_PASS (pass_rtl_pre);
394 NEXT_PASS (pass_rtl_hoist);
395 NEXT_PASS (pass_rtl_cprop);
396 NEXT_PASS (pass_rtl_store_motion);
397 NEXT_PASS (pass_cse_after_global_opts);
398 NEXT_PASS (pass_rtl_ifcvt);
399 NEXT_PASS (pass_reginfo_init);
400 /* Perform loop optimizations. It might be better to do them a bit
401 sooner, but we want the profile feedback to work more
402 efficiently. */
403 NEXT_PASS (pass_loop2);
404 PUSH_INSERT_PASSES_WITHIN (pass_loop2)
405 NEXT_PASS (pass_rtl_loop_init);
406 NEXT_PASS (pass_rtl_move_loop_invariants);
407 NEXT_PASS (pass_rtl_unroll_loops);
408 NEXT_PASS (pass_rtl_doloop);
409 NEXT_PASS (pass_rtl_loop_done);
410 TERMINATE_PASS_LIST ()
411 POP_INSERT_PASSES ()
412 NEXT_PASS (pass_web);
413 NEXT_PASS (pass_rtl_cprop);
414 NEXT_PASS (pass_cse2);
415 NEXT_PASS (pass_rtl_dse1);
416 NEXT_PASS (pass_rtl_fwprop_addr);
417 NEXT_PASS (pass_inc_dec);
418 NEXT_PASS (pass_initialize_regs);
419 NEXT_PASS (pass_ud_rtl_dce);
420 NEXT_PASS (pass_combine);
421 NEXT_PASS (pass_if_after_combine);
422 NEXT_PASS (pass_partition_blocks);
423 NEXT_PASS (pass_outof_cfg_layout_mode);
424 NEXT_PASS (pass_split_all_insns);
425 NEXT_PASS (pass_lower_subreg2);
426 NEXT_PASS (pass_df_initialize_no_opt);
427 NEXT_PASS (pass_stack_ptr_mod);
428 NEXT_PASS (pass_mode_switching);
429 NEXT_PASS (pass_match_asm_constraints);
430 NEXT_PASS (pass_sms);
431 NEXT_PASS (pass_live_range_shrinkage);
432 NEXT_PASS (pass_sched);
433 NEXT_PASS (pass_ira);
434 NEXT_PASS (pass_reload);
435 NEXT_PASS (pass_postreload);
436 PUSH_INSERT_PASSES_WITHIN (pass_postreload)
437 NEXT_PASS (pass_postreload_cse);
438 NEXT_PASS (pass_gcse2);
439 NEXT_PASS (pass_split_after_reload);
440 NEXT_PASS (pass_ree);
441 NEXT_PASS (pass_compare_elim_after_reload);
442 NEXT_PASS (pass_branch_target_load_optimize1);
443 NEXT_PASS (pass_thread_prologue_and_epilogue);
444 NEXT_PASS (pass_rtl_dse2);
445 NEXT_PASS (pass_stack_adjustments);
446 NEXT_PASS (pass_jump2);
447 NEXT_PASS (pass_duplicate_computed_gotos);
448 NEXT_PASS (pass_sched_fusion);
449 NEXT_PASS (pass_peephole2);
450 NEXT_PASS (pass_if_after_reload);
451 NEXT_PASS (pass_regrename);
452 NEXT_PASS (pass_cprop_hardreg);
453 NEXT_PASS (pass_fast_rtl_dce);
454 NEXT_PASS (pass_reorder_blocks);
455 NEXT_PASS (pass_branch_target_load_optimize2);
456 NEXT_PASS (pass_leaf_regs);
457 NEXT_PASS (pass_split_before_sched2);
458 NEXT_PASS (pass_sched2);
459 NEXT_PASS (pass_stack_regs);
460 PUSH_INSERT_PASSES_WITHIN (pass_stack_regs)
461 NEXT_PASS (pass_split_before_regstack);
462 NEXT_PASS (pass_stack_regs_run);
463 POP_INSERT_PASSES ()
464 POP_INSERT_PASSES ()
465 NEXT_PASS (pass_late_compilation);
466 PUSH_INSERT_PASSES_WITHIN (pass_late_compilation)
467 NEXT_PASS (pass_compute_alignments);
468 NEXT_PASS (pass_variable_tracking);
469 NEXT_PASS (pass_free_cfg);
470 NEXT_PASS (pass_machine_reorg);
471 NEXT_PASS (pass_cleanup_barriers);
472 NEXT_PASS (pass_delay_slots);
473 NEXT_PASS (pass_split_for_shorten_branches);
474 NEXT_PASS (pass_convert_to_eh_region_ranges);
475 NEXT_PASS (pass_shorten_branches);
476 NEXT_PASS (pass_set_nothrow_function_flags);
477 NEXT_PASS (pass_dwarf2_frame);
478 NEXT_PASS (pass_final);
479 POP_INSERT_PASSES ()
480 NEXT_PASS (pass_df_finish);
481 POP_INSERT_PASSES ()
482 NEXT_PASS (pass_clean_state);
483 TERMINATE_PASS_LIST ()