Home
last modified time | relevance | path

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

/external/mesa3d/src/intel/compiler/
Dbrw_vec4_visitor.cpp1504 vec4_visitor::emit_resolve_reladdr(int scratch_loc[], bblock_t *block, in emit_resolve_reladdr() argument
1511 *src.reladdr = emit_resolve_reladdr(scratch_loc, block, inst, in emit_resolve_reladdr()
1515 if (src.file == VGRF && scratch_loc[src.nr] != -1) { in emit_resolve_reladdr()
1518 emit_scratch_read(block, inst, temp, src, scratch_loc[src.nr]); in emit_resolve_reladdr()
1536 int scratch_loc[this->alloc.count]; in move_grf_array_access_to_scratch() local
1537 memset(scratch_loc, -1, sizeof(scratch_loc)); in move_grf_array_access_to_scratch()
1545 if (scratch_loc[inst->dst.nr] == -1) { in move_grf_array_access_to_scratch()
1546 scratch_loc[inst->dst.nr] = last_scratch; in move_grf_array_access_to_scratch()
1553 if (iter->file == VGRF && scratch_loc[iter->nr] == -1) { in move_grf_array_access_to_scratch()
1554 scratch_loc[iter->nr] = last_scratch; in move_grf_array_access_to_scratch()
[all …]
Dbrw_vec4.h300 src_reg emit_resolve_reladdr(int scratch_loc[], bblock_t *block,