diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-02-26 00:43:54 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-02-26 00:43:54 +0000 |
commit | bb4283ec1349087566e53f57ca09f9ed3bd5a7fd (patch) | |
tree | 1dbfbc3ef59d3e2d7bff2eeb3547afc10074b8fc /lib/CodeGen/AsmPrinter/DwarfException.cpp | |
parent | fdb2be8b09f06c1124c990b959ee2dcc1008fab4 (diff) |
Add another (and hopefully the last) exception case, where once we recalculate
the alignment requirement, if it no longer makes the TType base offset overflow
into extra bytes, then we need to pad to those bytes ourselves.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97196 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfException.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfException.cpp | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp index c3cbd62365..99d235cf31 100644 --- a/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfException.cpp @@ -762,9 +762,16 @@ void DwarfException::EmitExceptionTable() { SizeAlign -= TTypeBaseOverflow; } - if (!TTypeBaseOverflow || SizeAlign != 0) - EmitULEB128(Offset, "@TType base offset"); - else + if (!TTypeBaseOverflow) { + EmitULEB128(TTypeBaseOffset + SizeAlign, "@TType base offset"); + } else if (SizeAlign != 0) { + // If the new "offset + alignment" size doesn't require extra the same + // extra padding that the original one did, then we need to insert that + // padding ourselves. + EmitULEB128(TTypeBaseOffset + SizeAlign, "@TType base offset", + MCAsmInfo::getULEB128Size(TTypeBaseOffset + SizeAlign) != + OffsetSize ? TTypeBaseOverflow : 0); + } else { // If adding the extra padding to this offset causes it to buffer to the // size of the padding needed, then we should perform the padding here and // not at the call site table below. E.g. if we have this: @@ -790,6 +797,7 @@ void DwarfException::EmitExceptionTable() { // // and not with padding on the "Call site table length" entry. EmitULEB128(TTypeBaseOffset, "@TType base offset", TTypeBaseOverflow); + } } // SjLj Exception handling |