Lines Matching defs:InlineHistory
148 const SmallVectorImpl<std::pair<Function *, int>> &InlineHistory) {
150 assert(unsigned(InlineHistoryID) < InlineHistory.size() &&
152 if (InlineHistory[InlineHistoryID].first == F)
154 InlineHistoryID = InlineHistory[InlineHistoryID].second;
289 // index into the InlineHistory vector.
290 SmallVector<std::pair<Function *, int>, 16> InlineHistory;
336 inlineHistoryIncludes(&Callee, InlineHistoryID, InlineHistory)) {
349 // itself by the InlineHistory above, but spread across CGSCC iterations
401 int NewHistoryID = InlineHistory.size();
402 InlineHistory.push_back({&Callee, InlineHistoryID});