Lines Matching defs:Attribute

90   void emitAttribute(unsigned Attribute, unsigned Value) override;
91 void emitTextAttribute(unsigned Attribute, StringRef String) override;
92 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
186 void ARMTargetAsmStreamer::emitAttribute(unsigned Attribute, unsigned Value) {
187 OS << "\t.eabi_attribute\t" << Attribute << ", " << Twine(Value);
190 Attribute, ARMBuildAttrs::getARMAttributeTags());
197 void ARMTargetAsmStreamer::emitTextAttribute(unsigned Attribute,
199 switch (Attribute) {
204 OS << "\t.eabi_attribute\t" << Attribute << ", \"";
205 if (Attribute == ARMBuildAttrs::also_compatible_with)
212 Attribute, ARMBuildAttrs::getARMAttributeTags());
221 void ARMTargetAsmStreamer::emitIntTextAttribute(unsigned Attribute,
224 switch (Attribute) {
227 OS << "\t.eabi_attribute\t" << Attribute << ", " << IntValue;
232 << ELFAttrs::attrTypeAsString(Attribute,
411 void emitAttribute(unsigned Attribute, unsigned Value) override;
412 void emitTextAttribute(unsigned Attribute, StringRef String) override;
413 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
604 bool emitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) override {
605 bool Val = MCELFStreamer::emitSymbolAttribute(Symbol, Attribute);
792 void ARMTargetELFStreamer::emitAttribute(unsigned Attribute, unsigned Value) {
793 getStreamer().setAttributeItem(Attribute, Value,
797 void ARMTargetELFStreamer::emitTextAttribute(unsigned Attribute,
799 getStreamer().setAttributeItem(Attribute, Value,
803 void ARMTargetELFStreamer::emitIntTextAttribute(unsigned Attribute,
806 getStreamer().setAttributeItems(Attribute, IntValue, StringValue,