Searched refs:first_writes (Results 1 - 1 of 1) sorted by relevance

/external/mesa3d/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp559 void get_last_temp_read_first_temp_write(int *last_reads, int *first_writes);
4624 glsl_to_tgsi_visitor::get_last_temp_read_first_temp_write(int *last_reads, int *first_writes) argument
4637 if (first_writes[inst->dst[j].index] == -1)
4638 first_writes[inst->dst[j].index] = (depth == 0) ? i : loop_start;
5122 int *first_writes = rzalloc_array(mem_ctx, int, this->next_temp); local
5132 first_writes[i] = -1;
5134 get_last_temp_read_first_temp_write(last_reads, first_writes);
5140 if (last_reads[i] < 0 || first_writes[i] < 0) continue;
5144 if (last_reads[j] < 0 || first_writes[j] < 0) continue;
5150 if (first_writes[
[all...]

Completed in 72 milliseconds