Searched refs:InlineHistoryID (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | ModuleInliner.cpp | 54 Function *F, int InlineHistoryID, in inlineHistoryIncludes() argument 56 while (InlineHistoryID != -1) { in inlineHistoryIncludes() 57 assert(unsigned(InlineHistoryID) < InlineHistory.size() && in inlineHistoryIncludes() 59 if (InlineHistory[InlineHistoryID].first == F) in inlineHistoryIncludes() 61 InlineHistoryID = InlineHistory[InlineHistoryID].second; in inlineHistoryIncludes() 182 const int InlineHistoryID = P.second; in run() local 195 if (InlineHistoryID != -1 && in run() 196 inlineHistoryIncludes(&Callee, InlineHistoryID, InlineHistory)) { in run() 232 InlineHistory.push_back({&Callee, InlineHistoryID}); in run()
|
H A D | Inliner.cpp | 150 Function *F, int InlineHistoryID, in inlineHistoryIncludes() argument 152 while (InlineHistoryID != -1) { in inlineHistoryIncludes() 153 assert(unsigned(InlineHistoryID) < InlineHistory.size() && in inlineHistoryIncludes() 155 if (InlineHistory[InlineHistoryID].first == F) in inlineHistoryIncludes() 157 InlineHistoryID = InlineHistory[InlineHistoryID].second; in inlineHistoryIncludes() 335 const int InlineHistoryID = P.second; in run() local 338 if (InlineHistoryID != -1 && in run() 339 inlineHistoryIncludes(&Callee, InlineHistoryID, InlineHistory)) { in run() 405 InlineHistory.push_back({&Callee, InlineHistoryID}); in run()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | InlineOrder.cpp | 248 const int InlineHistoryID = Elt.second; in push() local 253 InlineHistoryMap[CB] = InlineHistoryID; in push()
|