Lines Matching refs:Streamer
24 void ConstantPool::emitEntries(MCStreamer &Streamer) { in emitEntries() argument
27 Streamer.EmitDataRegion(MCDR_DataRegion); in emitEntries()
29 Streamer.EmitCodeAlignment(Entry.Size); // align naturally in emitEntries()
30 Streamer.EmitLabel(Entry.Label); in emitEntries()
31 Streamer.EmitValue(Entry.Value, Entry.Size, Entry.Loc); in emitEntries()
33 Streamer.EmitDataRegion(MCDR_DataRegionEnd); in emitEntries()
63 static void emitConstantPool(MCStreamer &Streamer, MCSection *Section, in emitConstantPool() argument
66 Streamer.SwitchSection(Section); in emitConstantPool()
67 CP.emitEntries(Streamer); in emitConstantPool()
71 void AssemblerConstantPools::emitAll(MCStreamer &Streamer) { in emitAll() argument
77 emitConstantPool(Streamer, Section, CP); in emitAll()
81 void AssemblerConstantPools::emitForCurrentSection(MCStreamer &Streamer) { in emitForCurrentSection() argument
82 MCSection *Section = Streamer.getCurrentSection().first; in emitForCurrentSection()
84 emitConstantPool(Streamer, Section, *CP); in emitForCurrentSection()
88 const MCExpr *AssemblerConstantPools::addEntry(MCStreamer &Streamer, in addEntry() argument
91 MCSection *Section = Streamer.getCurrentSection().first; in addEntry()
92 return getOrCreateConstantPool(Section).addEntry(Expr, Streamer.getContext(), in addEntry()