Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DModuleInliner.cpp55 const SmallVectorImpl<std::pair<Function *, int>> &InlineHistory) { in inlineHistoryIncludes() argument
57 assert(unsigned(InlineHistoryID) < InlineHistory.size() && in inlineHistoryIncludes()
59 if (InlineHistory[InlineHistoryID].first == F) in inlineHistoryIncludes()
61 InlineHistoryID = InlineHistory[InlineHistoryID].second; in inlineHistoryIncludes()
172 SmallVector<std::pair<Function *, int>, 16> InlineHistory; in run() local
196 inlineHistoryIncludes(&Callee, InlineHistoryID, InlineHistory)) { in run()
231 int NewHistoryID = InlineHistory.size(); in run()
232 InlineHistory.push_back({&Callee, InlineHistoryID}); in run()
H A DInliner.cpp151 const SmallVectorImpl<std::pair<Function *, int>> &InlineHistory) { in inlineHistoryIncludes() argument
153 assert(unsigned(InlineHistoryID) < InlineHistory.size() && in inlineHistoryIncludes()
155 if (InlineHistory[InlineHistoryID].first == F) in inlineHistoryIncludes()
157 InlineHistoryID = InlineHistory[InlineHistoryID].second; in inlineHistoryIncludes()
293 SmallVector<std::pair<Function *, int>, 16> InlineHistory; in run() local
339 inlineHistoryIncludes(&Callee, InlineHistoryID, InlineHistory)) { in run()
404 int NewHistoryID = InlineHistory.size(); in run()
405 InlineHistory.push_back({&Callee, InlineHistoryID}); in run()