Searched refs:nir_phi_src (Results 1 – 12 of 12) sorted by relevance
/third_party/mesa3d/src/compiler/nir/ |
D | nir_opt_peephole_select.c | 310 nir_phi_src *else_src = in nir_opt_collapse_if() 315 nir_phi_src *phi_src = in nir_opt_collapse_if() 342 nir_phi_src *else_src = in nir_opt_collapse_if() 345 nir_phi_src *phi_src = in nir_opt_collapse_if()
|
D | nir_instr_set.c | 212 nir_phi_src *src1 = *(nir_phi_src **)data1; in cmp_phi_src() 213 nir_phi_src *src2 = *(nir_phi_src **)data2; in cmp_phi_src() 224 NIR_VLA(nir_phi_src *, srcs, num_preds); in hash_phi() 230 qsort(srcs, num_preds, sizeof(nir_phi_src *), cmp_phi_src); in hash_phi()
|
D | nir_lower_regs_to_ssa.c | 55 nir_phi_src *phi_src = exec_node_data(nir_phi_src, src, src); in rewrite_src()
|
D | nir_repair_ssa.c | 61 return exec_node_data(nir_phi_src, src, src)->pred; in get_src_block()
|
D | nir_lower_phis_to_scalar.c | 53 is_phi_src_scalarizable(nir_phi_src *src, in is_phi_src_scalarizable()
|
D | nir_clone.c | 450 foreach_list_typed(nir_phi_src, src, node, &phi->srcs) { in clone_phi() 451 nir_phi_src *nsrc = nir_phi_instr_add_src(nphi, src->pred, src->src); in clone_phi() 621 list_for_each_entry_safe(nir_phi_src, src, &state->phi_srcs, src.use_link) { in fixup_phi_srcs()
|
D | nir_lower_shader_calls.c | 254 nir_phi_src *phi_src = exec_node_data(nir_phi_src, src, src); in rewrite_instr_src_from_phi_builder()
|
D | nir.h | 2635 } nir_phi_src; typedef 2638 foreach_list_typed(nir_phi_src, phi_src, node, &(phi)->srcs) 2640 foreach_list_typed_safe(nir_phi_src, phi_src, node, &(phi)->srcs) 2650 static inline nir_phi_src * 3972 nir_phi_src *nir_phi_instr_add_src(nir_phi_instr *instr, nir_block *pred, nir_src src); 4100 nir_phi_src *phi_src = LIST_ENTRY(nir_phi_src, src, src); in nir_before_src()
|
D | nir_control_flow.c | 243 nir_phi_src *src = nir_phi_instr_add_src(phi, pred, nir_src_for_ssa(&undef->def)); in nir_insert_phi_undef()
|
D | nir.c | 813 nir_phi_src * 816 nir_phi_src *phi_src; in nir_phi_instr_add_src() 818 phi_src = calloc(1, sizeof(nir_phi_src)); in nir_phi_instr_add_src()
|
D | nir_opt_if.c | 856 foreach_list_typed(nir_phi_src, src, node, &phi->srcs) { in rewrite_phi_predecessor_blocks()
|
D | nir_serialize.c | 1595 nir_phi_src *src = nir_phi_instr_add_src(phi, pred, nir_src_for_ssa(def)); in read_phi() 1615 list_for_each_entry_safe(nir_phi_src, src, &ctx->phi_srcs, src.use_link) { in read_fixup_phis()
|