Lines Matching refs:OutStreamer
74 MCStreamer &OutStreamer = getStreamer(); in emitNoteSection() local
75 MCContext &Context = OutStreamer.getContext(); in emitNoteSection()
86 MCSection *Cur = OutStreamer.getCurrentSectionOnly(); in emitNoteSection()
87 OutStreamer.switchSection(Nt); in emitNoteSection()
90 OutStreamer.emitValueToAlignment(Align(8)); in emitNoteSection()
91 OutStreamer.emitIntValue(4, 4); // data size for "GNU\0" in emitNoteSection()
92 OutStreamer.emitIntValue(DescSz, 4); // Elf_Prop array size in emitNoteSection()
93 OutStreamer.emitIntValue(ELF::NT_GNU_PROPERTY_TYPE_0, 4); in emitNoteSection()
94 OutStreamer.emitBytes(StringRef("GNU", 4)); // note name in emitNoteSection()
98 OutStreamer.emitIntValue(ELF::GNU_PROPERTY_AARCH64_FEATURE_1_AND, 4); in emitNoteSection()
99 OutStreamer.emitIntValue(4, 4); // data size in emitNoteSection()
100 OutStreamer.emitIntValue(Flags, 4); // data in emitNoteSection()
101 OutStreamer.emitIntValue(0, 4); // pad in emitNoteSection()
106 OutStreamer.emitIntValue(ELF::GNU_PROPERTY_AARCH64_FEATURE_PAUTH, 4); in emitNoteSection()
107 OutStreamer.emitIntValue(8 * 2, 4); // data size in emitNoteSection()
108 OutStreamer.emitIntValue(PAuthABIPlatform, 8); in emitNoteSection()
109 OutStreamer.emitIntValue(PAuthABIVersion, 8); in emitNoteSection()
112 OutStreamer.endSection(Nt); in emitNoteSection()
113 OutStreamer.switchSection(Cur); in emitNoteSection()