Home
last modified time | relevance | path

Searched refs:IR3_REG_FABS (Results 1 – 7 of 7) sorted by relevance

/external/mesa3d/src/freedreno/ir3/
Dir3_cp.c78 if (src->flags & (IR3_REG_FABS | IR3_REG_FNEG | in is_eligible_mov()
113 if (*dstflags & IR3_REG_FABS) in combine_flags()
118 if (srcflags & IR3_REG_FABS) in combine_flags()
119 *dstflags |= IR3_REG_FABS; in combine_flags()
182 if (new_flags & IR3_REG_FABS) { in lower_immed()
184 new_flags &= ~IR3_REG_FABS; in lower_immed()
Dir3_print.c165 if ((reg->flags & (IR3_REG_FABS | IR3_REG_SABS)) && in print_reg_name()
170 else if (reg->flags & (IR3_REG_FABS | IR3_REG_SABS)) in print_reg_name()
Dir3.c247 cat2->src1_abs = !!(src1->flags & (IR3_REG_FABS | IR3_REG_SABS)); in emit_cat2()
275 cat2->src2_abs = !!(src2->flags & (IR3_REG_FABS | IR3_REG_SABS)); in emit_cat2()
411 IR3_REG_FABS | IR3_REG_R | IR3_REG_HALF); in emit_cat4()
417 IR3_REG_CONST | IR3_REG_FNEG | IR3_REG_FABS | in emit_cat4()
423 IR3_REG_IMMED | IR3_REG_FNEG | IR3_REG_FABS | in emit_cat4()
429 cat4->src_abs = !!(src->flags & IR3_REG_FABS); in emit_cat4()
1305 IR3_REG_FNEG | IR3_REG_FABS | in cp_flags()
Dir3_postsched.c665 IR3_REG_RELATIV | IR3_REG_FNEG | IR3_REG_FABS | in is_self_mov()
Dir3.h95 IR3_REG_FABS = 0x080, enumerator
1068 return IR3_REG_FABS | IR3_REG_FNEG; in ir3_cat2_absneg()
Dir3_parser.y52 #define IR3_REG_ABS IR3_REG_FABS
Dir3_compiler_nir.c410 dst[0] = ir3_ABSNEG_F(b, src[0], IR3_REG_FABS); in emit_alu()