blob: fcdcfd31bc3ee06751b0fcbffa41cd11c0aba12a [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"
Bill Wendlingeb907212009-05-15 01:12:28 +000025#include "llvm/Target/TargetData.h"
26#include "llvm/Target/TargetFrameInfo.h"
Chris Lattnerd5bbb072009-08-02 01:34:32 +000027#include "llvm/Target/TargetLoweringObjectFile.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000028#include "llvm/Target/TargetOptions.h"
Chris Lattnerd5bbb072009-08-02 01:34:32 +000029#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000030#include "llvm/Support/Dwarf.h"
Jim Grosbach3fb2b1e2009-09-01 01:57:56 +000031#include "llvm/Support/Mangler.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000032#include "llvm/Support/Timer.h"
33#include "llvm/Support/raw_ostream.h"
Jim Grosbachc40d9f92009-09-01 18:49:12 +000034#include "llvm/ADT/SmallString.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000035#include "llvm/ADT/StringExtras.h"
36using namespace llvm;
37
38static TimerGroup &getDwarfTimerGroup() {
Bill Wendling28275fd2009-09-10 06:50:01 +000039 static TimerGroup DwarfTimerGroup("DWARF Exception");
Bill Wendlingeb907212009-05-15 01:12:28 +000040 return DwarfTimerGroup;
41}
42
Bill Wendlingbc0d23a2009-05-15 01:18:50 +000043DwarfException::DwarfException(raw_ostream &OS, AsmPrinter *A,
Chris Lattneraf76e592009-08-22 20:48:53 +000044 const MCAsmInfo *T)
Bill Wendlingbc0d23a2009-05-15 01:18:50 +000045 : Dwarf(OS, A, T, "eh"), shouldEmitTable(false), shouldEmitMoves(false),
46 shouldEmitTableModule(false), shouldEmitMovesModule(false),
47 ExceptionTimer(0) {
Eric Christopherdbfcdb92009-08-28 22:33:43 +000048 if (TimePassesIsEnabled)
Bill Wendling28275fd2009-09-10 06:50:01 +000049 ExceptionTimer = new Timer("DWARF Exception Writer",
Bill Wendlingbc0d23a2009-05-15 01:18:50 +000050 getDwarfTimerGroup());
51}
52
53DwarfException::~DwarfException() {
54 delete ExceptionTimer;
55}
56
Bill Wendlingbb3e2992009-09-10 00:04:48 +000057/// SizeOfEncodedValue - Return the size of the encoding in bytes.
Bill Wendling52783c62009-09-09 23:56:55 +000058unsigned DwarfException::SizeOfEncodedValue(unsigned Encoding) {
59 if (Encoding == dwarf::DW_EH_PE_omit)
60 return 0;
61
62 switch (Encoding & 0x07) {
63 case dwarf::DW_EH_PE_absptr:
64 return TD->getPointerSize();
65 case dwarf::DW_EH_PE_udata2:
66 return 2;
67 case dwarf::DW_EH_PE_udata4:
68 return 4;
69 case dwarf::DW_EH_PE_udata8:
70 return 8;
71 }
72
Bill Wendling28275fd2009-09-10 06:50:01 +000073 assert(0 && "Invalid encoded value.");
Bill Wendling52783c62009-09-09 23:56:55 +000074 return 0;
75}
76
Bill Wendling7378b1b2009-11-17 01:23:53 +000077/// CreateLabelDiff - Emit a label and subtract it from the expression we
78/// already have. This is equivalent to emitting "foo - .", but we have to emit
79/// the label for "." directly.
80const MCExpr *DwarfException::CreateLabelDiff(const MCExpr *ExprRef,
81 const char *LabelName,
82 unsigned Index) {
83 SmallString<64> Name;
84 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix()
85 << LabelName << Asm->getFunctionNumber()
86 << "_" << Index;
87 MCSymbol *DotSym = Asm->OutContext.GetOrCreateSymbol(Name.str());
88 Asm->OutStreamer.EmitLabel(DotSym);
89
90 return MCBinaryExpr::CreateSub(ExprRef,
91 MCSymbolRefExpr::Create(DotSym,
92 Asm->OutContext),
93 Asm->OutContext);
94}
95
Bill Wendling7ccda0f2009-08-25 08:08:33 +000096/// EmitCIE - Emit a Common Information Entry (CIE). This holds information that
97/// is shared among many Frame Description Entries. There is at least one CIE
98/// in every non-empty .debug_frame section.
Chris Lattner8c6ed052009-09-16 01:46:41 +000099void DwarfException::EmitCIE(const Function *PersonalityFn, unsigned Index) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000100 // Size and sign of stack growth.
101 int stackGrowth =
102 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
103 TargetFrameInfo::StackGrowsUp ?
104 TD->getPointerSize() : -TD->getPointerSize();
105
Chris Lattner8c6ed052009-09-16 01:46:41 +0000106 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
107
Bill Wendlingeb907212009-05-15 01:12:28 +0000108 // Begin eh frame section.
Chris Lattner8c6ed052009-09-16 01:46:41 +0000109 Asm->OutStreamer.SwitchSection(TLOF.getEHFrameSection());
Bill Wendlingeb907212009-05-15 01:12:28 +0000110
Chris Lattner33adcfb2009-08-22 21:43:10 +0000111 if (MAI->is_EHSymbolPrivate())
112 O << MAI->getPrivateGlobalPrefix();
Bill Wendlingeb907212009-05-15 01:12:28 +0000113 O << "EH_frame" << Index << ":\n";
Chris Lattner8c6ed052009-09-16 01:46:41 +0000114
Bill Wendlingeb907212009-05-15 01:12:28 +0000115 EmitLabel("section_eh_frame", Index);
116
117 // Define base labels.
118 EmitLabel("eh_frame_common", Index);
119
120 // Define the eh frame length.
121 EmitDifference("eh_frame_common_end", Index,
122 "eh_frame_common_begin", Index, true);
123 Asm->EOL("Length of Common Information Entry");
124
125 // EH frame header.
126 EmitLabel("eh_frame_common_begin", Index);
127 Asm->EmitInt32((int)0);
128 Asm->EOL("CIE Identifier Tag");
129 Asm->EmitInt8(dwarf::DW_CIE_VERSION);
130 Asm->EOL("CIE Version");
131
132 // The personality presence indicates that language specific information will
Chris Lattner8c6ed052009-09-16 01:46:41 +0000133 // show up in the eh frame. Find out how we are supposed to lower the
134 // personality function reference:
135 const MCExpr *PersonalityRef = 0;
136 bool IsPersonalityIndirect = false, IsPersonalityPCRel = false;
137 if (PersonalityFn) {
138 // FIXME: HANDLE STATIC CODEGEN MODEL HERE.
139
140 // In non-static mode, ask the object file how to represent this reference.
141 PersonalityRef =
142 TLOF.getSymbolForDwarfGlobalReference(PersonalityFn, Asm->Mang,
Chris Lattner8609c7c2009-09-17 18:49:52 +0000143 Asm->MMI,
Chris Lattner8c6ed052009-09-16 01:46:41 +0000144 IsPersonalityIndirect,
145 IsPersonalityPCRel);
146 }
147
Bill Wendling52783c62009-09-09 23:56:55 +0000148 unsigned PerEncoding = dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata4;
Chris Lattner8c6ed052009-09-16 01:46:41 +0000149 if (IsPersonalityIndirect)
Bill Wendling52783c62009-09-09 23:56:55 +0000150 PerEncoding |= dwarf::DW_EH_PE_indirect;
151 unsigned LSDAEncoding = dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata4;
152 unsigned FDEEncoding = dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata4;
153
154 char Augmentation[5] = { 0 };
155 unsigned AugmentationSize = 0;
156 char *APtr = Augmentation + 1;
157
Chris Lattner8c6ed052009-09-16 01:46:41 +0000158 if (PersonalityRef) {
Bill Wendling52783c62009-09-09 23:56:55 +0000159 // There is a personality function.
160 *APtr++ = 'P';
161 AugmentationSize += 1 + SizeOfEncodedValue(PerEncoding);
162 }
163
164 if (UsesLSDA[Index]) {
165 // An LSDA pointer is in the FDE augmentation.
166 *APtr++ = 'L';
167 ++AugmentationSize;
168 }
169
170 if (FDEEncoding != dwarf::DW_EH_PE_absptr) {
171 // A non-default pointer encoding for the FDE.
172 *APtr++ = 'R';
173 ++AugmentationSize;
174 }
175
176 if (APtr != Augmentation + 1)
177 Augmentation[0] = 'z';
178
179 Asm->EmitString(Augmentation);
Bill Wendlingeb907212009-05-15 01:12:28 +0000180 Asm->EOL("CIE Augmentation");
181
182 // Round out reader.
183 Asm->EmitULEB128Bytes(1);
184 Asm->EOL("CIE Code Alignment Factor");
185 Asm->EmitSLEB128Bytes(stackGrowth);
186 Asm->EOL("CIE Data Alignment Factor");
187 Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), true));
188 Asm->EOL("CIE Return Address Column");
189
Bill Wendling52783c62009-09-09 23:56:55 +0000190 Asm->EmitULEB128Bytes(AugmentationSize);
191 Asm->EOL("Augmentation Size");
192
193 Asm->EmitInt8(PerEncoding);
194 Asm->EOL("Personality", PerEncoding);
195
Bill Wendling4bda11f2009-08-25 02:32:05 +0000196 // If there is a personality, we need to indicate the function's location.
Chris Lattner8c6ed052009-09-16 01:46:41 +0000197 if (PersonalityRef) {
Bill Wendling7378b1b2009-11-17 01:23:53 +0000198 if (!IsPersonalityPCRel)
199 PersonalityRef = CreateLabelDiff(PersonalityRef, "personalityref_addr",
200 Index);
201
Chris Lattnerf60d3eb2009-09-15 22:58:35 +0000202 O << MAI->getData32bitsDirective();
Chris Lattner8c6ed052009-09-16 01:46:41 +0000203 PersonalityRef->print(O, MAI);
Bill Wendlingeb907212009-05-15 01:12:28 +0000204 Asm->EOL("Personality");
205
Bill Wendling52783c62009-09-09 23:56:55 +0000206 Asm->EmitInt8(LSDAEncoding);
207 Asm->EOL("LSDA Encoding", LSDAEncoding);
Bill Wendlingeb907212009-05-15 01:12:28 +0000208
Bill Wendling52783c62009-09-09 23:56:55 +0000209 Asm->EmitInt8(FDEEncoding);
210 Asm->EOL("FDE Encoding", FDEEncoding);
Bill Wendlingeb907212009-05-15 01:12:28 +0000211 }
212
213 // Indicate locations of general callee saved registers in frame.
214 std::vector<MachineMove> Moves;
215 RI->getInitialFrameState(Moves);
216 EmitFrameMoves(NULL, 0, Moves, true);
217
218 // On Darwin the linker honors the alignment of eh_frame, which means it must
219 // be 8-byte on 64-bit targets to match what gcc does. Otherwise you get
220 // holes which confuse readers of eh_frame.
Chris Lattner8c6ed052009-09-16 01:46:41 +0000221 Asm->EmitAlignment(TD->getPointerSize() == 4 ? 2 : 3, 0, 0, false);
Bill Wendlingeb907212009-05-15 01:12:28 +0000222 EmitLabel("eh_frame_common_end", Index);
223
224 Asm->EOL();
225}
226
Bill Wendling7ccda0f2009-08-25 08:08:33 +0000227/// EmitFDE - Emit the Frame Description Entry (FDE) for the function.
228void DwarfException::EmitFDE(const FunctionEHFrameInfo &EHFrameInfo) {
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000229 assert(!EHFrameInfo.function->hasAvailableExternallyLinkage() &&
Bill Wendlingeb907212009-05-15 01:12:28 +0000230 "Should not emit 'available externally' functions at all");
231
Chris Lattner3e0f60b2009-07-17 21:00:50 +0000232 const Function *TheFunc = EHFrameInfo.function;
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000233
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000234 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getEHFrameSection());
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000235
Bill Wendlingeb907212009-05-15 01:12:28 +0000236 // Externally visible entry into the functions eh frame info. If the
237 // corresponding function is static, this should not be externally visible.
Chris Lattner3e0f60b2009-07-17 21:00:50 +0000238 if (!TheFunc->hasLocalLinkage())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000239 if (const char *GlobalEHDirective = MAI->getGlobalEHDirective())
Bill Wendlingee161a62009-11-11 01:24:59 +0000240 O << GlobalEHDirective << EHFrameInfo.FnName << '\n';
Bill Wendlingeb907212009-05-15 01:12:28 +0000241
242 // If corresponding function is weak definition, this should be too.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000243 if (TheFunc->isWeakForLinker() && MAI->getWeakDefDirective())
Bill Wendlingee161a62009-11-11 01:24:59 +0000244 O << MAI->getWeakDefDirective() << EHFrameInfo.FnName << '\n';
245
246 // If corresponding function is hidden, this should be too.
247 if (TheFunc->hasHiddenVisibility())
248 if (const char *HiddenDirective = MAI->getHiddenDirective())
249 O << HiddenDirective << EHFrameInfo.FnName << '\n' ;
Bill Wendlingeb907212009-05-15 01:12:28 +0000250
251 // If there are no calls then you can't unwind. This may mean we can omit the
252 // EH Frame, but some environments do not handle weak absolute symbols. If
253 // UnwindTablesMandatory is set we cannot do this optimization; the unwind
254 // info is to be available for non-EH uses.
Chris Lattner3e0f60b2009-07-17 21:00:50 +0000255 if (!EHFrameInfo.hasCalls && !UnwindTablesMandatory &&
256 (!TheFunc->isWeakForLinker() ||
Chris Lattner33adcfb2009-08-22 21:43:10 +0000257 !MAI->getWeakDefDirective() ||
258 MAI->getSupportsWeakOmittedEHFrame())) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000259 O << EHFrameInfo.FnName << " = 0\n";
260 // This name has no connection to the function, so it might get
261 // dead-stripped when the function is not, erroneously. Prohibit
262 // dead-stripping unconditionally.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000263 if (const char *UsedDirective = MAI->getUsedDirective())
Bill Wendlingeb907212009-05-15 01:12:28 +0000264 O << UsedDirective << EHFrameInfo.FnName << "\n\n";
265 } else {
266 O << EHFrameInfo.FnName << ":\n";
267
268 // EH frame header.
269 EmitDifference("eh_frame_end", EHFrameInfo.Number,
270 "eh_frame_begin", EHFrameInfo.Number, true);
271 Asm->EOL("Length of Frame Information Entry");
272
273 EmitLabel("eh_frame_begin", EHFrameInfo.Number);
274
Chris Lattnera4ff5e42009-07-17 20:53:51 +0000275 EmitSectionOffset("eh_frame_begin", "eh_frame_common",
276 EHFrameInfo.Number, EHFrameInfo.PersonalityIndex,
277 true, true, false);
Bill Wendlingeb907212009-05-15 01:12:28 +0000278
279 Asm->EOL("FDE CIE offset");
280
Duncan Sandsc69d74a2009-08-31 16:45:16 +0000281 EmitReference("eh_func_begin", EHFrameInfo.Number, true, true);
Bill Wendlingeb907212009-05-15 01:12:28 +0000282 Asm->EOL("FDE initial location");
283 EmitDifference("eh_func_end", EHFrameInfo.Number,
Duncan Sandsc69d74a2009-08-31 16:45:16 +0000284 "eh_func_begin", EHFrameInfo.Number, true);
Bill Wendlingeb907212009-05-15 01:12:28 +0000285 Asm->EOL("FDE address range");
286
287 // If there is a personality and landing pads then point to the language
288 // specific data area in the exception table.
Eric Christopherd44fff72009-08-26 21:30:49 +0000289 if (MMI->getPersonalities()[0] != NULL) {
Duncan Sandsc69d74a2009-08-31 16:45:16 +0000290 bool is4Byte = TD->getPointerSize() == sizeof(int32_t);
291
Eric Christopher6fefceb2009-08-29 01:12:46 +0000292 Asm->EmitULEB128Bytes(is4Byte ? 4 : 8);
Bill Wendlingeb907212009-05-15 01:12:28 +0000293 Asm->EOL("Augmentation size");
294
Duncan Sandsc69d74a2009-08-31 16:45:16 +0000295 if (EHFrameInfo.hasLandingPads)
Eric Christopher6fefceb2009-08-29 01:12:46 +0000296 EmitReference("exception", EHFrameInfo.Number, true, false);
Duncan Sandsc69d74a2009-08-31 16:45:16 +0000297 else {
Bill Wendling52783c62009-09-09 23:56:55 +0000298 if (is4Byte)
299 Asm->EmitInt32((int)0);
300 else
301 Asm->EmitInt64((int)0);
Eric Christopher6fefceb2009-08-29 01:12:46 +0000302 }
Bill Wendlingeb907212009-05-15 01:12:28 +0000303 Asm->EOL("Language Specific Data Area");
304 } else {
305 Asm->EmitULEB128Bytes(0);
306 Asm->EOL("Augmentation size");
307 }
308
309 // Indicate locations of function specific callee saved registers in frame.
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000310 EmitFrameMoves("eh_func_begin", EHFrameInfo.Number, EHFrameInfo.Moves,
Bill Wendlingeb907212009-05-15 01:12:28 +0000311 true);
312
313 // On Darwin the linker honors the alignment of eh_frame, which means it
314 // must be 8-byte on 64-bit targets to match what gcc does. Otherwise you
315 // get holes which confuse readers of eh_frame.
316 Asm->EmitAlignment(TD->getPointerSize() == sizeof(int32_t) ? 2 : 3,
317 0, 0, false);
318 EmitLabel("eh_frame_end", EHFrameInfo.Number);
319
320 // If the function is marked used, this table should be also. We cannot
321 // make the mark unconditional in this case, since retaining the table also
322 // retains the function in this case, and there is code around that depends
323 // on unused functions (calling undefined externals) being dead-stripped to
324 // link correctly. Yes, there really is.
Chris Lattner401e10c2009-07-20 06:14:25 +0000325 if (MMI->isUsedFunction(EHFrameInfo.function))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000326 if (const char *UsedDirective = MAI->getUsedDirective())
Bill Wendlingeb907212009-05-15 01:12:28 +0000327 O << UsedDirective << EHFrameInfo.FnName << "\n\n";
328 }
Bill Wendling4bda11f2009-08-25 02:32:05 +0000329
330 Asm->EOL();
Bill Wendlingeb907212009-05-15 01:12:28 +0000331}
332
Bill Wendlingeb907212009-05-15 01:12:28 +0000333/// SharedTypeIds - How many leading type ids two landing pads have in common.
334unsigned DwarfException::SharedTypeIds(const LandingPadInfo *L,
335 const LandingPadInfo *R) {
336 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
337 unsigned LSize = LIds.size(), RSize = RIds.size();
338 unsigned MinSize = LSize < RSize ? LSize : RSize;
339 unsigned Count = 0;
340
341 for (; Count != MinSize; ++Count)
342 if (LIds[Count] != RIds[Count])
343 return Count;
344
345 return Count;
346}
347
348/// PadLT - Order landing pads lexicographically by type id.
349bool DwarfException::PadLT(const LandingPadInfo *L, const LandingPadInfo *R) {
350 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
351 unsigned LSize = LIds.size(), RSize = RIds.size();
352 unsigned MinSize = LSize < RSize ? LSize : RSize;
353
354 for (unsigned i = 0; i != MinSize; ++i)
355 if (LIds[i] != RIds[i])
356 return LIds[i] < RIds[i];
357
358 return LSize < RSize;
359}
360
Bill Wendlingd4609622009-07-28 23:23:00 +0000361/// ComputeActionsTable - Compute the actions table and gather the first action
362/// index for each landing pad site.
Bill Wendlingade025c2009-07-29 00:31:35 +0000363unsigned DwarfException::
364ComputeActionsTable(const SmallVectorImpl<const LandingPadInfo*> &LandingPads,
365 SmallVectorImpl<ActionEntry> &Actions,
366 SmallVectorImpl<unsigned> &FirstActions) {
Bill Wendlinga583c552009-08-20 22:02:24 +0000367
368 // The action table follows the call-site table in the LSDA. The individual
369 // records are of two types:
370 //
371 // * Catch clause
372 // * Exception specification
373 //
374 // The two record kinds have the same format, with only small differences.
375 // They are distinguished by the "switch value" field: Catch clauses
376 // (TypeInfos) have strictly positive switch values, and exception
377 // specifications (FilterIds) have strictly negative switch values. Value 0
378 // indicates a catch-all clause.
379 //
Bill Wendling5e953dd2009-07-28 23:22:13 +0000380 // Negative type IDs index into FilterIds. Positive type IDs index into
381 // TypeInfos. The value written for a positive type ID is just the type ID
382 // itself. For a negative type ID, however, the value written is the
Bill Wendlingeb907212009-05-15 01:12:28 +0000383 // (negative) byte offset of the corresponding FilterIds entry. The byte
Bill Wendling5e953dd2009-07-28 23:22:13 +0000384 // offset is usually equal to the type ID (because the FilterIds entries are
385 // written using a variable width encoding, which outputs one byte per entry
386 // as long as the value written is not too large) but can differ. This kind
387 // of complication does not occur for positive type IDs because type infos are
Bill Wendlingeb907212009-05-15 01:12:28 +0000388 // output using a fixed width encoding. FilterOffsets[i] holds the byte
389 // offset corresponding to FilterIds[i].
Bill Wendling409914b2009-07-29 21:19:44 +0000390
391 const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
Bill Wendlingeb907212009-05-15 01:12:28 +0000392 SmallVector<int, 16> FilterOffsets;
393 FilterOffsets.reserve(FilterIds.size());
394 int Offset = -1;
Bill Wendling409914b2009-07-29 21:19:44 +0000395
396 for (std::vector<unsigned>::const_iterator
397 I = FilterIds.begin(), E = FilterIds.end(); I != E; ++I) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000398 FilterOffsets.push_back(Offset);
Chris Lattneraf76e592009-08-22 20:48:53 +0000399 Offset -= MCAsmInfo::getULEB128Size(*I);
Bill Wendlingeb907212009-05-15 01:12:28 +0000400 }
401
Bill Wendlingeb907212009-05-15 01:12:28 +0000402 FirstActions.reserve(LandingPads.size());
403
404 int FirstAction = 0;
405 unsigned SizeActions = 0;
Bill Wendling5e953dd2009-07-28 23:22:13 +0000406 const LandingPadInfo *PrevLPI = 0;
Bill Wendling409914b2009-07-29 21:19:44 +0000407
Bill Wendling5cff4872009-07-28 23:44:43 +0000408 for (SmallVectorImpl<const LandingPadInfo *>::const_iterator
Bill Wendling5e953dd2009-07-28 23:22:13 +0000409 I = LandingPads.begin(), E = LandingPads.end(); I != E; ++I) {
410 const LandingPadInfo *LPI = *I;
411 const std::vector<int> &TypeIds = LPI->TypeIds;
412 const unsigned NumShared = PrevLPI ? SharedTypeIds(LPI, PrevLPI) : 0;
Bill Wendlingeb907212009-05-15 01:12:28 +0000413 unsigned SizeSiteActions = 0;
414
415 if (NumShared < TypeIds.size()) {
416 unsigned SizeAction = 0;
417 ActionEntry *PrevAction = 0;
418
419 if (NumShared) {
Bill Wendling5e953dd2009-07-28 23:22:13 +0000420 const unsigned SizePrevIds = PrevLPI->TypeIds.size();
Bill Wendlingeb907212009-05-15 01:12:28 +0000421 assert(Actions.size());
422 PrevAction = &Actions.back();
Chris Lattneraf76e592009-08-22 20:48:53 +0000423 SizeAction = MCAsmInfo::getSLEB128Size(PrevAction->NextAction) +
424 MCAsmInfo::getSLEB128Size(PrevAction->ValueForTypeID);
Bill Wendlingeb907212009-05-15 01:12:28 +0000425
426 for (unsigned j = NumShared; j != SizePrevIds; ++j) {
427 SizeAction -=
Chris Lattneraf76e592009-08-22 20:48:53 +0000428 MCAsmInfo::getSLEB128Size(PrevAction->ValueForTypeID);
Bill Wendlingeb907212009-05-15 01:12:28 +0000429 SizeAction += -PrevAction->NextAction;
430 PrevAction = PrevAction->Previous;
431 }
432 }
433
434 // Compute the actions.
Bill Wendling5e953dd2009-07-28 23:22:13 +0000435 for (unsigned J = NumShared, M = TypeIds.size(); J != M; ++J) {
436 int TypeID = TypeIds[J];
437 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
Bill Wendlingeb907212009-05-15 01:12:28 +0000438 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
Chris Lattneraf76e592009-08-22 20:48:53 +0000439 unsigned SizeTypeID = MCAsmInfo::getSLEB128Size(ValueForTypeID);
Bill Wendlingeb907212009-05-15 01:12:28 +0000440
441 int NextAction = SizeAction ? -(SizeAction + SizeTypeID) : 0;
Chris Lattneraf76e592009-08-22 20:48:53 +0000442 SizeAction = SizeTypeID + MCAsmInfo::getSLEB128Size(NextAction);
Bill Wendlingeb907212009-05-15 01:12:28 +0000443 SizeSiteActions += SizeAction;
444
Bill Wendlinga583c552009-08-20 22:02:24 +0000445 ActionEntry Action = { ValueForTypeID, NextAction, PrevAction };
Bill Wendlingeb907212009-05-15 01:12:28 +0000446 Actions.push_back(Action);
Bill Wendlingeb907212009-05-15 01:12:28 +0000447 PrevAction = &Actions.back();
448 }
449
450 // Record the first action of the landing pad site.
451 FirstAction = SizeActions + SizeSiteActions - SizeAction + 1;
452 } // else identical - re-use previous FirstAction
453
Bill Wendlinga583c552009-08-20 22:02:24 +0000454 // Information used when created the call-site table. The action record
455 // field of the call site record is the offset of the first associated
456 // action record, relative to the start of the actions table. This value is
457 // biased by 1 (1 in dicating the start of the actions table), and 0
458 // indicates that there are no actions.
Bill Wendlingeb907212009-05-15 01:12:28 +0000459 FirstActions.push_back(FirstAction);
460
461 // Compute this sites contribution to size.
462 SizeActions += SizeSiteActions;
Bill Wendling5e953dd2009-07-28 23:22:13 +0000463
464 PrevLPI = LPI;
Bill Wendlingeb907212009-05-15 01:12:28 +0000465 }
466
Bill Wendling5e953dd2009-07-28 23:22:13 +0000467 return SizeActions;
468}
469
Bill Wendlinged060dc2009-11-12 21:59:20 +0000470/// CallToNoUnwindFunction - Return `true' if this is a call to a function
471/// marked `nounwind'. Return `false' otherwise.
472bool DwarfException::CallToNoUnwindFunction(const MachineInstr *MI) {
473 assert(MI->getDesc().isCall() && "This should be a call instruction!");
474
475 bool MarkedNoUnwind = false;
476 bool SawFunc = false;
477
478 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
479 const MachineOperand &MO = MI->getOperand(I);
480
481 if (MO.isGlobal()) {
482 if (Function *F = dyn_cast<Function>(MO.getGlobal())) {
483 if (SawFunc) {
484 // Be conservative. If we have more than one function operand for this
485 // call, then we can't make the assumption that it's the callee and
486 // not a parameter to the call.
487 //
488 // FIXME: Determine if there's a way to say that `F' is the callee or
489 // parameter.
490 MarkedNoUnwind = false;
491 break;
492 }
Bill Wendlingecc260e2009-11-12 23:13:08 +0000493
494 MarkedNoUnwind = F->doesNotThrow();
495 SawFunc = true;
Bill Wendlinged060dc2009-11-12 21:59:20 +0000496 }
497 }
498 }
499
500 return MarkedNoUnwind;
501}
502
Bill Wendlingade025c2009-07-29 00:31:35 +0000503/// ComputeCallSiteTable - Compute the call-site table. The entry for an invoke
Bill Wendlinga583c552009-08-20 22:02:24 +0000504/// has a try-range containing the call, a non-zero landing pad, and an
Bill Wendlingade025c2009-07-29 00:31:35 +0000505/// appropriate action. The entry for an ordinary call has a try-range
506/// containing the call and zero for the landing pad and the action. Calls
507/// marked 'nounwind' have no entry and must not be contained in the try-range
508/// of any entry - they form gaps in the table. Entries must be ordered by
509/// try-range address.
510void DwarfException::
511ComputeCallSiteTable(SmallVectorImpl<CallSiteEntry> &CallSites,
512 const RangeMapType &PadMap,
513 const SmallVectorImpl<const LandingPadInfo *> &LandingPads,
514 const SmallVectorImpl<unsigned> &FirstActions) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000515 // The end label of the previous invoke or nounwind try-range.
516 unsigned LastLabel = 0;
517
518 // Whether there is a potentially throwing instruction (currently this means
519 // an ordinary call) between the end of the previous try-range and now.
520 bool SawPotentiallyThrowing = false;
521
Bill Wendling5cff4872009-07-28 23:44:43 +0000522 // Whether the last CallSite entry was for an invoke.
Bill Wendlingeb907212009-05-15 01:12:28 +0000523 bool PreviousIsInvoke = false;
524
525 // Visit all instructions in order of address.
526 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
527 I != E; ++I) {
528 for (MachineBasicBlock::const_iterator MI = I->begin(), E = I->end();
529 MI != E; ++MI) {
530 if (!MI->isLabel()) {
Bill Wendlinged060dc2009-11-12 21:59:20 +0000531 if (MI->getDesc().isCall())
532 SawPotentiallyThrowing |= !CallToNoUnwindFunction(MI);
Bill Wendling73b55512009-11-11 23:17:02 +0000533
Bill Wendlingeb907212009-05-15 01:12:28 +0000534 continue;
535 }
536
537 unsigned BeginLabel = MI->getOperand(0).getImm();
538 assert(BeginLabel && "Invalid label!");
539
540 // End of the previous try-range?
541 if (BeginLabel == LastLabel)
542 SawPotentiallyThrowing = false;
543
544 // Beginning of a new try-range?
Jeffrey Yasskin81cf4322009-11-10 01:02:17 +0000545 RangeMapType::const_iterator L = PadMap.find(BeginLabel);
Bill Wendlingeb907212009-05-15 01:12:28 +0000546 if (L == PadMap.end())
547 // Nope, it was just some random label.
548 continue;
549
Bill Wendlinga583c552009-08-20 22:02:24 +0000550 const PadRange &P = L->second;
Bill Wendlingeb907212009-05-15 01:12:28 +0000551 const LandingPadInfo *LandingPad = LandingPads[P.PadIndex];
Bill Wendlingeb907212009-05-15 01:12:28 +0000552 assert(BeginLabel == LandingPad->BeginLabels[P.RangeIndex] &&
553 "Inconsistent landing pad map!");
554
Bill Wendlinga583c552009-08-20 22:02:24 +0000555 // For Dwarf exception handling (SjLj handling doesn't use this). If some
556 // instruction between the previous try-range and this one may throw,
557 // create a call-site entry with no landing pad for the region between the
558 // try-ranges.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000559 if (SawPotentiallyThrowing &&
Chris Lattner33adcfb2009-08-22 21:43:10 +0000560 MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) {
Bill Wendlinga583c552009-08-20 22:02:24 +0000561 CallSiteEntry Site = { LastLabel, BeginLabel, 0, 0 };
Bill Wendlingeb907212009-05-15 01:12:28 +0000562 CallSites.push_back(Site);
563 PreviousIsInvoke = false;
564 }
565
566 LastLabel = LandingPad->EndLabels[P.RangeIndex];
567 assert(BeginLabel && LastLabel && "Invalid landing pad!");
568
569 if (LandingPad->LandingPadLabel) {
570 // This try-range is for an invoke.
Bill Wendlinga583c552009-08-20 22:02:24 +0000571 CallSiteEntry Site = {
572 BeginLabel,
573 LastLabel,
574 LandingPad->LandingPadLabel,
575 FirstActions[P.PadIndex]
576 };
Bill Wendlingeb907212009-05-15 01:12:28 +0000577
Jim Grosbach33668c02009-09-01 17:19:13 +0000578 // Try to merge with the previous call-site. SJLJ doesn't do this
579 if (PreviousIsInvoke &&
580 MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000581 CallSiteEntry &Prev = CallSites.back();
582 if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action) {
583 // Extend the range of the previous entry.
584 Prev.EndLabel = Site.EndLabel;
585 continue;
586 }
587 }
588
589 // Otherwise, create a new call-site.
590 CallSites.push_back(Site);
591 PreviousIsInvoke = true;
592 } else {
593 // Create a gap.
594 PreviousIsInvoke = false;
595 }
596 }
597 }
598
599 // If some instruction between the previous try-range and the end of the
600 // function may throw, create a call-site entry with no landing pad for the
601 // region following the try-range.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000602 if (SawPotentiallyThrowing &&
Chris Lattner33adcfb2009-08-22 21:43:10 +0000603 MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) {
Bill Wendlinga583c552009-08-20 22:02:24 +0000604 CallSiteEntry Site = { LastLabel, 0, 0, 0 };
Bill Wendlingeb907212009-05-15 01:12:28 +0000605 CallSites.push_back(Site);
606 }
Bill Wendlingade025c2009-07-29 00:31:35 +0000607}
608
Bill Wendling0dafca92009-07-29 00:50:05 +0000609/// EmitExceptionTable - Emit landing pads and actions.
610///
611/// The general organization of the table is complex, but the basic concepts are
612/// easy. First there is a header which describes the location and organization
613/// of the three components that follow.
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000614///
Bill Wendling0dafca92009-07-29 00:50:05 +0000615/// 1. The landing pad site information describes the range of code covered by
616/// the try. In our case it's an accumulation of the ranges covered by the
617/// invokes in the try. There is also a reference to the landing pad that
618/// handles the exception once processed. Finally an index into the actions
619/// table.
Bill Wendlinga583c552009-08-20 22:02:24 +0000620/// 2. The action table, in our case, is composed of pairs of type IDs and next
Bill Wendling0dafca92009-07-29 00:50:05 +0000621/// action offset. Starting with the action index from the landing pad
Bill Wendlinga583c552009-08-20 22:02:24 +0000622/// site, each type ID is checked for a match to the current exception. If
Bill Wendling0dafca92009-07-29 00:50:05 +0000623/// it matches then the exception and type id are passed on to the landing
624/// pad. Otherwise the next action is looked up. This chain is terminated
Bill Wendling28275fd2009-09-10 06:50:01 +0000625/// with a next action of zero. If no type id is found then the frame is
Bill Wendling0dafca92009-07-29 00:50:05 +0000626/// unwound and handling continues.
Bill Wendlinga583c552009-08-20 22:02:24 +0000627/// 3. Type ID table contains references to all the C++ typeinfo for all
Bill Wendling28275fd2009-09-10 06:50:01 +0000628/// catches in the function. This tables is reverse indexed base 1.
Bill Wendlingade025c2009-07-29 00:31:35 +0000629void DwarfException::EmitExceptionTable() {
630 const std::vector<GlobalVariable *> &TypeInfos = MMI->getTypeInfos();
631 const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
632 const std::vector<LandingPadInfo> &PadInfos = MMI->getLandingPads();
633 if (PadInfos.empty()) return;
634
635 // Sort the landing pads in order of their type ids. This is used to fold
636 // duplicate actions.
637 SmallVector<const LandingPadInfo *, 64> LandingPads;
638 LandingPads.reserve(PadInfos.size());
639
640 for (unsigned i = 0, N = PadInfos.size(); i != N; ++i)
641 LandingPads.push_back(&PadInfos[i]);
642
643 std::sort(LandingPads.begin(), LandingPads.end(), PadLT);
644
645 // Compute the actions table and gather the first action index for each
646 // landing pad site.
647 SmallVector<ActionEntry, 32> Actions;
648 SmallVector<unsigned, 64> FirstActions;
Bill Wendling28275fd2009-09-10 06:50:01 +0000649 unsigned SizeActions = ComputeActionsTable(LandingPads, Actions,
650 FirstActions);
Bill Wendlingade025c2009-07-29 00:31:35 +0000651
652 // Invokes and nounwind calls have entries in PadMap (due to being bracketed
653 // by try-range labels when lowered). Ordinary calls do not, so appropriate
Bill Wendling28275fd2009-09-10 06:50:01 +0000654 // try-ranges for them need be deduced when using DWARF exception handling.
Bill Wendlingade025c2009-07-29 00:31:35 +0000655 RangeMapType PadMap;
656 for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) {
657 const LandingPadInfo *LandingPad = LandingPads[i];
658 for (unsigned j = 0, E = LandingPad->BeginLabels.size(); j != E; ++j) {
659 unsigned BeginLabel = LandingPad->BeginLabels[j];
660 assert(!PadMap.count(BeginLabel) && "Duplicate landing pad labels!");
661 PadRange P = { i, j };
662 PadMap[BeginLabel] = P;
663 }
664 }
665
666 // Compute the call-site table.
667 SmallVector<CallSiteEntry, 64> CallSites;
Jim Grosbach8b818d72009-08-17 16:41:22 +0000668 ComputeCallSiteTable(CallSites, PadMap, LandingPads, FirstActions);
Bill Wendlingeb907212009-05-15 01:12:28 +0000669
670 // Final tallies.
671
672 // Call sites.
Bill Wendling40121bc2009-09-10 00:13:16 +0000673 const unsigned SiteStartSize = SizeOfEncodedValue(dwarf::DW_EH_PE_udata4);
674 const unsigned SiteLengthSize = SizeOfEncodedValue(dwarf::DW_EH_PE_udata4);
675 const unsigned LandingPadSize = SizeOfEncodedValue(dwarf::DW_EH_PE_udata4);
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000676 bool IsSJLJ = MAI->getExceptionHandlingType() == ExceptionHandling::SjLj;
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000677 bool HaveTTData = IsSJLJ ? (!TypeInfos.empty() || !FilterIds.empty()) : true;
Bill Wendling28275fd2009-09-10 06:50:01 +0000678 unsigned SizeSites;
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000679
680 if (IsSJLJ)
Jim Grosbach8b818d72009-08-17 16:41:22 +0000681 SizeSites = 0;
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000682 else
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000683 SizeSites = CallSites.size() *
684 (SiteStartSize + SiteLengthSize + LandingPadSize);
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000685
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000686 for (unsigned i = 0, e = CallSites.size(); i < e; ++i) {
Chris Lattneraf76e592009-08-22 20:48:53 +0000687 SizeSites += MCAsmInfo::getULEB128Size(CallSites[i].Action);
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000688 if (IsSJLJ)
Chris Lattneraf76e592009-08-22 20:48:53 +0000689 SizeSites += MCAsmInfo::getULEB128Size(i);
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000690 }
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000691
Bill Wendlingeb907212009-05-15 01:12:28 +0000692 // Type infos.
Chris Lattnerd5bbb072009-08-02 01:34:32 +0000693 const MCSection *LSDASection = Asm->getObjFileLowering().getLSDASection();
Bill Wendlingfe220282009-09-10 02:07:37 +0000694 unsigned TTypeFormat;
Bill Wendlinga2f64492009-09-10 06:27:16 +0000695 unsigned TypeFormatSize;
Bill Wendlingeb907212009-05-15 01:12:28 +0000696
Bill Wendling43e484f2009-09-10 01:12:47 +0000697 if (!HaveTTData) {
Bill Wendling28275fd2009-09-10 06:50:01 +0000698 // For SjLj exceptions, if there is no TypeInfo, then we just explicitly say
699 // that we're omitting that bit.
Bill Wendlingfe220282009-09-10 02:07:37 +0000700 TTypeFormat = dwarf::DW_EH_PE_omit;
Bill Wendlinga2f64492009-09-10 06:27:16 +0000701 TypeFormatSize = SizeOfEncodedValue(dwarf::DW_EH_PE_absptr);
Chris Lattner81c9a062009-07-31 22:03:47 +0000702 } else {
Chris Lattnerad88bc42009-08-02 03:59:56 +0000703 // Okay, we have actual filters or typeinfos to emit. As such, we need to
704 // pick a type encoding for them. We're about to emit a list of pointers to
705 // typeinfo objects at the end of the LSDA. However, unless we're in static
706 // mode, this reference will require a relocation by the dynamic linker.
Chris Lattner46b754c2009-07-31 22:18:14 +0000707 //
Chris Lattnerad88bc42009-08-02 03:59:56 +0000708 // Because of this, we have a couple of options:
Bill Wendling28275fd2009-09-10 06:50:01 +0000709 //
Chris Lattnerad88bc42009-08-02 03:59:56 +0000710 // 1) If we are in -static mode, we can always use an absolute reference
711 // from the LSDA, because the static linker will resolve it.
Bill Wendling28275fd2009-09-10 06:50:01 +0000712 //
Chris Lattnerad88bc42009-08-02 03:59:56 +0000713 // 2) Otherwise, if the LSDA section is writable, we can output the direct
714 // reference to the typeinfo and allow the dynamic linker to relocate
715 // it. Since it is in a writable section, the dynamic linker won't
716 // have a problem.
Bill Wendling28275fd2009-09-10 06:50:01 +0000717 //
Chris Lattnerad88bc42009-08-02 03:59:56 +0000718 // 3) Finally, if we're in PIC mode and the LDSA section isn't writable,
719 // we need to use some form of indirection. For example, on Darwin,
720 // we can output a statically-relocatable reference to a dyld stub. The
721 // offset to the stub is constant, but the contents are in a section
722 // that is updated by the dynamic linker. This is easy enough, but we
723 // need to tell the personality function of the unwinder to indirect
724 // through the dyld stub.
725 //
Bill Wendling43e484f2009-09-10 01:12:47 +0000726 // FIXME: When (3) is actually implemented, we'll have to emit the stubs
Chris Lattnerad88bc42009-08-02 03:59:56 +0000727 // somewhere. This predicate should be moved to a shared location that is
728 // in target-independent code.
729 //
Bill Wendlingec044582009-11-18 23:18:46 +0000730 if ((LSDASection->getKind().isWriteable() &&
Bill Wendling01c69372009-11-19 00:09:14 +0000731 !LSDASection->getKind().isReadOnlyWithRel()) ||
Bill Wendling43e484f2009-09-10 01:12:47 +0000732 Asm->TM.getRelocationModel() == Reloc::Static)
733 TTypeFormat = dwarf::DW_EH_PE_absptr;
734 else
735 TTypeFormat = dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel |
736 dwarf::DW_EH_PE_sdata4;
Bill Wendlinga2f64492009-09-10 06:27:16 +0000737
738 TypeFormatSize = SizeOfEncodedValue(TTypeFormat);
Bill Wendlingfe220282009-09-10 02:07:37 +0000739 }
Bill Wendling43e484f2009-09-10 01:12:47 +0000740
Bill Wendlingfe220282009-09-10 02:07:37 +0000741 // Begin the exception table.
742 Asm->OutStreamer.SwitchSection(LSDASection);
743 Asm->EmitAlignment(2, 0, 0, false);
Bill Wendling43e484f2009-09-10 01:12:47 +0000744
Bill Wendlingfe220282009-09-10 02:07:37 +0000745 O << "GCC_except_table" << SubprogramCount << ":\n";
Bill Wendlinga2f64492009-09-10 06:27:16 +0000746
747 // The type infos need to be aligned. GCC does this by inserting padding just
748 // before the type infos. However, this changes the size of the exception
749 // table, so you need to take this into account when you output the exception
750 // table size. However, the size is output using a variable length encoding.
751 // So by increasing the size by inserting padding, you may increase the number
752 // of bytes used for writing the size. If it increases, say by one byte, then
753 // you now need to output one less byte of padding to get the type infos
754 // aligned. However this decreases the size of the exception table. This
755 // changes the value you have to output for the exception table size. Due to
756 // the variable length encoding, the number of bytes used for writing the
757 // length may decrease. If so, you then have to increase the amount of
758 // padding. And so on. If you look carefully at the GCC code you will see that
759 // it indeed does this in a loop, going on and on until the values stabilize.
760 // We chose another solution: don't output padding inside the table like GCC
761 // does, instead output it before the table.
762 unsigned SizeTypes = TypeInfos.size() * TypeFormatSize;
763 unsigned TyOffset = sizeof(int8_t) + // Call site format
764 MCAsmInfo::getULEB128Size(SizeSites) + // Call-site table length
765 SizeSites + SizeActions + SizeTypes;
766 unsigned TotalSize = sizeof(int8_t) + // LPStart format
767 sizeof(int8_t) + // TType format
768 (HaveTTData ?
769 MCAsmInfo::getULEB128Size(TyOffset) : 0) + // TType base offset
770 TyOffset;
771 unsigned SizeAlign = (4 - TotalSize) & 3;
772
773 for (unsigned i = 0; i != SizeAlign; ++i) {
774 Asm->EmitInt8(0);
775 Asm->EOL("Padding");
776 }
777
Bill Wendlingfe220282009-09-10 02:07:37 +0000778 EmitLabel("exception", SubprogramCount);
779
780 if (IsSJLJ) {
781 SmallString<16> LSDAName;
782 raw_svector_ostream(LSDAName) << MAI->getPrivateGlobalPrefix() <<
783 "_LSDA_" << Asm->getFunctionNumber();
784 O << LSDAName.str() << ":\n";
785 }
786
787 // Emit the header.
788 Asm->EmitInt8(dwarf::DW_EH_PE_omit);
789 Asm->EOL("@LPStart format", dwarf::DW_EH_PE_omit);
790
Bill Wendlingfe220282009-09-10 02:07:37 +0000791 Asm->EmitInt8(TTypeFormat);
792 Asm->EOL("@TType format", TTypeFormat);
793
794 if (HaveTTData) {
Bill Wendlinga2f64492009-09-10 06:27:16 +0000795 Asm->EmitULEB128Bytes(TyOffset);
Bill Wendlinga583c552009-08-20 22:02:24 +0000796 Asm->EOL("@TType base offset");
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000797 }
Bill Wendlingb0d9c3e2009-07-28 22:23:45 +0000798
Bill Wendling28275fd2009-09-10 06:50:01 +0000799 // SjLj Exception handling
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000800 if (IsSJLJ) {
Bill Wendling639217c2009-08-27 03:32:50 +0000801 Asm->EmitInt8(dwarf::DW_EH_PE_udata4);
Bill Wendling0734d352009-09-09 21:26:19 +0000802 Asm->EOL("Call site format", dwarf::DW_EH_PE_udata4);
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000803 Asm->EmitULEB128Bytes(SizeSites);
Bill Wendlinga583c552009-08-20 22:02:24 +0000804 Asm->EOL("Call site table length");
Bill Wendlingeb907212009-05-15 01:12:28 +0000805
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000806 // Emit the landing pad site information.
Jim Grosbach8b818d72009-08-17 16:41:22 +0000807 unsigned idx = 0;
808 for (SmallVectorImpl<CallSiteEntry>::const_iterator
809 I = CallSites.begin(), E = CallSites.end(); I != E; ++I, ++idx) {
810 const CallSiteEntry &S = *I;
Bill Wendlinga583c552009-08-20 22:02:24 +0000811
812 // Offset of the landing pad, counted in 16-byte bundles relative to the
813 // @LPStart address.
Jim Grosbach8b818d72009-08-17 16:41:22 +0000814 Asm->EmitULEB128Bytes(idx);
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000815 Asm->EOL("Landing pad");
Bill Wendlinga583c552009-08-20 22:02:24 +0000816
817 // Offset of the first associated action record, relative to the start of
818 // the action table. This value is biased by 1 (1 indicates the start of
819 // the action table), and 0 indicates that there are no actions.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000820 Asm->EmitULEB128Bytes(S.Action);
821 Asm->EOL("Action");
Bill Wendlingeb907212009-05-15 01:12:28 +0000822 }
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000823 } else {
824 // DWARF Exception handling
Chris Lattner33adcfb2009-08-22 21:43:10 +0000825 assert(MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf);
Bill Wendlingeb907212009-05-15 01:12:28 +0000826
Bill Wendlinga583c552009-08-20 22:02:24 +0000827 // 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 Wendling28275fd2009-09-10 06:50:01 +0000843 // supposed to throw.
Bill Wendlinga583c552009-08-20 22:02:24 +0000844
845 // Emit the landing pad call site table.
Bill Wendling639217c2009-08-27 03:32:50 +0000846 Asm->EmitInt8(dwarf::DW_EH_PE_udata4);
Bill Wendling0734d352009-09-09 21:26:19 +0000847 Asm->EOL("Call site format", dwarf::DW_EH_PE_udata4);
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000848 Asm->EmitULEB128Bytes(SizeSites);
Bill Wendlinga583c552009-08-20 22:02:24 +0000849 Asm->EOL("Call site table size");
Bill Wendlingeb907212009-05-15 01:12:28 +0000850
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000851 for (SmallVectorImpl<CallSiteEntry>::const_iterator
852 I = CallSites.begin(), E = CallSites.end(); I != E; ++I) {
853 const CallSiteEntry &S = *I;
854 const char *BeginTag;
855 unsigned BeginNumber;
Bill Wendlingeb907212009-05-15 01:12:28 +0000856
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000857 if (!S.BeginLabel) {
858 BeginTag = "eh_func_begin";
859 BeginNumber = SubprogramCount;
860 } else {
861 BeginTag = "label";
862 BeginNumber = S.BeginLabel;
863 }
Bill Wendlingeb907212009-05-15 01:12:28 +0000864
Bill Wendlinga583c552009-08-20 22:02:24 +0000865 // Offset of the call site relative to the previous call site, counted in
866 // number of 16-byte bundles. The first call site is counted relative to
867 // the start of the procedure fragment.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000868 EmitSectionOffset(BeginTag, "eh_func_begin", BeginNumber, SubprogramCount,
Bill Wendlingeb907212009-05-15 01:12:28 +0000869 true, true);
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000870 Asm->EOL("Region start");
Bill Wendlingeb907212009-05-15 01:12:28 +0000871
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000872 if (!S.EndLabel)
873 EmitDifference("eh_func_end", SubprogramCount, BeginTag, BeginNumber,
874 true);
875 else
876 EmitDifference("label", S.EndLabel, BeginTag, BeginNumber, true);
Bill Wendlingeb907212009-05-15 01:12:28 +0000877
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000878 Asm->EOL("Region length");
879
Bill Wendlinga583c552009-08-20 22:02:24 +0000880 // Offset of the landing pad, counted in 16-byte bundles relative to the
881 // @LPStart address.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000882 if (!S.PadLabel)
883 Asm->EmitInt32(0);
884 else
885 EmitSectionOffset("label", "eh_func_begin", S.PadLabel, SubprogramCount,
886 true, true);
887
888 Asm->EOL("Landing pad");
889
Bill Wendlinga583c552009-08-20 22:02:24 +0000890 // Offset of the first associated action record, relative to the start of
891 // the action table. This value is biased by 1 (1 indicates the start of
892 // the action table), and 0 indicates that there are no actions.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000893 Asm->EmitULEB128Bytes(S.Action);
894 Asm->EOL("Action");
895 }
Bill Wendlingeb907212009-05-15 01:12:28 +0000896 }
897
Bill Wendlinga583c552009-08-20 22:02:24 +0000898 // Emit the Action Table.
Bill Wendling5cff4872009-07-28 23:44:43 +0000899 for (SmallVectorImpl<ActionEntry>::const_iterator
900 I = Actions.begin(), E = Actions.end(); I != E; ++I) {
901 const ActionEntry &Action = *I;
Bill Wendlinga583c552009-08-20 22:02:24 +0000902
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.
907
Bill Wendlingeb907212009-05-15 01:12:28 +0000908 Asm->EmitSLEB128Bytes(Action.ValueForTypeID);
909 Asm->EOL("TypeInfo index");
Bill Wendlinga583c552009-08-20 22:02:24 +0000910
911 // Action Record
912 //
913 // Self-relative signed displacement in bytes of the next action record,
914 // or 0 if there is no next action record.
915
Bill Wendlingeb907212009-05-15 01:12:28 +0000916 Asm->EmitSLEB128Bytes(Action.NextAction);
917 Asm->EOL("Next action");
918 }
919
Bill Wendling48dc29e2009-10-22 20:48:59 +0000920 // Emit the Catch TypeInfos.
Bill Wendlingec044582009-11-18 23:18:46 +0000921 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
922 unsigned Index = 1;
Bill Wendling296ab7e2009-09-18 21:14:36 +0000923
Bill Wendlingec044582009-11-18 23:18:46 +0000924 for (std::vector<GlobalVariable *>::const_reverse_iterator
Bill Wendling01c69372009-11-19 00:09:14 +0000925 I = TypeInfos.rbegin(), E = TypeInfos.rend(); I != E; ++I) {
Bill Wendlingec044582009-11-18 23:18:46 +0000926 const GlobalVariable *TI = *I;
927
928 if (TI) {
Bill Wendling01c69372009-11-19 00:09:14 +0000929 if (!LSDASection->getKind().isReadOnlyWithRel() &&
Bill Wendlingec044582009-11-18 23:18:46 +0000930 (TTypeFormat == dwarf::DW_EH_PE_absptr ||
931 TI->getLinkage() == GlobalValue::InternalLinkage)) {
932 // Print out the unadorned name of the type info.
933 PrintRelDirective();
934 O << Asm->Mang->getMangledName(TI);
935 } else {
936 bool IsTypeInfoIndirect = false, IsTypeInfoPCRel = false;
937 const MCExpr *TypeInfoRef =
938 TLOF.getSymbolForDwarfGlobalReference(TI, Asm->Mang, Asm->MMI,
939 IsTypeInfoIndirect,
940 IsTypeInfoPCRel);
941
942 if (!IsTypeInfoPCRel)
Bill Wendling01c69372009-11-19 00:09:14 +0000943 TypeInfoRef = CreateLabelDiff(TypeInfoRef, "typeinforef_addr",
944 Index++);
Bill Wendlingec044582009-11-18 23:18:46 +0000945
946 O << MAI->getData32bitsDirective();
947 TypeInfoRef->print(O, MAI);
948 }
Bill Wendlingeb907212009-05-15 01:12:28 +0000949 } else {
Bill Wendlingec044582009-11-18 23:18:46 +0000950 PrintRelDirective();
Bill Wendling049e98d2009-08-31 18:26:48 +0000951 O << "0x0";
Bill Wendlingeb907212009-05-15 01:12:28 +0000952 }
953
954 Asm->EOL("TypeInfo");
955 }
956
Bill Wendling48dc29e2009-10-22 20:48:59 +0000957 // Emit the Exception Specifications.
Bill Wendling5cff4872009-07-28 23:44:43 +0000958 for (std::vector<unsigned>::const_iterator
959 I = FilterIds.begin(), E = FilterIds.end(); I < E; ++I) {
960 unsigned TypeID = *I;
Bill Wendlingeb907212009-05-15 01:12:28 +0000961 Asm->EmitULEB128Bytes(TypeID);
Bill Wendling48dc29e2009-10-22 20:48:59 +0000962 if (TypeID != 0)
963 Asm->EOL("Exception specification");
964 else
965 Asm->EOL();
Bill Wendlingeb907212009-05-15 01:12:28 +0000966 }
967
968 Asm->EmitAlignment(2, 0, 0, false);
969}
970
Bill Wendlingeb907212009-05-15 01:12:28 +0000971/// EndModule - Emit all exception information that should come after the
972/// content.
973void DwarfException::EndModule() {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000974 if (MAI->getExceptionHandlingType() != ExceptionHandling::Dwarf)
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000975 return;
Bill Wendlingb4049fe2009-09-09 21:06:24 +0000976
Bill Wendling52783c62009-09-09 23:56:55 +0000977 if (!shouldEmitMovesModule && !shouldEmitTableModule)
978 return;
979
Bill Wendlingeb907212009-05-15 01:12:28 +0000980 if (TimePassesIsEnabled)
981 ExceptionTimer->startTimer();
982
Bill Wendling52783c62009-09-09 23:56:55 +0000983 const std::vector<Function *> Personalities = MMI->getPersonalities();
Bill Wendlingb4049fe2009-09-09 21:06:24 +0000984
Bill Wendling28275fd2009-09-10 06:50:01 +0000985 for (unsigned I = 0, E = Personalities.size(); I < E; ++I)
986 EmitCIE(Personalities[I], I);
Bill Wendlingeb907212009-05-15 01:12:28 +0000987
Bill Wendling52783c62009-09-09 23:56:55 +0000988 for (std::vector<FunctionEHFrameInfo>::iterator
989 I = EHFrames.begin(), E = EHFrames.end(); I != E; ++I)
990 EmitFDE(*I);
Bill Wendlingeb907212009-05-15 01:12:28 +0000991
992 if (TimePassesIsEnabled)
993 ExceptionTimer->stopTimer();
994}
995
Bill Wendling28275fd2009-09-10 06:50:01 +0000996/// BeginFunction - Gather pre-function exception information. Assumes it's
997/// being emitted immediately after the function entry point.
Bill Wendlingeb907212009-05-15 01:12:28 +0000998void DwarfException::BeginFunction(MachineFunction *MF) {
Bill Wendling73c5a612009-09-10 18:28:06 +0000999 if (!MMI || !MAI->doesSupportExceptionHandling()) return;
1000
Bill Wendlingeb907212009-05-15 01:12:28 +00001001 if (TimePassesIsEnabled)
1002 ExceptionTimer->startTimer();
1003
1004 this->MF = MF;
1005 shouldEmitTable = shouldEmitMoves = false;
1006
Bill Wendling73c5a612009-09-10 18:28:06 +00001007 // Map all labels and get rid of any dead landing pads.
1008 MMI->TidyLandingPads();
Bill Wendlingeb907212009-05-15 01:12:28 +00001009
Bill Wendling73c5a612009-09-10 18:28:06 +00001010 // If any landing pads survive, we need an EH table.
1011 if (!MMI->getLandingPads().empty())
1012 shouldEmitTable = true;
Bill Wendlingeb907212009-05-15 01:12:28 +00001013
Bill Wendling73c5a612009-09-10 18:28:06 +00001014 // See if we need frame move info.
1015 if (!MF->getFunction()->doesNotThrow() || UnwindTablesMandatory)
1016 shouldEmitMoves = true;
Bill Wendlingeb907212009-05-15 01:12:28 +00001017
Bill Wendling73c5a612009-09-10 18:28:06 +00001018 if (shouldEmitMoves || shouldEmitTable)
1019 // Assumes in correct section after the entry point.
1020 EmitLabel("eh_func_begin", ++SubprogramCount);
Bill Wendlingeb907212009-05-15 01:12:28 +00001021
1022 shouldEmitTableModule |= shouldEmitTable;
1023 shouldEmitMovesModule |= shouldEmitMoves;
1024
1025 if (TimePassesIsEnabled)
1026 ExceptionTimer->stopTimer();
1027}
1028
1029/// EndFunction - Gather and emit post-function exception information.
1030///
1031void DwarfException::EndFunction() {
Bill Wendling7b09a6c2009-09-09 21:08:12 +00001032 if (!shouldEmitMoves && !shouldEmitTable) return;
1033
Eric Christopherdbfcdb92009-08-28 22:33:43 +00001034 if (TimePassesIsEnabled)
Bill Wendlingeb907212009-05-15 01:12:28 +00001035 ExceptionTimer->startTimer();
1036
Bill Wendling7b09a6c2009-09-09 21:08:12 +00001037 EmitLabel("eh_func_end", SubprogramCount);
1038 EmitExceptionTable();
Bill Wendlingeb907212009-05-15 01:12:28 +00001039
Chris Lattner25d812b2009-09-16 00:35:39 +00001040 std::string FunctionEHName =
1041 Asm->Mang->getMangledName(MF->getFunction(), ".eh",
1042 Asm->MAI->is_EHSymbolPrivate());
1043
Bill Wendling7b09a6c2009-09-09 21:08:12 +00001044 // Save EH frame information
Chris Lattner25d812b2009-09-16 00:35:39 +00001045 EHFrames.push_back(FunctionEHFrameInfo(FunctionEHName, SubprogramCount,
Bill Wendling7b09a6c2009-09-09 21:08:12 +00001046 MMI->getPersonalityIndex(),
1047 MF->getFrameInfo()->hasCalls(),
1048 !MMI->getLandingPads().empty(),
1049 MMI->getFrameMoves(),
1050 MF->getFunction()));
Bill Wendlingeb907212009-05-15 01:12:28 +00001051
Bill Wendling52783c62009-09-09 23:56:55 +00001052 // Record if this personality index uses a landing pad.
1053 UsesLSDA[MMI->getPersonalityIndex()] |= !MMI->getLandingPads().empty();
1054
Eric Christopherdbfcdb92009-08-28 22:33:43 +00001055 if (TimePassesIsEnabled)
Bill Wendlingeb907212009-05-15 01:12:28 +00001056 ExceptionTimer->stopTimer();
1057}