Home
last modified time | relevance | path

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

/third_party/mesa3d/src/panfrost/midgard/
Dmidgard_ops.h31 extern struct mir_ldst_op_props load_store_opcode_props[256];
35 #define OP_IS_ATOMIC(op) (load_store_opcode_props[op].props & LDST_ATOMIC)
36 #define OP_USES_ATTRIB(op) (load_store_opcode_props[op].props & LDST_ATTRIB)
37 #define OP_IS_STORE(op) (load_store_opcode_props[op].props & LDST_STORE)
38 #define OP_HAS_ADDRESS(op) (load_store_opcode_props[op].props & LDST_ADDRESS)
Dmidgard_opt_dce.c43 if (load_store_opcode_props[ins->op].props & LDST_SPECIAL_MASK) in can_cull_mask()
59 if (load_store_opcode_props[ins->op].props & LDST_SIDE_FX) in can_dce()
Dmidgard_print.c218 const char *name = load_store_opcode_props[op].name; in mir_print_instruction()
Dmidgard_ops.c206 struct mir_ldst_op_props load_store_opcode_props[256] = { variable
Ddisassemble.c112 if (load_store_opcode_props[op].name) in print_ld_st_opcode()
113 fprintf(fp, "%s", load_store_opcode_props[op].name); in print_ld_st_opcode()
Dmidgard_schedule.c141 load_store_opcode_props[instructions[i]->op].props & LDST_ADDRESS) { in mir_create_dependency_graph()