Home | History | Annotate | Download | only in IPO

Lines Matching refs:InlineHistoryID

358 static bool InlineHistoryIncludes(Function *F, int InlineHistoryID,
360 while (InlineHistoryID != -1) {
361 assert(unsigned(InlineHistoryID) < InlineHistory.size() &&
363 if (InlineHistory[InlineHistoryID].first == F)
365 InlineHistoryID = InlineHistory[InlineHistoryID].second;
477 int InlineHistoryID = CallSites[CSi].second;
478 if (InlineHistoryID != -1 &&
479 InlineHistoryIncludes(Callee, InlineHistoryID, InlineHistory))
499 InlineHistoryID, InsertLifetime)) {
519 InlineHistory.push_back(std::make_pair(Callee, InlineHistoryID));