Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/Transforms/
H A DInliner.cpp380 CallGraphNode *node, Optional<size_t> inlineHistoryID, in inlineHistoryIncludes() argument
383 while (inlineHistoryID.has_value()) { in inlineHistoryIncludes()
384 assert(inlineHistoryID.value() < inlineHistory.size() && in inlineHistoryIncludes()
386 if (inlineHistory[inlineHistoryID.value()].first == node) in inlineHistoryIncludes()
388 inlineHistoryID = inlineHistory[inlineHistoryID.value()].second; in inlineHistoryIncludes()
505 InlineHistoryT inlineHistoryID = callHistory[i]; in inlineCallsInSCC() local
507 inlineHistoryIncludes(it.targetNode, inlineHistoryID, inlineHistory); in inlineCallsInSCC()
538 inlineHistory.push_back(std::make_pair(it.targetNode, inlineHistoryID)); in inlineCallsInSCC()
546 << getNodeName(call) << ", " << historyToString(inlineHistoryID) in inlineCallsInSCC()
555 << historyToString(inlineHistoryID) << "\n"); in inlineCallsInSCC()