Lines Matching defs:cost
68 * up front and stored in a 2-dimensional array, so that the cost of
155 * approximate cost of spilling this node.
735 * Returns a node number to be spilled according to the cost/benefit using
751 float cost = g->nodes[n].spill_cost;
754 if (cost <= 0.0f)
762 if (benefit / cost > best_benefit) {
763 best_benefit = benefit / cost;
772 * Only nodes with a spill cost set (cost != 0.0) will be considered
776 ra_set_node_spill_cost(struct ra_graph *g, unsigned int n, float cost)
778 g->nodes[n].spill_cost = cost;