Home
last modified time | relevance | path

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

/external/mesa3d/src/compiler/glsl/
Dlink_interface_blocks.cpp522 ir_variable *old_def = definitions.lookup(var); in validate_interstage_uniform_blocks() local
523 if (old_def == NULL) { in validate_interstage_uniform_blocks()
530 if (!intrastage_match(old_def, var, prog, false /* precision */)) { in validate_interstage_uniform_blocks()
/external/mesa3d/src/compiler/nir/
Dnir.c2042 nir_ssa_def *old_def = nir_instr_ssa_def(instr); in nir_function_impl_lower_instructions() local
2043 if (old_def == NULL) { in nir_function_impl_lower_instructions()
2060 list_replace(&old_def->uses, &old_uses); in nir_function_impl_lower_instructions()
2061 list_inithead(&old_def->uses); in nir_function_impl_lower_instructions()
2062 list_replace(&old_def->if_uses, &old_if_uses); in nir_function_impl_lower_instructions()
2063 list_inithead(&old_def->if_uses); in nir_function_impl_lower_instructions()
2068 assert(old_def != NULL); in nir_function_impl_lower_instructions()
2079 if (list_is_empty(&old_def->uses) && list_is_empty(&old_def->if_uses)) { in nir_function_impl_lower_instructions()
2087 if (old_def) { in nir_function_impl_lower_instructions()
2088 list_replace(&old_uses, &old_def->uses); in nir_function_impl_lower_instructions()
[all …]
Dnir_lower_vars_to_ssa.c650 nir_ssa_def *old_def = in rename_variables() local
661 srcs[i] = nir_channel(&b, old_def, i); in rename_variables()