Lines Matching defs:callable
59 auto callable =
62 (callable && !callable.getCallableRegion())) {
143 // Check if this block is the entry block of a callable region.
144 auto callable = dyn_cast<CallableOpInterface>(block->getParentOp());
145 if (callable && callable.getCallableRegion() == block->getParent()) {
147 point, getProgramPointAfter(callable));
287 auto callable = dyn_cast_or_null<CallableOpInterface>(callee);
292 (callable && (!callable.getCallableRegion() ||
293 callable.getCallableRegion()->empty()))) {
298 if (!callable)
301 Region *region = callable.getCallableRegion();
379 // If this block is exiting from a callable, the successors of exiting from
380 // a callable are the successors of all call sites. And the call sites
381 // themselves are predecessors of the callable.
382 auto callable = dyn_cast<CallableOpInterface>(block->getParentOp());
383 if (callable && callable.getCallableRegion() == block->getParent()) {
385 point, getProgramPointAfter(callable));