Home | History | Annotate | Download | only in IPO

Lines Matching refs:InlineHistory

78                                  int InlineHistory) {
130 if (InlineHistory != -1) // Only do merging for top-level call sites in SCC.
318 const SmallVectorImpl<std::pair<Function*, int> > &InlineHistory) {
320 assert(unsigned(InlineHistoryID) < InlineHistory.size() &&
322 if (InlineHistory[InlineHistoryID].first == F)
324 InlineHistoryID = InlineHistory[InlineHistoryID].second;
350 // index into the InlineHistory vector.
351 SmallVector<std::pair<Function*, int>, 8> InlineHistory;
431 InlineHistoryIncludes(Callee, InlineHistoryID, InlineHistory))
451 int NewHistoryID = InlineHistory.size();
452 InlineHistory.push_back(std::make_pair(Callee, InlineHistoryID));