Lines Matching refs:Entry
28 auto &Entry = I.first->second; in getEntryImpl() local
30 Entry.Index = EntryTy::NotIndexed; in getEntryImpl()
31 Entry.Offset = NumBytes; in getEntryImpl()
32 Entry.Symbol = ShouldCreateSymbols ? Asm.createTempSymbol(Prefix) : nullptr; in getEntryImpl()
95 for (const auto &Entry : Entries) { in emit() local
96 assert(ShouldCreateSymbols == static_cast<bool>(Entry->getValue().Symbol) && in emit()
101 Asm.OutStreamer->emitLabel(Entry->getValue().Symbol); in emit()
105 Twine(Entry->getValue().Offset)); in emit()
107 StringRef(Entry->getKeyData(), Entry->getKeyLength() + 1)); in emit()
115 for (const auto &Entry : Pool) { in emit() local
116 if (Entry.getValue().isIndexed()) in emit()
117 Entries[Entry.getValue().Index] = &Entry; in emit()
122 for (const auto &Entry : Entries) in emit() local
124 Asm.emitDwarfStringOffset(Entry->getValue()); in emit()
126 Asm.OutStreamer->emitIntValue(Entry->getValue().Offset, size); in emit()