GCC Middle and Back End API Reference
|
Data Structures | |
struct | pass_registry |
struct | pass_registry_hasher |
struct | uid_range |
struct | pass_list_node |
Typedefs | |
typedef const char * | char_ptr |
typedef struct uid_range * | uid_range_p |
Variables | |
struct opt_pass * | current_pass |
bool | in_gimple_form |
bool | first_pass_instance |
static hash_table < pass_registry_hasher > | name_to_pass_map |
static vec< char_ptr > | pass_tab = vNULL |
static vec< uid_range_p > | enabled_pass_uid_range_tab = vNULL |
static vec< uid_range_p > | disabled_pass_uid_range_tab = vNULL |
static struct pass_list_node * | added_pass_nodes = NULL |
static struct pass_list_node * | prev_added_pass_node |
static int | nnodes |
static cgraph_node_ptr * | order |
static struct profile_record * | profile_record |
typedef const char* char_ptr |
Map from pass id to canonicalized pass name.
typedef struct uid_range* uid_range_p |
|
static |
Update static_pass_number for passes (and the flag TODO_mark_first_instance). Passes are constructed with static_pass_number preinitialized to 0 This field is used in two different ways: initially as instance numbers of their kind, and then as ids within the entire pass manager. Within pass_manager::pass_manager: * In add_pass_instance(), as called by next_pass_1 in NEXT_PASS in init_optimization_passes * When the initial instance of a pass within a pass manager is seen, it is flagged, and its static_pass_number is set to -1 * On subsequent times that it is seen, the static pass number is decremented each time, so that if there are e.g. 4 dups, they have static_pass_number -4, 2, 3, 4 respectively (note how the initial one is negative and gives the count); these can be thought of as instance numbers of the specific pass * Within the register_dump_files () traversal, set_pass_for_id() is called on each pass, using these instance numbers to create dumpfile switches, and then overwriting them with a pass id, which are global to the whole pass manager (based on (TDI_end + current value of extra_dump_files_in_use) )
References invoke_plugin_callbacks(), pass_data::name, opt_pass::static_pass_number, and pass_data::todo_flags_start.
Referenced by next_pass_1(), and position_pass().
|
static |
Callback for do_per_function to apply all IPA transforms.
References cgraph_get_node(), current_function_decl, execute_all_ipa_transforms(), cgraph_node::global, cgraph_global_info::inlined_to, cgraph_node::ipa_transforms_to_apply, and rebuild_cgraph_edges().
Referenced by execute_one_pass().
|
static |
Do profile consistency book-keeping for the pass with static number INDEX. If SUBPASS is zero, we run _before_ the pass, and if SUBPASS is one, then we run _after_ the pass. RUN is true if the pass really runs, or FALSE if we are only book-keeping on passes that may have selectively disabled themselves on a given function.
References account_profile_record(), g, gcc::context::get_passes(), gcc::pass_manager::passes_by_id_size, and profile_record::run.
Referenced by execute_one_ipa_transform_pass(), and execute_one_pass().
|
static |
Clear the last verified flag.
References cfun, and function::last_verified.
Referenced by execute_one_pass().
|
static |
The function traverses NAME_TO_PASS_MAP and creates a pass info table for dumping purpose.
References g, gcc::context::get_passes(), name_to_pass_map, pass_tab, gcc::pass_manager::passes_by_id_size, and passes_pass_traverse().
Referenced by gcc::pass_manager::dump_passes().
DEBUG_FUNCTION void debug_pass | ( | void | ) |
Call from the debugger to get the current pass name.
References print_current_pass().
void debug_properties | ( | unsigned | int | ) |
DEBUG_FUNCTION void debug_properties | ( | ) |
References dump_properties().
void disable_pass | ( | ) |
Disable pass specified by ARG.
References enable_disable_pass().
Referenced by handle_common_deferred_options().
|
static |
If we are in IPA mode (i.e., current_function_decl is NULL), call function CALLBACK for every function in the call graph. Otherwise, call CALLBACK on the current function.
References symtab_node_base::analyzed, CDI_DOMINATORS, CDI_POST_DOMINATORS, cgraph_node::clone_of, current_function_decl, symtab_node_base::decl, free_dominance_info(), ggc_collect(), gimple_has_body_p(), pop_cfun(), push_cfun(), and cgraph_node::symbol.
Referenced by execute_one_ipa_transform_pass(), execute_one_pass(), and execute_todo().
void do_per_function_toporder | ( | void(*)(void *data) | callback, |
void * | data | ||
) |
If we are in IPA mode (i.e., current_function_decl is NULL), call function CALLBACK for every function in the call graph. Otherwise, call CALLBACK on the current function. This function is global so that plugins can use it.
References CDI_DOMINATORS, CDI_POST_DOMINATORS, cgraph_function_with_gimple_body_p(), cgraph_get_body(), cgraph_n_nodes, current_function_decl, symtab_node_base::decl, free_dominance_info(), ggc_collect(), ggc_free(), ipa_reverse_postorder(), nnodes, pop_cfun(), cgraph_node::process, push_cfun(), and cgraph_node::symbol.
Referenced by execute_ipa_pass_list().
|
static |
Dump the instantiated name for PASS. IS_ON indicates if PASS is turned on or not.
References current_function_decl, opt_pass::gate(), pass_data::has_gate, indent, pass_data::name, override_gate_status(), pass_tab, and opt_pass::static_pass_number.
Referenced by dump_pass_list().
|
static |
Dump pass list PASS with indentation INDENT.
References dump_one_pass(), opt_pass::next, and opt_pass::sub.
Referenced by gcc::pass_manager::dump_passes().
void dump_passes | ( | void | ) |
Dump all optimization passes.
References gcc::pass_manager::dump_passes(), g, and gcc::context::get_passes().
Referenced by finalize_compilation_unit().
void dump_profile_report | ( | void | ) |
Output profile consistency.
References gcc::pass_manager::dump_profile_report(), g, and gcc::context::get_passes().
Referenced by finalize().
void dump_properties | ( | FILE * | , |
unsigned | int | ||
) |
Referenced by debug_properties().
DEBUG_FUNCTION void dump_properties | ( | ) |
|
static |
Parse option string for -fdisable- and -fenable- The syntax of the options: -fenable-<pass_name> -fdisable-<pass_name> -fenable-<pass_name>=s1:e1,s2:e2,... -fdisable-<pass_name>=s1:e1,s2:e2,...
References uid_range::assem_name, disabled_pass_uid_range_tab, enabled_pass_uid_range_tab, error(), free(), get_pass_by_name(), inform(), last, uid_range::last, uid_range::next, uid_range::start, and opt_pass::static_pass_number.
Referenced by disable_pass(), and enable_pass().
void enable_pass | ( | ) |
Enable pass specified by ARG.
References enable_disable_pass().
Referenced by handle_common_deferred_options().
|
static |
References CGRAPH_STATE_IPA_SSA.
void execute_all_ipa_stmt_fixups | ( | ) |
Execute stmt fixup hooks of all IPA passes for NODE and STMTS.
References gcc::pass_manager::all_regular_ipa_passes, execute_ipa_stmt_fixups(), g, and gcc::context::get_passes().
Referenced by input_function().
void execute_all_ipa_transforms | ( | void | ) |
For the current function, execute all ipa transforms.
References cfun, cgraph_get_node(), current_function_decl, execute_one_ipa_transform_pass(), and cgraph_node::ipa_transforms_to_apply.
Referenced by apply_ipa_transforms(), and expand_function().
|
static |
Helper function to perform function body dump.
References cfun, function::curr_properties, current_function_decl, dump_file, dump_file_name, dump_flags, dump_function_to_file(), get_insns(), print_graph_cfg(), and print_rtl_with_bb().
Referenced by execute_one_ipa_transform_pass(), and execute_one_pass().
|
static |
Perform all TODO actions that ought to be done on each function.
References cfun, cleanup_tree_cfg(), compute_may_aliases(), execute_update_addresses_taken(), function::last_verified, LOOP_CLOSED_SSA, loops_state_satisfies_p(), need_ssa_update_p(), rebuild_cgraph_edges(), rebuild_frequencies(), remove_unused_locals(), seen_error(), update_ssa(), verify_flow_info(), verify_gimple_in_cfg(), verify_loop_closed_ssa(), verify_rtl_sharing(), and verify_ssa().
Referenced by execute_todo().
void execute_ipa_pass_list | ( | ) |
Same as execute_pass_list but assume that subpasses of IPA passes are local passes.
References cfun, cgraph_process_new_functions(), current_function_decl, do_per_function_toporder(), execute_one_pass(), execute_pass_list(), GIMPLE_PASS, invoke_plugin_callbacks(), IPA_PASS, opt_pass::next, SIMPLE_IPA_PASS, opt_pass::sub, and pass_data::type.
Referenced by compile(), and ipa_passes().
|
static |
Execute stmt fixup hooks of all passes in PASS for NODE and STMTS.
References opt_pass::gate(), pass_data::has_gate, IPA_PASS, opt_pass::next, pass_fini_dump_file(), pass_init_dump_file(), ipa_opt_pass_d::stmt_fixup, opt_pass::sub, timevar_pop(), timevar_push(), pass_data::tv_id, and pass_data::type.
Referenced by execute_all_ipa_stmt_fixups().
void execute_ipa_summary_passes | ( | ) |
Execute summary generation for all of the passes in IPA_PASS.
References opt_pass::gate(), ipa_opt_pass_d::generate_summary, pass_data::has_gate, IPA_PASS, opt_pass::next, pass_fini_dump_file(), pass_init_dump_file(), timevar_pop(), timevar_push(), pass_data::tv_id, and pass_data::type.
Referenced by ipa_passes().
|
static |
Execute IPA_PASS function transform on NODE.
References cfun, check_profile_consistency(), function::curr_properties, current_pass, do_per_function(), execute_function_dump(), execute_todo(), ipa_opt_pass_d::function_transform, ipa_opt_pass_d::function_transform_todo_flags_start, ggc_collect(), in_gimple_form, pass_fini_dump_file(), pass_init_dump_file(), opt_pass::static_pass_number, timevar_pop(), timevar_push(), pass_data::tv_id, TV_NONE, and verify_interpass_invariants().
Referenced by execute_all_ipa_transforms().
bool execute_one_pass | ( | ) |
Execute PASS.
References apply_ipa_transforms(), cfun, cgraph_process_new_functions(), check_profile_consistency(), clear_last_verified(), function::curr_properties, current_function_decl, current_pass, do_per_function(), dump_file, opt_pass::execute(), execute_function_dump(), execute_todo(), opt_pass::gate(), ggc_collect(), pass_data::has_execute, pass_data::has_gate, in_gimple_form, invoke_plugin_callbacks(), IPA_PASS, cgraph_node::ipa_transforms_to_apply, pass_data::name, override_gate_status(), pass_fini_dump_file(), pass_init_dump_file(), pass_data::properties_required, RTL_PASS, SIMPLE_IPA_PASS, opt_pass::static_pass_number, symtab_remove_unreachable_nodes(), timevar_pop(), timevar_push(), pass_data::todo_flags_finish, pass_data::todo_flags_start, pass_data::tv_id, TV_NONE, pass_data::type, update_properties_after_pass(), verify_curr_properties(), and verify_interpass_invariants().
Referenced by execute_ipa_pass_list(), and execute_pass_list().
void execute_pass_list | ( | ) |
References execute_one_pass(), GIMPLE_PASS, opt_pass::next, RTL_PASS, opt_pass::sub, and pass_data::type.
Referenced by analyze_function(), cgraph_add_new_function(), gcc::pass_manager::execute_early_local_passes(), execute_ipa_pass_list(), and expand_function().
|
static |
Perform all TODO actions.
References cfun, current_function_decl, df_finish_pass(), do_per_function(), dump_file, dump_symtab(), execute_function_todo(), first_pass_instance, need_ssa_update_p(), statistics_fini_pass(), symtab_remove_unreachable_nodes(), timevar_pop(), and timevar_push().
Referenced by execute_one_ipa_transform_pass(), and execute_one_pass().
bool function_called_by_processed_nodes_p | ( | void | ) |
Called by local passes to see if function is called by already processed nodes. Because we process nodes in topological order, this means that function is in recursive cycle or we introduced new direct calls.
References cgraph_edge::caller, cgraph_function_with_gimple_body_p(), cgraph_get_node(), current_function_decl, symtab_node_base::decl, dump_cgraph_node(), dump_file, cgraph_node::global, cgraph_global_info::inlined_to, cgraph_edge::next_caller, cgraph_node::process, and cgraph_node::symbol.
Referenced by skip_function_for_local_pure_const().
|
static |
Gate: execute, or not, all of the non-trivial optimizations.
References seen_error().
|
static |
Gate: execute, or not, all of the non-trivial optimizations.
References seen_error().
|
static |
Gate: execute, or not, all of the non-trivial optimizations.
|
static |
Gate: execute, or not, all of the non-trivial optimizations.
|
static |
References reload_completed.
|
static |
References seen_error().
|
staticread |
Returns the pass with NAME.
References name_to_pass_map, and pass_registry::unique_name.
Referenced by enable_disable_pass().
void ipa_read_optimization_summaries | ( | void | ) |
Read all the summaries for all_regular_ipa_passes and all_lto_gen_passes.
References gcc::pass_manager::all_lto_gen_passes, gcc::pass_manager::all_regular_ipa_passes, g, gcc::context::get_passes(), and ipa_read_optimization_summaries_1().
|
static |
Same as execute_pass_list but assume that subpasses of IPA passes are local passes.
References cfun, current_function_decl, opt_pass::gate(), GIMPLE_PASS, pass_data::has_gate, IPA_PASS, opt_pass::next, pass_fini_dump_file(), pass_init_dump_file(), ipa_opt_pass_d::read_optimization_summary, SIMPLE_IPA_PASS, opt_pass::sub, timevar_pop(), timevar_push(), pass_data::tv_id, and pass_data::type.
Referenced by ipa_read_optimization_summaries().
void ipa_read_summaries | ( | void | ) |
Read all the summaries for all_regular_ipa_passes and all_lto_gen_passes.
References gcc::pass_manager::all_lto_gen_passes, gcc::pass_manager::all_regular_ipa_passes, g, gcc::context::get_passes(), and ipa_read_summaries_1().
|
static |
Same as execute_pass_list but assume that subpasses of IPA passes are local passes.
References cfun, current_function_decl, opt_pass::gate(), GIMPLE_PASS, pass_data::has_gate, IPA_PASS, opt_pass::next, pass_fini_dump_file(), pass_init_dump_file(), ipa_opt_pass_d::read_summary, SIMPLE_IPA_PASS, opt_pass::sub, timevar_pop(), timevar_push(), pass_data::tv_id, and pass_data::type.
Referenced by ipa_read_summaries().
void ipa_write_optimization_summaries | ( | ) |
Write all the optimization summaries for the cgraph nodes in SET. If SET is NULL, write out all summaries of all nodes.
References gcc::pass_manager::all_lto_gen_passes, gcc::pass_manager::all_regular_ipa_passes, symtab_node_base::decl, symtab_node_base::definition, g, gcc::context::get_passes(), gimple_has_body_p(), ipa_write_optimization_summaries_1(), lsei_cgraph_node(), lsei_end_p(), lsei_next_function_in_partition(), lsei_start_function_in_partition(), lto_delete_out_decl_state(), lto_get_out_decl_state(), lto_new_out_decl_state(), lto_pop_out_decl_state(), lto_push_out_decl_state(), pop_cfun(), push_cfun(), renumber_gimple_stmt_uids(), cgraph_node::symbol, and lto_out_decl_state::symtab_node_encoder.
|
static |
Same as execute_pass_list but assume that subpasses of IPA passes are local passes. If SET is not NULL, write out optimization summaries of only those node in SET.
References cfun, current_function_decl, opt_pass::gate(), GIMPLE_PASS, pass_data::has_gate, IPA_PASS, opt_pass::next, pass_fini_dump_file(), pass_init_dump_file(), SIMPLE_IPA_PASS, opt_pass::sub, timevar_pop(), timevar_push(), pass_data::tv_id, pass_data::type, and ipa_opt_pass_d::write_optimization_summary.
Referenced by ipa_write_optimization_summaries().
void ipa_write_summaries | ( | void | ) |
Write out summaries for all the nodes in the callgraph.
References symtab_node_base::alias, cgraph_function_with_gimple_body_p(), cgraph_n_nodes, compute_ltrans_boundary(), symtab_node_base::decl, symtab_node_base::definition, free(), ipa_reverse_postorder(), ipa_write_summaries_1(), lto_set_symtab_encoder_in_partition(), lto_symtab_encoder_new(), order, pop_cfun(), push_cfun(), renumber_gimple_stmt_uids(), seen_error(), and cgraph_node::symbol.
Referenced by ipa_passes().
|
static |
Helper function of ipa_write_summaries. Creates and destroys the decl state and calls ipa_write_summaries_2 for all passes that have summaries. SET is the set of nodes to be written.
References gcc::pass_manager::all_lto_gen_passes, gcc::pass_manager::all_regular_ipa_passes, g, gcc::context::get_passes(), ipa_write_summaries_2(), lto_delete_out_decl_state(), lto_get_out_decl_state(), lto_new_out_decl_state(), lto_pop_out_decl_state(), lto_push_out_decl_state(), and lto_out_decl_state::symtab_node_encoder.
Referenced by ipa_write_summaries().
|
static |
Same as execute_pass_list but assume that subpasses of IPA passes are local passes. If SET is not NULL, write out summaries of only those node in SET.
References cfun, current_function_decl, opt_pass::gate(), GIMPLE_PASS, pass_data::has_gate, IPA_PASS, opt_pass::next, pass_fini_dump_file(), pass_init_dump_file(), SIMPLE_IPA_PASS, opt_pass::sub, timevar_pop(), timevar_push(), pass_data::tv_id, pass_data::type, and ipa_opt_pass_d::write_summary.
Referenced by ipa_write_summaries_1().
|
static |
Returns true if PASS is explicitly enabled/disabled for FUNC.
References uid_range::assem_name, cgraph_get_node(), last, uid_range::next, uid_range::start, opt_pass::static_pass_number, and cgraph_node::uid.
Referenced by override_gate_status().
|
static |
|
static |
|
static |
simple_ipa_opt_pass* make_pass_early_local_passes | ( | ) |
|
static |
|
static |
|
staticread |
Add a pass to the pass list. Duplicate the pass if it's already in the list.
References add_pass_instance(), pass_data::name, and opt_pass::next.
Referenced by dump_one_pass(), and execute_one_pass().
|
static |
Check if PASS is explicitly disabled or enabled and return the gate status. FUNC is the function to be processed, and GATE_STATUS is the gate status determined by pass manager by default.
References disabled_pass_uid_range_tab, enabled_pass_uid_range_tab, and is_pass_explicitly_enabled_or_disabled().
void pass_fini_dump_file | ( | ) |
Flush PASS dump file.
This is non-static so that plugins can use it.
References dump_file_name, dump_finish(), free(), opt_pass::static_pass_number, timevar_pop(), and timevar_push().
Referenced by execute_ipa_stmt_fixups(), execute_ipa_summary_passes(), execute_one_ipa_transform_pass(), execute_one_pass(), ipa_read_optimization_summaries_1(), ipa_read_summaries_1(), ipa_write_optimization_summaries_1(), and ipa_write_summaries_2().
bool pass_init_dump_file | ( | ) |
Initialize pass dump file.
This is non-static so that the plugins can use it.
References cfun, clean_graph_dump_file(), function::curr_properties, current_function_decl, dump_file, dump_file_name, dump_flags, dump_function_header(), dump_initialized_p(), dump_start(), get_dump_file_name(), opt_pass::static_pass_number, timevar_pop(), and timevar_push().
Referenced by execute_ipa_stmt_fixups(), execute_ipa_summary_passes(), execute_one_ipa_transform_pass(), execute_one_pass(), ipa_read_optimization_summaries_1(), ipa_read_summaries_1(), ipa_write_optimization_summaries_1(), and ipa_write_summaries_2().
int passes_pass_traverse | ( | ) |
Callback function for traversing NAME_TO_PASS_MAP.
References pass_tab, and opt_pass::static_pass_number.
Referenced by create_pass_tab().
|
static |
Insert the pass at the proper position. Return true if the pass is successfully added. NEW_PASS_INFO - new pass to be inserted PASS_LIST - root of the pass list to insert the new pass to
References add_pass_instance(), added_pass_nodes, opt_pass::clone(), error(), opt_pass::next, pass_list_node::next, register_pass_info::pass, pass_list_node::pass, PASS_POS_INSERT_AFTER, PASS_POS_INSERT_BEFORE, PASS_POS_REPLACE, register_pass_info::pos_op, prev_added_pass_node, register_pass_info::ref_pass_instance_number, register_pass_info::reference_pass_name, opt_pass::sub, pass_data::tv_id, and pass_data::type.
Referenced by gcc::pass_manager::register_pass().
void print_current_pass | ( | ) |
Call from anywhere to find out what pass this is. Useful for printing out debugging information deep inside an service routine.
References current_pass, pass_data::name, and opt_pass::static_pass_number.
Referenced by debug_pass().
void register_one_dump_file | ( | ) |
Iterate over the pass tree allocating dump file numbers. We want to do this depth first, and independent of whether the pass is enabled or not.
References g, gcc::context::get_passes(), and gcc::pass_manager::register_one_dump_file().
void register_pass | ( | ) |
Hooks a new pass into the pass lists. PASS_INFO - pass information that specifies the opt_pass object, reference pass, instance number, and how to position the pass
References g, gcc::context::get_passes(), and gcc::pass_manager::register_pass().
Referenced by register_callback().
|
static |
Referenced by gcc::pass_manager::register_one_dump_file().
|
static |
Register PASS with NAME.
References name_to_pass_map, pass_registry::pass, and pass_registry::unique_name.
void rest_of_decl_compilation | ( | tree | decl, |
int | top_level, | ||
int | at_end | ||
) |
This is called from various places for FUNCTION_DECL, VAR_DECL, and TYPE_DECL nodes. This does nothing for local (non-static) variables, unless the variable is a register variable with DECL_ASSEMBLER_NAME set. In that case, or if the variable is not an automatic, it sets up the RTL and outputs any assembler code (label definition, storage allocation and initialization). DECL is the declaration. TOP_LEVEL is nonzero if this declaration is not within a function.
References asm_out_file, assemble_alias(), debug_hooks, get_identifier(), last_assemble_variable_decl, lookup_attribute(), make_decl_rtl(), seen_error(), timevar_pop(), timevar_push(), gcc_debug_hooks::type_decl, varpool_finalize_decl(), and varpool_node_for_decl().
Referenced by expand_one_hard_reg_var(), and wrapup_global_declaration_2().
void rest_of_type_compilation | ( | ) |
Called after finishing a record, union or enumeral type.
References debug_hooks, seen_error(), timevar_pop(), timevar_push(), and gcc_debug_hooks::type_decl.
|
static |
After executing the pass, apply expected changes to the function properties.
References cfun, function::curr_properties, pass_data::properties_destroyed, and pass_data::properties_provided.
Referenced by execute_one_pass().
|
static |
Helper function. Verify that the properties has been turn into the properties expected by the pass.
References cfun, and function::curr_properties.
Referenced by execute_one_pass().
|
static |
Verify invariants that should hold between passes. This is a place to put simple sanity checks.
References fold_deferring_overflow_warnings_p().
Referenced by execute_one_ipa_transform_pass(), and execute_one_pass().
|
static |
Referenced by position_pass(), and gcc::pass_manager::register_pass().
struct opt_pass* current_pass |
This is used for debugging. It allows the current pass to printed from anywhere in compilation. The variable current_pass is also used for statistics and plugins.
Referenced by connect_traces(), curr_statistics_hash(), execute_one_ipa_transform_pass(), execute_one_pass(), print_current_pass(), statistics_counter_event(), statistics_fini_pass(), statistics_fini_pass_2(), and statistics_histogram_event().
|
static |
Referenced by enable_disable_pass(), and override_gate_status().
|
static |
Referenced by enable_disable_pass(), and override_gate_status().
bool first_pass_instance |
Set to true if the pass is called the first time during compilation of the current function. Note that using this information in the optimization passes is considered not to be clean, and it should be avoided if possible. This flag is currently used to prevent loops from being peeled repeatedly in jump threading; it will be removed once we preserve loop structures throughout the compilation -- we will be able to mark the affected loops directly in jump threading, and avoid peeling them next time.
Referenced by acceptable_pow_call(), execute_todo(), reassociate_bb(), and tree_ssa_dominator_optimize().
bool in_gimple_form |
Global variables used to communicate with passes.
Referenced by execute_one_ipa_transform_pass(), execute_one_pass(), fold_binary_loc(), fold_cond_expr_with_comparison(), fold_indirect_ref_1(), and non_lvalue_loc().
|
static |
Referenced by create_pass_tab(), get_pass_by_name(), and register_pass_name().
|
static |
Because inlining might remove no-longer reachable nodes, we need to keep the array visible to garbage collector to avoid reading collected out nodes.
Referenced by do_per_function_toporder(), and ipa_inline().
|
static |
Referenced by alloc_page(), blocks_in_phiopt_order(), clear_marks(), debug_print_page_list(), df_maybe_reorganize_def_refs(), df_maybe_reorganize_use_refs(), estimate_function_body_sizes(), expand_all_functions(), extend_rgns(), find_reg(), ggc_free(), ggc_internal_alloc_stat(), ggc_pch_alloc_object(), ggc_pch_count_object(), ggc_pch_write_object(), ggc_round_alloc_size_1(), init_ggc(), inline_small_functions(), input_node(), input_varpool_node(), ipa_inline(), ipa_profile(), ipa_reduced_postorder(), ipa_write_summaries(), poison_pages(), propagate(), propagate_nothrow(), propagate_pure_const(), and sweep_pages().
Referenced by create_pass_tab(), dump_one_pass(), and passes_pass_traverse().
|
static |
Referenced by position_pass().
|
static |