Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching refs:Value

79   void emitAttribute(unsigned Attribute, unsigned Value) override;
91 void emitThumbSet(MCSymbol *Symbol, const MCExpr *Value) override;
156 void ARMTargetAsmStreamer::emitAttribute(unsigned Attribute, unsigned Value) {
157 OS << "\t.eabi_attribute\t" << Attribute << ", " << Twine(Value);
186 default: llvm_unreachable("unsupported multi-value attribute in asm mode");
216 void ARMTargetAsmStreamer::emitThumbSet(MCSymbol *Symbol, const MCExpr *Value) {
222 Value->print(OS, MAI);
246 // their string/numeric value, so we can later emit them
291 void setAttributeItem(unsigned Attribute, unsigned Value,
298 Item->IntValue = Value;
306 Value,
312 void setAttributeItem(unsigned Attribute, StringRef Value,
319 Item->StringValue = Value;
328 Value
375 void emitAttribute(unsigned Attribute, unsigned Value) override;
387 void emitThumbSet(MCSymbol *Symbol, const MCExpr *Value) override;
510 void EmitValueImpl(const MCExpr *Value, unsigned Size, SMLoc Loc) override {
511 if (const MCSymbolRefExpr *SRE = dyn_cast_or_null<MCSymbolRefExpr>(Value))
518 MCELFStreamer::EmitValueImpl(Value, Size, Loc);
665 void ARMTargetELFStreamer::emitAttribute(unsigned Attribute, unsigned Value) {
666 setAttributeItem(Attribute, Value, /* OverwriteExisting= */ true);
669 StringRef Value) {
670 setAttributeItem(Attribute, Value, /* OverwriteExisting= */ true);
678 void ARMTargetELFStreamer::emitArch(unsigned Value) {
679 Arch = Value;
681 void ARMTargetELFStreamer::emitObjectArch(unsigned Value) {
682 EmittedArch = Value;
777 void ARMTargetELFStreamer::emitFPU(unsigned Value) {
778 FPU = Value;
1026 void ARMTargetELFStreamer::emitThumbSet(MCSymbol *Symbol, const MCExpr *Value) {
1027 if (const MCSymbolRefExpr *SRE = dyn_cast<MCSymbolRefExpr>(Value)) {
1030 getStreamer().EmitAssignment(Symbol, Value);
1036 getStreamer().EmitAssignment(Symbol, Value);