Home | History | Annotate | Download | only in IPO

Lines Matching refs:InlineHistory

80                                  int InlineHistory, bool InsertLifetime) {
134 if (InlineHistory != -1) // Only do merging for top-level call sites in SCC.
359 const SmallVectorImpl<std::pair<Function*, int> > &InlineHistory) {
361 assert(unsigned(InlineHistoryID) < InlineHistory.size() &&
363 if (InlineHistory[InlineHistoryID].first == F)
365 InlineHistoryID = InlineHistory[InlineHistoryID].second;
398 // index into the InlineHistory vector.
399 SmallVector<std::pair<Function*, int>, 8> InlineHistory;
479 InlineHistoryIncludes(Callee, InlineHistoryID, InlineHistory))
518 int NewHistoryID = InlineHistory.size();
519 InlineHistory.push_back(std::make_pair(Callee, InlineHistoryID));