blob: 58ebafa105081f745701e1ac1a008c07bbc378fd [file] [log] [blame]
Bill Wendlingeb907212009-05-15 01:12:28 +00001//===-- 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 Wendling28275fd2009-09-10 06:50:01 +000010// This file contains support for writing DWARF exception info into asm files.
Bill Wendlingeb907212009-05-15 01:12:28 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "DwarfException.h"
15#include "llvm/Module.h"
16#include "llvm/CodeGen/MachineModuleInfo.h"
17#include "llvm/CodeGen/MachineFrameInfo.h"
David Greenefc4da0c2009-08-19 21:55:33 +000018#include "llvm/CodeGen/MachineFunction.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000019#include "llvm/CodeGen/MachineLocation.h"
Chris Lattner8c6ed052009-09-16 01:46:41 +000020#include "llvm/MC/MCAsmInfo.h"
21#include "llvm/MC/MCContext.h"
22#include "llvm/MC/MCExpr.h"
Bill Wendling43e484f2009-09-10 01:12:47 +000023#include "llvm/MC/MCSection.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000024#include "llvm/MC/MCStreamer.h"
Chris Lattner7a2ba942010-01-16 18:37:32 +000025#include "llvm/MC/MCSymbol.h"
Chris Lattner45111d12010-01-16 21:57:06 +000026#include "llvm/Target/Mangler.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000027#include "llvm/Target/TargetData.h"
28#include "llvm/Target/TargetFrameInfo.h"
Chris Lattnerd5bbb072009-08-02 01:34:32 +000029#include "llvm/Target/TargetLoweringObjectFile.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000030#include "llvm/Target/TargetOptions.h"
Chris Lattnerd5bbb072009-08-02 01:34:32 +000031#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000032#include "llvm/Support/Dwarf.h"
Chris Lattner0ad9c912010-01-22 22:09:00 +000033#include "llvm/Support/FormattedStream.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000034#include "llvm/Support/Timer.h"
Jim Grosbachc40d9f92009-09-01 18:49:12 +000035#include "llvm/ADT/SmallString.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000036#include "llvm/ADT/StringExtras.h"
Bill Wendling1f8075d2010-02-09 22:49:16 +000037#include "llvm/ADT/Twine.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000038using namespace llvm;
39
Bill Wendlingbc0d23a2009-05-15 01:18:50 +000040DwarfException::DwarfException(raw_ostream &OS, AsmPrinter *A,
Chris Lattneraf76e592009-08-22 20:48:53 +000041 const MCAsmInfo *T)
Chris Lattnerc3421bb2010-03-09 00:00:15 +000042 : DwarfPrinter(OS, A, T), shouldEmitTable(false),shouldEmitMoves(false),
Bill Wendlingbc0d23a2009-05-15 01:18:50 +000043 shouldEmitTableModule(false), shouldEmitMovesModule(false),
44 ExceptionTimer(0) {
Eric Christopherdbfcdb92009-08-28 22:33:43 +000045 if (TimePassesIsEnabled)
Chris Lattner0b86a6f2009-12-28 07:41:18 +000046 ExceptionTimer = new Timer("DWARF Exception Writer");
Bill Wendlingbc0d23a2009-05-15 01:18:50 +000047}
48
49DwarfException::~DwarfException() {
50 delete ExceptionTimer;
51}
52
Bill Wendling7ccda0f2009-08-25 08:08:33 +000053/// 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 Lattner8c6ed052009-09-16 01:46:41 +000056void DwarfException::EmitCIE(const Function *PersonalityFn, unsigned Index) {
Bill Wendlingeb907212009-05-15 01:12:28 +000057 // Size and sign of stack growth.
58 int stackGrowth =
59 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
60 TargetFrameInfo::StackGrowsUp ?
61 TD->getPointerSize() : -TD->getPointerSize();
62
Chris Lattner8c6ed052009-09-16 01:46:41 +000063 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Anton Korobeynikov9184b252010-02-15 22:35:59 +000064
Bill Wendlingeb907212009-05-15 01:12:28 +000065 // Begin eh frame section.
Chris Lattner8c6ed052009-09-16 01:46:41 +000066 Asm->OutStreamer.SwitchSection(TLOF.getEHFrameSection());
Bill Wendlingeb907212009-05-15 01:12:28 +000067
Chris Lattner974c0fb2010-03-10 02:48:06 +000068 MCSymbol *EHFrameSym;
Chris Lattner09d53fe2010-03-10 07:20:42 +000069 if (TLOF.isFunctionEHFrameSymbolPrivate())
Chris Lattner974c0fb2010-03-10 02:48:06 +000070 EHFrameSym = getDWLabel("EH_frame", Index);
71 else
72 EHFrameSym = Asm->OutContext.GetOrCreateSymbol(Twine("EH_frame") +
73 Twine(Index));
74 Asm->OutStreamer.EmitLabel(EHFrameSym);
Chris Lattner8c6ed052009-09-16 01:46:41 +000075
Chris Lattnerf829eef2010-03-08 22:44:40 +000076 Asm->OutStreamer.EmitLabel(getDWLabel("section_eh_frame", Index));
Bill Wendlingeb907212009-05-15 01:12:28 +000077
78 // Define base labels.
Chris Lattnerf829eef2010-03-08 22:44:40 +000079 Asm->OutStreamer.EmitLabel(getDWLabel("eh_frame_common", Index));
Bill Wendlingeb907212009-05-15 01:12:28 +000080
81 // Define the eh frame length.
Chris Lattner233f52b2010-03-09 23:52:58 +000082 Asm->OutStreamer.AddComment("Length of Common Information Entry");
Chris Lattnereffa8682010-03-08 23:02:59 +000083 EmitDifference(getDWLabel("eh_frame_common_end", Index),
84 getDWLabel("eh_frame_common_begin", Index), true);
Bill Wendlingeb907212009-05-15 01:12:28 +000085
86 // EH frame header.
Chris Lattnerf829eef2010-03-08 22:44:40 +000087 Asm->OutStreamer.EmitLabel(getDWLabel("eh_frame_common_begin", Index));
Chris Lattner233f52b2010-03-09 23:52:58 +000088 Asm->OutStreamer.AddComment("CIE Identifier Tag");
Chris Lattnerbcb83e52010-01-20 07:41:15 +000089 Asm->OutStreamer.EmitIntValue(0, 4/*size*/, 0/*addrspace*/);
Chris Lattner233f52b2010-03-09 23:52:58 +000090 Asm->OutStreamer.AddComment("DW_CIE_VERSION");
Chris Lattner066c9ac2010-01-22 22:23:57 +000091 Asm->OutStreamer.EmitIntValue(dwarf::DW_CIE_VERSION, 1/*size*/, 0/*addr*/);
Bill Wendlingeb907212009-05-15 01:12:28 +000092
93 // The personality presence indicates that language specific information will
Chris Lattner8c6ed052009-09-16 01:46:41 +000094 // show up in the eh frame. Find out how we are supposed to lower the
95 // personality function reference:
Anton Korobeynikov9184b252010-02-15 22:35:59 +000096
97 unsigned LSDAEncoding = TLOF.getLSDAEncoding();
98 unsigned FDEEncoding = TLOF.getFDEEncoding();
99 unsigned PerEncoding = TLOF.getPersonalityEncoding();
Bill Wendling52783c62009-09-09 23:56:55 +0000100
Chris Lattner4cf202b2010-01-23 03:11:46 +0000101 char Augmentation[6] = { 0 };
Bill Wendling52783c62009-09-09 23:56:55 +0000102 unsigned AugmentationSize = 0;
103 char *APtr = Augmentation + 1;
104
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000105 if (PersonalityFn) {
Bill Wendling52783c62009-09-09 23:56:55 +0000106 // There is a personality function.
107 *APtr++ = 'P';
108 AugmentationSize += 1 + SizeOfEncodedValue(PerEncoding);
109 }
110
111 if (UsesLSDA[Index]) {
112 // An LSDA pointer is in the FDE augmentation.
113 *APtr++ = 'L';
114 ++AugmentationSize;
115 }
116
117 if (FDEEncoding != dwarf::DW_EH_PE_absptr) {
118 // A non-default pointer encoding for the FDE.
119 *APtr++ = 'R';
120 ++AugmentationSize;
121 }
122
123 if (APtr != Augmentation + 1)
124 Augmentation[0] = 'z';
125
Chris Lattner233f52b2010-03-09 23:52:58 +0000126 Asm->OutStreamer.AddComment("CIE Augmentation");
Chris Lattner4cf202b2010-01-23 03:11:46 +0000127 Asm->OutStreamer.EmitBytes(StringRef(Augmentation, strlen(Augmentation)+1),0);
Bill Wendlingeb907212009-05-15 01:12:28 +0000128
129 // Round out reader.
Chris Lattner894d75a2010-01-22 23:18:42 +0000130 EmitULEB128(1, "CIE Code Alignment Factor");
Chris Lattnerbb9078a2010-01-22 22:56:55 +0000131 EmitSLEB128(stackGrowth, "CIE Data Alignment Factor");
Chris Lattner233f52b2010-03-09 23:52:58 +0000132 Asm->OutStreamer.AddComment("CIE Return Address Column");
Bill Wendlingeb907212009-05-15 01:12:28 +0000133 Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), true));
Bill Wendlingeb907212009-05-15 01:12:28 +0000134
Anton Korobeynikovac8a3d02010-02-15 22:36:41 +0000135 if (Augmentation[0]) {
136 EmitULEB128(AugmentationSize, "Augmentation Size");
Bill Wendling52783c62009-09-09 23:56:55 +0000137
Anton Korobeynikovac8a3d02010-02-15 22:36:41 +0000138 // If there is a personality, we need to indicate the function's location.
139 if (PersonalityFn) {
140 EmitEncodingByte(PerEncoding, "Personality");
Chris Lattner233f52b2010-03-09 23:52:58 +0000141 Asm->OutStreamer.AddComment("Personality");
Anton Korobeynikovac8a3d02010-02-15 22:36:41 +0000142 EmitReference(PersonalityFn, PerEncoding);
Anton Korobeynikovac8a3d02010-02-15 22:36:41 +0000143 }
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000144 if (UsesLSDA[Index])
145 EmitEncodingByte(LSDAEncoding, "LSDA");
146 if (FDEEncoding != dwarf::DW_EH_PE_absptr)
147 EmitEncodingByte(FDEEncoding, "FDE");
Bill Wendlingeb907212009-05-15 01:12:28 +0000148 }
149
150 // Indicate locations of general callee saved registers in frame.
151 std::vector<MachineMove> Moves;
152 RI->getInitialFrameState(Moves);
153 EmitFrameMoves(NULL, 0, Moves, true);
154
155 // On Darwin the linker honors the alignment of eh_frame, which means it must
156 // be 8-byte on 64-bit targets to match what gcc does. Otherwise you get
157 // holes which confuse readers of eh_frame.
Chris Lattner8c6ed052009-09-16 01:46:41 +0000158 Asm->EmitAlignment(TD->getPointerSize() == 4 ? 2 : 3, 0, 0, false);
Chris Lattnerf829eef2010-03-08 22:44:40 +0000159 Asm->OutStreamer.EmitLabel(getDWLabel("eh_frame_common_end", Index));
Bill Wendlingeb907212009-05-15 01:12:28 +0000160}
161
Bill Wendling7ccda0f2009-08-25 08:08:33 +0000162/// EmitFDE - Emit the Frame Description Entry (FDE) for the function.
163void DwarfException::EmitFDE(const FunctionEHFrameInfo &EHFrameInfo) {
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000164 assert(!EHFrameInfo.function->hasAvailableExternallyLinkage() &&
Bill Wendlingeb907212009-05-15 01:12:28 +0000165 "Should not emit 'available externally' functions at all");
166
Chris Lattner3e0f60b2009-07-17 21:00:50 +0000167 const Function *TheFunc = EHFrameInfo.function;
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000168 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000169
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000170 unsigned LSDAEncoding = TLOF.getLSDAEncoding();
171 unsigned FDEEncoding = TLOF.getFDEEncoding();
172
173 Asm->OutStreamer.SwitchSection(TLOF.getEHFrameSection());
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000174
Bill Wendlingeb907212009-05-15 01:12:28 +0000175 // Externally visible entry into the functions eh frame info. If the
176 // corresponding function is static, this should not be externally visible.
Chris Lattner09d53fe2010-03-10 07:20:42 +0000177 if (!TheFunc->hasLocalLinkage() && TLOF.isFunctionEHSymbolGlobal())
178 Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym,MCSA_Global);
Bill Wendlingeb907212009-05-15 01:12:28 +0000179
180 // If corresponding function is weak definition, this should be too.
Chris Lattner10b318b2010-01-17 21:43:43 +0000181 if (TheFunc->isWeakForLinker() && MAI->getWeakDefDirective())
Chris Lattner974c0fb2010-03-10 02:48:06 +0000182 Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym,
183 MCSA_WeakDefinition);
Bill Wendlingee161a62009-11-11 01:24:59 +0000184
185 // If corresponding function is hidden, this should be too.
186 if (TheFunc->hasHiddenVisibility())
Chris Lattner152a29b2010-01-23 06:53:23 +0000187 if (MCSymbolAttr HiddenAttr = MAI->getHiddenVisibilityAttr())
188 Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym,
189 HiddenAttr);
Bill Wendlingeb907212009-05-15 01:12:28 +0000190
191 // If there are no calls then you can't unwind. This may mean we can omit the
192 // EH Frame, but some environments do not handle weak absolute symbols. If
193 // UnwindTablesMandatory is set we cannot do this optimization; the unwind
194 // info is to be available for non-EH uses.
Chris Lattner3e0f60b2009-07-17 21:00:50 +0000195 if (!EHFrameInfo.hasCalls && !UnwindTablesMandatory &&
196 (!TheFunc->isWeakForLinker() ||
Chris Lattner33adcfb2009-08-22 21:43:10 +0000197 !MAI->getWeakDefDirective() ||
Chris Lattner09d53fe2010-03-10 07:20:42 +0000198 TLOF.getSupportsWeakOmittedEHFrame())) {
Chris Lattner974c0fb2010-03-10 02:48:06 +0000199 Asm->OutStreamer.EmitAssignment(EHFrameInfo.FunctionEHSym,
200 MCConstantExpr::Create(0, Asm->OutContext));
Bill Wendlingeb907212009-05-15 01:12:28 +0000201 // This name has no connection to the function, so it might get
202 // dead-stripped when the function is not, erroneously. Prohibit
203 // dead-stripping unconditionally.
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000204 if (MAI->hasNoDeadStrip())
205 Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000206 MCSA_NoDeadStrip);
Bill Wendlingeb907212009-05-15 01:12:28 +0000207 } else {
Chris Lattner974c0fb2010-03-10 02:48:06 +0000208 Asm->OutStreamer.EmitLabel(EHFrameInfo.FunctionEHSym);
Bill Wendlingeb907212009-05-15 01:12:28 +0000209
210 // EH frame header.
Chris Lattner233f52b2010-03-09 23:52:58 +0000211 Asm->OutStreamer.AddComment("Length of Frame Information Entry");
Chris Lattnereffa8682010-03-08 23:02:59 +0000212 EmitDifference(getDWLabel("eh_frame_end", EHFrameInfo.Number),
213 getDWLabel("eh_frame_begin", EHFrameInfo.Number),
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000214 true);
Bill Wendlingeb907212009-05-15 01:12:28 +0000215
Chris Lattnerf829eef2010-03-08 22:44:40 +0000216 Asm->OutStreamer.EmitLabel(getDWLabel("eh_frame_begin",EHFrameInfo.Number));
Bill Wendlingeb907212009-05-15 01:12:28 +0000217
Chris Lattner233f52b2010-03-09 23:52:58 +0000218 Asm->OutStreamer.AddComment("FDE CIE offset");
Chris Lattnerb98b1bf2010-03-08 22:23:36 +0000219 EmitSectionOffset(getDWLabel("eh_frame_begin", EHFrameInfo.Number),
220 getDWLabel("eh_frame_common",
221 EHFrameInfo.PersonalityIndex),
Chris Lattner57578762010-03-08 23:23:25 +0000222 true, true);
Bill Wendlingeb907212009-05-15 01:12:28 +0000223
Chris Lattnerfb658072010-03-13 07:40:56 +0000224 MCSymbol *EHFuncBeginSym = getDWLabel("eh_func_begin", EHFrameInfo.Number);
Bill Wendlingeb907212009-05-15 01:12:28 +0000225
Chris Lattner233f52b2010-03-09 23:52:58 +0000226 Asm->OutStreamer.AddComment("FDE initial location");
Chris Lattnerfb658072010-03-13 07:40:56 +0000227 EmitReference(EHFuncBeginSym, FDEEncoding);
228
Chris Lattner233f52b2010-03-09 23:52:58 +0000229 Asm->OutStreamer.AddComment("FDE address range");
Chris Lattnerfb658072010-03-13 07:40:56 +0000230 EmitDifference(getDWLabel("eh_func_end", EHFrameInfo.Number),EHFuncBeginSym,
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000231 SizeOfEncodedValue(FDEEncoding) == 4);
Bill Wendlingeb907212009-05-15 01:12:28 +0000232
233 // If there is a personality and landing pads then point to the language
234 // specific data area in the exception table.
Eric Christopherd44fff72009-08-26 21:30:49 +0000235 if (MMI->getPersonalities()[0] != NULL) {
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000236 unsigned Size = SizeOfEncodedValue(LSDAEncoding);
Duncan Sandsc69d74a2009-08-31 16:45:16 +0000237
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000238 EmitULEB128(Size, "Augmentation size");
Chris Lattner233f52b2010-03-09 23:52:58 +0000239 Asm->OutStreamer.AddComment("Language Specific Data Area");
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000240 if (EHFrameInfo.hasLandingPads)
Chris Lattner326861c2010-03-08 22:50:36 +0000241 EmitReference(getDWLabel("exception", EHFrameInfo.Number),LSDAEncoding);
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000242 else
243 Asm->OutStreamer.EmitIntValue(0, Size/*size*/, 0/*addrspace*/);
Bill Wendlingd58e9cb2010-01-16 01:40:55 +0000244
Bill Wendlingeb907212009-05-15 01:12:28 +0000245 } else {
Chris Lattner894d75a2010-01-22 23:18:42 +0000246 EmitULEB128(0, "Augmentation size");
Bill Wendlingeb907212009-05-15 01:12:28 +0000247 }
248
249 // Indicate locations of function specific callee saved registers in frame.
Chris Lattnerfb658072010-03-13 07:40:56 +0000250 // EHFuncBeginSym
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000251 EmitFrameMoves("eh_func_begin", EHFrameInfo.Number, EHFrameInfo.Moves,
Bill Wendlingeb907212009-05-15 01:12:28 +0000252 true);
253
254 // On Darwin the linker honors the alignment of eh_frame, which means it
255 // must be 8-byte on 64-bit targets to match what gcc does. Otherwise you
256 // get holes which confuse readers of eh_frame.
257 Asm->EmitAlignment(TD->getPointerSize() == sizeof(int32_t) ? 2 : 3,
258 0, 0, false);
Chris Lattnerf829eef2010-03-08 22:44:40 +0000259 Asm->OutStreamer.EmitLabel(getDWLabel("eh_frame_end", EHFrameInfo.Number));
Bill Wendlingeb907212009-05-15 01:12:28 +0000260
261 // If the function is marked used, this table should be also. We cannot
262 // make the mark unconditional in this case, since retaining the table also
263 // retains the function in this case, and there is code around that depends
264 // on unused functions (calling undefined externals) being dead-stripped to
265 // link correctly. Yes, there really is.
Chris Lattner401e10c2009-07-20 06:14:25 +0000266 if (MMI->isUsedFunction(EHFrameInfo.function))
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000267 if (MAI->hasNoDeadStrip())
268 Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000269 MCSA_NoDeadStrip);
Bill Wendlingeb907212009-05-15 01:12:28 +0000270 }
Chris Lattner188a87d2010-03-10 01:04:13 +0000271 Asm->OutStreamer.AddBlankLine();
Bill Wendlingeb907212009-05-15 01:12:28 +0000272}
273
Bill Wendlingeb907212009-05-15 01:12:28 +0000274/// SharedTypeIds - How many leading type ids two landing pads have in common.
275unsigned DwarfException::SharedTypeIds(const LandingPadInfo *L,
276 const LandingPadInfo *R) {
277 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
278 unsigned LSize = LIds.size(), RSize = RIds.size();
279 unsigned MinSize = LSize < RSize ? LSize : RSize;
280 unsigned Count = 0;
281
282 for (; Count != MinSize; ++Count)
283 if (LIds[Count] != RIds[Count])
284 return Count;
285
286 return Count;
287}
288
289/// PadLT - Order landing pads lexicographically by type id.
290bool DwarfException::PadLT(const LandingPadInfo *L, const LandingPadInfo *R) {
291 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
292 unsigned LSize = LIds.size(), RSize = RIds.size();
293 unsigned MinSize = LSize < RSize ? LSize : RSize;
294
295 for (unsigned i = 0; i != MinSize; ++i)
296 if (LIds[i] != RIds[i])
297 return LIds[i] < RIds[i];
298
299 return LSize < RSize;
300}
301
Bill Wendlingd4609622009-07-28 23:23:00 +0000302/// ComputeActionsTable - Compute the actions table and gather the first action
303/// index for each landing pad site.
Bill Wendlingade025c2009-07-29 00:31:35 +0000304unsigned DwarfException::
305ComputeActionsTable(const SmallVectorImpl<const LandingPadInfo*> &LandingPads,
306 SmallVectorImpl<ActionEntry> &Actions,
307 SmallVectorImpl<unsigned> &FirstActions) {
Bill Wendlinga583c552009-08-20 22:02:24 +0000308
309 // The action table follows the call-site table in the LSDA. The individual
310 // records are of two types:
311 //
312 // * Catch clause
313 // * Exception specification
314 //
315 // The two record kinds have the same format, with only small differences.
316 // They are distinguished by the "switch value" field: Catch clauses
317 // (TypeInfos) have strictly positive switch values, and exception
318 // specifications (FilterIds) have strictly negative switch values. Value 0
319 // indicates a catch-all clause.
320 //
Bill Wendling5e953dd2009-07-28 23:22:13 +0000321 // Negative type IDs index into FilterIds. Positive type IDs index into
322 // TypeInfos. The value written for a positive type ID is just the type ID
323 // itself. For a negative type ID, however, the value written is the
Bill Wendlingeb907212009-05-15 01:12:28 +0000324 // (negative) byte offset of the corresponding FilterIds entry. The byte
Bill Wendling5e953dd2009-07-28 23:22:13 +0000325 // offset is usually equal to the type ID (because the FilterIds entries are
326 // written using a variable width encoding, which outputs one byte per entry
327 // as long as the value written is not too large) but can differ. This kind
328 // of complication does not occur for positive type IDs because type infos are
Bill Wendlingeb907212009-05-15 01:12:28 +0000329 // output using a fixed width encoding. FilterOffsets[i] holds the byte
330 // offset corresponding to FilterIds[i].
Bill Wendling409914b2009-07-29 21:19:44 +0000331
332 const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
Bill Wendlingeb907212009-05-15 01:12:28 +0000333 SmallVector<int, 16> FilterOffsets;
334 FilterOffsets.reserve(FilterIds.size());
335 int Offset = -1;
Bill Wendling409914b2009-07-29 21:19:44 +0000336
337 for (std::vector<unsigned>::const_iterator
338 I = FilterIds.begin(), E = FilterIds.end(); I != E; ++I) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000339 FilterOffsets.push_back(Offset);
Chris Lattneraf76e592009-08-22 20:48:53 +0000340 Offset -= MCAsmInfo::getULEB128Size(*I);
Bill Wendlingeb907212009-05-15 01:12:28 +0000341 }
342
Bill Wendlingeb907212009-05-15 01:12:28 +0000343 FirstActions.reserve(LandingPads.size());
344
345 int FirstAction = 0;
346 unsigned SizeActions = 0;
Bill Wendling5e953dd2009-07-28 23:22:13 +0000347 const LandingPadInfo *PrevLPI = 0;
Bill Wendling409914b2009-07-29 21:19:44 +0000348
Bill Wendling5cff4872009-07-28 23:44:43 +0000349 for (SmallVectorImpl<const LandingPadInfo *>::const_iterator
Bill Wendling5e953dd2009-07-28 23:22:13 +0000350 I = LandingPads.begin(), E = LandingPads.end(); I != E; ++I) {
351 const LandingPadInfo *LPI = *I;
352 const std::vector<int> &TypeIds = LPI->TypeIds;
353 const unsigned NumShared = PrevLPI ? SharedTypeIds(LPI, PrevLPI) : 0;
Bill Wendlingeb907212009-05-15 01:12:28 +0000354 unsigned SizeSiteActions = 0;
355
356 if (NumShared < TypeIds.size()) {
357 unsigned SizeAction = 0;
Bill Wendling0a9abcb2010-02-10 21:41:57 +0000358 unsigned PrevAction = (unsigned)-1;
Bill Wendlingeb907212009-05-15 01:12:28 +0000359
360 if (NumShared) {
Bill Wendling5e953dd2009-07-28 23:22:13 +0000361 const unsigned SizePrevIds = PrevLPI->TypeIds.size();
Bill Wendlingeb907212009-05-15 01:12:28 +0000362 assert(Actions.size());
Bill Wendling0a9abcb2010-02-10 21:41:57 +0000363 PrevAction = Actions.size() - 1;
364 SizeAction =
365 MCAsmInfo::getSLEB128Size(Actions[PrevAction].NextAction) +
366 MCAsmInfo::getSLEB128Size(Actions[PrevAction].ValueForTypeID);
Bill Wendlingeb907212009-05-15 01:12:28 +0000367
368 for (unsigned j = NumShared; j != SizePrevIds; ++j) {
Bill Wendling0a9abcb2010-02-10 21:41:57 +0000369 assert(PrevAction != (unsigned)-1 && "PrevAction is invalid!");
Bill Wendlingeb907212009-05-15 01:12:28 +0000370 SizeAction -=
Bill Wendling0a9abcb2010-02-10 21:41:57 +0000371 MCAsmInfo::getSLEB128Size(Actions[PrevAction].ValueForTypeID);
372 SizeAction += -Actions[PrevAction].NextAction;
373 PrevAction = Actions[PrevAction].Previous;
Bill Wendlingeb907212009-05-15 01:12:28 +0000374 }
375 }
376
377 // Compute the actions.
Bill Wendling5e953dd2009-07-28 23:22:13 +0000378 for (unsigned J = NumShared, M = TypeIds.size(); J != M; ++J) {
379 int TypeID = TypeIds[J];
380 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
Bill Wendlingeb907212009-05-15 01:12:28 +0000381 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
Chris Lattneraf76e592009-08-22 20:48:53 +0000382 unsigned SizeTypeID = MCAsmInfo::getSLEB128Size(ValueForTypeID);
Bill Wendlingeb907212009-05-15 01:12:28 +0000383
384 int NextAction = SizeAction ? -(SizeAction + SizeTypeID) : 0;
Chris Lattneraf76e592009-08-22 20:48:53 +0000385 SizeAction = SizeTypeID + MCAsmInfo::getSLEB128Size(NextAction);
Bill Wendlingeb907212009-05-15 01:12:28 +0000386 SizeSiteActions += SizeAction;
387
Bill Wendlinga583c552009-08-20 22:02:24 +0000388 ActionEntry Action = { ValueForTypeID, NextAction, PrevAction };
Bill Wendlingeb907212009-05-15 01:12:28 +0000389 Actions.push_back(Action);
Bill Wendling0a9abcb2010-02-10 21:41:57 +0000390 PrevAction = Actions.size() - 1;
Bill Wendlingeb907212009-05-15 01:12:28 +0000391 }
392
393 // Record the first action of the landing pad site.
394 FirstAction = SizeActions + SizeSiteActions - SizeAction + 1;
395 } // else identical - re-use previous FirstAction
396
Bill Wendlinga583c552009-08-20 22:02:24 +0000397 // Information used when created the call-site table. The action record
398 // field of the call site record is the offset of the first associated
399 // action record, relative to the start of the actions table. This value is
Bill Wendling0a9abcb2010-02-10 21:41:57 +0000400 // biased by 1 (1 indicating the start of the actions table), and 0
Bill Wendlinga583c552009-08-20 22:02:24 +0000401 // indicates that there are no actions.
Bill Wendlingeb907212009-05-15 01:12:28 +0000402 FirstActions.push_back(FirstAction);
403
404 // Compute this sites contribution to size.
405 SizeActions += SizeSiteActions;
Bill Wendling5e953dd2009-07-28 23:22:13 +0000406
407 PrevLPI = LPI;
Bill Wendlingeb907212009-05-15 01:12:28 +0000408 }
409
Bill Wendling5e953dd2009-07-28 23:22:13 +0000410 return SizeActions;
411}
412
Bill Wendlinged060dc2009-11-12 21:59:20 +0000413/// CallToNoUnwindFunction - Return `true' if this is a call to a function
414/// marked `nounwind'. Return `false' otherwise.
415bool DwarfException::CallToNoUnwindFunction(const MachineInstr *MI) {
416 assert(MI->getDesc().isCall() && "This should be a call instruction!");
417
418 bool MarkedNoUnwind = false;
419 bool SawFunc = false;
420
421 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
422 const MachineOperand &MO = MI->getOperand(I);
423
424 if (MO.isGlobal()) {
425 if (Function *F = dyn_cast<Function>(MO.getGlobal())) {
426 if (SawFunc) {
427 // Be conservative. If we have more than one function operand for this
428 // call, then we can't make the assumption that it's the callee and
429 // not a parameter to the call.
430 //
431 // FIXME: Determine if there's a way to say that `F' is the callee or
432 // parameter.
433 MarkedNoUnwind = false;
434 break;
435 }
Bill Wendlingecc260e2009-11-12 23:13:08 +0000436
437 MarkedNoUnwind = F->doesNotThrow();
438 SawFunc = true;
Bill Wendlinged060dc2009-11-12 21:59:20 +0000439 }
440 }
441 }
442
443 return MarkedNoUnwind;
444}
445
Bill Wendlingade025c2009-07-29 00:31:35 +0000446/// ComputeCallSiteTable - Compute the call-site table. The entry for an invoke
Bill Wendlinga583c552009-08-20 22:02:24 +0000447/// has a try-range containing the call, a non-zero landing pad, and an
Bill Wendlingade025c2009-07-29 00:31:35 +0000448/// appropriate action. The entry for an ordinary call has a try-range
449/// containing the call and zero for the landing pad and the action. Calls
450/// marked 'nounwind' have no entry and must not be contained in the try-range
451/// of any entry - they form gaps in the table. Entries must be ordered by
452/// try-range address.
453void DwarfException::
454ComputeCallSiteTable(SmallVectorImpl<CallSiteEntry> &CallSites,
455 const RangeMapType &PadMap,
456 const SmallVectorImpl<const LandingPadInfo *> &LandingPads,
457 const SmallVectorImpl<unsigned> &FirstActions) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000458 // The end label of the previous invoke or nounwind try-range.
459 unsigned LastLabel = 0;
460
461 // Whether there is a potentially throwing instruction (currently this means
462 // an ordinary call) between the end of the previous try-range and now.
463 bool SawPotentiallyThrowing = false;
464
Bill Wendling5cff4872009-07-28 23:44:43 +0000465 // Whether the last CallSite entry was for an invoke.
Bill Wendlingeb907212009-05-15 01:12:28 +0000466 bool PreviousIsInvoke = false;
467
468 // Visit all instructions in order of address.
469 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
470 I != E; ++I) {
471 for (MachineBasicBlock::const_iterator MI = I->begin(), E = I->end();
472 MI != E; ++MI) {
473 if (!MI->isLabel()) {
Bill Wendlinged060dc2009-11-12 21:59:20 +0000474 if (MI->getDesc().isCall())
475 SawPotentiallyThrowing |= !CallToNoUnwindFunction(MI);
Bill Wendling73b55512009-11-11 23:17:02 +0000476
Bill Wendlingeb907212009-05-15 01:12:28 +0000477 continue;
478 }
479
480 unsigned BeginLabel = MI->getOperand(0).getImm();
481 assert(BeginLabel && "Invalid label!");
482
483 // End of the previous try-range?
484 if (BeginLabel == LastLabel)
485 SawPotentiallyThrowing = false;
486
487 // Beginning of a new try-range?
Jeffrey Yasskin81cf4322009-11-10 01:02:17 +0000488 RangeMapType::const_iterator L = PadMap.find(BeginLabel);
Bill Wendlingeb907212009-05-15 01:12:28 +0000489 if (L == PadMap.end())
490 // Nope, it was just some random label.
491 continue;
492
Bill Wendlinga583c552009-08-20 22:02:24 +0000493 const PadRange &P = L->second;
Bill Wendlingeb907212009-05-15 01:12:28 +0000494 const LandingPadInfo *LandingPad = LandingPads[P.PadIndex];
Bill Wendlingeb907212009-05-15 01:12:28 +0000495 assert(BeginLabel == LandingPad->BeginLabels[P.RangeIndex] &&
496 "Inconsistent landing pad map!");
497
Bill Wendlinga583c552009-08-20 22:02:24 +0000498 // For Dwarf exception handling (SjLj handling doesn't use this). If some
499 // instruction between the previous try-range and this one may throw,
500 // create a call-site entry with no landing pad for the region between the
501 // try-ranges.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000502 if (SawPotentiallyThrowing &&
Chris Lattner33adcfb2009-08-22 21:43:10 +0000503 MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) {
Bill Wendlinga583c552009-08-20 22:02:24 +0000504 CallSiteEntry Site = { LastLabel, BeginLabel, 0, 0 };
Bill Wendlingeb907212009-05-15 01:12:28 +0000505 CallSites.push_back(Site);
506 PreviousIsInvoke = false;
507 }
508
509 LastLabel = LandingPad->EndLabels[P.RangeIndex];
510 assert(BeginLabel && LastLabel && "Invalid landing pad!");
511
512 if (LandingPad->LandingPadLabel) {
513 // This try-range is for an invoke.
Bill Wendlinga583c552009-08-20 22:02:24 +0000514 CallSiteEntry Site = {
515 BeginLabel,
516 LastLabel,
517 LandingPad->LandingPadLabel,
518 FirstActions[P.PadIndex]
519 };
Bill Wendlingeb907212009-05-15 01:12:28 +0000520
Jim Grosbach33668c02009-09-01 17:19:13 +0000521 // Try to merge with the previous call-site. SJLJ doesn't do this
522 if (PreviousIsInvoke &&
523 MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000524 CallSiteEntry &Prev = CallSites.back();
525 if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action) {
526 // Extend the range of the previous entry.
527 Prev.EndLabel = Site.EndLabel;
528 continue;
529 }
530 }
531
532 // Otherwise, create a new call-site.
Jim Grosbachca752c92010-01-28 01:45:32 +0000533 if (MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf)
534 CallSites.push_back(Site);
535 else {
536 // SjLj EH must maintain the call sites in the order assigned
537 // to them by the SjLjPrepare pass.
538 unsigned SiteNo = MMI->getCallSiteBeginLabel(BeginLabel);
539 if (CallSites.size() < SiteNo)
540 CallSites.resize(SiteNo);
541 CallSites[SiteNo - 1] = Site;
542 }
Bill Wendlingeb907212009-05-15 01:12:28 +0000543 PreviousIsInvoke = true;
544 } else {
545 // Create a gap.
546 PreviousIsInvoke = false;
547 }
548 }
549 }
550
551 // If some instruction between the previous try-range and the end of the
552 // function may throw, create a call-site entry with no landing pad for the
553 // region following the try-range.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000554 if (SawPotentiallyThrowing &&
Chris Lattner33adcfb2009-08-22 21:43:10 +0000555 MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) {
Bill Wendlinga583c552009-08-20 22:02:24 +0000556 CallSiteEntry Site = { LastLabel, 0, 0, 0 };
Bill Wendlingeb907212009-05-15 01:12:28 +0000557 CallSites.push_back(Site);
558 }
Bill Wendlingade025c2009-07-29 00:31:35 +0000559}
560
Bill Wendling0dafca92009-07-29 00:50:05 +0000561/// EmitExceptionTable - Emit landing pads and actions.
562///
563/// The general organization of the table is complex, but the basic concepts are
564/// easy. First there is a header which describes the location and organization
565/// of the three components that follow.
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000566///
Bill Wendling0dafca92009-07-29 00:50:05 +0000567/// 1. The landing pad site information describes the range of code covered by
568/// the try. In our case it's an accumulation of the ranges covered by the
569/// invokes in the try. There is also a reference to the landing pad that
570/// handles the exception once processed. Finally an index into the actions
571/// table.
Bill Wendlinga583c552009-08-20 22:02:24 +0000572/// 2. The action table, in our case, is composed of pairs of type IDs and next
Bill Wendling0dafca92009-07-29 00:50:05 +0000573/// action offset. Starting with the action index from the landing pad
Bill Wendlinga583c552009-08-20 22:02:24 +0000574/// site, each type ID is checked for a match to the current exception. If
Bill Wendling0dafca92009-07-29 00:50:05 +0000575/// it matches then the exception and type id are passed on to the landing
576/// pad. Otherwise the next action is looked up. This chain is terminated
Bill Wendling28275fd2009-09-10 06:50:01 +0000577/// with a next action of zero. If no type id is found then the frame is
Bill Wendling0dafca92009-07-29 00:50:05 +0000578/// unwound and handling continues.
Bill Wendlinga583c552009-08-20 22:02:24 +0000579/// 3. Type ID table contains references to all the C++ typeinfo for all
Bill Wendling28275fd2009-09-10 06:50:01 +0000580/// catches in the function. This tables is reverse indexed base 1.
Bill Wendlingade025c2009-07-29 00:31:35 +0000581void DwarfException::EmitExceptionTable() {
582 const std::vector<GlobalVariable *> &TypeInfos = MMI->getTypeInfos();
583 const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
584 const std::vector<LandingPadInfo> &PadInfos = MMI->getLandingPads();
585 if (PadInfos.empty()) return;
586
587 // Sort the landing pads in order of their type ids. This is used to fold
588 // duplicate actions.
589 SmallVector<const LandingPadInfo *, 64> LandingPads;
590 LandingPads.reserve(PadInfos.size());
591
592 for (unsigned i = 0, N = PadInfos.size(); i != N; ++i)
593 LandingPads.push_back(&PadInfos[i]);
594
595 std::sort(LandingPads.begin(), LandingPads.end(), PadLT);
596
597 // Compute the actions table and gather the first action index for each
598 // landing pad site.
599 SmallVector<ActionEntry, 32> Actions;
600 SmallVector<unsigned, 64> FirstActions;
Bill Wendling0a9abcb2010-02-10 21:41:57 +0000601 unsigned SizeActions=ComputeActionsTable(LandingPads, Actions, FirstActions);
Bill Wendlingade025c2009-07-29 00:31:35 +0000602
603 // Invokes and nounwind calls have entries in PadMap (due to being bracketed
604 // by try-range labels when lowered). Ordinary calls do not, so appropriate
Bill Wendling28275fd2009-09-10 06:50:01 +0000605 // try-ranges for them need be deduced when using DWARF exception handling.
Bill Wendlingade025c2009-07-29 00:31:35 +0000606 RangeMapType PadMap;
607 for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) {
608 const LandingPadInfo *LandingPad = LandingPads[i];
609 for (unsigned j = 0, E = LandingPad->BeginLabels.size(); j != E; ++j) {
610 unsigned BeginLabel = LandingPad->BeginLabels[j];
611 assert(!PadMap.count(BeginLabel) && "Duplicate landing pad labels!");
612 PadRange P = { i, j };
613 PadMap[BeginLabel] = P;
614 }
615 }
616
617 // Compute the call-site table.
618 SmallVector<CallSiteEntry, 64> CallSites;
Jim Grosbach8b818d72009-08-17 16:41:22 +0000619 ComputeCallSiteTable(CallSites, PadMap, LandingPads, FirstActions);
Bill Wendlingeb907212009-05-15 01:12:28 +0000620
621 // Final tallies.
622
623 // Call sites.
Bill Wendling40121bc2009-09-10 00:13:16 +0000624 const unsigned SiteStartSize = SizeOfEncodedValue(dwarf::DW_EH_PE_udata4);
625 const unsigned SiteLengthSize = SizeOfEncodedValue(dwarf::DW_EH_PE_udata4);
626 const unsigned LandingPadSize = SizeOfEncodedValue(dwarf::DW_EH_PE_udata4);
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000627 bool IsSJLJ = MAI->getExceptionHandlingType() == ExceptionHandling::SjLj;
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000628 bool HaveTTData = IsSJLJ ? (!TypeInfos.empty() || !FilterIds.empty()) : true;
Bill Wendling3dc9b482010-02-24 23:34:35 +0000629 unsigned CallSiteTableLength;
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000630
631 if (IsSJLJ)
Bill Wendling3dc9b482010-02-24 23:34:35 +0000632 CallSiteTableLength = 0;
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000633 else
Bill Wendling3dc9b482010-02-24 23:34:35 +0000634 CallSiteTableLength = CallSites.size() *
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000635 (SiteStartSize + SiteLengthSize + LandingPadSize);
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000636
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000637 for (unsigned i = 0, e = CallSites.size(); i < e; ++i) {
Bill Wendling3dc9b482010-02-24 23:34:35 +0000638 CallSiteTableLength += MCAsmInfo::getULEB128Size(CallSites[i].Action);
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000639 if (IsSJLJ)
Bill Wendling3dc9b482010-02-24 23:34:35 +0000640 CallSiteTableLength += MCAsmInfo::getULEB128Size(i);
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000641 }
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000642
Bill Wendlingeb907212009-05-15 01:12:28 +0000643 // Type infos.
Chris Lattnerd5bbb072009-08-02 01:34:32 +0000644 const MCSection *LSDASection = Asm->getObjFileLowering().getLSDASection();
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000645 unsigned TTypeEncoding;
Bill Wendlinga2f64492009-09-10 06:27:16 +0000646 unsigned TypeFormatSize;
Bill Wendlingeb907212009-05-15 01:12:28 +0000647
Bill Wendling43e484f2009-09-10 01:12:47 +0000648 if (!HaveTTData) {
Bill Wendling28275fd2009-09-10 06:50:01 +0000649 // For SjLj exceptions, if there is no TypeInfo, then we just explicitly say
650 // that we're omitting that bit.
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000651 TTypeEncoding = dwarf::DW_EH_PE_omit;
Bill Wendlinga2f64492009-09-10 06:27:16 +0000652 TypeFormatSize = SizeOfEncodedValue(dwarf::DW_EH_PE_absptr);
Chris Lattner81c9a062009-07-31 22:03:47 +0000653 } else {
Chris Lattnerad88bc42009-08-02 03:59:56 +0000654 // Okay, we have actual filters or typeinfos to emit. As such, we need to
655 // pick a type encoding for them. We're about to emit a list of pointers to
656 // typeinfo objects at the end of the LSDA. However, unless we're in static
657 // mode, this reference will require a relocation by the dynamic linker.
Chris Lattner46b754c2009-07-31 22:18:14 +0000658 //
Chris Lattnerad88bc42009-08-02 03:59:56 +0000659 // Because of this, we have a couple of options:
Bill Wendling28275fd2009-09-10 06:50:01 +0000660 //
Chris Lattnerad88bc42009-08-02 03:59:56 +0000661 // 1) If we are in -static mode, we can always use an absolute reference
662 // from the LSDA, because the static linker will resolve it.
Bill Wendling28275fd2009-09-10 06:50:01 +0000663 //
Chris Lattnerad88bc42009-08-02 03:59:56 +0000664 // 2) Otherwise, if the LSDA section is writable, we can output the direct
665 // reference to the typeinfo and allow the dynamic linker to relocate
666 // it. Since it is in a writable section, the dynamic linker won't
667 // have a problem.
Bill Wendling28275fd2009-09-10 06:50:01 +0000668 //
Chris Lattnerad88bc42009-08-02 03:59:56 +0000669 // 3) Finally, if we're in PIC mode and the LDSA section isn't writable,
670 // we need to use some form of indirection. For example, on Darwin,
671 // we can output a statically-relocatable reference to a dyld stub. The
672 // offset to the stub is constant, but the contents are in a section
673 // that is updated by the dynamic linker. This is easy enough, but we
674 // need to tell the personality function of the unwinder to indirect
675 // through the dyld stub.
676 //
Bill Wendling43e484f2009-09-10 01:12:47 +0000677 // FIXME: When (3) is actually implemented, we'll have to emit the stubs
Chris Lattnerad88bc42009-08-02 03:59:56 +0000678 // somewhere. This predicate should be moved to a shared location that is
679 // in target-independent code.
680 //
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000681 TTypeEncoding = Asm->getObjFileLowering().getTTypeEncoding();
682 TypeFormatSize = SizeOfEncodedValue(TTypeEncoding);
Bill Wendlingfe220282009-09-10 02:07:37 +0000683 }
Bill Wendling43e484f2009-09-10 01:12:47 +0000684
Bill Wendlingfe220282009-09-10 02:07:37 +0000685 // Begin the exception table.
686 Asm->OutStreamer.SwitchSection(LSDASection);
687 Asm->EmitAlignment(2, 0, 0, false);
Bill Wendling43e484f2009-09-10 01:12:47 +0000688
Bill Wendling3dc9b482010-02-24 23:34:35 +0000689 // Emit the LSDA.
Chris Lattner974c0fb2010-03-10 02:48:06 +0000690 MCSymbol *GCCETSym =
691 Asm->OutContext.GetOrCreateSymbol(Twine("GCC_except_table")+
692 Twine(SubprogramCount));
693 Asm->OutStreamer.EmitLabel(GCCETSym);
Chris Lattnerf829eef2010-03-08 22:44:40 +0000694 Asm->OutStreamer.EmitLabel(getDWLabel("exception", SubprogramCount));
Bill Wendlingfe220282009-09-10 02:07:37 +0000695
Chris Lattner974c0fb2010-03-10 02:48:06 +0000696 if (IsSJLJ)
697 Asm->OutStreamer.EmitLabel(getDWLabel("_LSDA_", Asm->getFunctionNumber()));
Bill Wendlingfe220282009-09-10 02:07:37 +0000698
Bill Wendling3dc9b482010-02-24 23:34:35 +0000699 // Emit the LSDA header.
Chris Lattnerf61ed8e2010-01-22 22:38:16 +0000700 EmitEncodingByte(dwarf::DW_EH_PE_omit, "@LPStart");
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000701 EmitEncodingByte(TTypeEncoding, "@TType");
Bill Wendlingfe220282009-09-10 02:07:37 +0000702
Bill Wendling3dc9b482010-02-24 23:34:35 +0000703 // The type infos need to be aligned. GCC does this by inserting padding just
704 // before the type infos. However, this changes the size of the exception
705 // table, so you need to take this into account when you output the exception
706 // table size. However, the size is output using a variable length encoding.
707 // So by increasing the size by inserting padding, you may increase the number
708 // of bytes used for writing the size. If it increases, say by one byte, then
709 // you now need to output one less byte of padding to get the type infos
710 // aligned. However this decreases the size of the exception table. This
711 // changes the value you have to output for the exception table size. Due to
712 // the variable length encoding, the number of bytes used for writing the
713 // length may decrease. If so, you then have to increase the amount of
714 // padding. And so on. If you look carefully at the GCC code you will see that
715 // it indeed does this in a loop, going on and on until the values stabilize.
716 // We chose another solution: don't output padding inside the table like GCC
717 // does, instead output it before the table.
718 unsigned SizeTypes = TypeInfos.size() * TypeFormatSize;
719 unsigned CallSiteTableLengthSize =
720 MCAsmInfo::getULEB128Size(CallSiteTableLength);
721 unsigned TTypeBaseOffset =
722 sizeof(int8_t) + // Call site format
723 CallSiteTableLengthSize + // Call site table length size
724 CallSiteTableLength + // Call site table length
725 SizeActions + // Actions size
726 SizeTypes;
727 unsigned TTypeBaseOffsetSize = MCAsmInfo::getULEB128Size(TTypeBaseOffset);
728 unsigned TotalSize =
729 sizeof(int8_t) + // LPStart format
730 sizeof(int8_t) + // TType format
731 (HaveTTData ? TTypeBaseOffsetSize : 0) + // TType base offset size
732 TTypeBaseOffset; // TType base offset
733 unsigned SizeAlign = (4 - TotalSize) & 3;
734
Bill Wendling86f0d332010-02-25 23:52:44 +0000735 if (HaveTTData) {
Bill Wendling6507eca2010-02-26 21:31:01 +0000736 // Account for any extra padding that will be added to the call site table
Bill Wendlingf7e90ae2010-02-25 21:19:47 +0000737 // length.
Bill Wendling1869ac82010-02-26 22:17:52 +0000738 EmitULEB128(TTypeBaseOffset, "@TType base offset", SizeAlign);
739 SizeAlign = 0;
Bill Wendling86f0d332010-02-25 23:52:44 +0000740 }
Bill Wendlingb0d9c3e2009-07-28 22:23:45 +0000741
Bill Wendling28275fd2009-09-10 06:50:01 +0000742 // SjLj Exception handling
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000743 if (IsSJLJ) {
Chris Lattnerf61ed8e2010-01-22 22:38:16 +0000744 EmitEncodingByte(dwarf::DW_EH_PE_udata4, "Call site");
Bill Wendling1869ac82010-02-26 22:17:52 +0000745
746 // Add extra padding if it wasn't added to the TType base offset.
Bill Wendling3dc9b482010-02-24 23:34:35 +0000747 EmitULEB128(CallSiteTableLength, "Call site table length", SizeAlign);
Bill Wendlingeb907212009-05-15 01:12:28 +0000748
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000749 // Emit the landing pad site information.
Jim Grosbach8b818d72009-08-17 16:41:22 +0000750 unsigned idx = 0;
751 for (SmallVectorImpl<CallSiteEntry>::const_iterator
752 I = CallSites.begin(), E = CallSites.end(); I != E; ++I, ++idx) {
753 const CallSiteEntry &S = *I;
Bill Wendlinga583c552009-08-20 22:02:24 +0000754
755 // Offset of the landing pad, counted in 16-byte bundles relative to the
756 // @LPStart address.
Chris Lattner894d75a2010-01-22 23:18:42 +0000757 EmitULEB128(idx, "Landing pad");
Bill Wendlinga583c552009-08-20 22:02:24 +0000758
759 // Offset of the first associated action record, relative to the start of
760 // the action table. This value is biased by 1 (1 indicates the start of
761 // the action table), and 0 indicates that there are no actions.
Chris Lattner894d75a2010-01-22 23:18:42 +0000762 EmitULEB128(S.Action, "Action");
Bill Wendlingeb907212009-05-15 01:12:28 +0000763 }
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000764 } else {
765 // DWARF Exception handling
Chris Lattner33adcfb2009-08-22 21:43:10 +0000766 assert(MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf);
Bill Wendlingeb907212009-05-15 01:12:28 +0000767
Bill Wendlinga583c552009-08-20 22:02:24 +0000768 // The call-site table is a list of all call sites that may throw an
769 // exception (including C++ 'throw' statements) in the procedure
770 // fragment. It immediately follows the LSDA header. Each entry indicates,
771 // for a given call, the first corresponding action record and corresponding
772 // landing pad.
773 //
774 // The table begins with the number of bytes, stored as an LEB128
775 // compressed, unsigned integer. The records immediately follow the record
776 // count. They are sorted in increasing call-site address. Each record
777 // indicates:
778 //
779 // * The position of the call-site.
780 // * The position of the landing pad.
781 // * The first action record for that call site.
782 //
783 // A missing entry in the call-site table indicates that a call is not
Bill Wendling28275fd2009-09-10 06:50:01 +0000784 // supposed to throw.
Bill Wendlinga583c552009-08-20 22:02:24 +0000785
786 // Emit the landing pad call site table.
Chris Lattnerf61ed8e2010-01-22 22:38:16 +0000787 EmitEncodingByte(dwarf::DW_EH_PE_udata4, "Call site");
Bill Wendling1869ac82010-02-26 22:17:52 +0000788
789 // Add extra padding if it wasn't added to the TType base offset.
Bill Wendling3dc9b482010-02-24 23:34:35 +0000790 EmitULEB128(CallSiteTableLength, "Call site table length", SizeAlign);
Bill Wendlingeb907212009-05-15 01:12:28 +0000791
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000792 for (SmallVectorImpl<CallSiteEntry>::const_iterator
793 I = CallSites.begin(), E = CallSites.end(); I != E; ++I) {
794 const CallSiteEntry &S = *I;
795 const char *BeginTag;
796 unsigned BeginNumber;
Bill Wendlingeb907212009-05-15 01:12:28 +0000797
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000798 if (!S.BeginLabel) {
799 BeginTag = "eh_func_begin";
800 BeginNumber = SubprogramCount;
801 } else {
802 BeginTag = "label";
803 BeginNumber = S.BeginLabel;
804 }
Bill Wendlingeb907212009-05-15 01:12:28 +0000805
Bill Wendlinga583c552009-08-20 22:02:24 +0000806 // Offset of the call site relative to the previous call site, counted in
807 // number of 16-byte bundles. The first call site is counted relative to
808 // the start of the procedure fragment.
Chris Lattner233f52b2010-03-09 23:52:58 +0000809 Asm->OutStreamer.AddComment("Region start");
Chris Lattnerb98b1bf2010-03-08 22:23:36 +0000810 EmitSectionOffset(getDWLabel(BeginTag, BeginNumber),
811 getDWLabel("eh_func_begin", SubprogramCount),
Bill Wendlingeb907212009-05-15 01:12:28 +0000812 true, true);
813
Chris Lattner233f52b2010-03-09 23:52:58 +0000814 Asm->OutStreamer.AddComment("Region length");
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000815 if (!S.EndLabel)
Chris Lattnerb98b1bf2010-03-08 22:23:36 +0000816 EmitDifference(getDWLabel("eh_func_end", SubprogramCount),
817 getDWLabel(BeginTag, BeginNumber),
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000818 true);
819 else
Chris Lattnereffa8682010-03-08 23:02:59 +0000820 EmitDifference(getDWLabel("label", S.EndLabel),
821 getDWLabel(BeginTag, BeginNumber), true);
Bill Wendlingeb907212009-05-15 01:12:28 +0000822
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000823
Bill Wendlinga583c552009-08-20 22:02:24 +0000824 // Offset of the landing pad, counted in 16-byte bundles relative to the
825 // @LPStart address.
Chris Lattner233f52b2010-03-09 23:52:58 +0000826 Asm->OutStreamer.AddComment("Landing pad");
Bill Wendling1f8075d2010-02-09 22:49:16 +0000827 if (!S.PadLabel) {
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000828 Asm->OutStreamer.EmitIntValue(0, 4/*size*/, 0/*addrspace*/);
Bill Wendling1f8075d2010-02-09 22:49:16 +0000829 } else {
Chris Lattnerb98b1bf2010-03-08 22:23:36 +0000830 EmitSectionOffset(getDWLabel("label", S.PadLabel),
831 getDWLabel("eh_func_begin", SubprogramCount),
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000832 true, true);
Bill Wendling1f8075d2010-02-09 22:49:16 +0000833 }
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000834
Bill Wendlinga583c552009-08-20 22:02:24 +0000835 // Offset of the first associated action record, relative to the start of
836 // the action table. This value is biased by 1 (1 indicates the start of
837 // the action table), and 0 indicates that there are no actions.
Chris Lattner894d75a2010-01-22 23:18:42 +0000838 EmitULEB128(S.Action, "Action");
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000839 }
Bill Wendlingeb907212009-05-15 01:12:28 +0000840 }
841
Bill Wendlinga583c552009-08-20 22:02:24 +0000842 // Emit the Action Table.
Chris Lattner233f52b2010-03-09 23:52:58 +0000843 if (Actions.size() != 0) {
844 Asm->OutStreamer.AddComment("-- Action Record Table --");
845 Asm->OutStreamer.AddBlankLine();
846 }
847
Bill Wendling5cff4872009-07-28 23:44:43 +0000848 for (SmallVectorImpl<ActionEntry>::const_iterator
849 I = Actions.begin(), E = Actions.end(); I != E; ++I) {
850 const ActionEntry &Action = *I;
Chris Lattner233f52b2010-03-09 23:52:58 +0000851 Asm->OutStreamer.AddComment("Action Record");
852 Asm->OutStreamer.AddBlankLine();
Bill Wendlinga583c552009-08-20 22:02:24 +0000853
854 // Type Filter
855 //
856 // Used by the runtime to match the type of the thrown exception to the
857 // type of the catch clauses or the types in the exception specification.
Bill Wendling1f8075d2010-02-09 22:49:16 +0000858 EmitSLEB128(Action.ValueForTypeID, " TypeInfo index");
Bill Wendlinga583c552009-08-20 22:02:24 +0000859
860 // Action Record
861 //
862 // Self-relative signed displacement in bytes of the next action record,
863 // or 0 if there is no next action record.
Bill Wendling1f8075d2010-02-09 22:49:16 +0000864 EmitSLEB128(Action.NextAction, " Next action");
Bill Wendlingeb907212009-05-15 01:12:28 +0000865 }
866
Bill Wendling48dc29e2009-10-22 20:48:59 +0000867 // Emit the Catch TypeInfos.
Chris Lattner233f52b2010-03-09 23:52:58 +0000868 if (!TypeInfos.empty()) {
869 Asm->OutStreamer.AddComment("-- Catch TypeInfos --");
870 Asm->OutStreamer.AddBlankLine();
871 }
Bill Wendlingec044582009-11-18 23:18:46 +0000872 for (std::vector<GlobalVariable *>::const_reverse_iterator
Bill Wendling01c69372009-11-19 00:09:14 +0000873 I = TypeInfos.rbegin(), E = TypeInfos.rend(); I != E; ++I) {
Bill Wendlingfb7634f2009-11-19 19:21:09 +0000874 const GlobalVariable *GV = *I;
Bill Wendlingec044582009-11-18 23:18:46 +0000875
Chris Lattner90e4af72010-03-10 00:09:21 +0000876 Asm->OutStreamer.AddComment("TypeInfo");
877 if (GV)
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000878 EmitReference(GV, TTypeEncoding);
Chris Lattner90e4af72010-03-10 00:09:21 +0000879 else
880 Asm->OutStreamer.EmitIntValue(0, SizeOfEncodedValue(TTypeEncoding), 0);
Bill Wendlingeb907212009-05-15 01:12:28 +0000881 }
882
Bill Wendling48dc29e2009-10-22 20:48:59 +0000883 // Emit the Exception Specifications.
Chris Lattner233f52b2010-03-09 23:52:58 +0000884 if (!FilterIds.empty()) {
885 Asm->OutStreamer.AddComment("-- Filter IDs --");
886 Asm->OutStreamer.AddBlankLine();
887 }
Bill Wendling5cff4872009-07-28 23:44:43 +0000888 for (std::vector<unsigned>::const_iterator
889 I = FilterIds.begin(), E = FilterIds.end(); I < E; ++I) {
890 unsigned TypeID = *I;
Chris Lattner894d75a2010-01-22 23:18:42 +0000891 EmitULEB128(TypeID, TypeID != 0 ? "Exception specification" : 0);
Bill Wendlingeb907212009-05-15 01:12:28 +0000892 }
893
894 Asm->EmitAlignment(2, 0, 0, false);
895}
896
Bill Wendlingeb907212009-05-15 01:12:28 +0000897/// EndModule - Emit all exception information that should come after the
898/// content.
899void DwarfException::EndModule() {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000900 if (MAI->getExceptionHandlingType() != ExceptionHandling::Dwarf)
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000901 return;
Bill Wendlingb4049fe2009-09-09 21:06:24 +0000902
Bill Wendling52783c62009-09-09 23:56:55 +0000903 if (!shouldEmitMovesModule && !shouldEmitTableModule)
904 return;
905
Bill Wendlingeb907212009-05-15 01:12:28 +0000906 if (TimePassesIsEnabled)
907 ExceptionTimer->startTimer();
908
Bill Wendling52783c62009-09-09 23:56:55 +0000909 const std::vector<Function *> Personalities = MMI->getPersonalities();
Bill Wendlingb4049fe2009-09-09 21:06:24 +0000910
Bill Wendling28275fd2009-09-10 06:50:01 +0000911 for (unsigned I = 0, E = Personalities.size(); I < E; ++I)
912 EmitCIE(Personalities[I], I);
Bill Wendlingeb907212009-05-15 01:12:28 +0000913
Bill Wendling52783c62009-09-09 23:56:55 +0000914 for (std::vector<FunctionEHFrameInfo>::iterator
915 I = EHFrames.begin(), E = EHFrames.end(); I != E; ++I)
916 EmitFDE(*I);
Bill Wendlingeb907212009-05-15 01:12:28 +0000917
918 if (TimePassesIsEnabled)
919 ExceptionTimer->stopTimer();
920}
921
Bill Wendling28275fd2009-09-10 06:50:01 +0000922/// BeginFunction - Gather pre-function exception information. Assumes it's
923/// being emitted immediately after the function entry point.
Chris Lattnereec791a2010-01-26 23:18:02 +0000924void DwarfException::BeginFunction(const MachineFunction *MF) {
Bill Wendling73c5a612009-09-10 18:28:06 +0000925 if (!MMI || !MAI->doesSupportExceptionHandling()) return;
926
Bill Wendlingeb907212009-05-15 01:12:28 +0000927 if (TimePassesIsEnabled)
928 ExceptionTimer->startTimer();
929
930 this->MF = MF;
931 shouldEmitTable = shouldEmitMoves = false;
932
Bill Wendling73c5a612009-09-10 18:28:06 +0000933 // Map all labels and get rid of any dead landing pads.
934 MMI->TidyLandingPads();
Bill Wendlingeb907212009-05-15 01:12:28 +0000935
Bill Wendling73c5a612009-09-10 18:28:06 +0000936 // If any landing pads survive, we need an EH table.
937 if (!MMI->getLandingPads().empty())
938 shouldEmitTable = true;
Bill Wendlingeb907212009-05-15 01:12:28 +0000939
Bill Wendling73c5a612009-09-10 18:28:06 +0000940 // See if we need frame move info.
941 if (!MF->getFunction()->doesNotThrow() || UnwindTablesMandatory)
942 shouldEmitMoves = true;
Bill Wendlingeb907212009-05-15 01:12:28 +0000943
Bill Wendling73c5a612009-09-10 18:28:06 +0000944 if (shouldEmitMoves || shouldEmitTable)
945 // Assumes in correct section after the entry point.
Chris Lattnerf829eef2010-03-08 22:44:40 +0000946 Asm->OutStreamer.EmitLabel(getDWLabel("eh_func_begin", ++SubprogramCount));
Bill Wendlingeb907212009-05-15 01:12:28 +0000947
948 shouldEmitTableModule |= shouldEmitTable;
949 shouldEmitMovesModule |= shouldEmitMoves;
950
951 if (TimePassesIsEnabled)
952 ExceptionTimer->stopTimer();
953}
954
955/// EndFunction - Gather and emit post-function exception information.
956///
957void DwarfException::EndFunction() {
Bill Wendling7b09a6c2009-09-09 21:08:12 +0000958 if (!shouldEmitMoves && !shouldEmitTable) return;
959
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000960 if (TimePassesIsEnabled)
Bill Wendlingeb907212009-05-15 01:12:28 +0000961 ExceptionTimer->startTimer();
962
Chris Lattnerf829eef2010-03-08 22:44:40 +0000963 Asm->OutStreamer.EmitLabel(getDWLabel("eh_func_end", SubprogramCount));
Bill Wendling7b09a6c2009-09-09 21:08:12 +0000964 EmitExceptionTable();
Bill Wendlingeb907212009-05-15 01:12:28 +0000965
Chris Lattner09d53fe2010-03-10 07:20:42 +0000966 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000967 MCSymbol *FunctionEHSym =
Chris Lattner7a2ba942010-01-16 18:37:32 +0000968 Asm->GetSymbolWithGlobalValueBase(MF->getFunction(), ".eh",
Chris Lattner09d53fe2010-03-10 07:20:42 +0000969 TLOF.isFunctionEHFrameSymbolPrivate());
Chris Lattner25d812b2009-09-16 00:35:39 +0000970
Bill Wendling7b09a6c2009-09-09 21:08:12 +0000971 // Save EH frame information
Chris Lattner7a2ba942010-01-16 18:37:32 +0000972 EHFrames.push_back(FunctionEHFrameInfo(FunctionEHSym, SubprogramCount,
Bill Wendling7b09a6c2009-09-09 21:08:12 +0000973 MMI->getPersonalityIndex(),
974 MF->getFrameInfo()->hasCalls(),
975 !MMI->getLandingPads().empty(),
976 MMI->getFrameMoves(),
977 MF->getFunction()));
Bill Wendlingeb907212009-05-15 01:12:28 +0000978
Bill Wendling52783c62009-09-09 23:56:55 +0000979 // Record if this personality index uses a landing pad.
980 UsesLSDA[MMI->getPersonalityIndex()] |= !MMI->getLandingPads().empty();
981
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000982 if (TimePassesIsEnabled)
Bill Wendlingeb907212009-05-15 01:12:28 +0000983 ExceptionTimer->stopTimer();
984}