Searched refs:__srcreg (Results 1 – 2 of 2) sorted by relevance
/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_ra.h | 113 #define ra_foreach_src_n(__srcreg, __n, __instr) \ argument 114 foreach_src_n(__srcreg, __n, __instr) \ 115 if (ra_reg_is_src(__srcreg)) 117 #define ra_foreach_src(__srcreg, __instr) \ argument 118 ra_foreach_src_n(__srcreg, __i, __instr) 120 #define ra_foreach_src_rev(__srcreg, __instr) \ argument 121 for (struct ir3_register *__srcreg = (void *)~0; __srcreg; __srcreg = NULL) \ 124 if (ra_reg_is_src((__srcreg = (__instr)->srcs[__i])))
|
D | ir3.h | 1601 #define foreach_src_n(__srcreg, __n, __instr) \ argument 1603 for (struct ir3_register *__srcreg = (void *)~0; __srcreg; \ 1604 __srcreg = NULL) \ 1607 if ((__srcreg = (__instr)->srcs[__n])) 1610 #define foreach_src(__srcreg, __instr) foreach_src_n (__srcreg, __i, __instr) argument
|