Home | History | Annotate | Download | only in IPO

Lines Matching refs:InlineHistoryID

317 static bool InlineHistoryIncludes(Function *F, int InlineHistoryID,
319 while (InlineHistoryID != -1) {
320 assert(unsigned(InlineHistoryID) < InlineHistory.size() &&
322 if (InlineHistory[InlineHistoryID].first == F)
324 InlineHistoryID = InlineHistory[InlineHistoryID].second;
429 int InlineHistoryID = CallSites[CSi].second;
430 if (InlineHistoryID != -1 &&
431 InlineHistoryIncludes(Callee, InlineHistoryID, InlineHistory))
442 InlineHistoryID))
452 InlineHistory.push_back(std::make_pair(Callee, InlineHistoryID));