62 "Invalid personality index");
63 return (
Twine(
"__aeabi_unwind_cpp_pr") +
Twine(Index)).str();
82 int64_t
Offset = 0)
override;
86 bool isVector)
override;
121ARMTargetAsmStreamer::ARMTargetAsmStreamer(
MCStreamer &S,
125 IsVerboseAsm(S.isVerboseAsm()) {}
127void ARMTargetAsmStreamer::emitFnStart() {
OS <<
"\t.fnstart\n"; }
128void ARMTargetAsmStreamer::emitFnEnd() {
OS <<
"\t.fnend\n"; }
129void ARMTargetAsmStreamer::emitCantUnwind() {
OS <<
"\t.cantunwind\n"; }
131void ARMTargetAsmStreamer::emitPersonality(
const MCSymbol *Personality) {
132 OS <<
"\t.personality " << Personality->
getName() <<
'\n';
135void ARMTargetAsmStreamer::emitPersonalityIndex(
unsigned Index) {
136 OS <<
"\t.personalityindex " <<
Index <<
'\n';
139void ARMTargetAsmStreamer::emitHandlerData() {
OS <<
"\t.handlerdata\n"; }
144 InstPrinter.printRegName(
OS, FpReg);
146 InstPrinter.printRegName(
OS, SpReg);
153 assert((Reg != ARM::SP && Reg != ARM::PC) &&
154 "the operand of .movsp cannot be either sp or pc");
157 InstPrinter.printRegName(
OS, Reg);
163void ARMTargetAsmStreamer::emitPad(int64_t
Offset) {
164 OS <<
"\t.pad\t#" <<
Offset <<
'\n';
167void ARMTargetAsmStreamer::emitRegSave(
169 assert(RegList.
size() &&
"RegList should not be empty");
175 InstPrinter.printRegName(
OS, RegList[0]);
177 for (
unsigned i = 1, e = RegList.
size(); i != e; ++i) {
179 InstPrinter.printRegName(
OS, RegList[i]);
185void ARMTargetAsmStreamer::switchVendor(
StringRef Vendor) {}
187void ARMTargetAsmStreamer::emitAttribute(
unsigned Attribute,
unsigned Value) {
198void ARMTargetAsmStreamer::emitTextAttribute(
unsigned Attribute,
205 OS <<
"\t.eabi_attribute\t" <<
Attribute <<
", \"";
222void ARMTargetAsmStreamer::emitIntTextAttribute(
unsigned Attribute,
228 OS <<
"\t.eabi_attribute\t" <<
Attribute <<
", " << IntValue;
229 if (!StringValue.
empty())
230 OS <<
", \"" << StringValue <<
"\"";
244void ARMTargetAsmStreamer::emitArchExtension(
uint64_t ArchExt) {
248void ARMTargetAsmStreamer::emitObjectArch(
ARM::ArchKind Arch) {
256void ARMTargetAsmStreamer::finishAttributeSection() {}
258void ARMTargetAsmStreamer::annotateTLSDescriptorSequence(
264 const MCAsmInfo *MAI = Streamer.getContext().getAsmInfo();
266 OS <<
"\t.thumb_set\t";
273void ARMTargetAsmStreamer::emitInst(
uint32_t Inst,
char Suffix) {
280void ARMTargetAsmStreamer::emitUnwindRaw(int64_t
Offset,
288void ARMTargetAsmStreamer::emitARMWinCFIAllocStack(
unsigned Size,
bool Wide) {
290 OS <<
"\t.seh_stackalloc_w\t" <<
Size <<
"\n";
292 OS <<
"\t.seh_stackalloc\t" <<
Size <<
"\n";
303void ARMTargetAsmStreamer::emitARMWinCFISaveRegMask(
unsigned Mask,
bool Wide) {
305 OS <<
"\t.seh_save_regs_w\t";
307 OS <<
"\t.seh_save_regs\t";
311 for (
int I = 0;
I <= 12;
I++) {
312 if (Mask & (1 <<
I)) {
324 if (Mask & (1 << 14))
329void ARMTargetAsmStreamer::emitARMWinCFISaveSP(
unsigned Reg) {
330 OS <<
"\t.seh_save_sp\tr" <<
Reg <<
"\n";
333void ARMTargetAsmStreamer::emitARMWinCFISaveFRegs(
unsigned First,
336 OS <<
"\t.seh_save_fregs\t{d" <<
First <<
"-d" <<
Last <<
"}\n";
338 OS <<
"\t.seh_save_fregs\t{d" <<
First <<
"}\n";
341void ARMTargetAsmStreamer::emitARMWinCFISaveLR(
unsigned Offset) {
342 OS <<
"\t.seh_save_lr\t" <<
Offset <<
"\n";
345void ARMTargetAsmStreamer::emitARMWinCFIPrologEnd(
bool Fragment) {
347 OS <<
"\t.seh_endprologue_fragment\n";
349 OS <<
"\t.seh_endprologue\n";
352void ARMTargetAsmStreamer::emitARMWinCFINop(
bool Wide) {
354 OS <<
"\t.seh_nop_w\n";
356 OS <<
"\t.seh_nop\n";
359void ARMTargetAsmStreamer::emitARMWinCFIEpilogStart(
unsigned Condition) {
361 OS <<
"\t.seh_startepilogue\n";
363 OS <<
"\t.seh_startepilogue_cond\t"
367void ARMTargetAsmStreamer::emitARMWinCFIEpilogEnd() {
368 OS <<
"\t.seh_endepilogue\n";
371void ARMTargetAsmStreamer::emitARMWinCFICustom(
unsigned Opcode) {
373 for (
I = 3;
I > 0;
I--)
374 if (Opcode & (0xffu << (8 *
I)))
377 OS <<
"\t.seh_custom\t";
379 OS << LS << ((Opcode >> (8 *
I)) & 0xff);
392 void emitArchDefaultAttributes();
393 void emitFPUDefaultAttributes();
404 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();
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;
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;
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();
758 getStreamer().emitSetFP(FpReg, SpReg,
Offset);
762 getStreamer().emitMovSP(Reg,
Offset);
765void ARMTargetELFStreamer::emitPad(int64_t
Offset) {
766 getStreamer().emitPad(
Offset);
769void ARMTargetELFStreamer::emitRegSave(
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 case ARM::ArchKind::ARMV9_6A:
896 S.setAttributeItem(CPU_arch_profile, ApplicationProfile,
false);
897 S.setAttributeItem(ARM_ISA_use, Allowed,
false);
898 S.setAttributeItem(THUMB_ISA_use, AllowThumb32,
false);
899 S.setAttributeItem(MPextension_use, Allowed,
false);
900 S.setAttributeItem(Virtualization_use, AllowTZVirtualization,
false);
903 case ARM::ArchKind::ARMV8MBaseline:
904 case ARM::ArchKind::ARMV8MMainline:
905 S.setAttributeItem(THUMB_ISA_use, AllowThumbDerived,
false);
906 S.setAttributeItem(CPU_arch_profile, MicroControllerProfile,
false);
909 case ARM::ArchKind::IWMMXT:
910 S.setAttributeItem(ARM_ISA_use, Allowed,
false);
911 S.setAttributeItem(THUMB_ISA_use, Allowed,
false);
912 S.setAttributeItem(WMMX_arch, AllowWMMXv1,
false);
915 case ARM::ArchKind::IWMMXT2:
916 S.setAttributeItem(ARM_ISA_use, Allowed,
false);
917 S.setAttributeItem(THUMB_ISA_use, Allowed,
false);
918 S.setAttributeItem(WMMX_arch, AllowWMMXv2,
false);
929void ARMTargetELFStreamer::emitFPUDefaultAttributes() {
930 ARMELFStreamer &S = getStreamer();
944 case ARM::FK_VFPV3_FP16:
951 case ARM::FK_VFPV3_D16:
956 case ARM::FK_VFPV3_D16_FP16:
963 case ARM::FK_VFPV3XD:
967 case ARM::FK_VFPV3XD_FP16:
981 case ARM::FK_FPV4_SP_D16:
982 case ARM::FK_VFPV4_D16:
987 case ARM::FK_FP_ARMV8:
994 case ARM::FK_FPV5_SP_D16:
995 case ARM::FK_FPV5_D16:
998 case ARM::FK_FP_ARMV8_FULLFP16_SP_D16:
999 case ARM::FK_FP_ARMV8_FULLFP16_D16:
1012 case ARM::FK_NEON_FP16:
1022 case ARM::FK_NEON_VFPV4:
1030 case ARM::FK_NEON_FP_ARMV8:
1031 case ARM::FK_CRYPTO_NEON_FP_ARMV8:
1038 case ARM::FK_SOFTVFP:
1048void ARMTargetELFStreamer::finishAttributeSection() {
1049 ARMELFStreamer &S = getStreamer();
1051 if (FPU != ARM::FK_INVALID)
1052 emitFPUDefaultAttributes();
1054 if (Arch != ARM::ArchKind::INVALID)
1055 emitArchDefaultAttributes();
1057 if (S.Contents.empty())
1078 S.emitAttributesSection(CurrentVendor,
".ARM.attributes",
1081 FPU = ARM::FK_INVALID;
1084void ARMTargetELFStreamer::emitLabel(
MCSymbol *Symbol) {
1085 ARMELFStreamer &Streamer = getStreamer();
1086 if (!Streamer.IsThumb)
1089 Streamer.getAssembler().registerSymbol(*Symbol);
1090 unsigned Type = cast<MCSymbolELF>(Symbol)->getType();
1092 Streamer.emitThumbFunc(Symbol);
1095void ARMTargetELFStreamer::annotateTLSDescriptorSequence(
1103 if (!
Sym.isDefined()) {
1104 getStreamer().emitAssignment(Symbol,
Value);
1109 getStreamer().emitThumbFunc(Symbol);
1110 getStreamer().emitAssignment(Symbol,
Value);
1113void ARMTargetELFStreamer::emitInst(
uint32_t Inst,
char Suffix) {
1114 getStreamer().emitInst(Inst, Suffix);
1117void ARMTargetELFStreamer::reset() { AttributeSection =
nullptr; }
1119void ARMTargetELFStreamer::finish() {
1120 ARMTargetStreamer::finish();
1121 finishAttributeSection();
1128 MCContext &Ctx = getStreamer().getContext();
1129 auto &
Asm = getStreamer().getAssembler();
1135 for (
auto &
F : *Text)
1136 if (
auto *
DF = dyn_cast<MCDataFragment>(&
F))
1137 if (!
DF->getContents().empty())
1143void ARMELFStreamer::reset() {
1148 LastMappingSymbols.clear();
1149 LastEMSInfo.reset();
1156inline void ARMELFStreamer::SwitchToEHSection(
StringRef Prefix,
1167 if (FnSecName !=
".text") {
1168 EHSecName += FnSecName;
1176 EHSecName,
Type, Flags, 0, Group,
true,
1180 assert(EHSection &&
"Failed to get the required EH section");
1183 switchSection(EHSection);
1184 emitValueToAlignment(
Align(4), 0, 1, 0);
1187inline void ARMELFStreamer::SwitchToExTabSection(
const MCSymbol &FnStart) {
1192inline void ARMELFStreamer::SwitchToExIdxSection(
const MCSymbol &FnStart) {
1204void ARMELFStreamer::EHReset() {
1207 Personality =
nullptr;
1217 UnwindOpAsm.Reset();
1220void ARMELFStreamer::emitFnStart() {
1221 assert(FnStart ==
nullptr);
1222 FnStart = getContext().createTempSymbol();
1226void ARMELFStreamer::emitFnEnd() {
1227 assert(FnStart &&
".fnstart must precedes .fnend");
1230 if (!ExTab && !CantUnwind)
1231 FlushUnwindOpcodes(
true);
1234 SwitchToExIdxSection(*FnStart);
1249 emitValue(FnStartRef, 4);
1259 emitValue(ExTabEntryRef, 4);
1265 "Compact model must use __aeabi_unwind_cpp_pr0 as personality");
1267 "Unwind opcode size for __aeabi_unwind_cpp_pr0 must be equal to 4");
1272 emitIntValue(Intval, Opcodes.
size());
1282void ARMELFStreamer::emitCantUnwind() { CantUnwind =
true; }
1286 const MCSymbol *PersonalitySym = getContext().getOrCreateSymbol(
Name);
1291 visitUsedExpr(*PersonalityRef);
1298void ARMELFStreamer::FlushPendingOffset() {
1299 if (PendingOffset != 0) {
1300 UnwindOpAsm.EmitSPOffset(-PendingOffset);
1305void ARMELFStreamer::FlushUnwindOpcodes(
bool NoHandlerData) {
1309 int64_t LastRegSaveSPOffset = SPOffset - PendingOffset;
1310 UnwindOpAsm.EmitSPOffset(LastRegSaveSPOffset - FPOffset);
1311 UnwindOpAsm.EmitSetSP(
MRI->getEncodingValue(
FPReg));
1313 FlushPendingOffset();
1317 UnwindOpAsm.Finalize(PersonalityIndex, Opcodes);
1326 SwitchToExTabSection(*FnStart);
1330 ExTab = getContext().createTempSymbol();
1340 emitValue(PersonalityRef, 4);
1345 "Unwind opcode size for __aeabi_cpp_unwind_pr0 must be multiple of 4");
1346 for (
unsigned I = 0;
I != Opcodes.
size();
I += 4) {
1348 Opcodes[
I + 1] << 8 |
1349 Opcodes[
I + 2] << 16 |
1350 Opcodes[
I + 3] << 24;
1361 if (NoHandlerData && !Personality)
1365void ARMELFStreamer::emitHandlerData() { FlushUnwindOpcodes(
false); }
1367void ARMELFStreamer::emitPersonality(
const MCSymbol *Per) {
1369 UnwindOpAsm.setPersonality(Per);
1372void ARMELFStreamer::emitPersonalityIndex(
unsigned Index) {
1374 PersonalityIndex =
Index;
1379 assert((NewSPReg == ARM::SP || NewSPReg ==
FPReg) &&
1380 "the operand of .setfp directive should be either $sp or $fp");
1385 if (NewSPReg == ARM::SP)
1386 FPOffset = SPOffset +
Offset;
1392 assert((Reg != ARM::SP && Reg != ARM::PC) &&
1393 "the operand of .movsp cannot be either sp or pc");
1394 assert(
FPReg == ARM::SP &&
"current FP must be SP");
1396 FlushPendingOffset();
1399 FPOffset = SPOffset +
Offset;
1402 UnwindOpAsm.EmitSetSP(
MRI->getEncodingValue(
FPReg));
1405void ARMELFStreamer::emitPad(int64_t
Offset) {
1414static std::pair<unsigned, unsigned>
1422 if (Reg == ARM::RA_AUTH_CODE)
1424 unsigned RegEnc =
MRI.getEncodingValue(Reg);
1425 assert(RegEnc < (IsVector ? 32U : 16U) &&
"Register out of range");
1426 unsigned Bit = (1u << RegEnc);
1427 if ((Mask & Bit) == 0) {
1435 return {
Idx, Count};
1441 unsigned Idx, Count;
1458 SPOffset -= Count * (IsVector ? 8 : 4);
1461 FlushPendingOffset();
1463 UnwindOpAsm.EmitVFPRegSave(Mask);
1465 UnwindOpAsm.EmitRegSave(Mask);
1466 }
else if (
Idx > 0 && RegList[
Idx - 1] == ARM::RA_AUTH_CODE) {
1469 FlushPendingOffset();
1470 UnwindOpAsm.EmitRegSave(0);
1475void ARMELFStreamer::emitUnwindRaw(int64_t
Offset,
1477 FlushPendingOffset();
1478 SPOffset = SPOffset -
Offset;
1479 UnwindOpAsm.EmitRaw(Opcodes);
1487 return new ARMTargetAsmStreamer(S,
OS, *InstPrint);
1495 return new ARMTargetELFStreamer(S);
1499 std::unique_ptr<MCAsmBackend> TAB,
1500 std::unique_ptr<MCObjectWriter> OW,
1501 std::unique_ptr<MCCodeEmitter>
Emitter,
1502 bool IsThumb,
bool IsAndroid) {
1504 new ARMELFStreamer(Context, std::move(TAB), std::move(OW),
1505 std::move(
Emitter), IsThumb, IsAndroid);
unsigned const MachineRegisterInfo * MRI
static std::pair< unsigned, unsigned > collectHWRegs(const MCRegisterInfo &MRI, unsigned Idx, const SmallVectorImpl< MCRegister > &RegList, bool IsVector, uint32_t &Mask_)
static std::string GetAEABIUnwindPersonalityName(unsigned Index)
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
static constexpr Register FPReg
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 emitSetFP(MCRegister FpReg, MCRegister SpReg, int64_t Offset=0)
virtual void annotateTLSDescriptorSequence(const MCSymbolRefExpr *SRE)
virtual void finishAttributeSection()
virtual void emitMovSP(MCRegister Reg, int64_t Offset=0)
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 emitTextAttribute(unsigned Attribute, StringRef String)
virtual void emitARMWinCFIAllocStack(unsigned Size, bool Wide)
virtual void emitARMWinCFICustom(unsigned Opcode)
virtual void emitARMWinCFISaveRegMask(unsigned Mask, bool Wide)
virtual void emitRegSave(const SmallVectorImpl< MCRegister > &RegList, bool isVector)
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 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...
Wrapper class representing physical registers. Should be passed by value.
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.