Lines Matching refs:i1
70 instrs_equal(const struct ir3_instruction *i1, const struct ir3_instruction *i2)
72 if (i1->opc != i2->opc)
75 if (i1->dsts_count != i2->dsts_count)
78 if (i1->srcs_count != i2->srcs_count)
81 if (i1->dsts[0]->flags != i2->dsts[0]->flags)
84 for (unsigned i = 0; i < i1->srcs_count; i++) {
85 const struct ir3_register *i1_reg = i1->srcs[i], *i2_reg = i2->srcs[i];
111 if (opc_cat(i1->opc) == 1) {
112 if (i1->cat1.dst_type != i2->cat1.dst_type ||
113 i1->cat1.src_type != i2->cat1.src_type ||
114 i1->cat1.round != i2->cat1.round)