Searched refs:__dstreg (Results 1 – 2 of 2) sorted by relevance
/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_ra.h | 126 #define ra_foreach_dst_n(__dstreg, __n, __instr) \ argument 127 foreach_dst_n(__dstreg, __n, __instr) \ 128 if (ra_reg_is_dst(__dstreg)) 130 #define ra_foreach_dst(__dstreg, __instr) \ argument 131 ra_foreach_dst_n(__dstreg, __i, __instr)
|
D | ir3.h | 1613 #define foreach_dst_n(__dstreg, __n, __instr) \ argument 1615 for (struct ir3_register *__dstreg = (void *)~0; __dstreg; \ 1616 __dstreg = NULL) \ 1619 if ((__dstreg = (__instr)->dsts[__n])) 1622 #define foreach_dst(__dstreg, __instr) foreach_dst_n (__dstreg, __i, __instr) argument
|