From fc85067f30fdac5e0ba195441fcc7aaa38343f32 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Sat, 29 Jul 2017 20:03:00 +0000 Subject: [PATCH] MC: account for the return column in the CIE key If the return column is different, we cannot coalesce the CIE across the FDEs. Add that to the key calculation. This ensures that we emit a separate CIE. llvm-svn: 309492 --- llvm/lib/MC/MCDwarf.cpp | 19 +++++++++++-------- llvm/test/Assembler/return-column.s | 15 ++++++++++++++- 2 files changed, 25 insertions(+), 9 deletions(-) diff --git a/llvm/lib/MC/MCDwarf.cpp b/llvm/lib/MC/MCDwarf.cpp index a038e0aa9512..41ff9e14c82c 100644 --- a/llvm/lib/MC/MCDwarf.cpp +++ b/llvm/lib/MC/MCDwarf.cpp @@ -1465,24 +1465,26 @@ namespace { struct CIEKey { static const CIEKey getEmptyKey() { - return CIEKey(nullptr, 0, -1, false, false); + return CIEKey(nullptr, 0, -1, false, false, static_cast(INT_MAX)); } static const CIEKey getTombstoneKey() { - return CIEKey(nullptr, -1, 0, false, false); + return CIEKey(nullptr, -1, 0, false, false, static_cast(INT_MAX)); } CIEKey(const MCSymbol *Personality, unsigned PersonalityEncoding, - unsigned LsdaEncoding, bool IsSignalFrame, bool IsSimple) + unsigned LsdaEncoding, bool IsSignalFrame, bool IsSimple, + unsigned RAReg) : Personality(Personality), PersonalityEncoding(PersonalityEncoding), LsdaEncoding(LsdaEncoding), IsSignalFrame(IsSignalFrame), - IsSimple(IsSimple) {} + IsSimple(IsSimple), RAReg(RAReg) {} const MCSymbol *Personality; unsigned PersonalityEncoding; unsigned LsdaEncoding; bool IsSignalFrame; bool IsSimple; + unsigned RAReg; }; } // end anonymous namespace @@ -1496,7 +1498,7 @@ template <> struct DenseMapInfo { static unsigned getHashValue(const CIEKey &Key) { return static_cast( hash_combine(Key.Personality, Key.PersonalityEncoding, Key.LsdaEncoding, - Key.IsSignalFrame, Key.IsSimple)); + Key.IsSignalFrame, Key.IsSimple, Key.RAReg)); } static bool isEqual(const CIEKey &LHS, const CIEKey &RHS) { @@ -1504,7 +1506,8 @@ template <> struct DenseMapInfo { LHS.PersonalityEncoding == RHS.PersonalityEncoding && LHS.LsdaEncoding == RHS.LsdaEncoding && LHS.IsSignalFrame == RHS.IsSignalFrame && - LHS.IsSimple == RHS.IsSimple; + LHS.IsSimple == RHS.IsSimple && + LHS.RAReg == RHS.RAReg; } }; @@ -1561,8 +1564,8 @@ void MCDwarfFrameEmitter::Emit(MCObjectStreamer &Streamer, MCAsmBackend *MAB, // of by the compact unwind encoding. continue; - CIEKey Key(Frame.Personality, Frame.PersonalityEncoding, - Frame.LsdaEncoding, Frame.IsSignalFrame, Frame.IsSimple); + CIEKey Key(Frame.Personality, Frame.PersonalityEncoding, Frame.LsdaEncoding, + Frame.IsSignalFrame, Frame.IsSimple, Frame.RAReg); const MCSymbol *&CIEStart = IsEH ? CIEStarts[Key] : DummyDebugKey; if (!CIEStart) CIEStart = &Emitter.EmitCIE( diff --git a/llvm/test/Assembler/return-column.s b/llvm/test/Assembler/return-column.s index 53db7510aac4..a0c66bd9b2c0 100644 --- a/llvm/test/Assembler/return-column.s +++ b/llvm/test/Assembler/return-column.s @@ -4,15 +4,28 @@ .text -proc: + .section .text.f,"ax",@progbits + .global f + .type f,@function +f: .cfi_startproc .cfi_return_column 0 .cfi_endproc + .section .text.g,"ax",@progbits + .global g + .type g,@function +g: + .cfi_startproc + .cfi_return_column 65 + .cfi_endproc + +// CHECK-ASM-ROUNDTRIP-LABEL: f: // CHECK-ASM-ROUNDTRIP: .cfi_startproc // CHECK-ASM-ROUNDTRIP-NEXT: .cfi_return_column 0 // CHECK-ASM-ROUNDTRIP: .cfi_endproc // CHECK-EH_FRAME: Contents of section .eh_frame: // CHECK-EH_FRAME: 0000 14000000 00000000 017a5200 017c0001 .........zR..|.. +// CHECK-EH_FRAME: 0030 00000000 017a5200 017c4101 1b0c0404 .....zR..|A.....