Home
last modified time | relevance | path

Searched refs:IR3_REG_CONST (Results 1 – 8 of 8) sorted by relevance

/external/mesa3d/src/freedreno/ir3/
Dir3.c111 if (reg->flags & IR3_REG_CONST) { in reg()
175 IR3_REG_R | IR3_REG_CONST | IR3_REG_HALF | IR3_REG_RELATIV); in emit_cat1()
177 cat1->src_rel_c = !!(src->flags & IR3_REG_CONST); in emit_cat1()
180 IR3_REG_R | IR3_REG_CONST | IR3_REG_HALF); in emit_cat1()
181 cat1->src_c = !!(src->flags & IR3_REG_CONST); in emit_cat1()
229 IR3_REG_RELATIV | IR3_REG_CONST | IR3_REG_R | in emit_cat2()
231 cat2->rel1.src1_c = !!(src1->flags & IR3_REG_CONST); in emit_cat2()
233 } else if (src1->flags & IR3_REG_CONST) { in emit_cat2()
236 IR3_REG_CONST | IR3_REG_R | IR3_REG_HALF | in emit_cat2()
256 IR3_REG_RELATIV | IR3_REG_CONST | IR3_REG_R | in emit_cat2()
[all …]
Dir3_cp.c131 *dstflags |= srcflags & IR3_REG_CONST; in combine_flags()
159 new_flags |= IR3_REG_CONST; in lower_immed()
281 new_flags |= IR3_REG_CONST; in try_swap_mad_two_srcs()
370 if (src_reg->flags & IR3_REG_CONST) { in reg_cp()
Dir3_print.c201 if (reg->flags & IR3_REG_CONST) in print_reg_name()
206 if (reg->flags & IR3_REG_CONST) in print_reg_name()
Dir3.h75 IR3_REG_CONST = 0x001, enumerator
728 if (!(instr->regs[1]->flags & IR3_REG_CONST)) in is_const_mov()
916 debug_assert(!(reg->flags & (IR3_REG_CONST | IR3_REG_IMMED))); in writes_gpr()
968 if (r->flags & (IR3_REG_CONST | IR3_REG_IMMED)) in reg_gpr()
1403 ir3_reg_create(mov, n, IR3_REG_CONST | flags); in create_uniform_typed()
1424 ir3_reg_create(mov, 0, IR3_REG_CONST | IR3_REG_RELATIV)->array.offset = n; in create_uniform_indirect()
Dir3_postsched.c411 if (reg->flags & (IR3_REG_CONST | IR3_REG_IMMED)) in calculate_deps()
664 if (instr->regs[1]->flags & (IR3_REG_CONST | IR3_REG_IMMED | in is_self_mov()
Dir3_delay.c347 if ((src->flags & IR3_REG_RELATIV) && !(src->flags & IR3_REG_CONST)) { in ir3_delay_calc()
Dir3_parser.y833 const: T_CONSTANT { $$ = new_reg($1, IR3_REG_CONST); }
876 | 'c' '<' T_A0 offset '>' { new_reg(0, IR3_REG_RELATIV | IR3_REG_CONST)->array.of…
878 | T_HC '<' T_A0 offset '>' { new_reg(0, IR3_REG_RELATIV | IR3_REG_CONST | IR3_REG…
/external/mesa3d/src/freedreno/ir3/tests/
Ddelay.c126 if (reg->flags & (IR3_REG_CONST | IR3_REG_IMMED)) in regs_to_ssa()