Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/Dialect/Bufferization/Transforms/
H A DOneShotModuleBufferize.cpp286 DenseMap<func::FuncOp, unsigned> numberCallOpsContainedInFuncOp; in getFuncOpsOrderedByCalls() local
296 numberCallOpsContainedInFuncOp[funcOp] = 0; in getFuncOpsOrderedByCalls()
305 numberCallOpsContainedInFuncOp[funcOp]++; in getFuncOpsOrderedByCalls()
314 while (!numberCallOpsContainedInFuncOp.empty()) { in getFuncOpsOrderedByCalls()
315 auto it = llvm::find_if(numberCallOpsContainedInFuncOp, in getFuncOpsOrderedByCalls()
317 if (it == numberCallOpsContainedInFuncOp.end()) in getFuncOpsOrderedByCalls()
322 numberCallOpsContainedInFuncOp[callee]--; in getFuncOpsOrderedByCalls()
323 numberCallOpsContainedInFuncOp.erase(it); in getFuncOpsOrderedByCalls()