Lines Matching refs:child_fn
1121 tree child_fn, block, t; in expand_omp_taskreg() local
1128 child_fn = gimple_omp_taskreg_child_fn (entry_stmt); in expand_omp_taskreg()
1129 child_cfun = DECL_STRUCT_FUNCTION (child_fn); in expand_omp_taskreg()
1216 arg = DECL_ARGUMENTS (child_fn); in expand_omp_taskreg()
1245 block = DECL_INITIAL (child_fn); in expand_omp_taskreg()
1253 DECL_SAVED_TREE (child_fn) = NULL; in expand_omp_taskreg()
1255 gimple_set_body (child_fn, NULL); in expand_omp_taskreg()
1259 for (t = DECL_ARGUMENTS (child_fn); t; t = DECL_CHAIN (t)) in expand_omp_taskreg()
1260 DECL_CONTEXT (t) = child_fn; in expand_omp_taskreg()
1344 cgraph_node *node = cgraph_node::get_create (child_fn); in expand_omp_taskreg()
1346 cgraph_node::add_new_function (child_fn, true); in expand_omp_taskreg()
1349 && !DECL_ASSEMBLER_NAME_SET_P (child_fn); in expand_omp_taskreg()
1355 assign_assembler_name_if_needed (child_fn); in expand_omp_taskreg()
1385 dump_function_header (dump_file, child_fn, dump_flags); in expand_omp_taskreg()
1386 dump_function_to_file (child_fn, dump_file, dump_flags); in expand_omp_taskreg()
1390 adjust_context_and_scope (region, gimple_block (entry_stmt), child_fn); in expand_omp_taskreg()
6904 tree child_fn, block, t; in expand_omp_target() local
6937 child_fn = NULL_TREE; in expand_omp_target()
6941 child_fn = gimple_omp_target_child_fn (entry_stmt); in expand_omp_target()
6942 child_cfun = DECL_STRUCT_FUNCTION (child_fn); in expand_omp_target()
6960 DECL_ATTRIBUTES (child_fn) in expand_omp_target()
6962 NULL_TREE, DECL_ATTRIBUTES (child_fn)); in expand_omp_target()
7015 arg = DECL_ARGUMENTS (child_fn); in expand_omp_target()
7022 block = DECL_INITIAL (child_fn); in expand_omp_target()
7030 DECL_SAVED_TREE (child_fn) = NULL; in expand_omp_target()
7032 gimple_set_body (child_fn, NULL); in expand_omp_target()
7036 for (t = DECL_ARGUMENTS (child_fn); t; t = DECL_CHAIN (t)) in expand_omp_target()
7037 DECL_CONTEXT (t) = child_fn; in expand_omp_target()
7091 cgraph_node *node = cgraph_node::get_create (child_fn); in expand_omp_target()
7093 cgraph_node::add_new_function (child_fn, true); in expand_omp_target()
7099 DECL_PRESERVE_P (child_fn) = 1; in expand_omp_target()
7100 vec_safe_push (offload_funcs, child_fn); in expand_omp_target()
7104 && !DECL_ASSEMBLER_NAME_SET_P (child_fn); in expand_omp_target()
7110 assign_assembler_name_if_needed (child_fn); in expand_omp_target()
7134 dump_function_header (dump_file, child_fn, dump_flags); in expand_omp_target()
7135 dump_function_to_file (child_fn, dump_file, dump_flags); in expand_omp_target()
7138 adjust_context_and_scope (region, gimple_block (entry_stmt), child_fn); in expand_omp_target()
7303 args.quick_push (build_fold_addr_expr (child_fn)); in expand_omp_target()
7328 oacc_set_fn_attrib (child_fn, clauses, &args); in expand_omp_target()