Home
last modified time | relevance | path

Searched refs:cgn (Results 1 – 16 of 16) sorted by relevance

/netbsd/usr.bin/make/
H A Dmake.c386 GNode *cgn = ln->datum; in PretendAllChildrenAreMade() local
417 cgn->name); in Make_HandleUse()
484 cgn->type |= OP_MARK; in MakeHandleUse()
672 Make_Update(GNode *cgn) in Make_Update() argument
685 DEBUG2(MAKE, "Make_Update: %s%s\n", cgn->name, cgn->cohort_num); in Make_Update()
703 cgn->cohort_num); in Make_Update()
709 centurion = cgn; in Make_Update()
802 cgn->name, cgn->cohort_num, in Make_Update()
851 cgn->type |= OP_MARK; in MakeAddAllSrc()
870 if (cgn->made == MADE) in MakeAddAllSrc()
[all …]
H A Dsuff.c1244 GNode *cgn = cln->datum; in ExpandWildcards() local
1247 if (!Dir_HasWildcards(cgn->name)) in ExpandWildcards()
1254 SearchPath_Expand(Suff_FindPath(cgn), cgn->name, &expansions); in ExpandWildcards()
1282 Lst_Remove(&cgn->parents, Lst_FindDatum(&cgn->parents, pgn)); in ExpandWildcards()
1363 GNode *cgn = cln->datum; in ExpandChildren() local
1366 if (!Lst_IsEmpty(&cgn->order_pred) || !Lst_IsEmpty(&cgn->order_succ)) in ExpandChildren()
1370 if (cgn->type & OP_WAIT) in ExpandChildren()
1380 if (strchr(cgn->name, '$') == NULL) { in ExpandChildren()
1386 cp = Var_Subst(cgn->name, pgn, VARE_UNDEFERR); in ExpandChildren()
1392 if (cgn->type & OP_ARCHV) { in ExpandChildren()
[all …]
H A Dcompat.c521 GNode *cgn = ln->datum; in MakeNodes() local
522 Compat_Make(cgn, pgn); in MakeNodes()
H A Dparse.c612 LinkSource(GNode *pgn, GNode *cgn, bool isSpecial) in LinkSource() argument
617 Lst_Append(&pgn->children, cgn); in LinkSource()
622 Lst_Append(&cgn->parents, pgn); in LinkSource()
626 pgn->name, cgn->name); in LinkSource()
628 Targ_PrintNode(cgn, 0); in LinkSource()
/netbsd/sbin/resize_ffs/
H A Dresize_ffs.c474 cg = cgs[cgn]; in initcg()
687 cgn++; in find_freespace()
693 cgn = 0; in find_freespace()
733 cgn++; in find_freeblock()
739 cgn = 0; in find_freeblock()
774 cgn++; in find_freeinode()
780 cgn = 0; in find_freeinode()
793 int cgn; in free_frag() local
806 int cgn; in alloc_frag() local
1875 cg = cgs[cgn]; in rescan_blkmaps()
[all …]
/netbsd/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-gimplify.c118 struct cgraph_node *cgn; in c_genericize() local
152 cgn = cgraph_node::get_create (fndecl); in c_genericize()
153 for (cgn = cgn->nested; cgn ; cgn = cgn->next_nested) in c_genericize()
154 c_genericize (cgn->decl); in c_genericize()
H A Dc-gimplify.cc572 struct cgraph_node *cgn; in c_genericize() local
620 cgn = cgraph_node::get_create (fndecl); in c_genericize()
621 for (cgn = first_nested_function (cgn); in c_genericize()
622 cgn; cgn = next_nested_function (cgn)) in c_genericize()
623 c_genericize (cgn->decl); in c_genericize()
/netbsd/external/gpl3/gcc.old/dist/gcc/c-family/
H A Dc-gimplify.c118 struct cgraph_node *cgn; in c_genericize() local
152 cgn = cgraph_node::get_create (fndecl); in c_genericize()
153 for (cgn = cgn->nested; cgn ; cgn = cgn->next_nested) in c_genericize()
154 c_genericize (cgn->decl); in c_genericize()
/netbsd/external/gpl3/gcc/dist/gcc/
H A Dtree-nested.c819 struct cgraph_node *cgn = cgraph_node::get (fndecl); in check_for_nested_with_variably_modified() local
822 for (cgn = cgn->nested; cgn ; cgn = cgn->next_nested) in check_for_nested_with_variably_modified()
840 create_nesting_tree (struct cgraph_node *cgn) in create_nesting_tree() argument
847 info->context = cgn->decl; in create_nesting_tree()
848 info->thunk_p = cgn->thunk.thunk_p; in create_nesting_tree()
850 for (cgn = cgn->nested; cgn ; cgn = cgn->next_nested) in create_nesting_tree()
3561 struct cgraph_node *cgn; in lower_nested_functions() local
3565 cgn = cgraph_node::get (fndecl); in lower_nested_functions()
3566 if (!cgn->nested) in lower_nested_functions()
3569 gimplify_all_functions (cgn); in lower_nested_functions()
[all …]
H A Dtree-nested.cc920 for (cgn = first_nested_function (cgn); cgn; in check_for_nested_with_variably_modified()
921 cgn = next_nested_function (cgn)) in check_for_nested_with_variably_modified()
946 info->context = cgn->decl; in create_nesting_tree()
947 info->thunk_p = cgn->thunk; in create_nesting_tree()
949 for (cgn = first_nested_function (cgn); cgn; in create_nesting_tree()
950 cgn = next_nested_function (cgn)) in create_nesting_tree()
3716 struct cgraph_node *cgn; in lower_nested_functions() local
3720 cgn = cgraph_node::get (fndecl); in lower_nested_functions()
3721 if (!first_nested_function (cgn)) in lower_nested_functions()
3724 gimplify_all_functions (cgn); in lower_nested_functions()
[all …]
H A Domp-offload.cc352 struct cgraph_node *cgn; in omp_discover_implicit_declare_target() local
358 for (cgn = first_nested_function (node); in omp_discover_implicit_declare_target()
359 cgn; cgn = next_nested_function (cgn)) in omp_discover_implicit_declare_target()
360 if (omp_declare_target_fn_p (cgn->decl)) in omp_discover_implicit_declare_target()
361 worklist.safe_push (cgn->decl); in omp_discover_implicit_declare_target()
362 else if (DECL_STRUCT_FUNCTION (cgn->decl) in omp_discover_implicit_declare_target()
363 && DECL_STRUCT_FUNCTION (cgn->decl)->has_omp_target) in omp_discover_implicit_declare_target()
364 worklist.safe_push (cgn->decl); in omp_discover_implicit_declare_target()
H A Dgimplify.c956 struct cgraph_node *cgn = cgraph_node::get (fndecl); in unshare_body() local
968 if (cgn) in unshare_body()
969 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested) in unshare_body()
970 unshare_body (cgn->decl); in unshare_body()
1005 struct cgraph_node *cgn = cgraph_node::get (fndecl); in unvisit_body() local
1011 if (cgn) in unvisit_body()
1012 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested) in unvisit_body()
1013 unvisit_body (cgn->decl); in unvisit_body()
H A Dgimplify.cc961 struct cgraph_node *cgn = cgraph_node::get (fndecl); in unshare_body() local
973 if (cgn) in unshare_body()
974 for (cgn = first_nested_function (cgn); cgn; in unshare_body()
975 cgn = next_nested_function (cgn)) in unshare_body()
976 unshare_body (cgn->decl); in unshare_body()
1011 struct cgraph_node *cgn = cgraph_node::get (fndecl); in unvisit_body() local
1017 if (cgn) in unvisit_body()
1018 for (cgn = first_nested_function (cgn); in unvisit_body()
1019 cgn; cgn = next_nested_function (cgn)) in unvisit_body()
1020 unvisit_body (cgn->decl); in unvisit_body()
/netbsd/external/gpl3/gcc.old/dist/gcc/
H A Dtree-nested.c819 struct cgraph_node *cgn = cgraph_node::get (fndecl); in check_for_nested_with_variably_modified() local
822 for (cgn = cgn->nested; cgn ; cgn = cgn->next_nested) in check_for_nested_with_variably_modified()
840 create_nesting_tree (struct cgraph_node *cgn) in create_nesting_tree() argument
847 info->context = cgn->decl; in create_nesting_tree()
848 info->thunk_p = cgn->thunk.thunk_p; in create_nesting_tree()
850 for (cgn = cgn->nested; cgn ; cgn = cgn->next_nested) in create_nesting_tree()
3561 struct cgraph_node *cgn; in lower_nested_functions() local
3565 cgn = cgraph_node::get (fndecl); in lower_nested_functions()
3566 if (!cgn->nested) in lower_nested_functions()
3569 gimplify_all_functions (cgn); in lower_nested_functions()
[all …]
H A Dgimplify.c956 struct cgraph_node *cgn = cgraph_node::get (fndecl); in unshare_body() local
968 if (cgn) in unshare_body()
969 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested) in unshare_body()
970 unshare_body (cgn->decl); in unshare_body()
1005 struct cgraph_node *cgn = cgraph_node::get (fndecl); in unvisit_body() local
1011 if (cgn) in unvisit_body()
1012 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested) in unvisit_body()
1013 unvisit_body (cgn->decl); in unvisit_body()
/netbsd/etc/
H A Dservices4979 cgn-stat 2182/tcp # CGN status
4980 cgn-stat 2182/udp # CGN status
4981 cgn-config 2183/tcp # Code Green configuration [Chris_Michaelson] …
4982 cgn-config 2183/udp # Code Green configuration [Chris_Michaelson] …