Lines Matching refs:OutStreamer
64 MCStreamer &OutStreamer = getStreamer(); in emitNoteSection() local
65 MCContext &Context = OutStreamer.getContext(); in emitNoteSection()
76 MCSection *Cur = OutStreamer.getCurrentSectionOnly(); in emitNoteSection()
77 OutStreamer.SwitchSection(Nt); in emitNoteSection()
80 OutStreamer.emitValueToAlignment(Align(8).value()); in emitNoteSection()
81 OutStreamer.emitIntValue(4, 4); // data size for "GNU\0" in emitNoteSection()
82 OutStreamer.emitIntValue(4 * 4, 4); // Elf_Prop size in emitNoteSection()
83 OutStreamer.emitIntValue(ELF::NT_GNU_PROPERTY_TYPE_0, 4); in emitNoteSection()
84 OutStreamer.emitBytes(StringRef("GNU", 4)); // note name in emitNoteSection()
87 OutStreamer.emitIntValue(ELF::GNU_PROPERTY_AARCH64_FEATURE_1_AND, 4); in emitNoteSection()
88 OutStreamer.emitIntValue(4, 4); // data size in emitNoteSection()
89 OutStreamer.emitIntValue(Flags, 4); // data in emitNoteSection()
90 OutStreamer.emitIntValue(0, 4); // pad in emitNoteSection()
92 OutStreamer.endSection(Nt); in emitNoteSection()
93 OutStreamer.SwitchSection(Cur); in emitNoteSection()