Lines Matching refs:cnode

1210 	  cgraph_node *cnode = dyn_cast <cgraph_node *> (node);  in analyze_functions()  local
1211 if (cnode && cnode->definition) in analyze_functions()
1214 tree decl = cnode->decl; in analyze_functions()
1220 && !cnode->alias in analyze_functions()
1221 && !cnode->thunk.thunk_p in analyze_functions()
1222 && !cnode->dispatcher_function) in analyze_functions()
1224 cnode->reset (); in analyze_functions()
1225 cnode->redefined_extern_inline = true; in analyze_functions()
1229 if (!cnode->analyzed) in analyze_functions()
1230 cnode->analyze (); in analyze_functions()
1232 for (edge = cnode->callees; edge; edge = edge->next_callee) in analyze_functions()
1248 if (opt_for_fn (cnode->decl, optimize) in analyze_functions()
1249 && opt_for_fn (cnode->decl, flag_devirtualize)) in analyze_functions()
1253 for (edge = cnode->indirect_calls; edge; edge = next) in analyze_functions()
1370 if (cgraph_node *cnode = dyn_cast <cgraph_node *> (node)) in analyze_functions() local
1374 if (cnode->definition && !gimple_has_body_p (decl) in analyze_functions()
1375 && !cnode->alias in analyze_functions()
1376 && !cnode->thunk.thunk_p) in analyze_functions()
1377 cnode->reset (); in analyze_functions()
1379 gcc_assert (!cnode->definition || cnode->thunk.thunk_p in analyze_functions()
1380 || cnode->alias in analyze_functions()
1382 || cnode->native_rtl_p ()); in analyze_functions()
1383 gcc_assert (cnode->analyzed == cnode->definition); in analyze_functions()
2585 cgraph_node *cnode; in output_in_order() local
2591 FOR_EACH_DEFINED_FUNCTION (cnode) in output_in_order()
2592 if (cnode->process && !cnode->thunk.thunk_p in output_in_order()
2593 && !cnode->alias && cnode->no_reorder) in output_in_order()
2594 nodes.safe_push (cgraph_order_sort (cnode)); in output_in_order()
3005 struct cgraph_node *cnode; in finalize_compilation_unit() local
3006 FOR_EACH_FUNCTION_WITH_GIMPLE_BODY (cnode) in finalize_compilation_unit()
3007 (*debug_hooks->early_global_decl) (cnode->decl); in finalize_compilation_unit()