Lines Matching defs:callable
34 /// Return the callable region this node represents. This can only be called
37 assert(!isExternal() && "the external node has no callable region");
87 if (CallableOpInterface callable = dyn_cast<CallableOpInterface>(op)) {
88 if (auto *callableRegion = callable.getCallableRegion())
103 // resolve the calls. We split these up as we may have nested callable objects
116 "expected parent operation to be callable");
125 // Otherwise, connect all callable nodes to the external node, this allows
126 // for conservatively including all callable nodes within the graph.
127 // FIXME This isn't correct, this is only necessary for callable nodes
144 /// Resolve the callable for given callee to a node in the callgraph, or the
149 Operation *callable = call.resolveCallableInTable(&symbolTable);
150 if (auto callableOp = dyn_cast_or_null<CallableOpInterface>(callable))