Lines Matching refs:Streamer
653 return static_cast<ARMELFStreamer &>(Streamer); in getStreamer()
931 ARMELFStreamer &Streamer = getStreamer(); in finishAttributeSection() local
935 Streamer.SwitchSection(AttributeSection); in finishAttributeSection()
938 Streamer.getContext().getELFSection(".ARM.attributes", in finishAttributeSection()
942 Streamer.SwitchSection(AttributeSection); in finishAttributeSection()
945 Streamer.EmitIntValue(0x41, 1); in finishAttributeSection()
956 Streamer.EmitIntValue(VendorHeaderSize + TagHeaderSize + ContentsSize, 4); in finishAttributeSection()
957 Streamer.EmitBytes(CurrentVendor); in finishAttributeSection()
958 Streamer.EmitIntValue(0, 1); // '\0' in finishAttributeSection()
960 Streamer.EmitIntValue(ARMBuildAttrs::File, 1); in finishAttributeSection()
961 Streamer.EmitIntValue(TagHeaderSize + ContentsSize, 4); in finishAttributeSection()
967 Streamer.EmitULEB128IntValue(item.Tag); in finishAttributeSection()
971 Streamer.EmitULEB128IntValue(item.IntValue); in finishAttributeSection()
974 Streamer.EmitBytes(item.StringValue.upper()); in finishAttributeSection()
975 Streamer.EmitIntValue(0, 1); // '\0' in finishAttributeSection()
978 Streamer.EmitULEB128IntValue(item.IntValue); in finishAttributeSection()
979 Streamer.EmitBytes(item.StringValue.upper()); in finishAttributeSection()
980 Streamer.EmitIntValue(0, 1); // '\0' in finishAttributeSection()
990 ARMELFStreamer &Streamer = getStreamer(); in emitLabel() local
991 if (!Streamer.IsThumb) in emitLabel()
994 const MCSymbolData &SD = Streamer.getOrCreateSymbolData(Symbol); in emitLabel()
997 Streamer.EmitThumbFunc(Symbol); in emitLabel()