Lines Matching refs:v8
7985 fs_visitor v8(compiler, log_data, mem_ctx, key,
7988 if (!v8.run_fs(allow_spilling, false /* do_rep_send */)) {
7990 *error_str = ralloc_strdup(mem_ctx, v8.fail_msg);
7994 simd8_cfg = v8.cfg;
7995 prog_data->base.dispatch_grf_start_reg = v8.payload.num_regs;
7996 prog_data->reg_blocks_8 = brw_register_blocks(v8.grf_used);
7999 if (v8.max_dispatch_width >= 16 &&
8005 v16.import_uniforms(&v8);
8018 if (v8.max_dispatch_width >= 32 && !use_rep_send &&
8025 v32.import_uniforms(&v8);
8091 v8.promoted_constants, v8.runtime_check_aads_emit,
8237 fs_visitor *v8 = NULL, *v16 = NULL, *v32 = NULL;
8247 v8 = new fs_visitor(compiler, log_data, mem_ctx, key, &prog_data->base,
8250 if (!v8->run_cs(min_dispatch_width)) {
8251 fail_msg = v8->fail_msg;
8254 assert(v8->max_dispatch_width >= 32);
8256 cfg = v8->cfg;
8259 promoted_constants = v8->promoted_constants;
8271 if (v8)
8272 v16->import_uniforms(v8);
8304 if (v8)
8305 v32->import_uniforms(v8);
8347 delete v8;