Home
last modified time | relevance | path

Searched refs:opc_cat (Results 1 – 11 of 11) sorted by relevance

/third_party/mesa3d/src/freedreno/ir3/
Dir3_cp.c379 opc_cat(instr->opc) != 0) { in reg_cp()
436 if ((opc_cat(instr->opc) == 3) && (n == 2) && in reg_cp()
478 assert((opc_cat(instr->opc) == 1) || in reg_cp()
479 (opc_cat(instr->opc) == 2) || in reg_cp()
480 (opc_cat(instr->opc) == 6) || in reg_cp()
484 if ((opc_cat(instr->opc) == 2) && in reg_cp()
Ddisasm-a3xx.c410 (&(opcs[((instr)->opc_cat << NOPC_BITS) | instr_opc(instr, ctx->gpu_id)]))
415 if (opc_cat(opc) == -1) in disasm_a3xx_instr_name()
532 unsigned opc_cat = val >> 61; in disasm_instr_cb() local
542 ctx->stats->instrs_per_cat[opc_cat]++; in disasm_instr_cb()
550 if (opc_cat == 1) { in disasm_instr_cb()
565 ctx->cur_opc_cat = opc_cat; in disasm_instr_cb()
569 opc_cat, n, ctx->extra_cycles + n, dwords[1], dwords[0]); in disasm_instr_cb()
Dir3_cse.c60 if (opc_cat(instr->opc) == 1) { in hash_instr()
111 if (opc_cat(i1->opc) == 1) { in instrs_equal()
Dir3_validate.c194 } else if (opc_cat(instr->opc) == 1 || opc_cat(instr->opc) == 6) { in validate_instr()
196 } else if (opc_cat(instr->opc) == 0) { in validate_instr()
226 switch (opc_cat(instr->opc)) { in validate_instr()
Dir3.c344 info->instrs_per_cat[opc_cat(instr->opc)] += 1 + instr->repeat; in ir3_collect_info()
504 if (1 <= opc_cat(opc)) in instr_create()
752 switch (opc_cat(instr->opc)) { in ir3_set_dst_type()
787 switch (opc_cat(instr->opc)) { in ir3_fixup_src_type()
866 if ((flags & IR3_REG_SHARED) && opc_cat(instr->opc) > 3) in ir3_valid_flags()
911 switch (opc_cat(instr->opc)) { in ir3_valid_flags()
Dinstr-a3xx.h394 #define opc_cat(opc) ((int)((opc) >> NOPC_BITS)) macro
592 if (opc_cat(opc) != 2 && opc_cat(opc) != 3) in is_sat_compatible()
Dir3_legalize.c225 if ((n->flags & IR3_INSTR_SS) && (opc_cat(n->opc) >= 5)) { in legalize_block()
233 if (list_is_empty(&block->instr_list) && (opc_cat(n->opc) >= 5)) in legalize_block()
885 ((opc_cat(last->opc) == 2) || (opc_cat(last->opc) == 3)) && in nop_sched()
Dir3.h823 return (opc_cat(instr->opc) == 0); in is_flow()
944 return (1 <= opc_cat(instr->opc)) && (opc_cat(instr->opc) <= 3); in is_alu()
950 return (opc_cat(instr->opc) == 4) || instr->opc == OPC_GETFIBERID; in is_sfu()
956 return (opc_cat(instr->opc) == 5); in is_tex()
968 return (opc_cat(instr->opc) == 6) && instr->opc != OPC_GETFIBERID; in is_mem()
974 return (opc_cat(instr->opc) == 7); in is_barrier()
1133 return (opc_cat(instr->opc) == -1); in is_meta()
Dir3_print.c129 } else if (opc_cat(instr->opc) == 1) { in print_instr_name()
Dir3_parser.y187 assert(opc_cat(instr->opc) == 5); in fixup_cat5_s2en()
244 if (opc_cat(instr->opc) == 0 && instr->cat0.target_label) { in resolve_labels()
/third_party/mesa3d/src/freedreno/isa/
Dencode.c267 assert(opc_cat(s->instr->opc) == 2); in __multisrc_case()