Home | History | Annotate | Download | only in i965

Lines Matching defs:exit

91     * Preferred exit node among the (direct or indirect) successors of this
94 * successors is an exit node.
96 schedule_node *exit;
111 * can unblock an exit node and lead to program termination.
116 return n->exit ? n->exit->unblocked_time : INT_MAX;
802 this->exit = NULL;
859 /* Calculate the exit of each node by induction based on the exit nodes of
860 * its children. The preferred exit of a node is the one among the exit
865 n->exit = (n->inst->opcode == FS_OPCODE_DISCARD_JUMP ? n : NULL);
869 n->exit = n->children[i]->exit;
1422 * choose the one most likely to unblock an early program exit, or
1518 /* Prefer the node most likely to unblock an early program exit.