/external/mesa3d/src/compiler/glsl/ |
D | list.h | 277 #define exec_node_data(type, node, field) \ macro 697 exec_node_data(__type, (__list)->head_sentinel.next, __field); \ 699 (__node) = exec_node_data(__type, (__node)->__field.next, __field)) 702 for (__type * __node = exec_node_data(__type, (__start), __field); \ 704 (__node) = exec_node_data(__type, (__node)->__field.next, __field)) 708 exec_node_data(__type, (__list)->tail_sentinel.prev, __field); \ 710 (__node) = exec_node_data(__type, (__node)->__field.prev, __field)) 714 exec_node_data(__type, (__list)->head_sentinel.next, __field), \ 716 exec_node_data(__type, (__node)->__field.next, __field); \ 719 exec_node_data(__type, (__next)->__field.next, __field)) [all …]
|
D | opt_dead_code.cpp | 103 exec_node_data(struct assignment_entry, in do_dead_code()
|
D | ir_variable_refcount.cpp | 54 exec_node_data(struct assignment_entry, n, link); in free_entry()
|
D | glsl_parser_extras.cpp | 914 ast_expression *expr = exec_node_data(ast_expression, expr_node, in _mesa_ast_set_aggregate_type() 928 ast_expression *expr = exec_node_data(ast_expression, expr_node, in _mesa_ast_set_aggregate_type() 940 ast_expression *expr = exec_node_data(ast_expression, expr_node, in _mesa_ast_set_aggregate_type()
|
D | ast_function.cpp | 199 exec_node_data(ast_expression, actual_ast_node, link); in verify_parameter_modes() 338 exec_node_data(ast_expression, in verify_parameter_modes()
|
D | ast_type.cpp | 862 ast_node *const_expression = exec_node_data(ast_node, node, link); in process_qualifier_constant()
|
/external/mesa3d/src/compiler/nir/ |
D | nir.h | 78 return exec_node_data(out_type, parent, field); \ 455 return exec_node_data(nir_instr, next, node); in nir_instr_next() 465 return exec_node_data(nir_instr, prev, node); in nir_instr_prev() 1590 return exec_node_data(nir_instr, head, node); in nir_block_first_instr() 1597 return exec_node_data(nir_instr, tail, node); in nir_block_last_instr() 1722 return exec_node_data(nir_cf_node, next, node); in nir_cf_node_next() 1732 return exec_node_data(nir_cf_node, prev, node); in nir_cf_node_prev() 1760 return nir_cf_node_as_block(exec_node_data(nir_cf_node, head, node)); in NIR_DEFINE_CAST() 1767 return nir_cf_node_as_block(exec_node_data(nir_cf_node, tail, node)); in nir_if_last_then_block() 1774 return nir_cf_node_as_block(exec_node_data(nir_cf_node, head, node)); in nir_if_first_else_block() [all …]
|
D | nir_from_ssa.c | 156 merge_node *a_node = exec_node_data(merge_node, an, node); in merge_merge_sets() 157 merge_node *b_node = exec_node_data(merge_node, bn, node); in merge_merge_sets() 164 exec_node_data(merge_node, bn, node)->set = a; in merge_merge_sets() 196 current = exec_node_data(merge_node, bn, node); in merge_sets_interfere() 199 current = exec_node_data(merge_node, an, node); in merge_sets_interfere() 202 merge_node *a_node = exec_node_data(merge_node, an, node); in merge_sets_interfere() 203 merge_node *b_node = exec_node_data(merge_node, bn, node); in merge_sets_interfere() 516 nir_dest *dest = exec_node_data(nir_dest, def, ssa); in rewrite_ssa_def()
|
D | nir_lower_io_to_temporaries.c | 49 nir_variable *newv = exec_node_data(nir_variable, new_node, node); in emit_copies() 50 nir_variable *temp = exec_node_data(nir_variable, old_node, node); in emit_copies()
|
D | nir_repair_ssa.c | 61 return exec_node_data(nir_phi_src, src, src)->pred; in get_src_block()
|
D | nir_opt_dce.c | 50 worklist_elem *elem = exec_node_data(worklist_elem, node, node); in worklist_pop()
|
D | nir_move_vec_src_uses_to_dest.c | 143 nir_alu_src *use_alu_src = exec_node_data(nir_alu_src, use, src); in move_vec_src_uses_to_dest_block()
|
D | nir_opt_dead_cf.c | 276 cur = exec_node_data(nir_cf_node, exec_list_get_head(list), in dead_cf_list()
|
D | nir_liveness.c | 244 nir_instr *instr = exec_node_data(nir_instr, node, node); in search_for_use_after_instr()
|
D | nir_phi_builder.c | 268 nir_phi_instr *phi = exec_node_data(nir_phi_instr, head, instr.node); in nir_phi_builder_finish()
|
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_lower_vec_to_movs.c | 138 nir_alu_src *alu_src = exec_node_data(nir_alu_src, src, src); in try_coalesce()
|
D | nir_opt_gcm.c | 494 nir_instr *instr = exec_node_data(nir_instr, in opt_gcm_impl()
|
D | nir_opt_loop_unroll.c | 419 unroll_loc = exec_node_data(nir_cf_node, in complex_unroll()
|
D | nir_clone.c | 535 exec_node_data(nir_block, exec_list_get_tail(cf_list), cf_node.node); in clone_block()
|
D | nir_serialize.c | 894 exec_node_data(nir_block, exec_list_get_tail(cf_list), cf_node.node); in read_block()
|
/external/mesa3d/src/intel/compiler/ |
D | brw_disasm_info.c | 45 exec_node_data(struct inst_group, next_node, link); in dump_assembly() 128 group = exec_node_data(struct inst_group, in disasm_annotate() 169 exec_node_data(struct inst_group, next_node, link); in disasm_insert_error()
|
/external/mesa3d/src/intel/tools/ |
D | disasm.c | 95 exec_node_data(struct inst_group, next_node, link); in gen_disasm_disassemble()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_performance_query.c | 365 buf = exec_node_data(struct brw_oa_sample_buf, node, link); in get_free_sample_buf() 383 exec_node_data(struct brw_oa_sample_buf, tail_node, link); in reap_old_sample_buffers() 553 exec_node_data(struct brw_oa_sample_buf, obj->oa.samples_head, link); in drop_from_unaccumulated_query_list() 709 exec_node_data(struct brw_oa_sample_buf, tail_node, link); in read_oa_samples_until() 1239 exec_node_data(struct brw_oa_sample_buf, obj->oa.samples_head, link); in brw_begin_perf_query()
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_shader.c | 214 entry_point = exec_node_data(nir_function, node, node); in radv_shader_compile_to_nir()
|