/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_cf.c | 31 if (instr->opc != OPC_MOV) in is_safe_conv() 115 assert(use->opc == OPC_MOV); in rewrite_src_uses() 132 if (conv->opc != OPC_MOV) in try_conversion_folding()
|
H A D | ir3_lower_spill.c | 57 struct ir3_instruction *mov = ir3_instr_create(mem->block, OPC_MOV, 1, 1); in set_base_reg() 76 struct ir3_instruction *mov = ir3_instr_create(mem->block, OPC_MOV, 1, 1); in reset_base_reg()
|
H A D | ir3_lower_subgroups.c | 63 struct ir3_instruction *mov = ir3_instr_create(block, OPC_MOV, 1, 1); in mov_immed() 78 struct ir3_instruction *mov = ir3_instr_create(block, OPC_MOV, 1, 1); in mov_reg() 372 ir3_instr_create(then_block, OPC_MOV, 1, 1); in lower_instr()
|
H A D | ir3_cp.c | 450 if (instr->opc == OPC_MOV && !type_float(instr->cat1.src_type)) in reg_cp() 461 if (instr->opc == OPC_MOV && type_float(instr->cat1.src_type)) in reg_cp() 592 if (instr->opc == OPC_MOV && (instr->srcs[0]->flags & IR3_REG_IMMED) && in instr_cp()
|
H A D | ir3.h | 864 case OPC_MOV: in is_same_type_mov() 909 if (instr->opc != OPC_MOV) in is_const_mov() 1517 case OPC_MOV: in ir3_output_conv_type() 1934 mov = ir3_instr_create(block, OPC_MOV, 1, 1); in create_immed_typed() 1955 mov = ir3_instr_create(block, OPC_MOV, 1, 1); in create_uniform_typed() 1976 mov = ir3_instr_create(block, OPC_MOV, 1, 1); in create_uniform_indirect() 1990 struct ir3_instruction *instr = ir3_instr_create(block, OPC_MOV, 1, 1); in ir3_MOV() 2010 struct ir3_instruction *instr = ir3_instr_create(block, OPC_MOV, 1, 1); in ir3_COV()
|
H A D | ir3_cse.c | 124 if (instr->opc != OPC_META_COLLECT && instr->opc != OPC_MOV) in instr_can_cse()
|
H A D | ir3_lower_parallelcopy.c | 233 ir3_instr_create(instr->block, OPC_MOV, 1, 1); in do_copy() 257 (entry->flags & IR3_REG_SHARED) ? OPC_READ_FIRST_MACRO : OPC_MOV; in do_copy()
|
H A D | ir3_context.c | 574 mov = ir3_instr_create(block, OPC_MOV, 1, 1); in ir3_create_array_load() 642 mov = ir3_instr_create(block, OPC_MOV, 1, 1); in ir3_create_array_store()
|
H A D | ir3.c | 348 if (instr->opc == OPC_MOV) { in ir3_collect_info() 1092 if (instr->opc == OPC_MOV || is_meta(instr)) in ir3_valid_immediate()
|
H A D | ir3_parser.y | 854 parse_type_type(new_instr(OPC_MOV), $3); 857 parse_type_type(new_instr(OPC_MOV), $3); 880 new_instr(OPC_MOV); 887 new_instr(OPC_MOV);
|
H A D | ir3_validate.c | 275 if (instr->opc != OPC_MOV) in validate_instr()
|
H A D | instr-a3xx.h | 102 OPC_MOV = _OPC(1, 0), enumerator
|
H A D | ir3_print.c | 130 if (instr->opc == OPC_MOV) { in print_instr_name()
|
H A D | ir3_spill.c | 339 if (reg->instr->opc != OPC_MOV) in can_rematerialize() 711 struct ir3_instruction *mov = ir3_instr_create(block, OPC_MOV, 1, 1); in materialize_pcopy_src() 1840 else if (ctx->spilling && instr->opc == OPC_MOV && in handle_block()
|
H A D | disasm-a3xx.c | 183 OPC(1, OPC_MOV, ),
|
H A D | ir3_compiler_nir.c | 1898 struct ir3_instruction *mov = ir3_instr_create(block, OPC_MOV, 1, 1); in create_multidst_mov()
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_disasm.c | 459 #define OPC_MOV(opc) [INST_OPCODE_##opc] = {#opc, print_opc_mov} macro 472 OPC_MOV(MOVAR), 473 OPC_MOV(MOVAF), 474 OPC_MOV(MOVAI),
|
/third_party/mesa3d/src/freedreno/isa/ |
H A D | encode.c | 102 } else if (instr->opc == OPC_MOV) { in __instruction_case()
|