Lines Matching refs:exit
93 * Preferred exit node among the (direct or indirect) successors of this
96 * successors is an exit node.
98 schedule_node *exit;
111 * can unblock an exit node and lead to program termination.
116 return n->exit ? n->exit->unblocked_time : INT_MAX;
974 this->exit = NULL;
1028 /* Calculate the exit of each node by induction based on the exit nodes of
1029 * its children. The preferred exit of a node is the one among the exit
1034 n->exit = (n->inst->opcode == BRW_OPCODE_HALT ? n : NULL);
1038 n->exit = n->children[i]->exit;
1591 * choose the one most likely to unblock an early program exit, or
1693 /* Prefer the node most likely to unblock an early program exit.