Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/state_tracker/
Dst_glsl_to_tgsi.cpp333 void get_first_temp_write(int *first_writes);
334 void get_last_temp_read_first_temp_write(int *last_reads, int *first_writes);
4711 glsl_to_tgsi_visitor::get_first_temp_write(int *first_writes) in get_first_temp_write() argument
4720 if (first_writes[inst->dst[j].index] == -1) in get_first_temp_write()
4721 first_writes[inst->dst[j].index] = (depth == 0) ? i : loop_start; in get_first_temp_write()
4770 glsl_to_tgsi_visitor::get_last_temp_read_first_temp_write(int *last_reads, int *first_writes) in get_last_temp_read_first_temp_write() argument
4783 if (first_writes[inst->dst[j].index] == -1) in get_last_temp_read_first_temp_write()
4784 first_writes[inst->dst[j].index] = (depth == 0) ? i : loop_start; in get_last_temp_read_first_temp_write()
5336 int *first_writes = ralloc_array(mem_ctx, int, this->next_temp); in renumber_registers() local
5340 first_writes[i] = -1; in renumber_registers()
[all …]