Lines Matching refs:Entry

85   Entries.emplace_back(&MI, Entry::DbgValue);  in startDbgValue()
97 Entries.emplace_back(&MI, Entry::Clobber); in startClobber()
101 void DbgValueHistoryMap::Entry::endEntry(EntryIndex Index) { in endEntry()
253 for (auto &Entry : HistoryMapEntries) in trimLocationRanges() local
254 if (Entry.isClosed()) in trimLocationRanges()
255 Entry.EndIndex -= Offsets[Entry.EndIndex]; in trimLocationRanges()
267 for (const auto &Entry : Entries) { in hasNonEmptyLocation() local
268 if (!Entry.isDbgValue()) in hasNonEmptyLocation()
271 const MachineInstr *MI = Entry.getInstr(); in hasNonEmptyLocation()
343 auto &Entry = HistMap.getEntry(Var, Index); in clobberRegEntries() local
344 assert(Entry.isDbgValue() && "Not a DBG_VALUE in LiveEntries"); in clobberRegEntries()
345 if (Entry.getInstr()->isDebugEntryValue()) in clobberRegEntries()
347 if (Entry.getInstr()->hasDebugOperandForReg(RegNo)) { in clobberRegEntries()
349 Entry.endEntry(ClobberIndex); in clobberRegEntries()
350 for (const auto &MO : Entry.getInstr()->debug_operands()) in clobberRegEntries()
354 for (const auto &MO : Entry.getInstr()->debug_operands()) in clobberRegEntries()
383 auto &Entry = HistMap.getEntry(Var, Index); in handleNewDebugValue() local
384 assert(Entry.isDbgValue() && "Not a DBG_VALUE in LiveEntries"); in handleNewDebugValue()
385 const MachineInstr &DV = *Entry.getInstr(); in handleNewDebugValue()
389 Entry.endEntry(NewIndex); in handleNewDebugValue()
552 DbgValueHistoryMap::Entry &Ent = DbgValues.getEntry(Pair.first, Idx); in calculateDbgEntityHistory()
585 const auto &Entry = E.value(); in dump() local
587 if (Entry.isDbgValue()) in dump()
591 dbgs() << " Instr: " << *Entry.getInstr(); in dump()
592 if (Entry.isDbgValue()) { in dump()
593 if (Entry.getEndIndex() == NoEntry) in dump()
596 dbgs() << " - Closed by Entry[" << Entry.getEndIndex() << "]\n"; in dump()