Lines Matching defs:indirections
32 * It naturally suits hardware that has limits on texture indirections, but
320 unsigned indirections;
332 /* We only count indirections within the same block. */
334 unsigned indirections = get_num_indirections(src->ssa->parent_instr);
337 indirections++;
339 state->indirections = MAX2(state->indirections, indirections);
345 /* Return the number of load indirections within the block. */
360 state.indirections = 0;
364 instr->index = state.indirections;
365 return state.indirections;
386 /* Count the number of load indirections for each load instruction
391 unsigned indirections = get_num_indirections(instr);
394 indirections = MIN2(indirections, 255);
395 num_inst_per_level[indirections]++;
396 instr->pass_flags = indirections;
398 max_indirection = MAX2(max_indirection, (int)indirections);