Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DModuleInliner.cpp62 Function *F, int InlineHistoryID, in inlineHistoryIncludes() argument
64 while (InlineHistoryID != -1) { in inlineHistoryIncludes()
65 assert(unsigned(InlineHistoryID) < InlineHistory.size() && in inlineHistoryIncludes()
67 if (InlineHistory[InlineHistoryID].first == F) in inlineHistoryIncludes()
69 InlineHistoryID = InlineHistory[InlineHistoryID].second; in inlineHistoryIncludes()
203 const int InlineHistoryID = P.second; in run() local
216 if (InlineHistoryID != -1 && in run()
217 inlineHistoryIncludes(&Callee, InlineHistoryID, InlineHistory)) { in run()
253 InlineHistory.push_back({&Callee, InlineHistoryID}); in run()
H A DInliner.cpp148 Function *F, int InlineHistoryID, in inlineHistoryIncludes() argument
150 while (InlineHistoryID != -1) { in inlineHistoryIncludes()
151 assert(unsigned(InlineHistoryID) < InlineHistory.size() && in inlineHistoryIncludes()
153 if (InlineHistory[InlineHistoryID].first == F) in inlineHistoryIncludes()
155 InlineHistoryID = InlineHistory[InlineHistoryID].second; in inlineHistoryIncludes()
333 const int InlineHistoryID = P.second; in run() local
336 if (InlineHistoryID != -1 && in run()
337 inlineHistoryIncludes(&Callee, InlineHistoryID, InlineHistory)) { in run()
407 InlineHistory.push_back({&Callee, InlineHistoryID}); in run()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineOrder.cpp248 const int InlineHistoryID = Elt.second; in push() local
253 InlineHistoryMap[CB] = InlineHistoryID; in push()