Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 1 | //===-- CodeGen/AsmPrinter/DwarfException.cpp - Dwarf Exception Impl ------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Bill Wendling | 28275fd | 2009-09-10 06:50:01 +0000 | [diff] [blame] | 10 | // This file contains support for writing DWARF exception info into asm files. |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "DwarfException.h" |
| 15 | #include "llvm/Module.h" |
| 16 | #include "llvm/CodeGen/MachineModuleInfo.h" |
| 17 | #include "llvm/CodeGen/MachineFrameInfo.h" |
David Greene | fc4da0c | 2009-08-19 21:55:33 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineFunction.h" |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/MachineLocation.h" |
Chris Lattner | 8c6ed05 | 2009-09-16 01:46:41 +0000 | [diff] [blame] | 20 | #include "llvm/MC/MCAsmInfo.h" |
| 21 | #include "llvm/MC/MCContext.h" |
| 22 | #include "llvm/MC/MCExpr.h" |
Bill Wendling | 43e484f | 2009-09-10 01:12:47 +0000 | [diff] [blame] | 23 | #include "llvm/MC/MCSection.h" |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 24 | #include "llvm/MC/MCStreamer.h" |
Chris Lattner | 7a2ba94 | 2010-01-16 18:37:32 +0000 | [diff] [blame] | 25 | #include "llvm/MC/MCSymbol.h" |
Chris Lattner | 45111d1 | 2010-01-16 21:57:06 +0000 | [diff] [blame] | 26 | #include "llvm/Target/Mangler.h" |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 27 | #include "llvm/Target/TargetData.h" |
| 28 | #include "llvm/Target/TargetFrameInfo.h" |
Chris Lattner | d5bbb07 | 2009-08-02 01:34:32 +0000 | [diff] [blame] | 29 | #include "llvm/Target/TargetLoweringObjectFile.h" |
Chris Lattner | 9d1c1ad | 2010-04-04 18:06:11 +0000 | [diff] [blame] | 30 | #include "llvm/Target/TargetMachine.h" |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 31 | #include "llvm/Target/TargetOptions.h" |
Chris Lattner | d5bbb07 | 2009-08-02 01:34:32 +0000 | [diff] [blame] | 32 | #include "llvm/Target/TargetRegisterInfo.h" |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Dwarf.h" |
Chris Lattner | 0ad9c91 | 2010-01-22 22:09:00 +0000 | [diff] [blame] | 34 | #include "llvm/Support/FormattedStream.h" |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 35 | #include "llvm/Support/Timer.h" |
Jim Grosbach | c40d9f9 | 2009-09-01 18:49:12 +0000 | [diff] [blame] | 36 | #include "llvm/ADT/SmallString.h" |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 37 | #include "llvm/ADT/StringExtras.h" |
Bill Wendling | 1f8075d | 2010-02-09 22:49:16 +0000 | [diff] [blame] | 38 | #include "llvm/ADT/Twine.h" |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 39 | using namespace llvm; |
| 40 | |
Chris Lattner | 75f5072 | 2010-04-04 07:48:20 +0000 | [diff] [blame] | 41 | DwarfException::DwarfException(AsmPrinter *A) |
| 42 | : DwarfPrinter(A), shouldEmitTable(false), shouldEmitMoves(false), |
Bill Wendling | bc0d23a | 2009-05-15 01:18:50 +0000 | [diff] [blame] | 43 | shouldEmitTableModule(false), shouldEmitMovesModule(false), |
| 44 | ExceptionTimer(0) { |
Eric Christopher | dbfcdb9 | 2009-08-28 22:33:43 +0000 | [diff] [blame] | 45 | if (TimePassesIsEnabled) |
Chris Lattner | 0b86a6f | 2009-12-28 07:41:18 +0000 | [diff] [blame] | 46 | ExceptionTimer = new Timer("DWARF Exception Writer"); |
Bill Wendling | bc0d23a | 2009-05-15 01:18:50 +0000 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | DwarfException::~DwarfException() { |
| 50 | delete ExceptionTimer; |
| 51 | } |
| 52 | |
Bill Wendling | 7ccda0f | 2009-08-25 08:08:33 +0000 | [diff] [blame] | 53 | /// EmitCIE - Emit a Common Information Entry (CIE). This holds information that |
| 54 | /// is shared among many Frame Description Entries. There is at least one CIE |
| 55 | /// in every non-empty .debug_frame section. |
Chris Lattner | 8c6ed05 | 2009-09-16 01:46:41 +0000 | [diff] [blame] | 56 | void DwarfException::EmitCIE(const Function *PersonalityFn, unsigned Index) { |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 57 | // Size and sign of stack growth. |
| 58 | int stackGrowth = |
| 59 | Asm->TM.getFrameInfo()->getStackGrowthDirection() == |
| 60 | TargetFrameInfo::StackGrowsUp ? |
| 61 | TD->getPointerSize() : -TD->getPointerSize(); |
| 62 | |
Chris Lattner | 8c6ed05 | 2009-09-16 01:46:41 +0000 | [diff] [blame] | 63 | const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering(); |
Anton Korobeynikov | 9184b25 | 2010-02-15 22:35:59 +0000 | [diff] [blame] | 64 | |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 65 | // Begin eh frame section. |
Chris Lattner | 8c6ed05 | 2009-09-16 01:46:41 +0000 | [diff] [blame] | 66 | Asm->OutStreamer.SwitchSection(TLOF.getEHFrameSection()); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 67 | |
Chris Lattner | 974c0fb | 2010-03-10 02:48:06 +0000 | [diff] [blame] | 68 | MCSymbol *EHFrameSym; |
Chris Lattner | 09d53fe | 2010-03-10 07:20:42 +0000 | [diff] [blame] | 69 | if (TLOF.isFunctionEHFrameSymbolPrivate()) |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 70 | EHFrameSym = Asm->GetTempSymbol("EH_frame", Index); |
Chris Lattner | 974c0fb | 2010-03-10 02:48:06 +0000 | [diff] [blame] | 71 | else |
| 72 | EHFrameSym = Asm->OutContext.GetOrCreateSymbol(Twine("EH_frame") + |
| 73 | Twine(Index)); |
| 74 | Asm->OutStreamer.EmitLabel(EHFrameSym); |
Chris Lattner | 8c6ed05 | 2009-09-16 01:46:41 +0000 | [diff] [blame] | 75 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 76 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("section_eh_frame", Index)); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 77 | |
| 78 | // Define base labels. |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 79 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_frame_common", Index)); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 80 | |
| 81 | // Define the eh frame length. |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 82 | Asm->OutStreamer.AddComment("Length of Common Information Entry"); |
Chris Lattner | a643718 | 2010-04-04 19:58:12 +0000 | [diff] [blame] | 83 | Asm->EmitLabelDifference(Asm->GetTempSymbol("eh_frame_common_end", Index), |
| 84 | Asm->GetTempSymbol("eh_frame_common_begin", Index), |
| 85 | 4); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 86 | |
| 87 | // EH frame header. |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 88 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_frame_common_begin",Index)); |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 89 | Asm->OutStreamer.AddComment("CIE Identifier Tag"); |
Chris Lattner | bcb83e5 | 2010-01-20 07:41:15 +0000 | [diff] [blame] | 90 | Asm->OutStreamer.EmitIntValue(0, 4/*size*/, 0/*addrspace*/); |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 91 | Asm->OutStreamer.AddComment("DW_CIE_VERSION"); |
Chris Lattner | 066c9ac | 2010-01-22 22:23:57 +0000 | [diff] [blame] | 92 | Asm->OutStreamer.EmitIntValue(dwarf::DW_CIE_VERSION, 1/*size*/, 0/*addr*/); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 93 | |
| 94 | // The personality presence indicates that language specific information will |
Chris Lattner | 8c6ed05 | 2009-09-16 01:46:41 +0000 | [diff] [blame] | 95 | // show up in the eh frame. Find out how we are supposed to lower the |
| 96 | // personality function reference: |
Anton Korobeynikov | 9184b25 | 2010-02-15 22:35:59 +0000 | [diff] [blame] | 97 | |
| 98 | unsigned LSDAEncoding = TLOF.getLSDAEncoding(); |
| 99 | unsigned FDEEncoding = TLOF.getFDEEncoding(); |
| 100 | unsigned PerEncoding = TLOF.getPersonalityEncoding(); |
Bill Wendling | 52783c6 | 2009-09-09 23:56:55 +0000 | [diff] [blame] | 101 | |
Chris Lattner | 4cf202b | 2010-01-23 03:11:46 +0000 | [diff] [blame] | 102 | char Augmentation[6] = { 0 }; |
Bill Wendling | 52783c6 | 2009-09-09 23:56:55 +0000 | [diff] [blame] | 103 | unsigned AugmentationSize = 0; |
| 104 | char *APtr = Augmentation + 1; |
| 105 | |
Anton Korobeynikov | 9184b25 | 2010-02-15 22:35:59 +0000 | [diff] [blame] | 106 | if (PersonalityFn) { |
Bill Wendling | 52783c6 | 2009-09-09 23:56:55 +0000 | [diff] [blame] | 107 | // There is a personality function. |
| 108 | *APtr++ = 'P'; |
Chris Lattner | d2af785 | 2010-04-04 20:20:50 +0000 | [diff] [blame] | 109 | AugmentationSize += 1 + Asm->GetSizeOfEncodedValue(PerEncoding); |
Bill Wendling | 52783c6 | 2009-09-09 23:56:55 +0000 | [diff] [blame] | 110 | } |
| 111 | |
| 112 | if (UsesLSDA[Index]) { |
| 113 | // An LSDA pointer is in the FDE augmentation. |
| 114 | *APtr++ = 'L'; |
| 115 | ++AugmentationSize; |
| 116 | } |
| 117 | |
| 118 | if (FDEEncoding != dwarf::DW_EH_PE_absptr) { |
| 119 | // A non-default pointer encoding for the FDE. |
| 120 | *APtr++ = 'R'; |
| 121 | ++AugmentationSize; |
| 122 | } |
| 123 | |
| 124 | if (APtr != Augmentation + 1) |
| 125 | Augmentation[0] = 'z'; |
| 126 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 127 | Asm->OutStreamer.AddComment("CIE Augmentation"); |
Chris Lattner | 4cf202b | 2010-01-23 03:11:46 +0000 | [diff] [blame] | 128 | Asm->OutStreamer.EmitBytes(StringRef(Augmentation, strlen(Augmentation)+1),0); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 129 | |
| 130 | // Round out reader. |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 131 | Asm->EmitULEB128(1, "CIE Code Alignment Factor"); |
| 132 | Asm->EmitSLEB128(stackGrowth, "CIE Data Alignment Factor"); |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 133 | Asm->OutStreamer.AddComment("CIE Return Address Column"); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 134 | Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), true)); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 135 | |
Anton Korobeynikov | ac8a3d0 | 2010-02-15 22:36:41 +0000 | [diff] [blame] | 136 | if (Augmentation[0]) { |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 137 | Asm->EmitULEB128(AugmentationSize, "Augmentation Size"); |
Bill Wendling | 52783c6 | 2009-09-09 23:56:55 +0000 | [diff] [blame] | 138 | |
Anton Korobeynikov | ac8a3d0 | 2010-02-15 22:36:41 +0000 | [diff] [blame] | 139 | // If there is a personality, we need to indicate the function's location. |
| 140 | if (PersonalityFn) { |
Chris Lattner | ca6190b | 2010-04-04 20:04:21 +0000 | [diff] [blame] | 141 | Asm->EmitEncodingByte(PerEncoding, "Personality"); |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 142 | Asm->OutStreamer.AddComment("Personality"); |
Chris Lattner | d2af785 | 2010-04-04 20:20:50 +0000 | [diff] [blame] | 143 | Asm->EmitReference(PersonalityFn, PerEncoding); |
Anton Korobeynikov | ac8a3d0 | 2010-02-15 22:36:41 +0000 | [diff] [blame] | 144 | } |
Anton Korobeynikov | 9184b25 | 2010-02-15 22:35:59 +0000 | [diff] [blame] | 145 | if (UsesLSDA[Index]) |
Chris Lattner | ca6190b | 2010-04-04 20:04:21 +0000 | [diff] [blame] | 146 | Asm->EmitEncodingByte(LSDAEncoding, "LSDA"); |
Anton Korobeynikov | 9184b25 | 2010-02-15 22:35:59 +0000 | [diff] [blame] | 147 | if (FDEEncoding != dwarf::DW_EH_PE_absptr) |
Chris Lattner | ca6190b | 2010-04-04 20:04:21 +0000 | [diff] [blame] | 148 | Asm->EmitEncodingByte(FDEEncoding, "FDE"); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | // Indicate locations of general callee saved registers in frame. |
| 152 | std::vector<MachineMove> Moves; |
| 153 | RI->getInitialFrameState(Moves); |
Chris Lattner | 5e6cbe0 | 2010-03-13 08:05:25 +0000 | [diff] [blame] | 154 | EmitFrameMoves(0, Moves, true); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 155 | |
| 156 | // On Darwin the linker honors the alignment of eh_frame, which means it must |
| 157 | // be 8-byte on 64-bit targets to match what gcc does. Otherwise you get |
| 158 | // holes which confuse readers of eh_frame. |
Chris Lattner | 8c6ed05 | 2009-09-16 01:46:41 +0000 | [diff] [blame] | 159 | Asm->EmitAlignment(TD->getPointerSize() == 4 ? 2 : 3, 0, 0, false); |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 160 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_frame_common_end", Index)); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 161 | } |
| 162 | |
Bill Wendling | 7ccda0f | 2009-08-25 08:08:33 +0000 | [diff] [blame] | 163 | /// EmitFDE - Emit the Frame Description Entry (FDE) for the function. |
| 164 | void DwarfException::EmitFDE(const FunctionEHFrameInfo &EHFrameInfo) { |
Eric Christopher | dbfcdb9 | 2009-08-28 22:33:43 +0000 | [diff] [blame] | 165 | assert(!EHFrameInfo.function->hasAvailableExternallyLinkage() && |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 166 | "Should not emit 'available externally' functions at all"); |
| 167 | |
Chris Lattner | 3e0f60b | 2009-07-17 21:00:50 +0000 | [diff] [blame] | 168 | const Function *TheFunc = EHFrameInfo.function; |
Anton Korobeynikov | 9184b25 | 2010-02-15 22:35:59 +0000 | [diff] [blame] | 169 | const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering(); |
Eric Christopher | dbfcdb9 | 2009-08-28 22:33:43 +0000 | [diff] [blame] | 170 | |
Anton Korobeynikov | 9184b25 | 2010-02-15 22:35:59 +0000 | [diff] [blame] | 171 | unsigned LSDAEncoding = TLOF.getLSDAEncoding(); |
| 172 | unsigned FDEEncoding = TLOF.getFDEEncoding(); |
| 173 | |
| 174 | Asm->OutStreamer.SwitchSection(TLOF.getEHFrameSection()); |
Eric Christopher | dbfcdb9 | 2009-08-28 22:33:43 +0000 | [diff] [blame] | 175 | |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 176 | // Externally visible entry into the functions eh frame info. If the |
| 177 | // corresponding function is static, this should not be externally visible. |
Chris Lattner | 09d53fe | 2010-03-10 07:20:42 +0000 | [diff] [blame] | 178 | if (!TheFunc->hasLocalLinkage() && TLOF.isFunctionEHSymbolGlobal()) |
| 179 | Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym,MCSA_Global); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 180 | |
| 181 | // If corresponding function is weak definition, this should be too. |
Chris Lattner | 10b318b | 2010-01-17 21:43:43 +0000 | [diff] [blame] | 182 | if (TheFunc->isWeakForLinker() && MAI->getWeakDefDirective()) |
Chris Lattner | 974c0fb | 2010-03-10 02:48:06 +0000 | [diff] [blame] | 183 | Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym, |
| 184 | MCSA_WeakDefinition); |
Bill Wendling | ee161a6 | 2009-11-11 01:24:59 +0000 | [diff] [blame] | 185 | |
| 186 | // If corresponding function is hidden, this should be too. |
| 187 | if (TheFunc->hasHiddenVisibility()) |
Chris Lattner | 152a29b | 2010-01-23 06:53:23 +0000 | [diff] [blame] | 188 | if (MCSymbolAttr HiddenAttr = MAI->getHiddenVisibilityAttr()) |
| 189 | Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym, |
| 190 | HiddenAttr); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 191 | |
| 192 | // If there are no calls then you can't unwind. This may mean we can omit the |
| 193 | // EH Frame, but some environments do not handle weak absolute symbols. If |
| 194 | // UnwindTablesMandatory is set we cannot do this optimization; the unwind |
| 195 | // info is to be available for non-EH uses. |
Chris Lattner | 3e0f60b | 2009-07-17 21:00:50 +0000 | [diff] [blame] | 196 | if (!EHFrameInfo.hasCalls && !UnwindTablesMandatory && |
| 197 | (!TheFunc->isWeakForLinker() || |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 198 | !MAI->getWeakDefDirective() || |
Chris Lattner | 09d53fe | 2010-03-10 07:20:42 +0000 | [diff] [blame] | 199 | TLOF.getSupportsWeakOmittedEHFrame())) { |
Chris Lattner | 974c0fb | 2010-03-10 02:48:06 +0000 | [diff] [blame] | 200 | Asm->OutStreamer.EmitAssignment(EHFrameInfo.FunctionEHSym, |
| 201 | MCConstantExpr::Create(0, Asm->OutContext)); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 202 | // This name has no connection to the function, so it might get |
| 203 | // dead-stripped when the function is not, erroneously. Prohibit |
| 204 | // dead-stripping unconditionally. |
Chris Lattner | 3a9be0e | 2010-01-23 05:51:36 +0000 | [diff] [blame] | 205 | if (MAI->hasNoDeadStrip()) |
| 206 | Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym, |
Chris Lattner | a5ad93a | 2010-01-23 06:39:22 +0000 | [diff] [blame] | 207 | MCSA_NoDeadStrip); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 208 | } else { |
Chris Lattner | 974c0fb | 2010-03-10 02:48:06 +0000 | [diff] [blame] | 209 | Asm->OutStreamer.EmitLabel(EHFrameInfo.FunctionEHSym); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 210 | |
| 211 | // EH frame header. |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 212 | Asm->OutStreamer.AddComment("Length of Frame Information Entry"); |
Chris Lattner | a643718 | 2010-04-04 19:58:12 +0000 | [diff] [blame] | 213 | Asm->EmitLabelDifference( |
| 214 | Asm->GetTempSymbol("eh_frame_end", EHFrameInfo.Number), |
| 215 | Asm->GetTempSymbol("eh_frame_begin", EHFrameInfo.Number), 4); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 216 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 217 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_frame_begin", |
| 218 | EHFrameInfo.Number)); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 219 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 220 | Asm->OutStreamer.AddComment("FDE CIE offset"); |
Chris Lattner | f88dce1 | 2010-04-04 21:31:54 +0000 | [diff] [blame^] | 221 | Asm->EmitLabelDifference( |
| 222 | Asm->GetTempSymbol("eh_frame_begin", EHFrameInfo.Number), |
| 223 | Asm->GetTempSymbol("eh_frame_common", |
| 224 | EHFrameInfo.PersonalityIndex), 4); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 225 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 226 | MCSymbol *EHFuncBeginSym = |
| 227 | Asm->GetTempSymbol("eh_func_begin", EHFrameInfo.Number); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 228 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 229 | Asm->OutStreamer.AddComment("FDE initial location"); |
Chris Lattner | d2af785 | 2010-04-04 20:20:50 +0000 | [diff] [blame] | 230 | Asm->EmitReference(EHFuncBeginSym, FDEEncoding); |
Chris Lattner | fb65807 | 2010-03-13 07:40:56 +0000 | [diff] [blame] | 231 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 232 | Asm->OutStreamer.AddComment("FDE address range"); |
Chris Lattner | a643718 | 2010-04-04 19:58:12 +0000 | [diff] [blame] | 233 | Asm->EmitLabelDifference(Asm->GetTempSymbol("eh_func_end", |
| 234 | EHFrameInfo.Number), |
Chris Lattner | d2af785 | 2010-04-04 20:20:50 +0000 | [diff] [blame] | 235 | EHFuncBeginSym, |
| 236 | Asm->GetSizeOfEncodedValue(FDEEncoding)); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 237 | |
| 238 | // If there is a personality and landing pads then point to the language |
| 239 | // specific data area in the exception table. |
Eric Christopher | d44fff7 | 2009-08-26 21:30:49 +0000 | [diff] [blame] | 240 | if (MMI->getPersonalities()[0] != NULL) { |
Chris Lattner | d2af785 | 2010-04-04 20:20:50 +0000 | [diff] [blame] | 241 | unsigned Size = Asm->GetSizeOfEncodedValue(LSDAEncoding); |
Duncan Sands | c69d74a | 2009-08-31 16:45:16 +0000 | [diff] [blame] | 242 | |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 243 | Asm->EmitULEB128(Size, "Augmentation size"); |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 244 | Asm->OutStreamer.AddComment("Language Specific Data Area"); |
Anton Korobeynikov | 9184b25 | 2010-02-15 22:35:59 +0000 | [diff] [blame] | 245 | if (EHFrameInfo.hasLandingPads) |
Chris Lattner | d2af785 | 2010-04-04 20:20:50 +0000 | [diff] [blame] | 246 | Asm->EmitReference(Asm->GetTempSymbol("exception", EHFrameInfo.Number), |
| 247 | LSDAEncoding); |
Anton Korobeynikov | 9184b25 | 2010-02-15 22:35:59 +0000 | [diff] [blame] | 248 | else |
| 249 | Asm->OutStreamer.EmitIntValue(0, Size/*size*/, 0/*addrspace*/); |
Bill Wendling | d58e9cb | 2010-01-16 01:40:55 +0000 | [diff] [blame] | 250 | |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 251 | } else { |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 252 | Asm->EmitULEB128(0, "Augmentation size"); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | // Indicate locations of function specific callee saved registers in frame. |
Chris Lattner | 5e6cbe0 | 2010-03-13 08:05:25 +0000 | [diff] [blame] | 256 | EmitFrameMoves(EHFuncBeginSym, EHFrameInfo.Moves, true); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 257 | |
| 258 | // On Darwin the linker honors the alignment of eh_frame, which means it |
| 259 | // must be 8-byte on 64-bit targets to match what gcc does. Otherwise you |
| 260 | // get holes which confuse readers of eh_frame. |
| 261 | Asm->EmitAlignment(TD->getPointerSize() == sizeof(int32_t) ? 2 : 3, |
| 262 | 0, 0, false); |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 263 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_frame_end", |
| 264 | EHFrameInfo.Number)); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 265 | |
| 266 | // If the function is marked used, this table should be also. We cannot |
| 267 | // make the mark unconditional in this case, since retaining the table also |
| 268 | // retains the function in this case, and there is code around that depends |
| 269 | // on unused functions (calling undefined externals) being dead-stripped to |
| 270 | // link correctly. Yes, there really is. |
Chris Lattner | 401e10c | 2009-07-20 06:14:25 +0000 | [diff] [blame] | 271 | if (MMI->isUsedFunction(EHFrameInfo.function)) |
Chris Lattner | 3a9be0e | 2010-01-23 05:51:36 +0000 | [diff] [blame] | 272 | if (MAI->hasNoDeadStrip()) |
| 273 | Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym, |
Chris Lattner | a5ad93a | 2010-01-23 06:39:22 +0000 | [diff] [blame] | 274 | MCSA_NoDeadStrip); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 275 | } |
Chris Lattner | 188a87d | 2010-03-10 01:04:13 +0000 | [diff] [blame] | 276 | Asm->OutStreamer.AddBlankLine(); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 277 | } |
| 278 | |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 279 | /// SharedTypeIds - How many leading type ids two landing pads have in common. |
| 280 | unsigned DwarfException::SharedTypeIds(const LandingPadInfo *L, |
| 281 | const LandingPadInfo *R) { |
| 282 | const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds; |
| 283 | unsigned LSize = LIds.size(), RSize = RIds.size(); |
| 284 | unsigned MinSize = LSize < RSize ? LSize : RSize; |
| 285 | unsigned Count = 0; |
| 286 | |
| 287 | for (; Count != MinSize; ++Count) |
| 288 | if (LIds[Count] != RIds[Count]) |
| 289 | return Count; |
| 290 | |
| 291 | return Count; |
| 292 | } |
| 293 | |
| 294 | /// PadLT - Order landing pads lexicographically by type id. |
| 295 | bool DwarfException::PadLT(const LandingPadInfo *L, const LandingPadInfo *R) { |
| 296 | const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds; |
| 297 | unsigned LSize = LIds.size(), RSize = RIds.size(); |
| 298 | unsigned MinSize = LSize < RSize ? LSize : RSize; |
| 299 | |
| 300 | for (unsigned i = 0; i != MinSize; ++i) |
| 301 | if (LIds[i] != RIds[i]) |
| 302 | return LIds[i] < RIds[i]; |
| 303 | |
| 304 | return LSize < RSize; |
| 305 | } |
| 306 | |
Bill Wendling | d460962 | 2009-07-28 23:23:00 +0000 | [diff] [blame] | 307 | /// ComputeActionsTable - Compute the actions table and gather the first action |
| 308 | /// index for each landing pad site. |
Bill Wendling | ade025c | 2009-07-29 00:31:35 +0000 | [diff] [blame] | 309 | unsigned DwarfException:: |
| 310 | ComputeActionsTable(const SmallVectorImpl<const LandingPadInfo*> &LandingPads, |
| 311 | SmallVectorImpl<ActionEntry> &Actions, |
| 312 | SmallVectorImpl<unsigned> &FirstActions) { |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 313 | |
| 314 | // The action table follows the call-site table in the LSDA. The individual |
| 315 | // records are of two types: |
| 316 | // |
| 317 | // * Catch clause |
| 318 | // * Exception specification |
| 319 | // |
| 320 | // The two record kinds have the same format, with only small differences. |
| 321 | // They are distinguished by the "switch value" field: Catch clauses |
| 322 | // (TypeInfos) have strictly positive switch values, and exception |
| 323 | // specifications (FilterIds) have strictly negative switch values. Value 0 |
| 324 | // indicates a catch-all clause. |
| 325 | // |
Bill Wendling | 5e953dd | 2009-07-28 23:22:13 +0000 | [diff] [blame] | 326 | // Negative type IDs index into FilterIds. Positive type IDs index into |
| 327 | // TypeInfos. The value written for a positive type ID is just the type ID |
| 328 | // itself. For a negative type ID, however, the value written is the |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 329 | // (negative) byte offset of the corresponding FilterIds entry. The byte |
Bill Wendling | 5e953dd | 2009-07-28 23:22:13 +0000 | [diff] [blame] | 330 | // offset is usually equal to the type ID (because the FilterIds entries are |
| 331 | // written using a variable width encoding, which outputs one byte per entry |
| 332 | // as long as the value written is not too large) but can differ. This kind |
| 333 | // of complication does not occur for positive type IDs because type infos are |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 334 | // output using a fixed width encoding. FilterOffsets[i] holds the byte |
| 335 | // offset corresponding to FilterIds[i]. |
Bill Wendling | 409914b | 2009-07-29 21:19:44 +0000 | [diff] [blame] | 336 | |
| 337 | const std::vector<unsigned> &FilterIds = MMI->getFilterIds(); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 338 | SmallVector<int, 16> FilterOffsets; |
| 339 | FilterOffsets.reserve(FilterIds.size()); |
| 340 | int Offset = -1; |
Bill Wendling | 409914b | 2009-07-29 21:19:44 +0000 | [diff] [blame] | 341 | |
| 342 | for (std::vector<unsigned>::const_iterator |
| 343 | I = FilterIds.begin(), E = FilterIds.end(); I != E; ++I) { |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 344 | FilterOffsets.push_back(Offset); |
Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 345 | Offset -= MCAsmInfo::getULEB128Size(*I); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 346 | } |
| 347 | |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 348 | FirstActions.reserve(LandingPads.size()); |
| 349 | |
| 350 | int FirstAction = 0; |
| 351 | unsigned SizeActions = 0; |
Bill Wendling | 5e953dd | 2009-07-28 23:22:13 +0000 | [diff] [blame] | 352 | const LandingPadInfo *PrevLPI = 0; |
Bill Wendling | 409914b | 2009-07-29 21:19:44 +0000 | [diff] [blame] | 353 | |
Bill Wendling | 5cff487 | 2009-07-28 23:44:43 +0000 | [diff] [blame] | 354 | for (SmallVectorImpl<const LandingPadInfo *>::const_iterator |
Bill Wendling | 5e953dd | 2009-07-28 23:22:13 +0000 | [diff] [blame] | 355 | I = LandingPads.begin(), E = LandingPads.end(); I != E; ++I) { |
| 356 | const LandingPadInfo *LPI = *I; |
| 357 | const std::vector<int> &TypeIds = LPI->TypeIds; |
Chris Lattner | 9be4913 | 2010-04-04 20:10:41 +0000 | [diff] [blame] | 358 | unsigned NumShared = PrevLPI ? SharedTypeIds(LPI, PrevLPI) : 0; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 359 | unsigned SizeSiteActions = 0; |
| 360 | |
| 361 | if (NumShared < TypeIds.size()) { |
| 362 | unsigned SizeAction = 0; |
Bill Wendling | 0a9abcb | 2010-02-10 21:41:57 +0000 | [diff] [blame] | 363 | unsigned PrevAction = (unsigned)-1; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 364 | |
| 365 | if (NumShared) { |
Chris Lattner | 9be4913 | 2010-04-04 20:10:41 +0000 | [diff] [blame] | 366 | unsigned SizePrevIds = PrevLPI->TypeIds.size(); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 367 | assert(Actions.size()); |
Bill Wendling | 0a9abcb | 2010-02-10 21:41:57 +0000 | [diff] [blame] | 368 | PrevAction = Actions.size() - 1; |
| 369 | SizeAction = |
| 370 | MCAsmInfo::getSLEB128Size(Actions[PrevAction].NextAction) + |
| 371 | MCAsmInfo::getSLEB128Size(Actions[PrevAction].ValueForTypeID); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 372 | |
| 373 | for (unsigned j = NumShared; j != SizePrevIds; ++j) { |
Bill Wendling | 0a9abcb | 2010-02-10 21:41:57 +0000 | [diff] [blame] | 374 | assert(PrevAction != (unsigned)-1 && "PrevAction is invalid!"); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 375 | SizeAction -= |
Bill Wendling | 0a9abcb | 2010-02-10 21:41:57 +0000 | [diff] [blame] | 376 | MCAsmInfo::getSLEB128Size(Actions[PrevAction].ValueForTypeID); |
| 377 | SizeAction += -Actions[PrevAction].NextAction; |
| 378 | PrevAction = Actions[PrevAction].Previous; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 379 | } |
| 380 | } |
| 381 | |
| 382 | // Compute the actions. |
Bill Wendling | 5e953dd | 2009-07-28 23:22:13 +0000 | [diff] [blame] | 383 | for (unsigned J = NumShared, M = TypeIds.size(); J != M; ++J) { |
| 384 | int TypeID = TypeIds[J]; |
| 385 | assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!"); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 386 | int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID; |
Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 387 | unsigned SizeTypeID = MCAsmInfo::getSLEB128Size(ValueForTypeID); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 388 | |
| 389 | int NextAction = SizeAction ? -(SizeAction + SizeTypeID) : 0; |
Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 390 | SizeAction = SizeTypeID + MCAsmInfo::getSLEB128Size(NextAction); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 391 | SizeSiteActions += SizeAction; |
| 392 | |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 393 | ActionEntry Action = { ValueForTypeID, NextAction, PrevAction }; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 394 | Actions.push_back(Action); |
Bill Wendling | 0a9abcb | 2010-02-10 21:41:57 +0000 | [diff] [blame] | 395 | PrevAction = Actions.size() - 1; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | // Record the first action of the landing pad site. |
| 399 | FirstAction = SizeActions + SizeSiteActions - SizeAction + 1; |
| 400 | } // else identical - re-use previous FirstAction |
| 401 | |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 402 | // Information used when created the call-site table. The action record |
| 403 | // field of the call site record is the offset of the first associated |
| 404 | // action record, relative to the start of the actions table. This value is |
Bill Wendling | 0a9abcb | 2010-02-10 21:41:57 +0000 | [diff] [blame] | 405 | // biased by 1 (1 indicating the start of the actions table), and 0 |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 406 | // indicates that there are no actions. |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 407 | FirstActions.push_back(FirstAction); |
| 408 | |
| 409 | // Compute this sites contribution to size. |
| 410 | SizeActions += SizeSiteActions; |
Bill Wendling | 5e953dd | 2009-07-28 23:22:13 +0000 | [diff] [blame] | 411 | |
| 412 | PrevLPI = LPI; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 413 | } |
| 414 | |
Bill Wendling | 5e953dd | 2009-07-28 23:22:13 +0000 | [diff] [blame] | 415 | return SizeActions; |
| 416 | } |
| 417 | |
Bill Wendling | ed060dc | 2009-11-12 21:59:20 +0000 | [diff] [blame] | 418 | /// CallToNoUnwindFunction - Return `true' if this is a call to a function |
| 419 | /// marked `nounwind'. Return `false' otherwise. |
| 420 | bool DwarfException::CallToNoUnwindFunction(const MachineInstr *MI) { |
| 421 | assert(MI->getDesc().isCall() && "This should be a call instruction!"); |
| 422 | |
| 423 | bool MarkedNoUnwind = false; |
| 424 | bool SawFunc = false; |
| 425 | |
| 426 | for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) { |
| 427 | const MachineOperand &MO = MI->getOperand(I); |
| 428 | |
Chris Lattner | cfd3188 | 2010-03-31 06:09:04 +0000 | [diff] [blame] | 429 | if (!MO.isGlobal()) continue; |
| 430 | |
| 431 | Function *F = dyn_cast<Function>(MO.getGlobal()); |
| 432 | if (F == 0) continue; |
Bill Wendling | ecc260e | 2009-11-12 23:13:08 +0000 | [diff] [blame] | 433 | |
Chris Lattner | cfd3188 | 2010-03-31 06:09:04 +0000 | [diff] [blame] | 434 | if (SawFunc) { |
| 435 | // Be conservative. If we have more than one function operand for this |
| 436 | // call, then we can't make the assumption that it's the callee and |
| 437 | // not a parameter to the call. |
| 438 | // |
| 439 | // FIXME: Determine if there's a way to say that `F' is the callee or |
| 440 | // parameter. |
| 441 | MarkedNoUnwind = false; |
| 442 | break; |
Bill Wendling | ed060dc | 2009-11-12 21:59:20 +0000 | [diff] [blame] | 443 | } |
Chris Lattner | cfd3188 | 2010-03-31 06:09:04 +0000 | [diff] [blame] | 444 | |
| 445 | MarkedNoUnwind = F->doesNotThrow(); |
| 446 | SawFunc = true; |
Bill Wendling | ed060dc | 2009-11-12 21:59:20 +0000 | [diff] [blame] | 447 | } |
| 448 | |
| 449 | return MarkedNoUnwind; |
| 450 | } |
| 451 | |
Bill Wendling | ade025c | 2009-07-29 00:31:35 +0000 | [diff] [blame] | 452 | /// ComputeCallSiteTable - Compute the call-site table. The entry for an invoke |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 453 | /// has a try-range containing the call, a non-zero landing pad, and an |
Bill Wendling | ade025c | 2009-07-29 00:31:35 +0000 | [diff] [blame] | 454 | /// appropriate action. The entry for an ordinary call has a try-range |
| 455 | /// containing the call and zero for the landing pad and the action. Calls |
| 456 | /// marked 'nounwind' have no entry and must not be contained in the try-range |
| 457 | /// of any entry - they form gaps in the table. Entries must be ordered by |
| 458 | /// try-range address. |
| 459 | void DwarfException:: |
| 460 | ComputeCallSiteTable(SmallVectorImpl<CallSiteEntry> &CallSites, |
| 461 | const RangeMapType &PadMap, |
| 462 | const SmallVectorImpl<const LandingPadInfo *> &LandingPads, |
| 463 | const SmallVectorImpl<unsigned> &FirstActions) { |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 464 | // The end label of the previous invoke or nounwind try-range. |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 465 | MCSymbol *LastLabel = 0; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 466 | |
| 467 | // Whether there is a potentially throwing instruction (currently this means |
| 468 | // an ordinary call) between the end of the previous try-range and now. |
| 469 | bool SawPotentiallyThrowing = false; |
| 470 | |
Bill Wendling | 5cff487 | 2009-07-28 23:44:43 +0000 | [diff] [blame] | 471 | // Whether the last CallSite entry was for an invoke. |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 472 | bool PreviousIsInvoke = false; |
| 473 | |
| 474 | // Visit all instructions in order of address. |
| 475 | for (MachineFunction::const_iterator I = MF->begin(), E = MF->end(); |
| 476 | I != E; ++I) { |
| 477 | for (MachineBasicBlock::const_iterator MI = I->begin(), E = I->end(); |
| 478 | MI != E; ++MI) { |
| 479 | if (!MI->isLabel()) { |
Bill Wendling | ed060dc | 2009-11-12 21:59:20 +0000 | [diff] [blame] | 480 | if (MI->getDesc().isCall()) |
| 481 | SawPotentiallyThrowing |= !CallToNoUnwindFunction(MI); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 482 | continue; |
| 483 | } |
| 484 | |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 485 | // End of the previous try-range? |
Chris Lattner | 0397ada | 2010-03-14 08:17:53 +0000 | [diff] [blame] | 486 | MCSymbol *BeginLabel = MI->getOperand(0).getMCSymbol(); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 487 | if (BeginLabel == LastLabel) |
| 488 | SawPotentiallyThrowing = false; |
| 489 | |
| 490 | // Beginning of a new try-range? |
Jeffrey Yasskin | 81cf432 | 2009-11-10 01:02:17 +0000 | [diff] [blame] | 491 | RangeMapType::const_iterator L = PadMap.find(BeginLabel); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 492 | if (L == PadMap.end()) |
| 493 | // Nope, it was just some random label. |
| 494 | continue; |
| 495 | |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 496 | const PadRange &P = L->second; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 497 | const LandingPadInfo *LandingPad = LandingPads[P.PadIndex]; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 498 | assert(BeginLabel == LandingPad->BeginLabels[P.RangeIndex] && |
| 499 | "Inconsistent landing pad map!"); |
| 500 | |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 501 | // For Dwarf exception handling (SjLj handling doesn't use this). If some |
| 502 | // instruction between the previous try-range and this one may throw, |
| 503 | // create a call-site entry with no landing pad for the region between the |
| 504 | // try-ranges. |
Jim Grosbach | 1b747ad | 2009-08-11 00:09:57 +0000 | [diff] [blame] | 505 | if (SawPotentiallyThrowing && |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 506 | MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) { |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 507 | CallSiteEntry Site = { LastLabel, BeginLabel, 0, 0 }; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 508 | CallSites.push_back(Site); |
| 509 | PreviousIsInvoke = false; |
| 510 | } |
| 511 | |
| 512 | LastLabel = LandingPad->EndLabels[P.RangeIndex]; |
| 513 | assert(BeginLabel && LastLabel && "Invalid landing pad!"); |
| 514 | |
Chris Lattner | cfd3188 | 2010-03-31 06:09:04 +0000 | [diff] [blame] | 515 | if (!LandingPad->LandingPadLabel) { |
| 516 | // Create a gap. |
| 517 | PreviousIsInvoke = false; |
| 518 | } else { |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 519 | // This try-range is for an invoke. |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 520 | CallSiteEntry Site = { |
| 521 | BeginLabel, |
| 522 | LastLabel, |
| 523 | LandingPad->LandingPadLabel, |
| 524 | FirstActions[P.PadIndex] |
| 525 | }; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 526 | |
Jim Grosbach | 33668c0 | 2009-09-01 17:19:13 +0000 | [diff] [blame] | 527 | // Try to merge with the previous call-site. SJLJ doesn't do this |
| 528 | if (PreviousIsInvoke && |
| 529 | MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) { |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 530 | CallSiteEntry &Prev = CallSites.back(); |
| 531 | if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action) { |
| 532 | // Extend the range of the previous entry. |
| 533 | Prev.EndLabel = Site.EndLabel; |
| 534 | continue; |
| 535 | } |
| 536 | } |
| 537 | |
| 538 | // Otherwise, create a new call-site. |
Jim Grosbach | ca752c9 | 2010-01-28 01:45:32 +0000 | [diff] [blame] | 539 | if (MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) |
| 540 | CallSites.push_back(Site); |
| 541 | else { |
| 542 | // SjLj EH must maintain the call sites in the order assigned |
| 543 | // to them by the SjLjPrepare pass. |
| 544 | unsigned SiteNo = MMI->getCallSiteBeginLabel(BeginLabel); |
| 545 | if (CallSites.size() < SiteNo) |
| 546 | CallSites.resize(SiteNo); |
| 547 | CallSites[SiteNo - 1] = Site; |
| 548 | } |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 549 | PreviousIsInvoke = true; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 550 | } |
| 551 | } |
| 552 | } |
| 553 | |
| 554 | // If some instruction between the previous try-range and the end of the |
| 555 | // function may throw, create a call-site entry with no landing pad for the |
| 556 | // region following the try-range. |
Jim Grosbach | 1b747ad | 2009-08-11 00:09:57 +0000 | [diff] [blame] | 557 | if (SawPotentiallyThrowing && |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 558 | MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) { |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 559 | CallSiteEntry Site = { LastLabel, 0, 0, 0 }; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 560 | CallSites.push_back(Site); |
| 561 | } |
Bill Wendling | ade025c | 2009-07-29 00:31:35 +0000 | [diff] [blame] | 562 | } |
| 563 | |
Bill Wendling | 0dafca9 | 2009-07-29 00:50:05 +0000 | [diff] [blame] | 564 | /// EmitExceptionTable - Emit landing pads and actions. |
| 565 | /// |
| 566 | /// The general organization of the table is complex, but the basic concepts are |
| 567 | /// easy. First there is a header which describes the location and organization |
| 568 | /// of the three components that follow. |
Eric Christopher | dbfcdb9 | 2009-08-28 22:33:43 +0000 | [diff] [blame] | 569 | /// |
Bill Wendling | 0dafca9 | 2009-07-29 00:50:05 +0000 | [diff] [blame] | 570 | /// 1. The landing pad site information describes the range of code covered by |
| 571 | /// the try. In our case it's an accumulation of the ranges covered by the |
| 572 | /// invokes in the try. There is also a reference to the landing pad that |
| 573 | /// handles the exception once processed. Finally an index into the actions |
| 574 | /// table. |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 575 | /// 2. The action table, in our case, is composed of pairs of type IDs and next |
Bill Wendling | 0dafca9 | 2009-07-29 00:50:05 +0000 | [diff] [blame] | 576 | /// action offset. Starting with the action index from the landing pad |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 577 | /// site, each type ID is checked for a match to the current exception. If |
Bill Wendling | 0dafca9 | 2009-07-29 00:50:05 +0000 | [diff] [blame] | 578 | /// it matches then the exception and type id are passed on to the landing |
| 579 | /// pad. Otherwise the next action is looked up. This chain is terminated |
Bill Wendling | 28275fd | 2009-09-10 06:50:01 +0000 | [diff] [blame] | 580 | /// with a next action of zero. If no type id is found then the frame is |
Bill Wendling | 0dafca9 | 2009-07-29 00:50:05 +0000 | [diff] [blame] | 581 | /// unwound and handling continues. |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 582 | /// 3. Type ID table contains references to all the C++ typeinfo for all |
Bill Wendling | 28275fd | 2009-09-10 06:50:01 +0000 | [diff] [blame] | 583 | /// catches in the function. This tables is reverse indexed base 1. |
Bill Wendling | ade025c | 2009-07-29 00:31:35 +0000 | [diff] [blame] | 584 | void DwarfException::EmitExceptionTable() { |
| 585 | const std::vector<GlobalVariable *> &TypeInfos = MMI->getTypeInfos(); |
| 586 | const std::vector<unsigned> &FilterIds = MMI->getFilterIds(); |
| 587 | const std::vector<LandingPadInfo> &PadInfos = MMI->getLandingPads(); |
Bill Wendling | ade025c | 2009-07-29 00:31:35 +0000 | [diff] [blame] | 588 | |
| 589 | // Sort the landing pads in order of their type ids. This is used to fold |
| 590 | // duplicate actions. |
| 591 | SmallVector<const LandingPadInfo *, 64> LandingPads; |
| 592 | LandingPads.reserve(PadInfos.size()); |
| 593 | |
| 594 | for (unsigned i = 0, N = PadInfos.size(); i != N; ++i) |
| 595 | LandingPads.push_back(&PadInfos[i]); |
| 596 | |
| 597 | std::sort(LandingPads.begin(), LandingPads.end(), PadLT); |
| 598 | |
| 599 | // Compute the actions table and gather the first action index for each |
| 600 | // landing pad site. |
| 601 | SmallVector<ActionEntry, 32> Actions; |
| 602 | SmallVector<unsigned, 64> FirstActions; |
Bill Wendling | 0a9abcb | 2010-02-10 21:41:57 +0000 | [diff] [blame] | 603 | unsigned SizeActions=ComputeActionsTable(LandingPads, Actions, FirstActions); |
Bill Wendling | ade025c | 2009-07-29 00:31:35 +0000 | [diff] [blame] | 604 | |
| 605 | // Invokes and nounwind calls have entries in PadMap (due to being bracketed |
| 606 | // by try-range labels when lowered). Ordinary calls do not, so appropriate |
Bill Wendling | 28275fd | 2009-09-10 06:50:01 +0000 | [diff] [blame] | 607 | // try-ranges for them need be deduced when using DWARF exception handling. |
Bill Wendling | ade025c | 2009-07-29 00:31:35 +0000 | [diff] [blame] | 608 | RangeMapType PadMap; |
| 609 | for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) { |
| 610 | const LandingPadInfo *LandingPad = LandingPads[i]; |
| 611 | for (unsigned j = 0, E = LandingPad->BeginLabels.size(); j != E; ++j) { |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 612 | MCSymbol *BeginLabel = LandingPad->BeginLabels[j]; |
Bill Wendling | ade025c | 2009-07-29 00:31:35 +0000 | [diff] [blame] | 613 | assert(!PadMap.count(BeginLabel) && "Duplicate landing pad labels!"); |
| 614 | PadRange P = { i, j }; |
| 615 | PadMap[BeginLabel] = P; |
| 616 | } |
| 617 | } |
| 618 | |
| 619 | // Compute the call-site table. |
| 620 | SmallVector<CallSiteEntry, 64> CallSites; |
Jim Grosbach | 8b818d7 | 2009-08-17 16:41:22 +0000 | [diff] [blame] | 621 | ComputeCallSiteTable(CallSites, PadMap, LandingPads, FirstActions); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 622 | |
| 623 | // Final tallies. |
| 624 | |
| 625 | // Call sites. |
Bill Wendling | d1a5b37 | 2009-09-10 00:17:04 +0000 | [diff] [blame] | 626 | bool IsSJLJ = MAI->getExceptionHandlingType() == ExceptionHandling::SjLj; |
Bill Wendling | d1a5b37 | 2009-09-10 00:17:04 +0000 | [diff] [blame] | 627 | bool HaveTTData = IsSJLJ ? (!TypeInfos.empty() || !FilterIds.empty()) : true; |
Chris Lattner | 9be4913 | 2010-04-04 20:10:41 +0000 | [diff] [blame] | 628 | |
Bill Wendling | 3dc9b48 | 2010-02-24 23:34:35 +0000 | [diff] [blame] | 629 | unsigned CallSiteTableLength; |
Bill Wendling | d1a5b37 | 2009-09-10 00:17:04 +0000 | [diff] [blame] | 630 | if (IsSJLJ) |
Bill Wendling | 3dc9b48 | 2010-02-24 23:34:35 +0000 | [diff] [blame] | 631 | CallSiteTableLength = 0; |
Chris Lattner | 9be4913 | 2010-04-04 20:10:41 +0000 | [diff] [blame] | 632 | else { |
| 633 | unsigned SiteStartSize = 4; // dwarf::DW_EH_PE_udata4 |
| 634 | unsigned SiteLengthSize = 4; // dwarf::DW_EH_PE_udata4 |
| 635 | unsigned LandingPadSize = 4; // dwarf::DW_EH_PE_udata4 |
| 636 | CallSiteTableLength = |
| 637 | CallSites.size() * (SiteStartSize + SiteLengthSize + LandingPadSize); |
| 638 | } |
Bill Wendling | d1a5b37 | 2009-09-10 00:17:04 +0000 | [diff] [blame] | 639 | |
Jim Grosbach | 1b747ad | 2009-08-11 00:09:57 +0000 | [diff] [blame] | 640 | for (unsigned i = 0, e = CallSites.size(); i < e; ++i) { |
Bill Wendling | 3dc9b48 | 2010-02-24 23:34:35 +0000 | [diff] [blame] | 641 | CallSiteTableLength += MCAsmInfo::getULEB128Size(CallSites[i].Action); |
Bill Wendling | d1a5b37 | 2009-09-10 00:17:04 +0000 | [diff] [blame] | 642 | if (IsSJLJ) |
Bill Wendling | 3dc9b48 | 2010-02-24 23:34:35 +0000 | [diff] [blame] | 643 | CallSiteTableLength += MCAsmInfo::getULEB128Size(i); |
Jim Grosbach | 1b747ad | 2009-08-11 00:09:57 +0000 | [diff] [blame] | 644 | } |
Bill Wendling | d1a5b37 | 2009-09-10 00:17:04 +0000 | [diff] [blame] | 645 | |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 646 | // Type infos. |
Chris Lattner | d5bbb07 | 2009-08-02 01:34:32 +0000 | [diff] [blame] | 647 | const MCSection *LSDASection = Asm->getObjFileLowering().getLSDASection(); |
Anton Korobeynikov | 9184b25 | 2010-02-15 22:35:59 +0000 | [diff] [blame] | 648 | unsigned TTypeEncoding; |
Bill Wendling | a2f6449 | 2009-09-10 06:27:16 +0000 | [diff] [blame] | 649 | unsigned TypeFormatSize; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 650 | |
Bill Wendling | 43e484f | 2009-09-10 01:12:47 +0000 | [diff] [blame] | 651 | if (!HaveTTData) { |
Bill Wendling | 28275fd | 2009-09-10 06:50:01 +0000 | [diff] [blame] | 652 | // For SjLj exceptions, if there is no TypeInfo, then we just explicitly say |
| 653 | // that we're omitting that bit. |
Anton Korobeynikov | 9184b25 | 2010-02-15 22:35:59 +0000 | [diff] [blame] | 654 | TTypeEncoding = dwarf::DW_EH_PE_omit; |
Chris Lattner | 9be4913 | 2010-04-04 20:10:41 +0000 | [diff] [blame] | 655 | TypeFormatSize = TD->getPointerSize(); // dwarf::DW_EH_PE_absptr |
Chris Lattner | 81c9a06 | 2009-07-31 22:03:47 +0000 | [diff] [blame] | 656 | } else { |
Chris Lattner | ad88bc4 | 2009-08-02 03:59:56 +0000 | [diff] [blame] | 657 | // Okay, we have actual filters or typeinfos to emit. As such, we need to |
| 658 | // pick a type encoding for them. We're about to emit a list of pointers to |
| 659 | // typeinfo objects at the end of the LSDA. However, unless we're in static |
| 660 | // mode, this reference will require a relocation by the dynamic linker. |
Chris Lattner | 46b754c | 2009-07-31 22:18:14 +0000 | [diff] [blame] | 661 | // |
Chris Lattner | ad88bc4 | 2009-08-02 03:59:56 +0000 | [diff] [blame] | 662 | // Because of this, we have a couple of options: |
Bill Wendling | 28275fd | 2009-09-10 06:50:01 +0000 | [diff] [blame] | 663 | // |
Chris Lattner | ad88bc4 | 2009-08-02 03:59:56 +0000 | [diff] [blame] | 664 | // 1) If we are in -static mode, we can always use an absolute reference |
| 665 | // from the LSDA, because the static linker will resolve it. |
Bill Wendling | 28275fd | 2009-09-10 06:50:01 +0000 | [diff] [blame] | 666 | // |
Chris Lattner | ad88bc4 | 2009-08-02 03:59:56 +0000 | [diff] [blame] | 667 | // 2) Otherwise, if the LSDA section is writable, we can output the direct |
| 668 | // reference to the typeinfo and allow the dynamic linker to relocate |
| 669 | // it. Since it is in a writable section, the dynamic linker won't |
| 670 | // have a problem. |
Bill Wendling | 28275fd | 2009-09-10 06:50:01 +0000 | [diff] [blame] | 671 | // |
Chris Lattner | ad88bc4 | 2009-08-02 03:59:56 +0000 | [diff] [blame] | 672 | // 3) Finally, if we're in PIC mode and the LDSA section isn't writable, |
| 673 | // we need to use some form of indirection. For example, on Darwin, |
| 674 | // we can output a statically-relocatable reference to a dyld stub. The |
| 675 | // offset to the stub is constant, but the contents are in a section |
| 676 | // that is updated by the dynamic linker. This is easy enough, but we |
| 677 | // need to tell the personality function of the unwinder to indirect |
| 678 | // through the dyld stub. |
| 679 | // |
Bill Wendling | 43e484f | 2009-09-10 01:12:47 +0000 | [diff] [blame] | 680 | // FIXME: When (3) is actually implemented, we'll have to emit the stubs |
Chris Lattner | ad88bc4 | 2009-08-02 03:59:56 +0000 | [diff] [blame] | 681 | // somewhere. This predicate should be moved to a shared location that is |
| 682 | // in target-independent code. |
| 683 | // |
Anton Korobeynikov | 9184b25 | 2010-02-15 22:35:59 +0000 | [diff] [blame] | 684 | TTypeEncoding = Asm->getObjFileLowering().getTTypeEncoding(); |
Chris Lattner | d2af785 | 2010-04-04 20:20:50 +0000 | [diff] [blame] | 685 | TypeFormatSize = Asm->GetSizeOfEncodedValue(TTypeEncoding); |
Bill Wendling | fe22028 | 2009-09-10 02:07:37 +0000 | [diff] [blame] | 686 | } |
Bill Wendling | 43e484f | 2009-09-10 01:12:47 +0000 | [diff] [blame] | 687 | |
Bill Wendling | fe22028 | 2009-09-10 02:07:37 +0000 | [diff] [blame] | 688 | // Begin the exception table. |
| 689 | Asm->OutStreamer.SwitchSection(LSDASection); |
| 690 | Asm->EmitAlignment(2, 0, 0, false); |
Bill Wendling | 43e484f | 2009-09-10 01:12:47 +0000 | [diff] [blame] | 691 | |
Bill Wendling | 3dc9b48 | 2010-02-24 23:34:35 +0000 | [diff] [blame] | 692 | // Emit the LSDA. |
Chris Lattner | 974c0fb | 2010-03-10 02:48:06 +0000 | [diff] [blame] | 693 | MCSymbol *GCCETSym = |
| 694 | Asm->OutContext.GetOrCreateSymbol(Twine("GCC_except_table")+ |
| 695 | Twine(SubprogramCount)); |
| 696 | Asm->OutStreamer.EmitLabel(GCCETSym); |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 697 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("exception", SubprogramCount)); |
Bill Wendling | fe22028 | 2009-09-10 02:07:37 +0000 | [diff] [blame] | 698 | |
Chris Lattner | 974c0fb | 2010-03-10 02:48:06 +0000 | [diff] [blame] | 699 | if (IsSJLJ) |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 700 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("_LSDA_", |
| 701 | Asm->getFunctionNumber())); |
Bill Wendling | fe22028 | 2009-09-10 02:07:37 +0000 | [diff] [blame] | 702 | |
Bill Wendling | 3dc9b48 | 2010-02-24 23:34:35 +0000 | [diff] [blame] | 703 | // Emit the LSDA header. |
Chris Lattner | ca6190b | 2010-04-04 20:04:21 +0000 | [diff] [blame] | 704 | Asm->EmitEncodingByte(dwarf::DW_EH_PE_omit, "@LPStart"); |
| 705 | Asm->EmitEncodingByte(TTypeEncoding, "@TType"); |
Bill Wendling | fe22028 | 2009-09-10 02:07:37 +0000 | [diff] [blame] | 706 | |
Bill Wendling | 3dc9b48 | 2010-02-24 23:34:35 +0000 | [diff] [blame] | 707 | // The type infos need to be aligned. GCC does this by inserting padding just |
| 708 | // before the type infos. However, this changes the size of the exception |
| 709 | // table, so you need to take this into account when you output the exception |
| 710 | // table size. However, the size is output using a variable length encoding. |
| 711 | // So by increasing the size by inserting padding, you may increase the number |
| 712 | // of bytes used for writing the size. If it increases, say by one byte, then |
| 713 | // you now need to output one less byte of padding to get the type infos |
| 714 | // aligned. However this decreases the size of the exception table. This |
| 715 | // changes the value you have to output for the exception table size. Due to |
| 716 | // the variable length encoding, the number of bytes used for writing the |
| 717 | // length may decrease. If so, you then have to increase the amount of |
| 718 | // padding. And so on. If you look carefully at the GCC code you will see that |
| 719 | // it indeed does this in a loop, going on and on until the values stabilize. |
| 720 | // We chose another solution: don't output padding inside the table like GCC |
| 721 | // does, instead output it before the table. |
| 722 | unsigned SizeTypes = TypeInfos.size() * TypeFormatSize; |
| 723 | unsigned CallSiteTableLengthSize = |
| 724 | MCAsmInfo::getULEB128Size(CallSiteTableLength); |
| 725 | unsigned TTypeBaseOffset = |
| 726 | sizeof(int8_t) + // Call site format |
| 727 | CallSiteTableLengthSize + // Call site table length size |
| 728 | CallSiteTableLength + // Call site table length |
| 729 | SizeActions + // Actions size |
| 730 | SizeTypes; |
| 731 | unsigned TTypeBaseOffsetSize = MCAsmInfo::getULEB128Size(TTypeBaseOffset); |
| 732 | unsigned TotalSize = |
| 733 | sizeof(int8_t) + // LPStart format |
| 734 | sizeof(int8_t) + // TType format |
| 735 | (HaveTTData ? TTypeBaseOffsetSize : 0) + // TType base offset size |
| 736 | TTypeBaseOffset; // TType base offset |
| 737 | unsigned SizeAlign = (4 - TotalSize) & 3; |
| 738 | |
Bill Wendling | 86f0d33 | 2010-02-25 23:52:44 +0000 | [diff] [blame] | 739 | if (HaveTTData) { |
Bill Wendling | 6507eca | 2010-02-26 21:31:01 +0000 | [diff] [blame] | 740 | // Account for any extra padding that will be added to the call site table |
Bill Wendling | f7e90ae | 2010-02-25 21:19:47 +0000 | [diff] [blame] | 741 | // length. |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 742 | Asm->EmitULEB128(TTypeBaseOffset, "@TType base offset", SizeAlign); |
Bill Wendling | 1869ac8 | 2010-02-26 22:17:52 +0000 | [diff] [blame] | 743 | SizeAlign = 0; |
Bill Wendling | 86f0d33 | 2010-02-25 23:52:44 +0000 | [diff] [blame] | 744 | } |
Bill Wendling | b0d9c3e | 2009-07-28 22:23:45 +0000 | [diff] [blame] | 745 | |
Bill Wendling | 28275fd | 2009-09-10 06:50:01 +0000 | [diff] [blame] | 746 | // SjLj Exception handling |
Bill Wendling | d1a5b37 | 2009-09-10 00:17:04 +0000 | [diff] [blame] | 747 | if (IsSJLJ) { |
Chris Lattner | ca6190b | 2010-04-04 20:04:21 +0000 | [diff] [blame] | 748 | Asm->EmitEncodingByte(dwarf::DW_EH_PE_udata4, "Call site"); |
Bill Wendling | 1869ac8 | 2010-02-26 22:17:52 +0000 | [diff] [blame] | 749 | |
| 750 | // Add extra padding if it wasn't added to the TType base offset. |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 751 | Asm->EmitULEB128(CallSiteTableLength, "Call site table length", SizeAlign); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 752 | |
Jim Grosbach | 1b747ad | 2009-08-11 00:09:57 +0000 | [diff] [blame] | 753 | // Emit the landing pad site information. |
Jim Grosbach | 8b818d7 | 2009-08-17 16:41:22 +0000 | [diff] [blame] | 754 | unsigned idx = 0; |
| 755 | for (SmallVectorImpl<CallSiteEntry>::const_iterator |
| 756 | I = CallSites.begin(), E = CallSites.end(); I != E; ++I, ++idx) { |
| 757 | const CallSiteEntry &S = *I; |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 758 | |
| 759 | // Offset of the landing pad, counted in 16-byte bundles relative to the |
| 760 | // @LPStart address. |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 761 | Asm->EmitULEB128(idx, "Landing pad"); |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 762 | |
| 763 | // Offset of the first associated action record, relative to the start of |
| 764 | // the action table. This value is biased by 1 (1 indicates the start of |
| 765 | // the action table), and 0 indicates that there are no actions. |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 766 | Asm->EmitULEB128(S.Action, "Action"); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 767 | } |
Jim Grosbach | 1b747ad | 2009-08-11 00:09:57 +0000 | [diff] [blame] | 768 | } else { |
| 769 | // DWARF Exception handling |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 770 | assert(MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 771 | |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 772 | // The call-site table is a list of all call sites that may throw an |
| 773 | // exception (including C++ 'throw' statements) in the procedure |
| 774 | // fragment. It immediately follows the LSDA header. Each entry indicates, |
| 775 | // for a given call, the first corresponding action record and corresponding |
| 776 | // landing pad. |
| 777 | // |
| 778 | // The table begins with the number of bytes, stored as an LEB128 |
| 779 | // compressed, unsigned integer. The records immediately follow the record |
| 780 | // count. They are sorted in increasing call-site address. Each record |
| 781 | // indicates: |
| 782 | // |
| 783 | // * The position of the call-site. |
| 784 | // * The position of the landing pad. |
| 785 | // * The first action record for that call site. |
| 786 | // |
| 787 | // A missing entry in the call-site table indicates that a call is not |
Bill Wendling | 28275fd | 2009-09-10 06:50:01 +0000 | [diff] [blame] | 788 | // supposed to throw. |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 789 | |
| 790 | // Emit the landing pad call site table. |
Chris Lattner | ca6190b | 2010-04-04 20:04:21 +0000 | [diff] [blame] | 791 | Asm->EmitEncodingByte(dwarf::DW_EH_PE_udata4, "Call site"); |
Bill Wendling | 1869ac8 | 2010-02-26 22:17:52 +0000 | [diff] [blame] | 792 | |
| 793 | // Add extra padding if it wasn't added to the TType base offset. |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 794 | Asm->EmitULEB128(CallSiteTableLength, "Call site table length", SizeAlign); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 795 | |
Jim Grosbach | 1b747ad | 2009-08-11 00:09:57 +0000 | [diff] [blame] | 796 | for (SmallVectorImpl<CallSiteEntry>::const_iterator |
| 797 | I = CallSites.begin(), E = CallSites.end(); I != E; ++I) { |
| 798 | const CallSiteEntry &S = *I; |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 799 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 800 | MCSymbol *EHFuncBeginSym = |
| 801 | Asm->GetTempSymbol("eh_func_begin", SubprogramCount); |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 802 | |
| 803 | MCSymbol *BeginLabel = S.BeginLabel; |
| 804 | if (BeginLabel == 0) |
| 805 | BeginLabel = EHFuncBeginSym; |
| 806 | MCSymbol *EndLabel = S.EndLabel; |
| 807 | if (EndLabel == 0) |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 808 | EndLabel = Asm->GetTempSymbol("eh_func_end", SubprogramCount); |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 809 | |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 810 | // Offset of the call site relative to the previous call site, counted in |
| 811 | // number of 16-byte bundles. The first call site is counted relative to |
| 812 | // the start of the procedure fragment. |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 813 | Asm->OutStreamer.AddComment("Region start"); |
Chris Lattner | f88dce1 | 2010-04-04 21:31:54 +0000 | [diff] [blame^] | 814 | Asm->EmitLabelDifference(BeginLabel, EHFuncBeginSym, 4); |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 815 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 816 | Asm->OutStreamer.AddComment("Region length"); |
Chris Lattner | a643718 | 2010-04-04 19:58:12 +0000 | [diff] [blame] | 817 | Asm->EmitLabelDifference(EndLabel, BeginLabel, 4); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 818 | |
Jim Grosbach | 1b747ad | 2009-08-11 00:09:57 +0000 | [diff] [blame] | 819 | |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 820 | // Offset of the landing pad, counted in 16-byte bundles relative to the |
| 821 | // @LPStart address. |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 822 | Asm->OutStreamer.AddComment("Landing pad"); |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 823 | if (!S.PadLabel) |
Chris Lattner | bcb83e5 | 2010-01-20 07:41:15 +0000 | [diff] [blame] | 824 | Asm->OutStreamer.EmitIntValue(0, 4/*size*/, 0/*addrspace*/); |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 825 | else |
Chris Lattner | f88dce1 | 2010-04-04 21:31:54 +0000 | [diff] [blame^] | 826 | Asm->EmitLabelDifference(S.PadLabel, EHFuncBeginSym, 4); |
Jim Grosbach | 1b747ad | 2009-08-11 00:09:57 +0000 | [diff] [blame] | 827 | |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 828 | // Offset of the first associated action record, relative to the start of |
| 829 | // the action table. This value is biased by 1 (1 indicates the start of |
| 830 | // the action table), and 0 indicates that there are no actions. |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 831 | Asm->EmitULEB128(S.Action, "Action"); |
Jim Grosbach | 1b747ad | 2009-08-11 00:09:57 +0000 | [diff] [blame] | 832 | } |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 833 | } |
| 834 | |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 835 | // Emit the Action Table. |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 836 | if (Actions.size() != 0) { |
| 837 | Asm->OutStreamer.AddComment("-- Action Record Table --"); |
| 838 | Asm->OutStreamer.AddBlankLine(); |
| 839 | } |
| 840 | |
Bill Wendling | 5cff487 | 2009-07-28 23:44:43 +0000 | [diff] [blame] | 841 | for (SmallVectorImpl<ActionEntry>::const_iterator |
| 842 | I = Actions.begin(), E = Actions.end(); I != E; ++I) { |
| 843 | const ActionEntry &Action = *I; |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 844 | Asm->OutStreamer.AddComment("Action Record"); |
| 845 | Asm->OutStreamer.AddBlankLine(); |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 846 | |
| 847 | // Type Filter |
| 848 | // |
| 849 | // Used by the runtime to match the type of the thrown exception to the |
| 850 | // type of the catch clauses or the types in the exception specification. |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 851 | Asm->EmitSLEB128(Action.ValueForTypeID, " TypeInfo index"); |
Bill Wendling | a583c55 | 2009-08-20 22:02:24 +0000 | [diff] [blame] | 852 | |
| 853 | // Action Record |
| 854 | // |
| 855 | // Self-relative signed displacement in bytes of the next action record, |
| 856 | // or 0 if there is no next action record. |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 857 | Asm->EmitSLEB128(Action.NextAction, " Next action"); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 858 | } |
| 859 | |
Bill Wendling | 48dc29e | 2009-10-22 20:48:59 +0000 | [diff] [blame] | 860 | // Emit the Catch TypeInfos. |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 861 | if (!TypeInfos.empty()) { |
| 862 | Asm->OutStreamer.AddComment("-- Catch TypeInfos --"); |
| 863 | Asm->OutStreamer.AddBlankLine(); |
| 864 | } |
Bill Wendling | ec04458 | 2009-11-18 23:18:46 +0000 | [diff] [blame] | 865 | for (std::vector<GlobalVariable *>::const_reverse_iterator |
Bill Wendling | 01c6937 | 2009-11-19 00:09:14 +0000 | [diff] [blame] | 866 | I = TypeInfos.rbegin(), E = TypeInfos.rend(); I != E; ++I) { |
Bill Wendling | fb7634f | 2009-11-19 19:21:09 +0000 | [diff] [blame] | 867 | const GlobalVariable *GV = *I; |
Bill Wendling | ec04458 | 2009-11-18 23:18:46 +0000 | [diff] [blame] | 868 | |
Chris Lattner | 90e4af7 | 2010-03-10 00:09:21 +0000 | [diff] [blame] | 869 | Asm->OutStreamer.AddComment("TypeInfo"); |
| 870 | if (GV) |
Chris Lattner | d2af785 | 2010-04-04 20:20:50 +0000 | [diff] [blame] | 871 | Asm->EmitReference(GV, TTypeEncoding); |
Chris Lattner | 90e4af7 | 2010-03-10 00:09:21 +0000 | [diff] [blame] | 872 | else |
Chris Lattner | d2af785 | 2010-04-04 20:20:50 +0000 | [diff] [blame] | 873 | Asm->OutStreamer.EmitIntValue(0,Asm->GetSizeOfEncodedValue(TTypeEncoding), |
| 874 | 0); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 875 | } |
| 876 | |
Bill Wendling | 48dc29e | 2009-10-22 20:48:59 +0000 | [diff] [blame] | 877 | // Emit the Exception Specifications. |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 878 | if (!FilterIds.empty()) { |
| 879 | Asm->OutStreamer.AddComment("-- Filter IDs --"); |
| 880 | Asm->OutStreamer.AddBlankLine(); |
| 881 | } |
Bill Wendling | 5cff487 | 2009-07-28 23:44:43 +0000 | [diff] [blame] | 882 | for (std::vector<unsigned>::const_iterator |
| 883 | I = FilterIds.begin(), E = FilterIds.end(); I < E; ++I) { |
| 884 | unsigned TypeID = *I; |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 885 | Asm->EmitULEB128(TypeID, TypeID != 0 ? "Exception specification" : 0); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 886 | } |
| 887 | |
| 888 | Asm->EmitAlignment(2, 0, 0, false); |
| 889 | } |
| 890 | |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 891 | /// EndModule - Emit all exception information that should come after the |
| 892 | /// content. |
| 893 | void DwarfException::EndModule() { |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 894 | if (MAI->getExceptionHandlingType() != ExceptionHandling::Dwarf) |
Jim Grosbach | 1b747ad | 2009-08-11 00:09:57 +0000 | [diff] [blame] | 895 | return; |
Bill Wendling | b4049fe | 2009-09-09 21:06:24 +0000 | [diff] [blame] | 896 | |
Bill Wendling | 52783c6 | 2009-09-09 23:56:55 +0000 | [diff] [blame] | 897 | if (!shouldEmitMovesModule && !shouldEmitTableModule) |
| 898 | return; |
| 899 | |
Chris Lattner | c3b228c | 2010-03-29 20:39:38 +0000 | [diff] [blame] | 900 | TimeRegion Timer(ExceptionTimer); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 901 | |
Bill Wendling | 52783c6 | 2009-09-09 23:56:55 +0000 | [diff] [blame] | 902 | const std::vector<Function *> Personalities = MMI->getPersonalities(); |
Bill Wendling | b4049fe | 2009-09-09 21:06:24 +0000 | [diff] [blame] | 903 | |
Bill Wendling | 28275fd | 2009-09-10 06:50:01 +0000 | [diff] [blame] | 904 | for (unsigned I = 0, E = Personalities.size(); I < E; ++I) |
| 905 | EmitCIE(Personalities[I], I); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 906 | |
Bill Wendling | 52783c6 | 2009-09-09 23:56:55 +0000 | [diff] [blame] | 907 | for (std::vector<FunctionEHFrameInfo>::iterator |
| 908 | I = EHFrames.begin(), E = EHFrames.end(); I != E; ++I) |
| 909 | EmitFDE(*I); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 910 | } |
| 911 | |
Bill Wendling | 28275fd | 2009-09-10 06:50:01 +0000 | [diff] [blame] | 912 | /// BeginFunction - Gather pre-function exception information. Assumes it's |
| 913 | /// being emitted immediately after the function entry point. |
Chris Lattner | eec791a | 2010-01-26 23:18:02 +0000 | [diff] [blame] | 914 | void DwarfException::BeginFunction(const MachineFunction *MF) { |
Bill Wendling | 73c5a61 | 2009-09-10 18:28:06 +0000 | [diff] [blame] | 915 | if (!MMI || !MAI->doesSupportExceptionHandling()) return; |
| 916 | |
Chris Lattner | c3b228c | 2010-03-29 20:39:38 +0000 | [diff] [blame] | 917 | TimeRegion Timer(ExceptionTimer); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 918 | this->MF = MF; |
| 919 | shouldEmitTable = shouldEmitMoves = false; |
| 920 | |
Bill Wendling | 73c5a61 | 2009-09-10 18:28:06 +0000 | [diff] [blame] | 921 | // If any landing pads survive, we need an EH table. |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 922 | shouldEmitTable = !MMI->getLandingPads().empty(); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 923 | |
Bill Wendling | 73c5a61 | 2009-09-10 18:28:06 +0000 | [diff] [blame] | 924 | // See if we need frame move info. |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 925 | shouldEmitMoves = !MF->getFunction()->doesNotThrow() || UnwindTablesMandatory; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 926 | |
Bill Wendling | 73c5a61 | 2009-09-10 18:28:06 +0000 | [diff] [blame] | 927 | if (shouldEmitMoves || shouldEmitTable) |
| 928 | // Assumes in correct section after the entry point. |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 929 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_func_begin", |
| 930 | ++SubprogramCount)); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 931 | |
| 932 | shouldEmitTableModule |= shouldEmitTable; |
| 933 | shouldEmitMovesModule |= shouldEmitMoves; |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 934 | } |
| 935 | |
| 936 | /// EndFunction - Gather and emit post-function exception information. |
| 937 | /// |
| 938 | void DwarfException::EndFunction() { |
Bill Wendling | 7b09a6c | 2009-09-09 21:08:12 +0000 | [diff] [blame] | 939 | if (!shouldEmitMoves && !shouldEmitTable) return; |
| 940 | |
Chris Lattner | c3b228c | 2010-03-29 20:39:38 +0000 | [diff] [blame] | 941 | TimeRegion Timer(ExceptionTimer); |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 942 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_func_end",SubprogramCount)); |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 943 | |
| 944 | // Record if this personality index uses a landing pad. |
| 945 | bool HasLandingPad = !MMI->getLandingPads().empty(); |
| 946 | UsesLSDA[MMI->getPersonalityIndex()] |= HasLandingPad; |
| 947 | |
| 948 | // Map all labels and get rid of any dead landing pads. |
| 949 | MMI->TidyLandingPads(); |
| 950 | |
| 951 | if (HasLandingPad) |
| 952 | EmitExceptionTable(); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 953 | |
Chris Lattner | 09d53fe | 2010-03-10 07:20:42 +0000 | [diff] [blame] | 954 | const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering(); |
Chris Lattner | 3a9be0e | 2010-01-23 05:51:36 +0000 | [diff] [blame] | 955 | MCSymbol *FunctionEHSym = |
Chris Lattner | 7a2ba94 | 2010-01-16 18:37:32 +0000 | [diff] [blame] | 956 | Asm->GetSymbolWithGlobalValueBase(MF->getFunction(), ".eh", |
Chris Lattner | 09d53fe | 2010-03-10 07:20:42 +0000 | [diff] [blame] | 957 | TLOF.isFunctionEHFrameSymbolPrivate()); |
Chris Lattner | 25d812b | 2009-09-16 00:35:39 +0000 | [diff] [blame] | 958 | |
Bill Wendling | 7b09a6c | 2009-09-09 21:08:12 +0000 | [diff] [blame] | 959 | // Save EH frame information |
Chris Lattner | 7a2ba94 | 2010-01-16 18:37:32 +0000 | [diff] [blame] | 960 | EHFrames.push_back(FunctionEHFrameInfo(FunctionEHSym, SubprogramCount, |
Bill Wendling | 7b09a6c | 2009-09-09 21:08:12 +0000 | [diff] [blame] | 961 | MMI->getPersonalityIndex(), |
| 962 | MF->getFrameInfo()->hasCalls(), |
| 963 | !MMI->getLandingPads().empty(), |
| 964 | MMI->getFrameMoves(), |
| 965 | MF->getFunction())); |
Bill Wendling | eb90721 | 2009-05-15 01:12:28 +0000 | [diff] [blame] | 966 | } |