diff --git a/llvm/lib/MC/MCDwarf.cpp b/llvm/lib/MC/MCDwarf.cpp index 4bdf6f037c97b2..2368326f8b09b4 100644 --- a/llvm/lib/MC/MCDwarf.cpp +++ b/llvm/lib/MC/MCDwarf.cpp @@ -1774,27 +1774,29 @@ namespace { struct CIEKey { static const CIEKey getEmptyKey() { return CIEKey(nullptr, 0, -1, false, false, static_cast(INT_MAX), - false); + false, false); } static const CIEKey getTombstoneKey() { return CIEKey(nullptr, -1, 0, false, false, static_cast(INT_MAX), - false); + false, false); } CIEKey(const MCSymbol *Personality, unsigned PersonalityEncoding, unsigned LSDAEncoding, bool IsSignalFrame, bool IsSimple, - unsigned RAReg, bool IsBKeyFrame) + unsigned RAReg, bool IsBKeyFrame, bool IsMTETaggedFrame) : Personality(Personality), PersonalityEncoding(PersonalityEncoding), LsdaEncoding(LSDAEncoding), IsSignalFrame(IsSignalFrame), - IsSimple(IsSimple), RAReg(RAReg), IsBKeyFrame(IsBKeyFrame) {} + IsSimple(IsSimple), RAReg(RAReg), IsBKeyFrame(IsBKeyFrame), + IsMTETaggedFrame(IsMTETaggedFrame) {} explicit CIEKey(const MCDwarfFrameInfo &Frame) : Personality(Frame.Personality), PersonalityEncoding(Frame.PersonalityEncoding), LsdaEncoding(Frame.LsdaEncoding), IsSignalFrame(Frame.IsSignalFrame), IsSimple(Frame.IsSimple), RAReg(Frame.RAReg), - IsBKeyFrame(Frame.IsBKeyFrame) {} + IsBKeyFrame(Frame.IsBKeyFrame), + IsMTETaggedFrame(Frame.IsMTETaggedFrame) {} StringRef PersonalityName() const { if (!Personality) @@ -1804,10 +1806,12 @@ struct CIEKey { bool operator<(const CIEKey &Other) const { return std::make_tuple(PersonalityName(), PersonalityEncoding, LsdaEncoding, - IsSignalFrame, IsSimple, RAReg, IsBKeyFrame) < + IsSignalFrame, IsSimple, RAReg, IsBKeyFrame, + IsMTETaggedFrame) < std::make_tuple(Other.PersonalityName(), Other.PersonalityEncoding, Other.LsdaEncoding, Other.IsSignalFrame, - Other.IsSimple, Other.RAReg, Other.IsBKeyFrame); + Other.IsSimple, Other.RAReg, Other.IsBKeyFrame, + Other.IsMTETaggedFrame); } const MCSymbol *Personality; @@ -1817,6 +1821,7 @@ struct CIEKey { bool IsSimple; unsigned RAReg; bool IsBKeyFrame; + bool IsMTETaggedFrame; }; } // end anonymous namespace @@ -1828,9 +1833,10 @@ template <> struct DenseMapInfo { static CIEKey getTombstoneKey() { return CIEKey::getTombstoneKey(); } static unsigned getHashValue(const CIEKey &Key) { - return static_cast(hash_combine( - Key.Personality, Key.PersonalityEncoding, Key.LsdaEncoding, - Key.IsSignalFrame, Key.IsSimple, Key.RAReg, Key.IsBKeyFrame)); + return static_cast( + hash_combine(Key.Personality, Key.PersonalityEncoding, Key.LsdaEncoding, + Key.IsSignalFrame, Key.IsSimple, Key.RAReg, + Key.IsBKeyFrame, Key.IsMTETaggedFrame)); } static bool isEqual(const CIEKey &LHS, const CIEKey &RHS) { @@ -1839,7 +1845,8 @@ template <> struct DenseMapInfo { LHS.LsdaEncoding == RHS.LsdaEncoding && LHS.IsSignalFrame == RHS.IsSignalFrame && LHS.IsSimple == RHS.IsSimple && LHS.RAReg == RHS.RAReg && - LHS.IsBKeyFrame == RHS.IsBKeyFrame; + LHS.IsBKeyFrame == RHS.IsBKeyFrame && + LHS.IsMTETaggedFrame == RHS.IsMTETaggedFrame; } }; diff --git a/llvm/test/MC/ELF/AArch64/cfi.s b/llvm/test/MC/ELF/AArch64/cfi.s index b70477da7cbf30..033c8d9c040942 100644 --- a/llvm/test/MC/ELF/AArch64/cfi.s +++ b/llvm/test/MC/ELF/AArch64/cfi.s @@ -24,6 +24,7 @@ f2: f3: .cfi_startproc .cfi_lsda 0x3, bar + .cfi_mte_tagged_frame nop .cfi_endproc @@ -244,7 +245,7 @@ f37: // CHECK-NEXT: 0000: 10000000 00000000 017A5200 017C1E01 |.........zR..|..| // CHECK-NEXT: 0010: 1B000000 10000000 18000000 00000000 |................| // CHECK-NEXT: 0020: 04000000 00000000 14000000 00000000 |................| -// CHECK-NEXT: 0030: 017A4C52 00017C1E 02031B0C 1F000000 |.zLR..|.........| +// CHECK-NEXT: 0030: 017A4C52 4700017C 1E02031B 0C1F0000 |.zLRG..|........| // CHECK-NEXT: 0040: 14000000 1C000000 00000000 04000000 |................| // CHECK-NEXT: 0050: 04000000 00000000 14000000 00000000 |................| // CHECK-NEXT: 0060: 017A4C52 4200017C 1E02031B 0C1F0000 |.zLRB..|........|