Lines Matching refs:OutStreamer
66 MCStreamer &OutStreamer = getStreamer(); in emitNoteSection() local
67 MCContext &Context = OutStreamer.getContext(); in emitNoteSection()
78 MCSection *Cur = OutStreamer.getCurrentSectionOnly(); in emitNoteSection()
79 OutStreamer.switchSection(Nt); in emitNoteSection()
82 OutStreamer.emitValueToAlignment(Align(8).value()); in emitNoteSection()
83 OutStreamer.emitIntValue(4, 4); // data size for "GNU\0" in emitNoteSection()
84 OutStreamer.emitIntValue(4 * 4, 4); // Elf_Prop size in emitNoteSection()
85 OutStreamer.emitIntValue(ELF::NT_GNU_PROPERTY_TYPE_0, 4); in emitNoteSection()
86 OutStreamer.emitBytes(StringRef("GNU", 4)); // note name in emitNoteSection()
89 OutStreamer.emitIntValue(ELF::GNU_PROPERTY_AARCH64_FEATURE_1_AND, 4); in emitNoteSection()
90 OutStreamer.emitIntValue(4, 4); // data size in emitNoteSection()
91 OutStreamer.emitIntValue(Flags, 4); // data in emitNoteSection()
92 OutStreamer.emitIntValue(0, 4); // pad in emitNoteSection()
94 OutStreamer.endSection(Nt); in emitNoteSection()
95 OutStreamer.switchSection(Cur); in emitNoteSection()