Lines Matching refs:MCCVLineEntry
163 std::vector<MCCVLineEntry> Locs = getFunctionLineEntries(FuncId); in emitLineTableForFunction()
164 bool HaveColumns = any_of(Locs, [](const MCCVLineEntry &LineEntry) { in emitLineTableForFunction()
174 std::find_if(I, E, [CurFileNum](const MCCVLineEntry &Loc) { in emitLineTableForFunction()
290 ArrayRef<MCCVLineEntry> Locs = getLinesForExtent(LocBegin, LocEnd); in encodeInlineLineTable()
301 MCCVLineEntry StartLoc(Frag.getFnStartSym(), MCCVLoc(Locs.front())); in encodeInlineLineTable()
304 const MCCVLineEntry *LastLoc = &StartLoc; in encodeInlineLineTable()
309 for (const MCCVLineEntry &Loc : Locs) { in encodeInlineLineTable()
366 ArrayRef<MCCVLineEntry> LocAfter = getLinesForExtent(LocEnd, LocEnd + 1); in encodeInlineLineTable()
369 const MCCVLineEntry &Loc = LocAfter[0]; in encodeInlineLineTable()
438 void MCCVLineEntry::Make(MCObjectStreamer *MCOS) { in Make()
451 MCCVLineEntry LineEntry(LineSym, CVLoc); in Make()