Lines Matching defs:node
86 lcra_set_alignment(struct lcra_state *l, unsigned node, unsigned align_log2, unsigned bound)
88 l->alignment[node] = (align_log2 + 1) | (bound << 16);
99 lcra_restrict_range(struct lcra_state *l, unsigned node, unsigned len)
101 if (node < l->node_count && l->alignment[node]) {
102 unsigned BA = l->alignment[node];
105 l->modulus[node] = DIV_ROUND_UP(bound - len + 1, 1 << alignment);
204 lcra_set_node_spill_cost(struct lcra_state *l, unsigned node, signed cost)
206 if (node < l->node_count)
207 l->spill_cost[node] = cost;
225 /* If there are no constraints on a node, do not pick it to spill under