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