HomeSort by relevance Sort by last modified time
    Searched refs:opc_cat (Results 1 - 7 of 7) sorted by null

  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
instr-a3xx.h 216 #define opc_cat(opc) ((int)((opc) >> NOPC_BITS)) macro
319 uint32_t opc_cat : 3; member in struct:PACKED
362 uint32_t opc_cat : 3; member in struct:PACKED
425 uint32_t opc_cat : 3; member in struct:PACKED
485 uint32_t opc_cat : 3; member in struct:PACKED
542 uint32_t opc_cat : 3; member in struct:PACKED
591 uint32_t opc_cat : 3; member in struct:PACKED
675 uint32_t pad4 : 10; // opc/jmp_tgt/sync/opc_cat
697 uint32_t pad4 : 10; // opc/jmp_tgt/sync/opc_cat
722 uint32_t opc_cat : 3 member in struct:PACKED::PACKED
741 uint32_t opc_cat : 3; member in struct:PACKED
763 uint32_t opc_cat : 3; member in struct:PACKED::PACKED
    [all...]
ir3_cp.c 114 switch (opc_cat(instr->opc)) {
414 if ((opc_cat(instr->opc) == 3) && (n == 2) &&
450 debug_assert((opc_cat(instr->opc) == 1) ||
451 (opc_cat(instr->opc) == 6) ||
ir3.h 587 return (opc_cat(instr->opc) == 0);
636 return (1 <= opc_cat(instr->opc)) && (opc_cat(instr->opc) <= 3);
641 return (opc_cat(instr->opc) == 4);
646 return (opc_cat(instr->opc) == 5);
651 return (opc_cat(instr->opc) == 6);
656 return (opc_cat(instr->opc) == 7);
731 return (opc_cat(instr->opc) == -1);
    [all...]
ir3_legalize.c 154 if ((n->flags & IR3_INSTR_SS) && (opc_cat(n->opc) >= 5)) {
162 if (list_empty(&block->instr_list) && (opc_cat(n->opc) >= 5))
ir3.c 140 cat0->opc_cat = 0;
190 cat1->opc_cat = 1;
270 cat2->opc_cat = 2;
363 cat3->opc_cat = 3;
411 cat4->opc_cat = 4;
467 cat5->opc_cat = 5;
483 cat6->opc_cat = 6;
664 cat7->opc_cat = 7;
707 int ret = emit[opc_cat(instr->opc)](instr, dwords, info);
disasm-a3xx.c 959 #define GETINFO(instr) (&(opcs[((instr)->opc_cat << NOPC_BITS) | instr_opc(instr)]))
965 if (opc_cat(instr->opc) == -1) return "??meta??";
985 if (instr->ss && ((instr->opc_cat <= 4) || (instr->opc_cat == 7)))
989 if (instr->repeat && (instr->opc_cat <= 4)) {
995 if (instr->ul && ((2 <= instr->opc_cat) && (instr->opc_cat <= 4)))
1004 printf("unknown(%d,%d)", instr->opc_cat, opc);
ir3_ra.c 958 switch (opc_cat(instr->opc)) {
    [all...]

Completed in 89 milliseconds