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 212 #define opc_cat(opc) ((int)((opc) >> NOPC_BITS)) macro
315 uint32_t opc_cat : 3; member in struct:PACKED
358 uint32_t opc_cat : 3; member in struct:PACKED
421 uint32_t opc_cat : 3; member in struct:PACKED
481 uint32_t opc_cat : 3; member in struct:PACKED
538 uint32_t opc_cat : 3; member in struct:PACKED
587 uint32_t opc_cat : 3; member in struct:PACKED
669 uint32_t opc_cat : 3; member in struct:PACKED::PACKED
691 uint32_t opc_cat : 3; member in struct:PACKED::PACKED
698 switch (instr->opc_cat) {
    [all...]
ir3_cp.c 115 switch (opc_cat(instr->opc)) {
400 if ((opc_cat(instr->opc) == 3) && (n == 2) &&
436 debug_assert((opc_cat(instr->opc) == 1) ||
437 (opc_cat(instr->opc) == 6) ||
ir3.c 146 cat0->opc_cat = 0;
196 cat1->opc_cat = 1;
276 cat2->opc_cat = 2;
369 cat3->opc_cat = 3;
417 cat4->opc_cat = 4;
473 cat5->opc_cat = 5;
550 cat6->opc_cat = 6;
592 int ret = emit[opc_cat(instr->opc)](instr, dwords, info);
ir3_legalize.c 149 if ((n->flags & IR3_INSTR_SS) && (opc_cat(n->opc) >= 5)) {
157 if (list_empty(&block->instr_list) && (opc_cat(n->opc) >= 5))
disasm-a3xx.c 819 #define GETINFO(instr) (&(opcs[((instr)->opc_cat << NOPC_BITS) | instr_opc(instr)]))
825 if (opc_cat(instr->opc) == -1) return "??meta??";
845 if (instr->ss && (instr->opc_cat <= 4))
849 if (instr->repeat && (instr->opc_cat <= 4)) {
855 if (instr->ul && ((2 <= instr->opc_cat) && (instr->opc_cat <= 4)))
864 printf("unknown(%d,%d)", instr->opc_cat, opc);
ir3.h 530 return (opc_cat(instr->opc) == 0);
573 return (1 <= opc_cat(instr->opc)) && (opc_cat(instr->opc) <= 3);
578 return (opc_cat(instr->opc) == 4);
583 return (opc_cat(instr->opc) == 5);
588 return (opc_cat(instr->opc) == 6);
660 return (opc_cat(instr->opc) == -1);
ir3_ra.c 903 switch (opc_cat(instr->opc)) {

Completed in 359 milliseconds