Lines Matching refs:delay
87 * This is the sum of the instruction's latency plus the maximum delay of
90 int delay;
973 this->delay = 0;
997 /** Computation of the delay member of each node. */
1003 n->delay = issue_time(n->inst);
1006 assert(n->children[i]->delay);
1007 n->delay = MAX2(n->delay, n->latency + n->children[i]->delay);
1680 * the one with the highest delay to the end of the program. This is
1685 if (n->delay > chosen->delay) {
1689 } else if (n->delay < chosen->delay) {
1784 /* If we expected a delay for scheduling, then bump the clock to reflect