Lines Matching refs:Streamer
26 void ConstantPool::emitEntries(MCStreamer &Streamer) { in emitEntries() argument
29 Streamer.emitDataRegion(MCDR_DataRegion); in emitEntries()
31 Streamer.emitValueToAlignment(Align(Entry.Size)); // align naturally in emitEntries()
32 Streamer.emitLabel(Entry.Label); in emitEntries()
33 Streamer.emitValue(Entry.Value, Entry.Size, Entry.Loc); in emitEntries()
35 Streamer.emitDataRegion(MCDR_DataRegionEnd); in emitEntries()
93 static void emitConstantPool(MCStreamer &Streamer, MCSection *Section, in emitConstantPool() argument
96 Streamer.switchSection(Section); in emitConstantPool()
97 CP.emitEntries(Streamer); in emitConstantPool()
101 void AssemblerConstantPools::emitAll(MCStreamer &Streamer) { in emitAll() argument
107 emitConstantPool(Streamer, Section, CP); in emitAll()
111 void AssemblerConstantPools::emitForCurrentSection(MCStreamer &Streamer) { in emitForCurrentSection() argument
112 MCSection *Section = Streamer.getCurrentSectionOnly(); in emitForCurrentSection()
114 emitConstantPool(Streamer, Section, *CP); in emitForCurrentSection()
117 void AssemblerConstantPools::clearCacheForCurrentSection(MCStreamer &Streamer) { in clearCacheForCurrentSection() argument
118 MCSection *Section = Streamer.getCurrentSectionOnly(); in clearCacheForCurrentSection()
123 const MCExpr *AssemblerConstantPools::addEntry(MCStreamer &Streamer, in addEntry() argument
126 MCSection *Section = Streamer.getCurrentSectionOnly(); in addEntry()
127 return getOrCreateConstantPool(Section).addEntry(Expr, Streamer.getContext(), in addEntry()