Lines Matching refs:Streamer

26 void ConstantPool::emitEntries(MCStreamer &Streamer) {  in emitEntries()  argument
29 Streamer.emitDataRegion(MCDR_DataRegion); in emitEntries()
31 Streamer.emitValueToAlignment(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()
92 static void emitConstantPool(MCStreamer &Streamer, MCSection *Section, in emitConstantPool() argument
95 Streamer.switchSection(Section); in emitConstantPool()
96 CP.emitEntries(Streamer); in emitConstantPool()
100 void AssemblerConstantPools::emitAll(MCStreamer &Streamer) { in emitAll() argument
106 emitConstantPool(Streamer, Section, CP); in emitAll()
110 void AssemblerConstantPools::emitForCurrentSection(MCStreamer &Streamer) { in emitForCurrentSection() argument
111 MCSection *Section = Streamer.getCurrentSectionOnly(); in emitForCurrentSection()
113 emitConstantPool(Streamer, Section, *CP); in emitForCurrentSection()
116 void AssemblerConstantPools::clearCacheForCurrentSection(MCStreamer &Streamer) { in clearCacheForCurrentSection() argument
117 MCSection *Section = Streamer.getCurrentSectionOnly(); in clearCacheForCurrentSection()
122 const MCExpr *AssemblerConstantPools::addEntry(MCStreamer &Streamer, in addEntry() argument
125 MCSection *Section = Streamer.getCurrentSectionOnly(); in addEntry()
126 return getOrCreateConstantPool(Section).addEntry(Expr, Streamer.getContext(), in addEntry()