Lines Matching refs:handler
62 if (auto *handler = getInterfaceFor(call)) in isLegalToInline() local
63 return handler->isLegalToInline(call, callable, wouldBeCloned); in isLegalToInline()
70 if (auto *handler = getInterfaceFor(dest->getParentOp())) in isLegalToInline() local
71 return handler->isLegalToInline(dest, src, wouldBeCloned, valueMapping); in isLegalToInline()
78 if (auto *handler = getInterfaceFor(op)) in isLegalToInline() local
79 return handler->isLegalToInline(op, dest, wouldBeCloned, valueMapping); in isLegalToInline()
84 auto *handler = getInterfaceFor(op); in shouldAnalyzeRecursively() local
85 return handler ? handler->shouldAnalyzeRecursively(op) : true; in shouldAnalyzeRecursively()
91 auto *handler = getInterfaceFor(op); in handleTerminator() local
92 assert(handler && "expected valid dialect handler"); in handleTerminator()
93 handler->handleTerminator(op, newDest); in handleTerminator()
100 auto *handler = getInterfaceFor(op); in handleTerminator() local
101 assert(handler && "expected valid dialect handler"); in handleTerminator()
102 handler->handleTerminator(op, valuesToRepl); in handleTerminator()
107 auto *handler = getInterfaceFor(call); in processInlinedCallBlocks() local
108 assert(handler && "expected valid dialect handler"); in processInlinedCallBlocks()
109 handler->processInlinedCallBlocks(call, inlinedBlocks); in processInlinedCallBlocks()