Lines Matching defs:InlineHistory
151 const SmallVectorImpl<std::pair<Function *, int>> &InlineHistory) {
153 assert(unsigned(InlineHistoryID) < InlineHistory.size() &&
155 if (InlineHistory[InlineHistoryID].first == F)
157 InlineHistoryID = InlineHistory[InlineHistoryID].second;
292 // index into the InlineHistory vector.
293 SmallVector<std::pair<Function *, int>, 16> InlineHistory;
339 inlineHistoryIncludes(&Callee, InlineHistoryID, InlineHistory)) {
352 // itself by the InlineHistory above, but spread across CGSCC iterations
404 int NewHistoryID = InlineHistory.size();
405 InlineHistory.push_back({&Callee, InlineHistoryID});