ir3: Remove unused check_src_cond()

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9842>
This commit is contained in:
Connor Abbott 2021-05-14 19:14:47 +02:00 committed by Emma Anholt
parent c0789395e0
commit 1f3546c9e2
1 changed files with 0 additions and 27 deletions

View File

@ -1419,33 +1419,6 @@ static inline bool __is_false_dep(struct ir3_instruction *instr, unsigned n)
#define foreach_array_safe(__array, __list) \
list_for_each_entry_safe(struct ir3_array, __array, __list, node)
/* Check if condition is true for any src instruction.
*/
static inline bool
check_src_cond(struct ir3_instruction *instr, bool (*cond)(struct ir3_instruction *))
{
/* Note that this is also used post-RA so skip the ssa iterator: */
foreach_src (reg, instr) {
struct ir3_instruction *src = reg->instr;
if (!src)
continue;
/* meta:split/collect aren't real instructions, the thing that
* we actually care about is *their* srcs
*/
if ((src->opc == OPC_META_SPLIT) || (src->opc == OPC_META_COLLECT)) {
if (check_src_cond(src, cond))
return true;
} else {
if (cond(src))
return true;
}
}
return false;
}
#define IR3_PASS(ir, pass, ...) ({ \
bool progress = pass(ir, ##__VA_ARGS__); \
if (progress) { \