Home
last modified time | relevance | path

Searched refs:IR3_INSTR_G (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/freedreno/ir3/
Dir3_a6xx.c436 if (is_atomic(src->opc) && (src->flags & IR3_INSTR_G)) { in ir3_a6xx_fixup_atomic_dests()
446 if (is_atomic(out->opc) && (out->flags & IR3_INSTR_G)) { in ir3_a6xx_fixup_atomic_dests()
Dir3_legalize.c256 if (n->flags & IR3_INSTR_G) { in legalize_block()
268 if (is_ssbo(n->opc) || (is_atomic(n->opc) && (n->flags & IR3_INSTR_G))) in legalize_block()
Dir3.c654 if (!(instr->flags & IR3_INSTR_G)) in emit_cat6()
673 cat6->g = !!(instr->flags & IR3_INSTR_G); in emit_cat6()
874 if (instr->flags & IR3_INSTR_G) { in emit_cat6()
1443 if (is_atomic(instr->opc) && !(instr->flags & IR3_INSTR_G)) in ir3_valid_flags()
1446 if (instr->opc == OPC_STG && (instr->flags & IR3_INSTR_G) && (n != 2)) in ir3_valid_flags()
Dir3_parser.y799 cat6_atomic_l_g: '.' 'g' { instr->flags |= IR3_INSTR_G; }
Dir3.h222 IR3_INSTR_G = 0x400, enumerator