Home | History | Annotate | Download | only in i965

Lines Matching defs:delay

85     * This is the sum of the instruction's latency plus the maximum delay of
88 int delay;
801 this->delay = 0;
828 /** Computation of the delay member of each node. */
834 n->delay = issue_time(n->inst);
837 assert(n->children[i]->delay);
838 n->delay = MAX2(n->delay, n->latency + n->children[i]->delay);
1506 * the one with the highest delay to the end of the program. This is
1511 if (n->delay > chosen->delay) {
1514 } else if (n->delay < chosen->delay) {
1602 /* If we expected a delay for scheduling, then bump the clock to reflect