Home
last modified time | relevance | path

Searched refs:callableRegion (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Analysis/
H A DCallGraph.cpp28 bool CallGraphNode::isExternal() const { return !callableRegion; } in isExternal()
34 return callableRegion; in getCallableRegion()
84 if (auto *callableRegion = callable.getCallableRegion()) in computeCallGraph() local
85 parentNode = cg.getOrAddNode(callableRegion, parentNode); in computeCallGraph()
184 auto *callableRegion = node->getCallableRegion(); in print() local
185 auto *parentOp = callableRegion->getParentOp(); in print()
186 os << "'" << callableRegion->getParentOp()->getName() << "' - Region #" in print()
187 << callableRegion->getRegionNumber(); in print()
/llvm-project-15.0.7/mlir/include/mlir/Analysis/
H A DCallGraph.h131 CallGraphNode(Region *callableRegion) : callableRegion(callableRegion) {} in CallGraphNode() argument
139 Region *callableRegion; variable
/llvm-project-15.0.7/mlir/lib/Analysis/DataFlow/
H A DDeadCodeAnalysis.cpp127 Region *callableRegion = callable.getCallableRegion(); in initializeSymbolCallables() local
128 if (!callableRegion) in initializeSymbolCallables()