Home
last modified time | relevance | path

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

/third_party/mesa3d/src/intel/compiler/
Dbrw_fs_register_coalesce.cpp102 int dst_var, int src_var) in can_coalesce_vars() argument
104 if (!live.vars_interfere(src_var, dst_var)) in can_coalesce_vars()
109 int src_start = live.start[src_var]; in can_coalesce_vars()
110 int src_end = live.end[src_var]; in can_coalesce_vars()
201 int src_var[MAX_VGRF_SIZE]; in register_coalesce() local
265 src_var[i] = live.var_from_vgrf[src_reg] + i; in register_coalesce()
267 if (!can_coalesce_vars(live, cfg, block, inst, dst_var[i], src_var[i])) { in register_coalesce()
323 live.start[src_var[i]]); in register_coalesce()
325 live.end[src_var[i]]); in register_coalesce()
Dbrw_fs_saturate_propagation.cpp64 int src_var = live.var_from_reg(inst->src[0]); in opt_saturate_propagation_local() local
65 int src_end_ip = live.end[src_var]; in opt_saturate_propagation_local()
/third_party/mesa3d/src/compiler/nir/
Dnir_loop_analyze.c398 nir_loop_variable *src_var = get_loop_var(src->src.ssa, state); in compute_induction_information() local
403 if (src_var->in_if_branch || src_var->in_nested_loop) in compute_induction_information()
409 if (is_var_phi(src_var)) { in compute_induction_information()
411 nir_instr_as_phi(src_var->def->parent_instr); in compute_induction_information()
414 src_var = get_loop_var(&src_phi_alu->dest.dest.ssa, state); in compute_induction_information()
415 if (!src_var->in_if_branch) in compute_induction_information()
420 if (!src_var->in_loop && !biv->def_outside_loop) { in compute_induction_information()
421 biv->def_outside_loop = src_var->def; in compute_induction_information()
423 } else if (is_var_alu(src_var) && !biv->alu) { in compute_induction_information()
424 alu_src_var = src_var; in compute_induction_information()
[all …]
Dnir_opt_copy_prop_vars.c1130 nir_variable *src_var = nir_deref_instr_get_variable(src.instr); in copy_prop_vars_block() local
1131 if (src_var && src_var->data.cannot_coalesce) { in copy_prop_vars_block()
/third_party/libbpf/src/
Dlinker.c2328 const struct btf_var_secinfo *src_var; in linker_append_btf() local
2347 src_var = btf_var_secinfos(t); in linker_append_btf()
2349 for (j = 0; j < n; j++, src_var++) { in linker_append_btf()
2351 int new_id = obj->btf_type_map[src_var->type]; in linker_append_btf()
2398 dst_var->type = obj->btf_type_map[src_var->type]; in linker_append_btf()
2399 dst_var->size = src_var->size; in linker_append_btf()
2400 dst_var->offset = src_sec->dst_off + src_var->offset; in linker_append_btf()
/third_party/skia/third_party/externals/spirv-cross/
Dspirv_cross.cpp4904 auto *src_var = compiler.maybe_get_backing_variable(src); in handle() local
4909 if (src_var) in handle()
4911 if (src_var->storage != StorageClassUniform && src_var->storage != StorageClassStorageBuffer) in handle()
4914 if (src_var->storage == StorageClassUniform && in handle()
4915 … !compiler.has_decoration(compiler.get<SPIRType>(src_var->basetype).self, DecorationBufferBlock)) in handle()
4920 access_potential_resource(src_var->self); in handle()