tree-pass.h 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632
  1. /* Definitions for describing one tree-ssa optimization pass.
  2. Copyright (C) 2004-2015 Free Software Foundation, Inc.
  3. Contributed by Richard Henderson <rth@redhat.com>
  4. This file is part of GCC.
  5. GCC is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 3, or (at your option)
  8. any later version.
  9. GCC is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with GCC; see the file COPYING3. If not see
  15. <http://www.gnu.org/licenses/>. */
  16. #ifndef GCC_TREE_PASS_H
  17. #define GCC_TREE_PASS_H 1
  18. #include "timevar.h"
  19. #include "dumpfile.h"
  20. struct function;
  21. /* Optimization pass type. */
  22. enum opt_pass_type
  23. {
  24. GIMPLE_PASS,
  25. RTL_PASS,
  26. SIMPLE_IPA_PASS,
  27. IPA_PASS
  28. };
  29. /* Metadata for a pass, non-varying across all instances of a pass. */
  30. struct pass_data
  31. {
  32. /* Optimization pass type. */
  33. enum opt_pass_type type;
  34. /* Terse name of the pass used as a fragment of the dump file
  35. name. If the name starts with a star, no dump happens. */
  36. const char *name;
  37. /* The -fopt-info optimization group flags as defined in dumpfile.h. */
  38. unsigned int optinfo_flags;
  39. /* The timevar id associated with this pass. */
  40. /* ??? Ideally would be dynamically assigned. */
  41. timevar_id_t tv_id;
  42. /* Sets of properties input and output from this pass. */
  43. unsigned int properties_required;
  44. unsigned int properties_provided;
  45. unsigned int properties_destroyed;
  46. /* Flags indicating common sets things to do before and after. */
  47. unsigned int todo_flags_start;
  48. unsigned int todo_flags_finish;
  49. };
  50. namespace gcc
  51. {
  52. class context;
  53. } // namespace gcc
  54. /* An instance of a pass. This is also "pass_data" to minimize the
  55. changes in existing code. */
  56. class opt_pass : public pass_data
  57. {
  58. public:
  59. virtual ~opt_pass () { }
  60. /* Create a copy of this pass.
  61. Passes that can have multiple instances must provide their own
  62. implementation of this, to ensure that any sharing of state between
  63. this instance and the copy is "wired up" correctly.
  64. The default implementation prints an error message and aborts. */
  65. virtual opt_pass *clone ();
  66. /* This pass and all sub-passes are executed only if the function returns
  67. true. The default implementation returns true. */
  68. virtual bool gate (function *fun);
  69. /* This is the code to run. If this is not overridden, then there should
  70. be sub-passes otherwise this pass does nothing.
  71. The return value contains TODOs to execute in addition to those in
  72. TODO_flags_finish. */
  73. virtual unsigned int execute (function *fun);
  74. protected:
  75. opt_pass (const pass_data&, gcc::context *);
  76. public:
  77. /* A list of sub-passes to run, dependent on gate predicate. */
  78. opt_pass *sub;
  79. /* Next in the list of passes to run, independent of gate predicate. */
  80. opt_pass *next;
  81. /* Static pass number, used as a fragment of the dump file name. */
  82. int static_pass_number;
  83. /* When a given dump file is being initialized, this flag is set to
  84. true if the corresponding TDF_graph dump file has also been
  85. initialized. */
  86. bool graph_dump_initialized;
  87. protected:
  88. gcc::context *m_ctxt;
  89. };
  90. /* Description of GIMPLE pass. */
  91. class gimple_opt_pass : public opt_pass
  92. {
  93. protected:
  94. gimple_opt_pass (const pass_data& data, gcc::context *ctxt)
  95. : opt_pass (data, ctxt)
  96. {
  97. }
  98. };
  99. /* Description of RTL pass. */
  100. class rtl_opt_pass : public opt_pass
  101. {
  102. protected:
  103. rtl_opt_pass (const pass_data& data, gcc::context *ctxt)
  104. : opt_pass (data, ctxt)
  105. {
  106. }
  107. };
  108. class varpool_node;
  109. struct cgraph_node;
  110. struct lto_symtab_encoder_d;
  111. /* Description of IPA pass with generate summary, write, execute, read and
  112. transform stages. */
  113. class ipa_opt_pass_d : public opt_pass
  114. {
  115. public:
  116. /* IPA passes can analyze function body and variable initializers
  117. using this hook and produce summary. */
  118. void (*generate_summary) (void);
  119. /* This hook is used to serialize IPA summaries on disk. */
  120. void (*write_summary) (void);
  121. /* This hook is used to deserialize IPA summaries from disk. */
  122. void (*read_summary) (void);
  123. /* This hook is used to serialize IPA optimization summaries on disk. */
  124. void (*write_optimization_summary) (void);
  125. /* This hook is used to deserialize IPA summaries from disk. */
  126. void (*read_optimization_summary) (void);
  127. /* Hook to convert gimple stmt uids into true gimple statements. The second
  128. parameter is an array of statements indexed by their uid. */
  129. void (*stmt_fixup) (struct cgraph_node *, gimple *);
  130. /* Results of interprocedural propagation of an IPA pass is applied to
  131. function body via this hook. */
  132. unsigned int function_transform_todo_flags_start;
  133. unsigned int (*function_transform) (struct cgraph_node *);
  134. void (*variable_transform) (varpool_node *);
  135. protected:
  136. ipa_opt_pass_d (const pass_data& data, gcc::context *ctxt,
  137. void (*generate_summary) (void),
  138. void (*write_summary) (void),
  139. void (*read_summary) (void),
  140. void (*write_optimization_summary) (void),
  141. void (*read_optimization_summary) (void),
  142. void (*stmt_fixup) (struct cgraph_node *, gimple *),
  143. unsigned int function_transform_todo_flags_start,
  144. unsigned int (*function_transform) (struct cgraph_node *),
  145. void (*variable_transform) (varpool_node *))
  146. : opt_pass (data, ctxt),
  147. generate_summary (generate_summary),
  148. write_summary (write_summary),
  149. read_summary (read_summary),
  150. write_optimization_summary (write_optimization_summary),
  151. read_optimization_summary (read_optimization_summary),
  152. stmt_fixup (stmt_fixup),
  153. function_transform_todo_flags_start (function_transform_todo_flags_start),
  154. function_transform (function_transform),
  155. variable_transform (variable_transform)
  156. {
  157. }
  158. };
  159. /* Description of simple IPA pass. Simple IPA passes have just one execute
  160. hook. */
  161. class simple_ipa_opt_pass : public opt_pass
  162. {
  163. protected:
  164. simple_ipa_opt_pass (const pass_data& data, gcc::context *ctxt)
  165. : opt_pass (data, ctxt)
  166. {
  167. }
  168. };
  169. /* Pass properties. */
  170. #define PROP_gimple_any (1 << 0) /* entire gimple grammar */
  171. #define PROP_gimple_lcf (1 << 1) /* lowered control flow */
  172. #define PROP_gimple_leh (1 << 2) /* lowered eh */
  173. #define PROP_cfg (1 << 3)
  174. #define PROP_ssa (1 << 5)
  175. #define PROP_no_crit_edges (1 << 6)
  176. #define PROP_rtl (1 << 7)
  177. #define PROP_gimple_lomp (1 << 8) /* lowered OpenMP directives */
  178. #define PROP_cfglayout (1 << 9) /* cfglayout mode on RTL */
  179. #define PROP_gimple_lcx (1 << 10) /* lowered complex */
  180. #define PROP_loops (1 << 11) /* preserve loop structures */
  181. #define PROP_gimple_lvec (1 << 12) /* lowered vector */
  182. #define PROP_gimple_eomp (1 << 13) /* no OpenMP directives */
  183. #define PROP_trees \
  184. (PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh | PROP_gimple_lomp)
  185. /* To-do flags. */
  186. #define TODO_do_not_ggc_collect (1 << 1)
  187. #define TODO_cleanup_cfg (1 << 5)
  188. #define TODO_verify_il (1 << 6)
  189. #define TODO_dump_symtab (1 << 7)
  190. #define TODO_remove_functions (1 << 8)
  191. #define TODO_rebuild_frequencies (1 << 9)
  192. /* To-do flags for calls to update_ssa. */
  193. /* Update the SSA form inserting PHI nodes for newly exposed symbols
  194. and virtual names marked for updating. When updating real names,
  195. only insert PHI nodes for a real name O_j in blocks reached by all
  196. the new and old definitions for O_j. If the iterated dominance
  197. frontier for O_j is not pruned, we may end up inserting PHI nodes
  198. in blocks that have one or more edges with no incoming definition
  199. for O_j. This would lead to uninitialized warnings for O_j's
  200. symbol. */
  201. #define TODO_update_ssa (1 << 11)
  202. /* Update the SSA form without inserting any new PHI nodes at all.
  203. This is used by passes that have either inserted all the PHI nodes
  204. themselves or passes that need only to patch use-def and def-def
  205. chains for virtuals (e.g., DCE). */
  206. #define TODO_update_ssa_no_phi (1 << 12)
  207. /* Insert PHI nodes everywhere they are needed. No pruning of the
  208. IDF is done. This is used by passes that need the PHI nodes for
  209. O_j even if it means that some arguments will come from the default
  210. definition of O_j's symbol.
  211. WARNING: If you need to use this flag, chances are that your pass
  212. may be doing something wrong. Inserting PHI nodes for an old name
  213. where not all edges carry a new replacement may lead to silent
  214. codegen errors or spurious uninitialized warnings. */
  215. #define TODO_update_ssa_full_phi (1 << 13)
  216. /* Passes that update the SSA form on their own may want to delegate
  217. the updating of virtual names to the generic updater. Since FUD
  218. chains are easier to maintain, this simplifies the work they need
  219. to do. NOTE: If this flag is used, any OLD->NEW mappings for real
  220. names are explicitly destroyed and only the symbols marked for
  221. renaming are processed. */
  222. #define TODO_update_ssa_only_virtuals (1 << 14)
  223. /* Some passes leave unused local variables that can be removed from
  224. cfun->local_decls. This reduces the size of dump files
  225. and the memory footprint for VAR_DECLs. */
  226. #define TODO_remove_unused_locals (1 << 15)
  227. /* Call df_finish at the end of the pass. This is done after all of
  228. the dumpers have been allowed to run so that they have access to
  229. the instance before it is destroyed. */
  230. #define TODO_df_finish (1 << 17)
  231. /* Call df_verify at the end of the pass if checking is enabled. */
  232. #define TODO_df_verify (1 << 18)
  233. /* Internally used for the first instance of a pass. */
  234. #define TODO_mark_first_instance (1 << 19)
  235. /* Rebuild aliasing info. */
  236. #define TODO_rebuild_alias (1 << 20)
  237. /* Rebuild the addressable-vars bitmap and do register promotion. */
  238. #define TODO_update_address_taken (1 << 21)
  239. /* Rebuild the callgraph edges. */
  240. #define TODO_rebuild_cgraph_edges (1 << 22)
  241. /* Internally used in execute_function_todo(). */
  242. #define TODO_update_ssa_any \
  243. (TODO_update_ssa \
  244. | TODO_update_ssa_no_phi \
  245. | TODO_update_ssa_full_phi \
  246. | TODO_update_ssa_only_virtuals)
  247. #define TODO_verify_all TODO_verify_il
  248. /* Register pass info. */
  249. enum pass_positioning_ops
  250. {
  251. PASS_POS_INSERT_AFTER, /* Insert after the reference pass. */
  252. PASS_POS_INSERT_BEFORE, /* Insert before the reference pass. */
  253. PASS_POS_REPLACE /* Replace the reference pass. */
  254. };
  255. struct register_pass_info
  256. {
  257. opt_pass *pass; /* New pass to register. */
  258. const char *reference_pass_name; /* Name of the reference pass for hooking
  259. up the new pass. */
  260. int ref_pass_instance_number; /* Insert the pass at the specified
  261. instance number of the reference pass.
  262. Do it for every instance if it is 0. */
  263. enum pass_positioning_ops pos_op; /* how to insert the new pass. */
  264. };
  265. /* Registers a new pass. Either fill out the register_pass_info or specify
  266. the individual parameters. The pass object is expected to have been
  267. allocated using operator new and the pass manager takes the ownership of
  268. the pass object. */
  269. extern void register_pass (register_pass_info *);
  270. extern void register_pass (opt_pass* pass, pass_positioning_ops pos,
  271. const char* ref_pass_name, int ref_pass_inst_number);
  272. extern simple_ipa_opt_pass *make_pass_ipa_chkp_versioning (gcc::context *ctxt);
  273. extern simple_ipa_opt_pass *make_pass_ipa_chkp_early_produce_thunks (gcc::context *ctxt);
  274. extern simple_ipa_opt_pass *make_pass_ipa_chkp_produce_thunks (gcc::context *ctxt);
  275. extern gimple_opt_pass *make_pass_chkp (gcc::context *ctxt);
  276. extern gimple_opt_pass *make_pass_chkp_opt (gcc::context *ctxt);
  277. extern gimple_opt_pass *make_pass_asan (gcc::context *ctxt);
  278. extern gimple_opt_pass *make_pass_asan_O0 (gcc::context *ctxt);
  279. extern gimple_opt_pass *make_pass_tsan (gcc::context *ctxt);
  280. extern gimple_opt_pass *make_pass_tsan_O0 (gcc::context *ctxt);
  281. extern gimple_opt_pass *make_pass_lower_cf (gcc::context *ctxt);
  282. extern gimple_opt_pass *make_pass_refactor_eh (gcc::context *ctxt);
  283. extern gimple_opt_pass *make_pass_lower_eh (gcc::context *ctxt);
  284. extern gimple_opt_pass *make_pass_lower_eh_dispatch (gcc::context *ctxt);
  285. extern gimple_opt_pass *make_pass_lower_resx (gcc::context *ctxt);
  286. extern gimple_opt_pass *make_pass_build_cfg (gcc::context *ctxt);
  287. extern gimple_opt_pass *make_pass_early_tree_profile (gcc::context *ctxt);
  288. extern gimple_opt_pass *make_pass_cleanup_eh (gcc::context *ctxt);
  289. extern gimple_opt_pass *make_pass_sra (gcc::context *ctxt);
  290. extern gimple_opt_pass *make_pass_sra_early (gcc::context *ctxt);
  291. extern gimple_opt_pass *make_pass_early_ipa_sra (gcc::context *ctxt);
  292. extern gimple_opt_pass *make_pass_tail_recursion (gcc::context *ctxt);
  293. extern gimple_opt_pass *make_pass_tail_calls (gcc::context *ctxt);
  294. extern gimple_opt_pass *make_pass_fix_loops (gcc::context *ctxt);
  295. extern gimple_opt_pass *make_pass_tree_loop (gcc::context *ctxt);
  296. extern gimple_opt_pass *make_pass_tree_no_loop (gcc::context *ctxt);
  297. extern gimple_opt_pass *make_pass_tree_loop_init (gcc::context *ctxt);
  298. extern gimple_opt_pass *make_pass_lim (gcc::context *ctxt);
  299. extern gimple_opt_pass *make_pass_tree_unswitch (gcc::context *ctxt);
  300. extern gimple_opt_pass *make_pass_predcom (gcc::context *ctxt);
  301. extern gimple_opt_pass *make_pass_iv_canon (gcc::context *ctxt);
  302. extern gimple_opt_pass *make_pass_scev_cprop (gcc::context *ctxt);
  303. extern gimple_opt_pass *make_pass_empty_loop (gcc::context *ctxt);
  304. extern gimple_opt_pass *make_pass_record_bounds (gcc::context *ctxt);
  305. extern gimple_opt_pass *make_pass_graphite (gcc::context *ctxt);
  306. extern gimple_opt_pass *make_pass_graphite_transforms (gcc::context *ctxt);
  307. extern gimple_opt_pass *make_pass_if_conversion (gcc::context *ctxt);
  308. extern gimple_opt_pass *make_pass_loop_distribution (gcc::context *ctxt);
  309. extern gimple_opt_pass *make_pass_vectorize (gcc::context *ctxt);
  310. extern gimple_opt_pass *make_pass_simduid_cleanup (gcc::context *ctxt);
  311. extern gimple_opt_pass *make_pass_slp_vectorize (gcc::context *ctxt);
  312. extern gimple_opt_pass *make_pass_complete_unroll (gcc::context *ctxt);
  313. extern gimple_opt_pass *make_pass_complete_unrolli (gcc::context *ctxt);
  314. extern gimple_opt_pass *make_pass_parallelize_loops (gcc::context *ctxt);
  315. extern gimple_opt_pass *make_pass_loop_prefetch (gcc::context *ctxt);
  316. extern gimple_opt_pass *make_pass_iv_optimize (gcc::context *ctxt);
  317. extern gimple_opt_pass *make_pass_tree_loop_done (gcc::context *ctxt);
  318. extern gimple_opt_pass *make_pass_ch (gcc::context *ctxt);
  319. extern gimple_opt_pass *make_pass_ccp (gcc::context *ctxt);
  320. extern gimple_opt_pass *make_pass_phi_only_cprop (gcc::context *ctxt);
  321. extern gimple_opt_pass *make_pass_build_ssa (gcc::context *ctxt);
  322. extern gimple_opt_pass *make_pass_build_alias (gcc::context *ctxt);
  323. extern gimple_opt_pass *make_pass_build_ealias (gcc::context *ctxt);
  324. extern gimple_opt_pass *make_pass_dominator (gcc::context *ctxt);
  325. extern gimple_opt_pass *make_pass_dce (gcc::context *ctxt);
  326. extern gimple_opt_pass *make_pass_cd_dce (gcc::context *ctxt);
  327. extern gimple_opt_pass *make_pass_call_cdce (gcc::context *ctxt);
  328. extern gimple_opt_pass *make_pass_merge_phi (gcc::context *ctxt);
  329. extern gimple_opt_pass *make_pass_split_crit_edges (gcc::context *ctxt);
  330. extern gimple_opt_pass *make_pass_pre (gcc::context *ctxt);
  331. extern unsigned int tail_merge_optimize (unsigned int);
  332. extern gimple_opt_pass *make_pass_profile (gcc::context *ctxt);
  333. extern gimple_opt_pass *make_pass_strip_predict_hints (gcc::context *ctxt);
  334. extern gimple_opt_pass *make_pass_lower_complex_O0 (gcc::context *ctxt);
  335. extern gimple_opt_pass *make_pass_lower_complex (gcc::context *ctxt);
  336. extern gimple_opt_pass *make_pass_lower_vector (gcc::context *ctxt);
  337. extern gimple_opt_pass *make_pass_lower_vector_ssa (gcc::context *ctxt);
  338. extern gimple_opt_pass *make_pass_lower_omp (gcc::context *ctxt);
  339. extern gimple_opt_pass *make_pass_diagnose_omp_blocks (gcc::context *ctxt);
  340. extern gimple_opt_pass *make_pass_expand_omp (gcc::context *ctxt);
  341. extern gimple_opt_pass *make_pass_expand_omp_ssa (gcc::context *ctxt);
  342. extern gimple_opt_pass *make_pass_object_sizes (gcc::context *ctxt);
  343. extern gimple_opt_pass *make_pass_strlen (gcc::context *ctxt);
  344. extern gimple_opt_pass *make_pass_fold_builtins (gcc::context *ctxt);
  345. extern gimple_opt_pass *make_pass_stdarg (gcc::context *ctxt);
  346. extern gimple_opt_pass *make_pass_early_warn_uninitialized (gcc::context *ctxt);
  347. extern gimple_opt_pass *make_pass_late_warn_uninitialized (gcc::context *ctxt);
  348. extern gimple_opt_pass *make_pass_cse_reciprocals (gcc::context *ctxt);
  349. extern gimple_opt_pass *make_pass_cse_sincos (gcc::context *ctxt);
  350. extern gimple_opt_pass *make_pass_optimize_bswap (gcc::context *ctxt);
  351. extern gimple_opt_pass *make_pass_optimize_widening_mul (gcc::context *ctxt);
  352. extern gimple_opt_pass *make_pass_warn_function_return (gcc::context *ctxt);
  353. extern gimple_opt_pass *make_pass_warn_function_noreturn (gcc::context *ctxt);
  354. extern gimple_opt_pass *make_pass_cselim (gcc::context *ctxt);
  355. extern gimple_opt_pass *make_pass_phiopt (gcc::context *ctxt);
  356. extern gimple_opt_pass *make_pass_forwprop (gcc::context *ctxt);
  357. extern gimple_opt_pass *make_pass_phiprop (gcc::context *ctxt);
  358. extern gimple_opt_pass *make_pass_tree_ifcombine (gcc::context *ctxt);
  359. extern gimple_opt_pass *make_pass_dse (gcc::context *ctxt);
  360. extern gimple_opt_pass *make_pass_nrv (gcc::context *ctxt);
  361. extern gimple_opt_pass *make_pass_rename_ssa_copies (gcc::context *ctxt);
  362. extern gimple_opt_pass *make_pass_sink_code (gcc::context *ctxt);
  363. extern gimple_opt_pass *make_pass_fre (gcc::context *ctxt);
  364. extern gimple_opt_pass *make_pass_check_data_deps (gcc::context *ctxt);
  365. extern gimple_opt_pass *make_pass_copy_prop (gcc::context *ctxt);
  366. extern gimple_opt_pass *make_pass_isolate_erroneous_paths (gcc::context *ctxt);
  367. extern gimple_opt_pass *make_pass_vrp (gcc::context *ctxt);
  368. extern gimple_opt_pass *make_pass_uncprop (gcc::context *ctxt);
  369. extern gimple_opt_pass *make_pass_return_slot (gcc::context *ctxt);
  370. extern gimple_opt_pass *make_pass_reassoc (gcc::context *ctxt);
  371. extern gimple_opt_pass *make_pass_rebuild_cgraph_edges (gcc::context *ctxt);
  372. extern gimple_opt_pass *make_pass_remove_cgraph_callee_edges (gcc::context
  373. *ctxt);
  374. extern gimple_opt_pass *make_pass_build_cgraph_edges (gcc::context *ctxt);
  375. extern gimple_opt_pass *make_pass_local_pure_const (gcc::context *ctxt);
  376. extern gimple_opt_pass *make_pass_nothrow (gcc::context *ctxt);
  377. extern gimple_opt_pass *make_pass_tracer (gcc::context *ctxt);
  378. extern gimple_opt_pass *make_pass_warn_unused_result (gcc::context *ctxt);
  379. extern gimple_opt_pass *make_pass_diagnose_tm_blocks (gcc::context *ctxt);
  380. extern gimple_opt_pass *make_pass_lower_tm (gcc::context *ctxt);
  381. extern gimple_opt_pass *make_pass_tm_init (gcc::context *ctxt);
  382. extern gimple_opt_pass *make_pass_tm_mark (gcc::context *ctxt);
  383. extern gimple_opt_pass *make_pass_tm_memopt (gcc::context *ctxt);
  384. extern gimple_opt_pass *make_pass_tm_edges (gcc::context *ctxt);
  385. extern gimple_opt_pass *make_pass_split_functions (gcc::context *ctxt);
  386. extern gimple_opt_pass *make_pass_feedback_split_functions (gcc::context *ctxt);
  387. extern gimple_opt_pass *make_pass_strength_reduction (gcc::context *ctxt);
  388. extern gimple_opt_pass *make_pass_vtable_verify (gcc::context *ctxt);
  389. extern gimple_opt_pass *make_pass_ubsan (gcc::context *ctxt);
  390. extern gimple_opt_pass *make_pass_sanopt (gcc::context *ctxt);
  391. /* IPA Passes */
  392. extern simple_ipa_opt_pass *make_pass_ipa_lower_emutls (gcc::context *ctxt);
  393. extern simple_ipa_opt_pass
  394. *make_pass_ipa_function_and_variable_visibility (gcc::context *ctxt);
  395. extern simple_ipa_opt_pass *make_pass_ipa_tree_profile (gcc::context *ctxt);
  396. extern simple_ipa_opt_pass *make_pass_ipa_auto_profile (gcc::context *ctxt);
  397. extern simple_ipa_opt_pass *make_pass_build_ssa_passes (gcc::context *ctxt);
  398. extern simple_ipa_opt_pass *make_pass_chkp_instrumentation_passes (gcc::context *ctxt);
  399. extern simple_ipa_opt_pass *make_pass_local_optimization_passes (gcc::context *ctxt);
  400. extern ipa_opt_pass_d *make_pass_ipa_whole_program_visibility (gcc::context
  401. *ctxt);
  402. extern simple_ipa_opt_pass *make_pass_ipa_increase_alignment (gcc::context
  403. *ctxt);
  404. extern ipa_opt_pass_d *make_pass_ipa_inline (gcc::context *ctxt);
  405. extern simple_ipa_opt_pass *make_pass_ipa_free_lang_data (gcc::context *ctxt);
  406. extern simple_ipa_opt_pass *make_pass_ipa_free_inline_summary (gcc::context
  407. *ctxt);
  408. extern ipa_opt_pass_d *make_pass_ipa_cp (gcc::context *ctxt);
  409. extern ipa_opt_pass_d *make_pass_ipa_icf (gcc::context *ctxt);
  410. extern ipa_opt_pass_d *make_pass_ipa_devirt (gcc::context *ctxt);
  411. extern ipa_opt_pass_d *make_pass_ipa_reference (gcc::context *ctxt);
  412. extern ipa_opt_pass_d *make_pass_ipa_pure_const (gcc::context *ctxt);
  413. extern simple_ipa_opt_pass *make_pass_ipa_pta (gcc::context *ctxt);
  414. extern simple_ipa_opt_pass *make_pass_ipa_tm (gcc::context *ctxt);
  415. extern simple_ipa_opt_pass *make_pass_omp_simd_clone (gcc::context *ctxt);
  416. extern ipa_opt_pass_d *make_pass_ipa_profile (gcc::context *ctxt);
  417. extern ipa_opt_pass_d *make_pass_ipa_cdtor_merge (gcc::context *ctxt);
  418. extern ipa_opt_pass_d *make_pass_ipa_single_use (gcc::context *ctxt);
  419. extern ipa_opt_pass_d *make_pass_ipa_comdats (gcc::context *ctxt);
  420. extern gimple_opt_pass *make_pass_cleanup_cfg_post_optimizing (gcc::context
  421. *ctxt);
  422. extern gimple_opt_pass *make_pass_init_datastructures (gcc::context *ctxt);
  423. extern gimple_opt_pass *make_pass_fixup_cfg (gcc::context *ctxt);
  424. extern rtl_opt_pass *make_pass_expand (gcc::context *ctxt);
  425. extern rtl_opt_pass *make_pass_instantiate_virtual_regs (gcc::context *ctxt);
  426. extern rtl_opt_pass *make_pass_rtl_fwprop (gcc::context *ctxt);
  427. extern rtl_opt_pass *make_pass_rtl_fwprop_addr (gcc::context *ctxt);
  428. extern rtl_opt_pass *make_pass_jump (gcc::context *ctxt);
  429. extern rtl_opt_pass *make_pass_jump2 (gcc::context *ctxt);
  430. extern rtl_opt_pass *make_pass_lower_subreg (gcc::context *ctxt);
  431. extern rtl_opt_pass *make_pass_cse (gcc::context *ctxt);
  432. extern rtl_opt_pass *make_pass_fast_rtl_dce (gcc::context *ctxt);
  433. extern rtl_opt_pass *make_pass_ud_rtl_dce (gcc::context *ctxt);
  434. extern rtl_opt_pass *make_pass_rtl_dce (gcc::context *ctxt);
  435. extern rtl_opt_pass *make_pass_rtl_dse1 (gcc::context *ctxt);
  436. extern rtl_opt_pass *make_pass_rtl_dse2 (gcc::context *ctxt);
  437. extern rtl_opt_pass *make_pass_rtl_dse3 (gcc::context *ctxt);
  438. extern rtl_opt_pass *make_pass_rtl_cprop (gcc::context *ctxt);
  439. extern rtl_opt_pass *make_pass_rtl_pre (gcc::context *ctxt);
  440. extern rtl_opt_pass *make_pass_rtl_hoist (gcc::context *ctxt);
  441. extern rtl_opt_pass *make_pass_rtl_store_motion (gcc::context *ctxt);
  442. extern rtl_opt_pass *make_pass_cse_after_global_opts (gcc::context *ctxt);
  443. extern rtl_opt_pass *make_pass_rtl_ifcvt (gcc::context *ctxt);
  444. extern rtl_opt_pass *make_pass_into_cfg_layout_mode (gcc::context *ctxt);
  445. extern rtl_opt_pass *make_pass_outof_cfg_layout_mode (gcc::context *ctxt);
  446. extern rtl_opt_pass *make_pass_loop2 (gcc::context *ctxt);
  447. extern rtl_opt_pass *make_pass_rtl_loop_init (gcc::context *ctxt);
  448. extern rtl_opt_pass *make_pass_rtl_move_loop_invariants (gcc::context *ctxt);
  449. extern rtl_opt_pass *make_pass_rtl_unroll_loops (gcc::context *ctxt);
  450. extern rtl_opt_pass *make_pass_rtl_doloop (gcc::context *ctxt);
  451. extern rtl_opt_pass *make_pass_rtl_loop_done (gcc::context *ctxt);
  452. extern rtl_opt_pass *make_pass_web (gcc::context *ctxt);
  453. extern rtl_opt_pass *make_pass_cse2 (gcc::context *ctxt);
  454. extern rtl_opt_pass *make_pass_df_initialize_opt (gcc::context *ctxt);
  455. extern rtl_opt_pass *make_pass_df_initialize_no_opt (gcc::context *ctxt);
  456. extern rtl_opt_pass *make_pass_reginfo_init (gcc::context *ctxt);
  457. extern rtl_opt_pass *make_pass_inc_dec (gcc::context *ctxt);
  458. extern rtl_opt_pass *make_pass_stack_ptr_mod (gcc::context *ctxt);
  459. extern rtl_opt_pass *make_pass_initialize_regs (gcc::context *ctxt);
  460. extern rtl_opt_pass *make_pass_combine (gcc::context *ctxt);
  461. extern rtl_opt_pass *make_pass_if_after_combine (gcc::context *ctxt);
  462. extern rtl_opt_pass *make_pass_ree (gcc::context *ctxt);
  463. extern rtl_opt_pass *make_pass_partition_blocks (gcc::context *ctxt);
  464. extern rtl_opt_pass *make_pass_match_asm_constraints (gcc::context *ctxt);
  465. extern rtl_opt_pass *make_pass_split_all_insns (gcc::context *ctxt);
  466. extern rtl_opt_pass *make_pass_fast_rtl_byte_dce (gcc::context *ctxt);
  467. extern rtl_opt_pass *make_pass_lower_subreg2 (gcc::context *ctxt);
  468. extern rtl_opt_pass *make_pass_mode_switching (gcc::context *ctxt);
  469. extern rtl_opt_pass *make_pass_sms (gcc::context *ctxt);
  470. extern rtl_opt_pass *make_pass_sched (gcc::context *ctxt);
  471. extern rtl_opt_pass *make_pass_live_range_shrinkage (gcc::context *ctxt);
  472. extern rtl_opt_pass *make_pass_ira (gcc::context *ctxt);
  473. extern rtl_opt_pass *make_pass_reload (gcc::context *ctxt);
  474. extern rtl_opt_pass *make_pass_clean_state (gcc::context *ctxt);
  475. extern rtl_opt_pass *make_pass_branch_prob (gcc::context *ctxt);
  476. extern rtl_opt_pass *make_pass_value_profile_transformations (gcc::context
  477. *ctxt);
  478. extern rtl_opt_pass *make_pass_postreload_cse (gcc::context *ctxt);
  479. extern rtl_opt_pass *make_pass_gcse2 (gcc::context *ctxt);
  480. extern rtl_opt_pass *make_pass_split_after_reload (gcc::context *ctxt);
  481. extern rtl_opt_pass *make_pass_branch_target_load_optimize1 (gcc::context
  482. *ctxt);
  483. extern rtl_opt_pass *make_pass_thread_prologue_and_epilogue (gcc::context
  484. *ctxt);
  485. extern rtl_opt_pass *make_pass_stack_adjustments (gcc::context *ctxt);
  486. extern rtl_opt_pass *make_pass_sched_fusion (gcc::context *ctxt);
  487. extern rtl_opt_pass *make_pass_peephole2 (gcc::context *ctxt);
  488. extern rtl_opt_pass *make_pass_if_after_reload (gcc::context *ctxt);
  489. extern rtl_opt_pass *make_pass_regrename (gcc::context *ctxt);
  490. extern rtl_opt_pass *make_pass_cprop_hardreg (gcc::context *ctxt);
  491. extern rtl_opt_pass *make_pass_reorder_blocks (gcc::context *ctxt);
  492. extern rtl_opt_pass *make_pass_branch_target_load_optimize2 (gcc::context
  493. *ctxt);
  494. extern rtl_opt_pass *make_pass_leaf_regs (gcc::context *ctxt);
  495. extern rtl_opt_pass *make_pass_split_before_sched2 (gcc::context *ctxt);
  496. extern rtl_opt_pass *make_pass_compare_elim_after_reload (gcc::context *ctxt);
  497. extern rtl_opt_pass *make_pass_sched2 (gcc::context *ctxt);
  498. extern rtl_opt_pass *make_pass_stack_regs (gcc::context *ctxt);
  499. extern rtl_opt_pass *make_pass_stack_regs_run (gcc::context *ctxt);
  500. extern rtl_opt_pass *make_pass_df_finish (gcc::context *ctxt);
  501. extern rtl_opt_pass *make_pass_compute_alignments (gcc::context *ctxt);
  502. extern rtl_opt_pass *make_pass_duplicate_computed_gotos (gcc::context *ctxt);
  503. extern rtl_opt_pass *make_pass_variable_tracking (gcc::context *ctxt);
  504. extern rtl_opt_pass *make_pass_free_cfg (gcc::context *ctxt);
  505. extern rtl_opt_pass *make_pass_machine_reorg (gcc::context *ctxt);
  506. extern rtl_opt_pass *make_pass_cleanup_barriers (gcc::context *ctxt);
  507. extern rtl_opt_pass *make_pass_delay_slots (gcc::context *ctxt);
  508. extern rtl_opt_pass *make_pass_split_for_shorten_branches (gcc::context *ctxt);
  509. extern rtl_opt_pass *make_pass_split_before_regstack (gcc::context *ctxt);
  510. extern rtl_opt_pass *make_pass_convert_to_eh_region_ranges (gcc::context *ctxt);
  511. extern rtl_opt_pass *make_pass_shorten_branches (gcc::context *ctxt);
  512. extern rtl_opt_pass *make_pass_set_nothrow_function_flags (gcc::context *ctxt);
  513. extern rtl_opt_pass *make_pass_dwarf2_frame (gcc::context *ctxt);
  514. extern rtl_opt_pass *make_pass_final (gcc::context *ctxt);
  515. extern rtl_opt_pass *make_pass_rtl_seqabstr (gcc::context *ctxt);
  516. extern gimple_opt_pass *make_pass_release_ssa_names (gcc::context *ctxt);
  517. extern gimple_opt_pass *make_pass_early_inline (gcc::context *ctxt);
  518. extern gimple_opt_pass *make_pass_inline_parameters (gcc::context *ctxt);
  519. extern gimple_opt_pass *make_pass_update_address_taken (gcc::context *ctxt);
  520. extern gimple_opt_pass *make_pass_convert_switch (gcc::context *ctxt);
  521. /* Current optimization pass. */
  522. extern opt_pass *current_pass;
  523. extern bool execute_one_pass (opt_pass *);
  524. extern void execute_pass_list (function *, opt_pass *);
  525. extern void execute_ipa_pass_list (opt_pass *);
  526. extern void execute_ipa_summary_passes (ipa_opt_pass_d *);
  527. extern void execute_all_ipa_transforms (void);
  528. extern void execute_all_ipa_stmt_fixups (struct cgraph_node *, gimple *);
  529. extern bool pass_init_dump_file (opt_pass *);
  530. extern void pass_fini_dump_file (opt_pass *);
  531. extern const char *get_current_pass_name (void);
  532. extern void print_current_pass (FILE *);
  533. extern void debug_pass (void);
  534. extern void ipa_write_summaries (void);
  535. extern void ipa_write_optimization_summaries (struct lto_symtab_encoder_d *);
  536. extern void ipa_read_summaries (void);
  537. extern void ipa_read_optimization_summaries (void);
  538. extern void register_one_dump_file (opt_pass *);
  539. extern bool function_called_by_processed_nodes_p (void);
  540. /* Set to true if the pass is called the first time during compilation of the
  541. current function. Note that using this information in the optimization
  542. passes is considered not to be clean, and it should be avoided if possible.
  543. This flag is currently used to prevent loops from being peeled repeatedly
  544. in jump threading; it will be removed once we preserve loop structures
  545. throughout the compilation -- we will be able to mark the affected loops
  546. directly in jump threading, and avoid peeling them next time. */
  547. extern bool first_pass_instance;
  548. /* Declare for plugins. */
  549. extern void do_per_function_toporder (void (*) (function *, void *), void *);
  550. extern void disable_pass (const char *);
  551. extern void enable_pass (const char *);
  552. extern void dump_passes (void);
  553. #endif /* GCC_TREE_PASS_H */