64 "Invalid personality index");
83 void emitSetFP(
unsigned FpReg,
unsigned SpReg, int64_t
Offset = 0)
override;
87 bool isVector)
override;
122ARMTargetAsmStreamer::ARMTargetAsmStreamer(
MCStreamer &S,
126 IsVerboseAsm(S.isVerboseAsm()) {}
128void ARMTargetAsmStreamer::emitFnStart() {
OS <<
"\t.fnstart\n"; }
129void ARMTargetAsmStreamer::emitFnEnd() {
OS <<
"\t.fnend\n"; }
130void ARMTargetAsmStreamer::emitCantUnwind() {
OS <<
"\t.cantunwind\n"; }
132void ARMTargetAsmStreamer::emitPersonality(
const MCSymbol *Personality) {
133 OS <<
"\t.personality " << Personality->
getName() <<
'\n';
136void ARMTargetAsmStreamer::emitPersonalityIndex(
unsigned Index) {
137 OS <<
"\t.personalityindex " <<
Index <<
'\n';
140void ARMTargetAsmStreamer::emitHandlerData() {
OS <<
"\t.handlerdata\n"; }
142void ARMTargetAsmStreamer::emitSetFP(
unsigned FpReg,
unsigned SpReg,
145 InstPrinter.printRegName(
OS, FpReg);
147 InstPrinter.printRegName(
OS, SpReg);
153void ARMTargetAsmStreamer::emitMovSP(
unsigned Reg, int64_t
Offset) {
154 assert((Reg != ARM::SP && Reg != ARM::PC) &&
155 "the operand of .movsp cannot be either sp or pc");
158 InstPrinter.printRegName(
OS, Reg);
164void ARMTargetAsmStreamer::emitPad(int64_t
Offset) {
165 OS <<
"\t.pad\t#" <<
Offset <<
'\n';
170 assert(RegList.
size() &&
"RegList should not be empty");
176 InstPrinter.printRegName(
OS, RegList[0]);
178 for (
unsigned i = 1, e = RegList.
size(); i != e; ++i) {
180 InstPrinter.printRegName(
OS, RegList[i]);
186void ARMTargetAsmStreamer::switchVendor(
StringRef Vendor) {}
188void ARMTargetAsmStreamer::emitAttribute(
unsigned Attribute,
unsigned Value) {
199void ARMTargetAsmStreamer::emitTextAttribute(
unsigned Attribute,
206 OS <<
"\t.eabi_attribute\t" <<
Attribute <<
", \"";
223void ARMTargetAsmStreamer::emitIntTextAttribute(
unsigned Attribute,
229 OS <<
"\t.eabi_attribute\t" <<
Attribute <<
", " << IntValue;
230 if (!StringValue.
empty())
231 OS <<
", \"" << StringValue <<
"\"";
245void ARMTargetAsmStreamer::emitArchExtension(
uint64_t ArchExt) {
249void ARMTargetAsmStreamer::emitObjectArch(
ARM::ArchKind Arch) {
257void ARMTargetAsmStreamer::finishAttributeSection() {}
259void ARMTargetAsmStreamer::annotateTLSDescriptorSequence(
265 const MCAsmInfo *MAI = Streamer.getContext().getAsmInfo();
267 OS <<
"\t.thumb_set\t";
274void ARMTargetAsmStreamer::emitInst(
uint32_t Inst,
char Suffix) {
281void ARMTargetAsmStreamer::emitUnwindRaw(int64_t
Offset,
284 for (uint8_t Opcode : Opcodes)
289void ARMTargetAsmStreamer::emitARMWinCFIAllocStack(
unsigned Size,
bool Wide) {
291 OS <<
"\t.seh_stackalloc_w\t" <<
Size <<
"\n";
293 OS <<
"\t.seh_stackalloc\t" <<
Size <<
"\n";
304void ARMTargetAsmStreamer::emitARMWinCFISaveRegMask(
unsigned Mask,
bool Wide) {
306 OS <<
"\t.seh_save_regs_w\t";
308 OS <<
"\t.seh_save_regs\t";
312 for (
int I = 0;
I <= 12;
I++) {
313 if (Mask & (1 <<
I)) {
325 if (Mask & (1 << 14))
330void ARMTargetAsmStreamer::emitARMWinCFISaveSP(
unsigned Reg) {
331 OS <<
"\t.seh_save_sp\tr" <<
Reg <<
"\n";
334void ARMTargetAsmStreamer::emitARMWinCFISaveFRegs(
unsigned First,
337 OS <<
"\t.seh_save_fregs\t{d" <<
First <<
"-d" <<
Last <<
"}\n";
339 OS <<
"\t.seh_save_fregs\t{d" <<
First <<
"}\n";
342void ARMTargetAsmStreamer::emitARMWinCFISaveLR(
unsigned Offset) {
343 OS <<
"\t.seh_save_lr\t" <<
Offset <<
"\n";
346void ARMTargetAsmStreamer::emitARMWinCFIPrologEnd(
bool Fragment) {
348 OS <<
"\t.seh_endprologue_fragment\n";
350 OS <<
"\t.seh_endprologue\n";
353void ARMTargetAsmStreamer::emitARMWinCFINop(
bool Wide) {
355 OS <<
"\t.seh_nop_w\n";
357 OS <<
"\t.seh_nop\n";
360void ARMTargetAsmStreamer::emitARMWinCFIEpilogStart(
unsigned Condition) {
362 OS <<
"\t.seh_startepilogue\n";
364 OS <<
"\t.seh_startepilogue_cond\t"
368void ARMTargetAsmStreamer::emitARMWinCFIEpilogEnd() {
369 OS <<
"\t.seh_endepilogue\n";
372void ARMTargetAsmStreamer::emitARMWinCFICustom(
unsigned Opcode) {
374 for (
I = 3;
I > 0;
I--)
375 if (Opcode & (0xffu << (8 *
I)))
378 OS <<
"\t.seh_custom\t";
380 OS << LS << ((Opcode >> (8 *
I)) & 0xff);
393 void emitArchDefaultAttributes();
394 void emitFPUDefaultAttributes();
404 void emitSetFP(
unsigned FpReg,
unsigned SpReg, int64_t
Offset = 0)
override;
408 bool isVector)
override;
428 void reset()
override;
451 friend class ARMTargetELFStreamer;
453 ARMELFStreamer(
MCContext &Context, std::unique_ptr<MCAsmBackend> TAB,
454 std::unique_ptr<MCObjectWriter> OW,
455 std::unique_ptr<MCCodeEmitter>
Emitter,
bool IsThumb,
459 IsThumb(IsThumb), IsAndroid(IsAndroid) {
463 ~ARMELFStreamer()
override =
default;
468 void emitCantUnwind();
469 void emitPersonality(
const MCSymbol *Per);
470 void emitPersonalityIndex(
unsigned index);
471 void emitHandlerData();
472 void emitSetFP(
unsigned NewFpReg,
unsigned NewSpReg, int64_t
Offset = 0);
473 void emitMovSP(
unsigned Reg, int64_t
Offset = 0);
474 void emitPad(int64_t
Offset);
478 SMLoc Loc)
override {
479 emitDataMappingSymbol();
486 auto LastMappingSymbol = LastMappingSymbols.find(Section);
487 if (LastMappingSymbol != LastMappingSymbols.end()) {
488 LastEMSInfo = std::move(LastMappingSymbol->second);
491 LastEMSInfo.reset(
new ElfMappingSymbolInfo);
500 EmitThumbMappingSymbol();
502 EmitARMMappingSymbol();
507 void emitInst(
uint32_t Inst,
char Suffix) {
517 EmitARMMappingSymbol();
519 const unsigned I = LittleEndian ? (
Size -
II - 1) :
II;
520 Buffer[
Size -
II - 1] = uint8_t(Inst >>
I * CHAR_BIT);
526 Size = (Suffix ==
'n' ? 2 : 4);
529 EmitThumbMappingSymbol();
533 const unsigned I0 = LittleEndian ?
II + 0 :
II + 1;
534 const unsigned I1 = LittleEndian ?
II + 1 :
II + 0;
535 Buffer[
Size -
II - 2] = uint8_t(Inst >> I0 * CHAR_BIT);
536 Buffer[
Size -
II - 1] = uint8_t(Inst >> I1 * CHAR_BIT);
551 emitDataMappingSymbol();
555 void FlushPendingMappingSymbol() {
556 if (!LastEMSInfo->hasInfo())
558 ElfMappingSymbolInfo *EMS = LastEMSInfo.get();
559 emitMappingSymbol(
"$d", *EMS->F, EMS->Offset);
575 emitDataMappingSymbol();
612 unsigned Type = cast<MCSymbolELF>(Symbol)->getType();
621 enum ElfMappingSymbol {
628 struct ElfMappingSymbolInfo {
633 bool hasInfo() {
return F !=
nullptr; }
636 ElfMappingSymbol State = EMS_None;
639 void emitDataMappingSymbol() {
640 if (LastEMSInfo->State == EMS_Data)
642 else if (LastEMSInfo->State == EMS_None) {
645 ElfMappingSymbolInfo *EMS = LastEMSInfo.get();
650 EMS->Offset =
DF->getContents().size();
651 LastEMSInfo->State = EMS_Data;
654 EmitMappingSymbol(
"$d");
655 LastEMSInfo->State = EMS_Data;
658 void EmitThumbMappingSymbol() {
659 if (LastEMSInfo->State == EMS_Thumb)
661 FlushPendingMappingSymbol();
662 EmitMappingSymbol(
"$t");
663 LastEMSInfo->State = EMS_Thumb;
666 void EmitARMMappingSymbol() {
667 if (LastEMSInfo->State == EMS_ARM)
669 FlushPendingMappingSymbol();
670 EmitMappingSymbol(
"$a");
671 LastEMSInfo->State = EMS_ARM;
698 void reset()
override;
701 void FlushPendingOffset();
702 void FlushUnwindOpcodes(
bool NoHandlerData);
704 void SwitchToEHSection(
StringRef Prefix,
unsigned Type,
unsigned Flags,
706 void SwitchToExTabSection(
const MCSymbol &FnStart);
707 void SwitchToExIdxSection(
const MCSymbol &FnStart);
717 std::unique_ptr<ElfMappingSymbolInfo> LastEMSInfo;
723 unsigned PersonalityIndex;
727 int64_t PendingOffset;
736ARMELFStreamer &ARMTargetELFStreamer::getStreamer() {
737 return static_cast<ARMELFStreamer &
>(Streamer);
740void ARMTargetELFStreamer::emitFnStart() { getStreamer().emitFnStart(); }
741void ARMTargetELFStreamer::emitFnEnd() { getStreamer().emitFnEnd(); }
742void ARMTargetELFStreamer::emitCantUnwind() { getStreamer().emitCantUnwind(); }
744void ARMTargetELFStreamer::emitPersonality(
const MCSymbol *Personality) {
745 getStreamer().emitPersonality(Personality);
748void ARMTargetELFStreamer::emitPersonalityIndex(
unsigned Index) {
749 getStreamer().emitPersonalityIndex(
Index);
752void ARMTargetELFStreamer::emitHandlerData() {
753 getStreamer().emitHandlerData();
756void ARMTargetELFStreamer::emitSetFP(
unsigned FpReg,
unsigned SpReg,
758 getStreamer().emitSetFP(FpReg, SpReg,
Offset);
761void ARMTargetELFStreamer::emitMovSP(
unsigned Reg, int64_t
Offset) {
762 getStreamer().emitMovSP(Reg,
Offset);
765void ARMTargetELFStreamer::emitPad(int64_t
Offset) {
766 getStreamer().emitPad(
Offset);
771 getStreamer().emitRegSave(RegList, isVector);
774void ARMTargetELFStreamer::emitUnwindRaw(int64_t
Offset,
776 getStreamer().emitUnwindRaw(
Offset, Opcodes);
779void ARMTargetELFStreamer::switchVendor(
StringRef Vendor) {
780 assert(!Vendor.
empty() &&
"Vendor cannot be empty.");
782 if (CurrentVendor == Vendor)
785 if (!CurrentVendor.empty())
786 finishAttributeSection();
788 assert(getStreamer().Contents.empty() &&
789 ".ARM.attributes should be flushed before changing vendor");
790 CurrentVendor = Vendor;
794void ARMTargetELFStreamer::emitAttribute(
unsigned Attribute,
unsigned Value) {
799void ARMTargetELFStreamer::emitTextAttribute(
unsigned Attribute,
805void ARMTargetELFStreamer::emitIntTextAttribute(
unsigned Attribute,
808 getStreamer().setAttributeItems(
Attribute, IntValue, StringValue,
820void ARMTargetELFStreamer::emitArchDefaultAttributes() {
821 using namespace ARMBuildAttrs;
822 ARMELFStreamer &S = getStreamer();
826 if (EmittedArch == ARM::ArchKind::INVALID)
832 case ARM::ArchKind::ARMV4:
833 S.setAttributeItem(ARM_ISA_use, Allowed,
false);
836 case ARM::ArchKind::ARMV4T:
837 case ARM::ArchKind::ARMV5T:
838 case ARM::ArchKind::XSCALE:
839 case ARM::ArchKind::ARMV5TE:
840 case ARM::ArchKind::ARMV6:
841 S.setAttributeItem(ARM_ISA_use, Allowed,
false);
842 S.setAttributeItem(THUMB_ISA_use, Allowed,
false);
845 case ARM::ArchKind::ARMV6T2:
846 S.setAttributeItem(ARM_ISA_use, Allowed,
false);
847 S.setAttributeItem(THUMB_ISA_use, AllowThumb32,
false);
850 case ARM::ArchKind::ARMV6K:
851 case ARM::ArchKind::ARMV6KZ:
852 S.setAttributeItem(ARM_ISA_use, Allowed,
false);
853 S.setAttributeItem(THUMB_ISA_use, Allowed,
false);
854 S.setAttributeItem(Virtualization_use, AllowTZ,
false);
857 case ARM::ArchKind::ARMV6M:
858 S.setAttributeItem(THUMB_ISA_use, Allowed,
false);
861 case ARM::ArchKind::ARMV7A:
862 S.setAttributeItem(CPU_arch_profile, ApplicationProfile,
false);
863 S.setAttributeItem(ARM_ISA_use, Allowed,
false);
864 S.setAttributeItem(THUMB_ISA_use, AllowThumb32,
false);
867 case ARM::ArchKind::ARMV7R:
868 S.setAttributeItem(CPU_arch_profile, RealTimeProfile,
false);
869 S.setAttributeItem(ARM_ISA_use, Allowed,
false);
870 S.setAttributeItem(THUMB_ISA_use, AllowThumb32,
false);
873 case ARM::ArchKind::ARMV7EM:
874 case ARM::ArchKind::ARMV7M:
875 S.setAttributeItem(CPU_arch_profile, MicroControllerProfile,
false);
876 S.setAttributeItem(THUMB_ISA_use, AllowThumb32,
false);
879 case ARM::ArchKind::ARMV8A:
880 case ARM::ArchKind::ARMV8_1A:
881 case ARM::ArchKind::ARMV8_2A:
882 case ARM::ArchKind::ARMV8_3A:
883 case ARM::ArchKind::ARMV8_4A:
884 case ARM::ArchKind::ARMV8_5A:
885 case ARM::ArchKind::ARMV8_6A:
886 case ARM::ArchKind::ARMV8_7A:
887 case ARM::ArchKind::ARMV8_8A:
888 case ARM::ArchKind::ARMV8_9A:
889 case ARM::ArchKind::ARMV9A:
890 case ARM::ArchKind::ARMV9_1A:
891 case ARM::ArchKind::ARMV9_2A:
892 case ARM::ArchKind::ARMV9_3A:
893 case ARM::ArchKind::ARMV9_4A:
894 case ARM::ArchKind::ARMV9_5A:
895 S.setAttributeItem(CPU_arch_profile, ApplicationProfile,
false);
896 S.setAttributeItem(ARM_ISA_use, Allowed,
false);
897 S.setAttributeItem(THUMB_ISA_use, AllowThumb32,
false);
898 S.setAttributeItem(MPextension_use, Allowed,
false);
899 S.setAttributeItem(Virtualization_use, AllowTZVirtualization,
false);
902 case ARM::ArchKind::ARMV8MBaseline:
903 case ARM::ArchKind::ARMV8MMainline:
904 S.setAttributeItem(THUMB_ISA_use, AllowThumbDerived,
false);
905 S.setAttributeItem(CPU_arch_profile, MicroControllerProfile,
false);
908 case ARM::ArchKind::IWMMXT:
909 S.setAttributeItem(ARM_ISA_use, Allowed,
false);
910 S.setAttributeItem(THUMB_ISA_use, Allowed,
false);
911 S.setAttributeItem(WMMX_arch, AllowWMMXv1,
false);
914 case ARM::ArchKind::IWMMXT2:
915 S.setAttributeItem(ARM_ISA_use, Allowed,
false);
916 S.setAttributeItem(THUMB_ISA_use, Allowed,
false);
917 S.setAttributeItem(WMMX_arch, AllowWMMXv2,
false);
928void ARMTargetELFStreamer::emitFPUDefaultAttributes() {
929 ARMELFStreamer &S = getStreamer();
943 case ARM::FK_VFPV3_FP16:
950 case ARM::FK_VFPV3_D16:
955 case ARM::FK_VFPV3_D16_FP16:
962 case ARM::FK_VFPV3XD:
966 case ARM::FK_VFPV3XD_FP16:
980 case ARM::FK_FPV4_SP_D16:
981 case ARM::FK_VFPV4_D16:
986 case ARM::FK_FP_ARMV8:
993 case ARM::FK_FPV5_SP_D16:
994 case ARM::FK_FPV5_D16:
1007 case ARM::FK_NEON_FP16:
1017 case ARM::FK_NEON_VFPV4:
1025 case ARM::FK_NEON_FP_ARMV8:
1026 case ARM::FK_CRYPTO_NEON_FP_ARMV8:
1033 case ARM::FK_SOFTVFP:
1043void ARMTargetELFStreamer::finishAttributeSection() {
1044 ARMELFStreamer &S = getStreamer();
1046 if (FPU != ARM::FK_INVALID)
1047 emitFPUDefaultAttributes();
1049 if (Arch != ARM::ArchKind::INVALID)
1050 emitArchDefaultAttributes();
1052 if (S.Contents.empty())
1073 S.emitAttributesSection(CurrentVendor,
".ARM.attributes",
1076 FPU = ARM::FK_INVALID;
1079void ARMTargetELFStreamer::emitLabel(
MCSymbol *Symbol) {
1080 ARMELFStreamer &Streamer = getStreamer();
1081 if (!Streamer.IsThumb)
1084 Streamer.getAssembler().registerSymbol(*Symbol);
1085 unsigned Type = cast<MCSymbolELF>(Symbol)->getType();
1087 Streamer.emitThumbFunc(Symbol);
1090void ARMTargetELFStreamer::annotateTLSDescriptorSequence(
1098 if (!
Sym.isDefined()) {
1099 getStreamer().emitAssignment(Symbol,
Value);
1104 getStreamer().emitThumbFunc(Symbol);
1105 getStreamer().emitAssignment(Symbol,
Value);
1108void ARMTargetELFStreamer::emitInst(
uint32_t Inst,
char Suffix) {
1109 getStreamer().emitInst(Inst, Suffix);
1112void ARMTargetELFStreamer::reset() { AttributeSection =
nullptr; }
1114void ARMTargetELFStreamer::finish() {
1115 ARMTargetStreamer::finish();
1116 finishAttributeSection();
1123 MCContext &Ctx = getStreamer().getContext();
1124 auto &
Asm = getStreamer().getAssembler();
1130 for (
auto &
F : *Text)
1131 if (
auto *
DF = dyn_cast<MCDataFragment>(&
F))
1132 if (!
DF->getContents().empty())
1138void ARMELFStreamer::reset() {
1143 LastMappingSymbols.clear();
1144 LastEMSInfo.reset();
1151inline void ARMELFStreamer::SwitchToEHSection(
StringRef Prefix,
1162 if (FnSecName !=
".text") {
1163 EHSecName += FnSecName;
1171 EHSecName,
Type, Flags, 0, Group,
true,
1175 assert(EHSection &&
"Failed to get the required EH section");
1178 switchSection(EHSection);
1179 emitValueToAlignment(
Align(4), 0, 1, 0);
1182inline void ARMELFStreamer::SwitchToExTabSection(
const MCSymbol &FnStart) {
1187inline void ARMELFStreamer::SwitchToExIdxSection(
const MCSymbol &FnStart) {
1199void ARMELFStreamer::EHReset() {
1202 Personality =
nullptr;
1212 UnwindOpAsm.Reset();
1215void ARMELFStreamer::emitFnStart() {
1216 assert(FnStart ==
nullptr);
1217 FnStart = getContext().createTempSymbol();
1221void ARMELFStreamer::emitFnEnd() {
1222 assert(FnStart &&
".fnstart must precedes .fnend");
1225 if (!ExTab && !CantUnwind)
1226 FlushUnwindOpcodes(
true);
1229 SwitchToExIdxSection(*FnStart);
1244 emitValue(FnStartRef, 4);
1254 emitValue(ExTabEntryRef, 4);
1260 "Compact model must use __aeabi_unwind_cpp_pr0 as personality");
1262 "Unwind opcode size for __aeabi_unwind_cpp_pr0 must be equal to 4");
1267 emitIntValue(Intval, Opcodes.
size());
1277void ARMELFStreamer::emitCantUnwind() { CantUnwind =
true; }
1281 const MCSymbol *PersonalitySym = getContext().getOrCreateSymbol(
Name);
1286 visitUsedExpr(*PersonalityRef);
1293void ARMELFStreamer::FlushPendingOffset() {
1294 if (PendingOffset != 0) {
1295 UnwindOpAsm.EmitSPOffset(-PendingOffset);
1300void ARMELFStreamer::FlushUnwindOpcodes(
bool NoHandlerData) {
1304 int64_t LastRegSaveSPOffset = SPOffset - PendingOffset;
1305 UnwindOpAsm.EmitSPOffset(LastRegSaveSPOffset - FPOffset);
1306 UnwindOpAsm.EmitSetSP(
MRI->getEncodingValue(FPReg));
1308 FlushPendingOffset();
1312 UnwindOpAsm.Finalize(PersonalityIndex, Opcodes);
1321 SwitchToExTabSection(*FnStart);
1325 ExTab = getContext().createTempSymbol();
1335 emitValue(PersonalityRef, 4);
1340 "Unwind opcode size for __aeabi_cpp_unwind_pr0 must be multiple of 4");
1341 for (
unsigned I = 0;
I != Opcodes.
size();
I += 4) {
1343 Opcodes[
I + 1] << 8 |
1344 Opcodes[
I + 2] << 16 |
1345 Opcodes[
I + 3] << 24;
1356 if (NoHandlerData && !Personality)
1360void ARMELFStreamer::emitHandlerData() { FlushUnwindOpcodes(
false); }
1362void ARMELFStreamer::emitPersonality(
const MCSymbol *Per) {
1364 UnwindOpAsm.setPersonality(Per);
1367void ARMELFStreamer::emitPersonalityIndex(
unsigned Index) {
1369 PersonalityIndex =
Index;
1372void ARMELFStreamer::emitSetFP(
unsigned NewFPReg,
unsigned NewSPReg,
1374 assert((NewSPReg == ARM::SP || NewSPReg == FPReg) &&
1375 "the operand of .setfp directive should be either $sp or $fp");
1380 if (NewSPReg == ARM::SP)
1381 FPOffset = SPOffset +
Offset;
1386void ARMELFStreamer::emitMovSP(
unsigned Reg, int64_t
Offset) {
1387 assert((Reg != ARM::SP && Reg != ARM::PC) &&
1388 "the operand of .movsp cannot be either sp or pc");
1389 assert(FPReg == ARM::SP &&
"current FP must be SP");
1391 FlushPendingOffset();
1394 FPOffset = SPOffset +
Offset;
1397 UnwindOpAsm.EmitSetSP(
MRI->getEncodingValue(FPReg));
1400void ARMELFStreamer::emitPad(int64_t
Offset) {
1409static std::pair<unsigned, unsigned>
1416 unsigned Reg = RegList[
Idx - 1];
1417 if (Reg == ARM::RA_AUTH_CODE)
1419 Reg =
MRI.getEncodingValue(Reg);
1420 assert(Reg < (IsVector ? 32U : 16U) &&
"Register out of range");
1421 unsigned Bit = (1u << Reg);
1422 if ((Mask & Bit) == 0) {
1430 return {
Idx, Count};
1436 unsigned Idx, Count;
1453 SPOffset -= Count * (IsVector ? 8 : 4);
1456 FlushPendingOffset();
1458 UnwindOpAsm.EmitVFPRegSave(Mask);
1460 UnwindOpAsm.EmitRegSave(Mask);
1461 }
else if (
Idx > 0 && RegList[
Idx - 1] == ARM::RA_AUTH_CODE) {
1464 FlushPendingOffset();
1465 UnwindOpAsm.EmitRegSave(0);
1470void ARMELFStreamer::emitUnwindRaw(int64_t
Offset,
1472 FlushPendingOffset();
1473 SPOffset = SPOffset -
Offset;
1474 UnwindOpAsm.EmitRaw(Opcodes);
1482 return new ARMTargetAsmStreamer(S,
OS, *InstPrint);
1490 return new ARMTargetELFStreamer(S);
1494 std::unique_ptr<MCAsmBackend> TAB,
1495 std::unique_ptr<MCObjectWriter> OW,
1496 std::unique_ptr<MCCodeEmitter>
Emitter,
1497 bool IsThumb,
bool IsAndroid) {
1499 new ARMELFStreamer(Context, std::move(TAB), std::move(OW),
1500 std::move(
Emitter), IsThumb, IsAndroid);
unsigned const MachineRegisterInfo * MRI
static std::string GetAEABIUnwindPersonalityName(unsigned Index)
static std::pair< unsigned, unsigned > collectHWRegs(const MCRegisterInfo &MRI, unsigned Idx, const SmallVectorImpl< unsigned > &RegList, bool IsVector, uint32_t &Mask_)
dxil DXContainer Global Emitter
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
static RegisterPass< DebugifyFunctionPass > DF("debugify-function", "Attach debug info to a function")
This file defines the DenseMap class.
uint64_t IntrinsicInst * II
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the SmallString class.
This file defines the SmallVector class.
virtual void emitUnwindRaw(int64_t StackOffset, const SmallVectorImpl< uint8_t > &Opcodes)
virtual void reset()
Reset any state between object emissions, i.e.
virtual void annotateTLSDescriptorSequence(const MCSymbolRefExpr *SRE)
virtual void finishAttributeSection()
virtual void emitARMWinCFISaveSP(unsigned Reg)
virtual void emitPersonalityIndex(unsigned Index)
virtual void emitInst(uint32_t Inst, char Suffix='\0')
virtual void emitARMWinCFISaveLR(unsigned Offset)
virtual void emitArchExtension(uint64_t ArchExt)
virtual void emitRegSave(const SmallVectorImpl< unsigned > &RegList, bool isVector)
virtual void emitTextAttribute(unsigned Attribute, StringRef String)
virtual void emitARMWinCFIAllocStack(unsigned Size, bool Wide)
virtual void emitMovSP(unsigned Reg, int64_t Offset=0)
virtual void emitARMWinCFICustom(unsigned Opcode)
virtual void emitARMWinCFISaveRegMask(unsigned Mask, bool Wide)
virtual void emitARMWinCFIEpilogEnd()
virtual void emitARMWinCFIPrologEnd(bool Fragment)
virtual void switchVendor(StringRef Vendor)
virtual void emitFnStart()
virtual void emitPersonality(const MCSymbol *Personality)
virtual void emitObjectArch(ARM::ArchKind Arch)
virtual void emitHandlerData()
virtual void emitIntTextAttribute(unsigned Attribute, unsigned IntValue, StringRef StringValue="")
virtual void emitThumbSet(MCSymbol *Symbol, const MCExpr *Value)
virtual void emitFPU(ARM::FPUKind FPU)
virtual void emitCantUnwind()
virtual void emitARMWinCFISaveFRegs(unsigned First, unsigned Last)
virtual void emitARMWinCFIEpilogStart(unsigned Condition)
virtual void emitPad(int64_t Offset)
virtual void emitAttribute(unsigned Attribute, unsigned Value)
virtual void emitARMWinCFINop(bool Wide)
virtual void emitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset=0)
virtual void emitArch(ARM::ArchKind Arch)
This class is intended to be used as a base class for asm properties and features specific to the tar...
bool isLittleEndian() const
True if the target is little endian.
void setIsThumbFunc(const MCSymbol *Func)
Flag a function symbol as the target of a .thumb_func directive.
Context object for machine code objects.
const MCObjectFileInfo * getObjectFileInfo() const
const MCAsmInfo * getAsmInfo() const
void reportError(SMLoc L, const Twine &Msg)
Fragment for data and encoded instructions.
void changeSection(MCSection *Section, uint32_t Subsection=0) override
This is called by popSection and switchSection, if the current section changes.
void emitValueImpl(const MCExpr *Value, unsigned Size, SMLoc Loc=SMLoc()) override
Emit the expression Value into the output as a native integer of the given Size bytes.
void emitAssemblerFlag(MCAssemblerFlag Flag) override
Note in the output the specified Flag.
void emitThumbFunc(MCSymbol *Func) override
Note in the output that the specified Func is a Thumb mode function (ARM target only).
void reset() override
state management
void emitLabel(MCSymbol *Symbol, SMLoc Loc=SMLoc()) override
Emit a label for Symbol into the current section.
bool emitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) override
Add the given Attribute to Symbol.
void emitLabelAtPos(MCSymbol *Symbol, SMLoc Loc, MCDataFragment &F, uint64_t Offset) override
SmallVectorImpl< MCFixup > & getFixups()
SmallVectorImpl< char > & getContents()
Base class for the full range of assembler expressions which are needed for parsing.
static MCFixupKind getKindForSize(unsigned Size, bool IsPCRel)
Return the generic fixup kind for a value with the given size.
static MCFixup create(uint32_t Offset, const MCExpr *Value, MCFixupKind Kind, SMLoc Loc=SMLoc())
This is an instance of a target assembly language printer that converts an MCInst to valid target ass...
Instances of this class represent a single low-level machine instruction.
MCSection * getTextSection() const
void emitFill(const MCExpr &NumBytes, uint64_t FillValue, SMLoc Loc=SMLoc()) override
Emit Size bytes worth of the value specified by FillValue.
MCDataFragment * getOrCreateDataFragment(const MCSubtargetInfo *STI=nullptr)
Get a data fragment to write into, creating a new one if the current fragment is not a data fragment.
MCAssembler & getAssembler()
void emitBytes(StringRef Data) override
Emit the bytes in Data into the output.
void emitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI) override
Emit the given Instruction into the current section.
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
This represents a section on linux, lots of unix variants and some bare metal systems.
unsigned getUniqueID() const
const MCSymbolELF * getGroup() const
Instances of this class represent a uniqued identifier for a section in the current translation unit.
StringRef getName() const
MCSymbol * getBeginSymbol()
Streaming machine code generation interface.
MCFragment * getCurrentFragment() const
MCContext & getContext() const
MCSectionSubPair getCurrentSection() const
Return the current section that the streamer is emitting code to.
Generic base class for all target subtargets.
Represent a reference to a symbol from inside an expression.
const MCSymbol & getSymbol() const
static const MCSymbolRefExpr * create(const MCSymbol *Symbol, MCContext &Ctx)
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
StringRef getName() const
getName - Get the symbol name.
MCSection & getSection() const
Get the section associated with a defined, non-absolute symbol.
Target specific streamer interface.
MCStreamer & getStreamer()
virtual void emitLabel(MCSymbol *Symbol)
Represents a location in source code.
SectionKind - This is a simple POD value that classifies the properties of a section.
static SectionKind getData()
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
constexpr bool empty() const
empty - Check if the string is empty.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
static Twine utohexstr(const uint64_t &Val)
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM Value Representation.
void print(raw_ostream &O, bool IsForDebug=false) const
Implement operator<< on Value.
raw_ostream & write_escaped(StringRef Str, bool UseHexEscapes=false)
Output Str, turning '\', '\t', ' ', '"', and anything that doesn't satisfy llvm::isPrint into an esca...
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
const TagNameMap & getARMAttributeTags()
@ EXIDX_CANTUNWIND
Special entry for the function never unwind.
StringRef getArchExtName(uint64_t ArchExtKind)
StringRef getCPUAttr(ArchKind AK)
StringRef getArchName(ArchKind AK)
unsigned getArchAttr(ArchKind AK)
StringRef getFPUName(FPUKind FPUKind)
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
StringRef attrTypeAsString(unsigned attr, TagNameMap tagNameMap, bool hasTagPrefix=true)
Reg
All possible values of the reg field in the ModR/M byte.
This is an optimization pass for GlobalISel generic memory operations.
MCELFStreamer * createARMELFStreamer(MCContext &Context, std::unique_ptr< MCAsmBackend > TAB, std::unique_ptr< MCObjectWriter > OW, std::unique_ptr< MCCodeEmitter > Emitter, bool IsThumb, bool IsAndroid)
MCTargetStreamer * createARMObjectTargetELFStreamer(MCStreamer &S)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
void sort(IteratorTy Start, IteratorTy End)
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
MCFixupKind
Extensible enumeration to represent the type of a fixup.
@ FK_Data_4
A four-byte fixup.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
@ MCAF_SyntaxUnified
.syntax (ARM/ELF)
@ MCAF_Code64
.code64 (X86)
@ MCAF_Code16
.code16 (X86) / .code 16 (ARM)
@ MCAF_Code32
.code32 (X86) / .code 32 (ARM)
@ MCAF_SubsectionsViaSymbols
.subsections_via_symbols (MachO)
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
static const char * ARMCondCodeToString(ARMCC::CondCodes CC)
MCTargetStreamer * createARMNullTargetStreamer(MCStreamer &S)
MCTargetStreamer * createARMTargetAsmStreamer(MCStreamer &S, formatted_raw_ostream &OS, MCInstPrinter *InstPrint)
@ MCSA_ELF_TypeFunction
.type _foo, STT_FUNC # aka @function
Implement std::hash so that hash_code can be used in STL containers.
This struct is a compact representation of a valid (non-zero power of two) alignment.
ELF object attributes section emission support.