Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/IPO/
DInliner.cpp413 static bool InlineHistoryIncludes(Function *F, int InlineHistoryID, in InlineHistoryIncludes() argument
415 while (InlineHistoryID != -1) { in InlineHistoryIncludes()
416 assert(unsigned(InlineHistoryID) < InlineHistory.size() && in InlineHistoryIncludes()
418 if (InlineHistory[InlineHistoryID].first == F) in InlineHistoryIncludes()
420 InlineHistoryID = InlineHistory[InlineHistoryID].second; in InlineHistoryIncludes()
525 int InlineHistoryID = CallSites[CSi].second; in runOnSCC() local
526 if (InlineHistoryID != -1 && in runOnSCC()
527 InlineHistoryIncludes(Callee, InlineHistoryID, InlineHistory)) in runOnSCC()
547 InlineHistoryID, InsertLifetime)) { in runOnSCC()
567 InlineHistory.push_back(std::make_pair(Callee, InlineHistoryID)); in runOnSCC()