Move nested function info out of cgraph_node
this patch moves nested function information out of symbol table (to a summary). This saves memory (especially at WPA time) and also makes nested function support more contained. gcc/ChangeLog: 2020-10-22 Jan Hubicka <hubicka@ucw.cz> * cgraph.c: Include tree-nested.h (cgraph_node::create): Call maybe_record_nested_function. (cgraph_node::remove): Do not remove function from nested function infos. (cgraph_node::dump): Update. (cgraph_node::unnest): Move to tree-nested.c (cgraph_node::verify_node): Update. (cgraph_c_finalize): Call nested_function_info::release. * cgraph.h (struct symtab_node): Remove nested function info. * cgraphclones.c (cgraph_node::create_clone): Do not clone nested function info. * cgraphunit.c (cgraph_node::analyze): Update. (cgraph_node::expand): Do not worry about nested functions; they are lowered. (symbol_table::finalize_compilation_unit): Call nested_function_info::release. * gimplify.c: Include tree-nested.h (unshare_body): Update. (unvisit_body): Update. * omp-offload.c (omp_discover_implicit_declare_target): Update. * tree-nested.c: Include alloc-pool.h, tree-nested.h, symbol-summary.h (nested_function_sum): New static variable. (nested_function_info::get): New member function. (nested_function_info::get_create): New member function. (unnest_function): New function. (nested_function_info::~nested_function_info): New member function. (nested_function_info::release): New function. (maybe_record_nested_function): New function. (lookup_element_for_decl): Update. (check_for_nested_with_variably_modified): Update. (create_nesting_tree): Update. (unnest_nesting_tree_1): Update. (gimplify_all_functions): Update. (lower_nested_functions): Update. * tree-nested.h (class nested_function_info): New class. (maybe_record_nested_function): Declare. (unnest_function): Declare. (first_nested_function): New inline function. (next_nested_function): New inline function. (nested_function_origin): New inline function. gcc/ada/ChangeLog: 2020-10-22 Jan Hubicka <hubicka@ucw.cz> * gcc-interface/trans.c: Include tree-nested.h (walk_nesting_tree): Update for new nested function info. gcc/c-family/ChangeLog: 2020-10-22 Jan Hubicka <hubicka@ucw.cz> * c-gimplify.c: Include tree-nested.h (c_genericize): Update for new nested function info. gcc/d/ChangeLog: 2020-10-22 Jan Hubicka <hubicka@ucw.cz> * decl.cc: Include tree-nested.h (get_symbol_decl): Update for new nested function info.
Showing
- gcc/ada/gcc-interface/trans.c 3 additions, 1 deletiongcc/ada/gcc-interface/trans.c
- gcc/c-family/c-gimplify.c 3 additions, 1 deletiongcc/c-family/c-gimplify.c
- gcc/cgraph.c 25 additions, 51 deletionsgcc/cgraph.c
- gcc/cgraph.h 1 addition, 11 deletionsgcc/cgraph.h
- gcc/cgraphclones.c 0 additions, 6 deletionsgcc/cgraphclones.c
- gcc/cgraphunit.c 6 additions, 7 deletionsgcc/cgraphunit.c
- gcc/d/decl.cc 3 additions, 2 deletionsgcc/d/decl.cc
- gcc/gimplify.c 5 additions, 2 deletionsgcc/gimplify.c
- gcc/omp-offload.c 2 additions, 1 deletiongcc/omp-offload.c
- gcc/tree-nested.c 103 additions, 7 deletionsgcc/tree-nested.c
- gcc/tree-nested.h 62 additions, 0 deletionsgcc/tree-nested.h
Loading
Please register or sign in to comment