Home
last modified time | relevance | path

Searched refs:scc_root (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/tools/build/src/engine/
Dmake.cpp248 if ( t->scc_root == NULL && t->progress > T_MAKE_ACTIVE ) in make0rescan()
264 if ( result && t->scc_root == NULL ) in make0rescan()
266 t->scc_root = rescanning; in make0rescan()
459 TARGET * scc_root = target_scc( c->target ); in make0() local
460 if ( scc_root->fate == T_FATE_MAKING && in make0()
461 ( !scc_root->includes || in make0()
462 scc_root->includes->fate != T_FATE_MAKING ) ) in make0()
464 if ( scc_root->depth < cycle_depth ) in make0()
466 cycle_depth = scc_root->depth; in make0()
467 t->scc_root = scc_root; in make0()
[all …]
Drules.cpp220 while ( result->scc_root ) in target_scc()
221 result = result->scc_root; in target_scc()
222 while ( t->scc_root ) in target_scc()
224 TARGET * const tmp = t->scc_root; in target_scc()
225 t->scc_root = result; in target_scc()
Dmake1.cpp295 TARGET * const scc_root = target_scc( t ); in make1a() local
297 if ( !pState->parent || target_scc( pState->parent ) != scc_root ) in make1a()
298 pState->t = t = scc_root; in make1a()
702 if ( t->scc_root ) in make1c()
704 TARGET * const scc_root = target_scc( t ); in make1c() local
705 assert( scc_root->progress < T_MAKE_DONE ); in make1c()
708 if ( target_scc( c->target ) == scc_root ) in make1c()
712 scc_root->parents = targetentry( scc_root->parents, in make1c()
Drules.h222 TARGET * scc_root; /* used by make to resolve cyclic includes member