• Home
  • Raw
  • Download

Lines Matching refs:v32

9752    fs_visitor *v8 = NULL, *v16 = NULL, *v32 = NULL;  in brw_compile_fs()  local
9826 v32 = new fs_visitor(compiler, params->log_data, mem_ctx, &key->base, in brw_compile_fs()
9830 v32->import_uniforms(v8); in brw_compile_fs()
9831 if (!v32->run_fs(allow_spilling, false)) { in brw_compile_fs()
9834 v32->fail_msg); in brw_compile_fs()
9836 const performance &perf = v32->performance_analysis.require(); in brw_compile_fs()
9842 simd32_cfg = v32->cfg; in brw_compile_fs()
9843 prog_data->dispatch_grf_start_reg_32 = v32->payload.num_regs; in brw_compile_fs()
9844 prog_data->reg_blocks_32 = brw_register_blocks(v32->grf_used); in brw_compile_fs()
9934 simd32_cfg, 32, v32->shader_stats, in brw_compile_fs()
9935 v32->performance_analysis.require(), stats); in brw_compile_fs()
9943 delete v32; in brw_compile_fs()
10166 fs_visitor *v8 = NULL, *v16 = NULL, *v32 = NULL; in brw_compile_cs() local
10244 v32 = new fs_visitor(compiler, params->log_data, mem_ctx, &key->base, in brw_compile_cs()
10248 v32->import_uniforms(v8); in brw_compile_cs()
10250 v32->import_uniforms(v16); in brw_compile_cs()
10253 if (!v32->run_cs(allow_spilling)) { in brw_compile_cs()
10256 v32->fail_msg); in brw_compile_cs()
10262 "couldn't generate SIMD32: %s", v32->fail_msg); in brw_compile_cs()
10263 delete v32; in brw_compile_cs()
10267 v = v32; in brw_compile_cs()
10269 if (v32->spilled_any_registers) in brw_compile_cs()
10315 assert(v32); in brw_compile_cs()
10317 g.generate_code(v32->cfg, 32, v32->shader_stats, in brw_compile_cs()
10318 v32->performance_analysis.require(), stats); in brw_compile_cs()
10336 delete v32; in brw_compile_cs()