blob: 45d8676b4d2f2cb6e092bdc0414b5b30f233f6da [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 Wendling639217c2009-08-27 03:32:50 +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"
Bill Wendling43e484f2009-09-10 01:12:47 +000020#include "llvm/MC/MCSection.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000021#include "llvm/MC/MCStreamer.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000022#include "llvm/MC/MCAsmInfo.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000023#include "llvm/Target/TargetData.h"
24#include "llvm/Target/TargetFrameInfo.h"
Chris Lattnerd5bbb072009-08-02 01:34:32 +000025#include "llvm/Target/TargetLoweringObjectFile.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000026#include "llvm/Target/TargetOptions.h"
Chris Lattnerd5bbb072009-08-02 01:34:32 +000027#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000028#include "llvm/Support/Dwarf.h"
Jim Grosbach3fb2b1e2009-09-01 01:57:56 +000029#include "llvm/Support/Mangler.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000030#include "llvm/Support/Timer.h"
31#include "llvm/Support/raw_ostream.h"
Jim Grosbachc40d9f92009-09-01 18:49:12 +000032#include "llvm/ADT/SmallString.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000033#include "llvm/ADT/StringExtras.h"
34using namespace llvm;
35
36static TimerGroup &getDwarfTimerGroup() {
37 static TimerGroup DwarfTimerGroup("Dwarf Exception");
38 return DwarfTimerGroup;
39}
40
Bill Wendlingbc0d23a2009-05-15 01:18:50 +000041DwarfException::DwarfException(raw_ostream &OS, AsmPrinter *A,
Chris Lattneraf76e592009-08-22 20:48:53 +000042 const MCAsmInfo *T)
Bill Wendlingbc0d23a2009-05-15 01:18:50 +000043 : Dwarf(OS, A, T, "eh"), shouldEmitTable(false), shouldEmitMoves(false),
44 shouldEmitTableModule(false), shouldEmitMovesModule(false),
45 ExceptionTimer(0) {
Eric Christopherdbfcdb92009-08-28 22:33:43 +000046 if (TimePassesIsEnabled)
Bill Wendlingbc0d23a2009-05-15 01:18:50 +000047 ExceptionTimer = new Timer("Dwarf Exception Writer",
48 getDwarfTimerGroup());
49}
50
51DwarfException::~DwarfException() {
52 delete ExceptionTimer;
53}
54
Bill Wendlingbb3e2992009-09-10 00:04:48 +000055/// SizeOfEncodedValue - Return the size of the encoding in bytes.
Bill Wendling52783c62009-09-09 23:56:55 +000056unsigned DwarfException::SizeOfEncodedValue(unsigned Encoding) {
57 if (Encoding == dwarf::DW_EH_PE_omit)
58 return 0;
59
60 switch (Encoding & 0x07) {
61 case dwarf::DW_EH_PE_absptr:
62 return TD->getPointerSize();
63 case dwarf::DW_EH_PE_udata2:
64 return 2;
65 case dwarf::DW_EH_PE_udata4:
66 return 4;
67 case dwarf::DW_EH_PE_udata8:
68 return 8;
69 }
70
71 llvm_unreachable("Invalid encoded value.");
72 return 0;
73}
74
Bill Wendling7ccda0f2009-08-25 08:08:33 +000075/// EmitCIE - Emit a Common Information Entry (CIE). This holds information that
76/// is shared among many Frame Description Entries. There is at least one CIE
77/// in every non-empty .debug_frame section.
78void DwarfException::EmitCIE(const Function *Personality, unsigned Index) {
Bill Wendlingeb907212009-05-15 01:12:28 +000079 // Size and sign of stack growth.
80 int stackGrowth =
81 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
82 TargetFrameInfo::StackGrowsUp ?
83 TD->getPointerSize() : -TD->getPointerSize();
84
85 // Begin eh frame section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +000086 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getEHFrameSection());
Bill Wendlingeb907212009-05-15 01:12:28 +000087
Chris Lattner33adcfb2009-08-22 21:43:10 +000088 if (MAI->is_EHSymbolPrivate())
89 O << MAI->getPrivateGlobalPrefix();
Bill Wendlingeb907212009-05-15 01:12:28 +000090
91 O << "EH_frame" << Index << ":\n";
92 EmitLabel("section_eh_frame", Index);
93
94 // Define base labels.
95 EmitLabel("eh_frame_common", Index);
96
97 // Define the eh frame length.
98 EmitDifference("eh_frame_common_end", Index,
99 "eh_frame_common_begin", Index, true);
100 Asm->EOL("Length of Common Information Entry");
101
102 // EH frame header.
103 EmitLabel("eh_frame_common_begin", Index);
104 Asm->EmitInt32((int)0);
105 Asm->EOL("CIE Identifier Tag");
106 Asm->EmitInt8(dwarf::DW_CIE_VERSION);
107 Asm->EOL("CIE Version");
108
109 // The personality presence indicates that language specific information will
110 // show up in the eh frame.
Bill Wendling52783c62009-09-09 23:56:55 +0000111
112 // FIXME: Don't hardcode these encodings.
113 unsigned PerEncoding = dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata4;
114 if (Personality && MAI->getNeedsIndirectEncoding())
115 PerEncoding |= dwarf::DW_EH_PE_indirect;
116 unsigned LSDAEncoding = dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata4;
117 unsigned FDEEncoding = dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata4;
118
119 char Augmentation[5] = { 0 };
120 unsigned AugmentationSize = 0;
121 char *APtr = Augmentation + 1;
122
123 if (Personality) {
124 // There is a personality function.
125 *APtr++ = 'P';
126 AugmentationSize += 1 + SizeOfEncodedValue(PerEncoding);
127 }
128
129 if (UsesLSDA[Index]) {
130 // An LSDA pointer is in the FDE augmentation.
131 *APtr++ = 'L';
132 ++AugmentationSize;
133 }
134
135 if (FDEEncoding != dwarf::DW_EH_PE_absptr) {
136 // A non-default pointer encoding for the FDE.
137 *APtr++ = 'R';
138 ++AugmentationSize;
139 }
140
141 if (APtr != Augmentation + 1)
142 Augmentation[0] = 'z';
143
144 Asm->EmitString(Augmentation);
Bill Wendlingeb907212009-05-15 01:12:28 +0000145 Asm->EOL("CIE Augmentation");
146
147 // Round out reader.
148 Asm->EmitULEB128Bytes(1);
149 Asm->EOL("CIE Code Alignment Factor");
150 Asm->EmitSLEB128Bytes(stackGrowth);
151 Asm->EOL("CIE Data Alignment Factor");
152 Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), true));
153 Asm->EOL("CIE Return Address Column");
154
Bill Wendling52783c62009-09-09 23:56:55 +0000155 Asm->EmitULEB128Bytes(AugmentationSize);
156 Asm->EOL("Augmentation Size");
157
158 Asm->EmitInt8(PerEncoding);
159 Asm->EOL("Personality", PerEncoding);
160
Bill Wendling4bda11f2009-08-25 02:32:05 +0000161 // If there is a personality, we need to indicate the function's location.
Bill Wendlingeb907212009-05-15 01:12:28 +0000162 if (Personality) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000163 PrintRelDirective(true);
Chris Lattner33adcfb2009-08-22 21:43:10 +0000164 O << MAI->getPersonalityPrefix();
Bill Wendlingeb907212009-05-15 01:12:28 +0000165 Asm->EmitExternalGlobal((const GlobalVariable *)(Personality));
Chris Lattner33adcfb2009-08-22 21:43:10 +0000166 O << MAI->getPersonalitySuffix();
167 if (strcmp(MAI->getPersonalitySuffix(), "+4@GOTPCREL"))
168 O << "-" << MAI->getPCSymbol();
Bill Wendlingeb907212009-05-15 01:12:28 +0000169 Asm->EOL("Personality");
170
Bill Wendling52783c62009-09-09 23:56:55 +0000171 Asm->EmitInt8(LSDAEncoding);
172 Asm->EOL("LSDA Encoding", LSDAEncoding);
Bill Wendlingeb907212009-05-15 01:12:28 +0000173
Bill Wendling52783c62009-09-09 23:56:55 +0000174 Asm->EmitInt8(FDEEncoding);
175 Asm->EOL("FDE Encoding", FDEEncoding);
Bill Wendlingeb907212009-05-15 01:12:28 +0000176 }
177
178 // Indicate locations of general callee saved registers in frame.
179 std::vector<MachineMove> Moves;
180 RI->getInitialFrameState(Moves);
181 EmitFrameMoves(NULL, 0, Moves, true);
182
183 // On Darwin the linker honors the alignment of eh_frame, which means it must
184 // be 8-byte on 64-bit targets to match what gcc does. Otherwise you get
185 // holes which confuse readers of eh_frame.
186 Asm->EmitAlignment(TD->getPointerSize() == sizeof(int32_t) ? 2 : 3,
187 0, 0, false);
188 EmitLabel("eh_frame_common_end", Index);
189
190 Asm->EOL();
191}
192
Bill Wendling7ccda0f2009-08-25 08:08:33 +0000193/// EmitFDE - Emit the Frame Description Entry (FDE) for the function.
194void DwarfException::EmitFDE(const FunctionEHFrameInfo &EHFrameInfo) {
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000195 assert(!EHFrameInfo.function->hasAvailableExternallyLinkage() &&
Bill Wendlingeb907212009-05-15 01:12:28 +0000196 "Should not emit 'available externally' functions at all");
197
Chris Lattner3e0f60b2009-07-17 21:00:50 +0000198 const Function *TheFunc = EHFrameInfo.function;
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000199
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000200 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getEHFrameSection());
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000201
Bill Wendlingeb907212009-05-15 01:12:28 +0000202 // Externally visible entry into the functions eh frame info. If the
203 // corresponding function is static, this should not be externally visible.
Chris Lattner3e0f60b2009-07-17 21:00:50 +0000204 if (!TheFunc->hasLocalLinkage())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000205 if (const char *GlobalEHDirective = MAI->getGlobalEHDirective())
Bill Wendlingeb907212009-05-15 01:12:28 +0000206 O << GlobalEHDirective << EHFrameInfo.FnName << "\n";
Bill Wendlingeb907212009-05-15 01:12:28 +0000207
208 // If corresponding function is weak definition, this should be too.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000209 if (TheFunc->isWeakForLinker() && MAI->getWeakDefDirective())
210 O << MAI->getWeakDefDirective() << EHFrameInfo.FnName << "\n";
Bill Wendlingeb907212009-05-15 01:12:28 +0000211
212 // If there are no calls then you can't unwind. This may mean we can omit the
213 // EH Frame, but some environments do not handle weak absolute symbols. If
214 // UnwindTablesMandatory is set we cannot do this optimization; the unwind
215 // info is to be available for non-EH uses.
Chris Lattner3e0f60b2009-07-17 21:00:50 +0000216 if (!EHFrameInfo.hasCalls && !UnwindTablesMandatory &&
217 (!TheFunc->isWeakForLinker() ||
Chris Lattner33adcfb2009-08-22 21:43:10 +0000218 !MAI->getWeakDefDirective() ||
219 MAI->getSupportsWeakOmittedEHFrame())) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000220 O << EHFrameInfo.FnName << " = 0\n";
221 // This name has no connection to the function, so it might get
222 // dead-stripped when the function is not, erroneously. Prohibit
223 // dead-stripping unconditionally.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000224 if (const char *UsedDirective = MAI->getUsedDirective())
Bill Wendlingeb907212009-05-15 01:12:28 +0000225 O << UsedDirective << EHFrameInfo.FnName << "\n\n";
226 } else {
227 O << EHFrameInfo.FnName << ":\n";
228
229 // EH frame header.
230 EmitDifference("eh_frame_end", EHFrameInfo.Number,
231 "eh_frame_begin", EHFrameInfo.Number, true);
232 Asm->EOL("Length of Frame Information Entry");
233
234 EmitLabel("eh_frame_begin", EHFrameInfo.Number);
235
Chris Lattnera4ff5e42009-07-17 20:53:51 +0000236 EmitSectionOffset("eh_frame_begin", "eh_frame_common",
237 EHFrameInfo.Number, EHFrameInfo.PersonalityIndex,
238 true, true, false);
Bill Wendlingeb907212009-05-15 01:12:28 +0000239
240 Asm->EOL("FDE CIE offset");
241
Duncan Sandsc69d74a2009-08-31 16:45:16 +0000242 EmitReference("eh_func_begin", EHFrameInfo.Number, true, true);
Bill Wendlingeb907212009-05-15 01:12:28 +0000243 Asm->EOL("FDE initial location");
244 EmitDifference("eh_func_end", EHFrameInfo.Number,
Duncan Sandsc69d74a2009-08-31 16:45:16 +0000245 "eh_func_begin", EHFrameInfo.Number, true);
Bill Wendlingeb907212009-05-15 01:12:28 +0000246 Asm->EOL("FDE address range");
247
248 // If there is a personality and landing pads then point to the language
249 // specific data area in the exception table.
Eric Christopherd44fff72009-08-26 21:30:49 +0000250 if (MMI->getPersonalities()[0] != NULL) {
Duncan Sandsc69d74a2009-08-31 16:45:16 +0000251 bool is4Byte = TD->getPointerSize() == sizeof(int32_t);
252
Eric Christopher6fefceb2009-08-29 01:12:46 +0000253 Asm->EmitULEB128Bytes(is4Byte ? 4 : 8);
Bill Wendlingeb907212009-05-15 01:12:28 +0000254 Asm->EOL("Augmentation size");
255
Duncan Sandsc69d74a2009-08-31 16:45:16 +0000256 if (EHFrameInfo.hasLandingPads)
Eric Christopher6fefceb2009-08-29 01:12:46 +0000257 EmitReference("exception", EHFrameInfo.Number, true, false);
Duncan Sandsc69d74a2009-08-31 16:45:16 +0000258 else {
Bill Wendling52783c62009-09-09 23:56:55 +0000259 if (is4Byte)
260 Asm->EmitInt32((int)0);
261 else
262 Asm->EmitInt64((int)0);
Eric Christopher6fefceb2009-08-29 01:12:46 +0000263 }
Bill Wendlingeb907212009-05-15 01:12:28 +0000264 Asm->EOL("Language Specific Data Area");
265 } else {
266 Asm->EmitULEB128Bytes(0);
267 Asm->EOL("Augmentation size");
268 }
269
270 // Indicate locations of function specific callee saved registers in frame.
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000271 EmitFrameMoves("eh_func_begin", EHFrameInfo.Number, EHFrameInfo.Moves,
Bill Wendlingeb907212009-05-15 01:12:28 +0000272 true);
273
274 // On Darwin the linker honors the alignment of eh_frame, which means it
275 // must be 8-byte on 64-bit targets to match what gcc does. Otherwise you
276 // get holes which confuse readers of eh_frame.
277 Asm->EmitAlignment(TD->getPointerSize() == sizeof(int32_t) ? 2 : 3,
278 0, 0, false);
279 EmitLabel("eh_frame_end", EHFrameInfo.Number);
280
281 // If the function is marked used, this table should be also. We cannot
282 // make the mark unconditional in this case, since retaining the table also
283 // retains the function in this case, and there is code around that depends
284 // on unused functions (calling undefined externals) being dead-stripped to
285 // link correctly. Yes, there really is.
Chris Lattner401e10c2009-07-20 06:14:25 +0000286 if (MMI->isUsedFunction(EHFrameInfo.function))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000287 if (const char *UsedDirective = MAI->getUsedDirective())
Bill Wendlingeb907212009-05-15 01:12:28 +0000288 O << UsedDirective << EHFrameInfo.FnName << "\n\n";
289 }
Bill Wendling4bda11f2009-08-25 02:32:05 +0000290
291 Asm->EOL();
Bill Wendlingeb907212009-05-15 01:12:28 +0000292}
293
Bill Wendlingeb907212009-05-15 01:12:28 +0000294/// SharedTypeIds - How many leading type ids two landing pads have in common.
295unsigned DwarfException::SharedTypeIds(const LandingPadInfo *L,
296 const LandingPadInfo *R) {
297 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
298 unsigned LSize = LIds.size(), RSize = RIds.size();
299 unsigned MinSize = LSize < RSize ? LSize : RSize;
300 unsigned Count = 0;
301
302 for (; Count != MinSize; ++Count)
303 if (LIds[Count] != RIds[Count])
304 return Count;
305
306 return Count;
307}
308
309/// PadLT - Order landing pads lexicographically by type id.
310bool DwarfException::PadLT(const LandingPadInfo *L, const LandingPadInfo *R) {
311 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
312 unsigned LSize = LIds.size(), RSize = RIds.size();
313 unsigned MinSize = LSize < RSize ? LSize : RSize;
314
315 for (unsigned i = 0; i != MinSize; ++i)
316 if (LIds[i] != RIds[i])
317 return LIds[i] < RIds[i];
318
319 return LSize < RSize;
320}
321
Bill Wendlingd4609622009-07-28 23:23:00 +0000322/// ComputeActionsTable - Compute the actions table and gather the first action
323/// index for each landing pad site.
Bill Wendlingade025c2009-07-29 00:31:35 +0000324unsigned DwarfException::
325ComputeActionsTable(const SmallVectorImpl<const LandingPadInfo*> &LandingPads,
326 SmallVectorImpl<ActionEntry> &Actions,
327 SmallVectorImpl<unsigned> &FirstActions) {
Bill Wendlinga583c552009-08-20 22:02:24 +0000328
329 // The action table follows the call-site table in the LSDA. The individual
330 // records are of two types:
331 //
332 // * Catch clause
333 // * Exception specification
334 //
335 // The two record kinds have the same format, with only small differences.
336 // They are distinguished by the "switch value" field: Catch clauses
337 // (TypeInfos) have strictly positive switch values, and exception
338 // specifications (FilterIds) have strictly negative switch values. Value 0
339 // indicates a catch-all clause.
340 //
Bill Wendling5e953dd2009-07-28 23:22:13 +0000341 // Negative type IDs index into FilterIds. Positive type IDs index into
342 // TypeInfos. The value written for a positive type ID is just the type ID
343 // itself. For a negative type ID, however, the value written is the
Bill Wendlingeb907212009-05-15 01:12:28 +0000344 // (negative) byte offset of the corresponding FilterIds entry. The byte
Bill Wendling5e953dd2009-07-28 23:22:13 +0000345 // offset is usually equal to the type ID (because the FilterIds entries are
346 // written using a variable width encoding, which outputs one byte per entry
347 // as long as the value written is not too large) but can differ. This kind
348 // of complication does not occur for positive type IDs because type infos are
Bill Wendlingeb907212009-05-15 01:12:28 +0000349 // output using a fixed width encoding. FilterOffsets[i] holds the byte
350 // offset corresponding to FilterIds[i].
Bill Wendling409914b2009-07-29 21:19:44 +0000351
352 const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
Bill Wendlingeb907212009-05-15 01:12:28 +0000353 SmallVector<int, 16> FilterOffsets;
354 FilterOffsets.reserve(FilterIds.size());
355 int Offset = -1;
Bill Wendling409914b2009-07-29 21:19:44 +0000356
357 for (std::vector<unsigned>::const_iterator
358 I = FilterIds.begin(), E = FilterIds.end(); I != E; ++I) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000359 FilterOffsets.push_back(Offset);
Chris Lattneraf76e592009-08-22 20:48:53 +0000360 Offset -= MCAsmInfo::getULEB128Size(*I);
Bill Wendlingeb907212009-05-15 01:12:28 +0000361 }
362
Bill Wendlingeb907212009-05-15 01:12:28 +0000363 FirstActions.reserve(LandingPads.size());
364
365 int FirstAction = 0;
366 unsigned SizeActions = 0;
Bill Wendling5e953dd2009-07-28 23:22:13 +0000367 const LandingPadInfo *PrevLPI = 0;
Bill Wendling409914b2009-07-29 21:19:44 +0000368
Bill Wendling5cff4872009-07-28 23:44:43 +0000369 for (SmallVectorImpl<const LandingPadInfo *>::const_iterator
Bill Wendling5e953dd2009-07-28 23:22:13 +0000370 I = LandingPads.begin(), E = LandingPads.end(); I != E; ++I) {
371 const LandingPadInfo *LPI = *I;
372 const std::vector<int> &TypeIds = LPI->TypeIds;
373 const unsigned NumShared = PrevLPI ? SharedTypeIds(LPI, PrevLPI) : 0;
Bill Wendlingeb907212009-05-15 01:12:28 +0000374 unsigned SizeSiteActions = 0;
375
376 if (NumShared < TypeIds.size()) {
377 unsigned SizeAction = 0;
378 ActionEntry *PrevAction = 0;
379
380 if (NumShared) {
Bill Wendling5e953dd2009-07-28 23:22:13 +0000381 const unsigned SizePrevIds = PrevLPI->TypeIds.size();
Bill Wendlingeb907212009-05-15 01:12:28 +0000382 assert(Actions.size());
383 PrevAction = &Actions.back();
Chris Lattneraf76e592009-08-22 20:48:53 +0000384 SizeAction = MCAsmInfo::getSLEB128Size(PrevAction->NextAction) +
385 MCAsmInfo::getSLEB128Size(PrevAction->ValueForTypeID);
Bill Wendlingeb907212009-05-15 01:12:28 +0000386
387 for (unsigned j = NumShared; j != SizePrevIds; ++j) {
388 SizeAction -=
Chris Lattneraf76e592009-08-22 20:48:53 +0000389 MCAsmInfo::getSLEB128Size(PrevAction->ValueForTypeID);
Bill Wendlingeb907212009-05-15 01:12:28 +0000390 SizeAction += -PrevAction->NextAction;
391 PrevAction = PrevAction->Previous;
392 }
393 }
394
395 // Compute the actions.
Bill Wendling5e953dd2009-07-28 23:22:13 +0000396 for (unsigned J = NumShared, M = TypeIds.size(); J != M; ++J) {
397 int TypeID = TypeIds[J];
398 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
Bill Wendlingeb907212009-05-15 01:12:28 +0000399 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
Chris Lattneraf76e592009-08-22 20:48:53 +0000400 unsigned SizeTypeID = MCAsmInfo::getSLEB128Size(ValueForTypeID);
Bill Wendlingeb907212009-05-15 01:12:28 +0000401
402 int NextAction = SizeAction ? -(SizeAction + SizeTypeID) : 0;
Chris Lattneraf76e592009-08-22 20:48:53 +0000403 SizeAction = SizeTypeID + MCAsmInfo::getSLEB128Size(NextAction);
Bill Wendlingeb907212009-05-15 01:12:28 +0000404 SizeSiteActions += SizeAction;
405
Bill Wendlinga583c552009-08-20 22:02:24 +0000406 ActionEntry Action = { ValueForTypeID, NextAction, PrevAction };
Bill Wendlingeb907212009-05-15 01:12:28 +0000407 Actions.push_back(Action);
Bill Wendlingeb907212009-05-15 01:12:28 +0000408 PrevAction = &Actions.back();
409 }
410
411 // Record the first action of the landing pad site.
412 FirstAction = SizeActions + SizeSiteActions - SizeAction + 1;
413 } // else identical - re-use previous FirstAction
414
Bill Wendlinga583c552009-08-20 22:02:24 +0000415 // Information used when created the call-site table. The action record
416 // field of the call site record is the offset of the first associated
417 // action record, relative to the start of the actions table. This value is
418 // biased by 1 (1 in dicating the start of the actions table), and 0
419 // indicates that there are no actions.
Bill Wendlingeb907212009-05-15 01:12:28 +0000420 FirstActions.push_back(FirstAction);
421
422 // Compute this sites contribution to size.
423 SizeActions += SizeSiteActions;
Bill Wendling5e953dd2009-07-28 23:22:13 +0000424
425 PrevLPI = LPI;
Bill Wendlingeb907212009-05-15 01:12:28 +0000426 }
427
Bill Wendling5e953dd2009-07-28 23:22:13 +0000428 return SizeActions;
429}
430
Bill Wendlingade025c2009-07-29 00:31:35 +0000431/// ComputeCallSiteTable - Compute the call-site table. The entry for an invoke
Bill Wendlinga583c552009-08-20 22:02:24 +0000432/// has a try-range containing the call, a non-zero landing pad, and an
Bill Wendlingade025c2009-07-29 00:31:35 +0000433/// appropriate action. The entry for an ordinary call has a try-range
434/// containing the call and zero for the landing pad and the action. Calls
435/// marked 'nounwind' have no entry and must not be contained in the try-range
436/// of any entry - they form gaps in the table. Entries must be ordered by
437/// try-range address.
438void DwarfException::
439ComputeCallSiteTable(SmallVectorImpl<CallSiteEntry> &CallSites,
440 const RangeMapType &PadMap,
441 const SmallVectorImpl<const LandingPadInfo *> &LandingPads,
442 const SmallVectorImpl<unsigned> &FirstActions) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000443 // The end label of the previous invoke or nounwind try-range.
444 unsigned LastLabel = 0;
445
446 // Whether there is a potentially throwing instruction (currently this means
447 // an ordinary call) between the end of the previous try-range and now.
448 bool SawPotentiallyThrowing = false;
449
Bill Wendling5cff4872009-07-28 23:44:43 +0000450 // Whether the last CallSite entry was for an invoke.
Bill Wendlingeb907212009-05-15 01:12:28 +0000451 bool PreviousIsInvoke = false;
452
453 // Visit all instructions in order of address.
454 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
455 I != E; ++I) {
456 for (MachineBasicBlock::const_iterator MI = I->begin(), E = I->end();
457 MI != E; ++MI) {
458 if (!MI->isLabel()) {
459 SawPotentiallyThrowing |= MI->getDesc().isCall();
460 continue;
461 }
462
463 unsigned BeginLabel = MI->getOperand(0).getImm();
464 assert(BeginLabel && "Invalid label!");
465
466 // End of the previous try-range?
467 if (BeginLabel == LastLabel)
468 SawPotentiallyThrowing = false;
469
470 // Beginning of a new try-range?
471 RangeMapType::iterator L = PadMap.find(BeginLabel);
472 if (L == PadMap.end())
473 // Nope, it was just some random label.
474 continue;
475
Bill Wendlinga583c552009-08-20 22:02:24 +0000476 const PadRange &P = L->second;
Bill Wendlingeb907212009-05-15 01:12:28 +0000477 const LandingPadInfo *LandingPad = LandingPads[P.PadIndex];
Bill Wendlingeb907212009-05-15 01:12:28 +0000478 assert(BeginLabel == LandingPad->BeginLabels[P.RangeIndex] &&
479 "Inconsistent landing pad map!");
480
Bill Wendlinga583c552009-08-20 22:02:24 +0000481 // For Dwarf exception handling (SjLj handling doesn't use this). If some
482 // instruction between the previous try-range and this one may throw,
483 // create a call-site entry with no landing pad for the region between the
484 // try-ranges.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000485 if (SawPotentiallyThrowing &&
Chris Lattner33adcfb2009-08-22 21:43:10 +0000486 MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) {
Bill Wendlinga583c552009-08-20 22:02:24 +0000487 CallSiteEntry Site = { LastLabel, BeginLabel, 0, 0 };
Bill Wendlingeb907212009-05-15 01:12:28 +0000488 CallSites.push_back(Site);
489 PreviousIsInvoke = false;
490 }
491
492 LastLabel = LandingPad->EndLabels[P.RangeIndex];
493 assert(BeginLabel && LastLabel && "Invalid landing pad!");
494
495 if (LandingPad->LandingPadLabel) {
496 // This try-range is for an invoke.
Bill Wendlinga583c552009-08-20 22:02:24 +0000497 CallSiteEntry Site = {
498 BeginLabel,
499 LastLabel,
500 LandingPad->LandingPadLabel,
501 FirstActions[P.PadIndex]
502 };
Bill Wendlingeb907212009-05-15 01:12:28 +0000503
Jim Grosbach33668c02009-09-01 17:19:13 +0000504 // Try to merge with the previous call-site. SJLJ doesn't do this
505 if (PreviousIsInvoke &&
506 MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000507 CallSiteEntry &Prev = CallSites.back();
508 if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action) {
509 // Extend the range of the previous entry.
510 Prev.EndLabel = Site.EndLabel;
511 continue;
512 }
513 }
514
515 // Otherwise, create a new call-site.
516 CallSites.push_back(Site);
517 PreviousIsInvoke = true;
518 } else {
519 // Create a gap.
520 PreviousIsInvoke = false;
521 }
522 }
523 }
524
525 // If some instruction between the previous try-range and the end of the
526 // function may throw, create a call-site entry with no landing pad for the
527 // region following the try-range.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000528 if (SawPotentiallyThrowing &&
Chris Lattner33adcfb2009-08-22 21:43:10 +0000529 MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) {
Bill Wendlinga583c552009-08-20 22:02:24 +0000530 CallSiteEntry Site = { LastLabel, 0, 0, 0 };
Bill Wendlingeb907212009-05-15 01:12:28 +0000531 CallSites.push_back(Site);
532 }
Bill Wendlingade025c2009-07-29 00:31:35 +0000533}
534
Bill Wendling0dafca92009-07-29 00:50:05 +0000535/// EmitExceptionTable - Emit landing pads and actions.
536///
537/// The general organization of the table is complex, but the basic concepts are
538/// easy. First there is a header which describes the location and organization
539/// of the three components that follow.
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000540///
Bill Wendling0dafca92009-07-29 00:50:05 +0000541/// 1. The landing pad site information describes the range of code covered by
542/// the try. In our case it's an accumulation of the ranges covered by the
543/// invokes in the try. There is also a reference to the landing pad that
544/// handles the exception once processed. Finally an index into the actions
545/// table.
Bill Wendlinga583c552009-08-20 22:02:24 +0000546/// 2. The action table, in our case, is composed of pairs of type IDs and next
Bill Wendling0dafca92009-07-29 00:50:05 +0000547/// action offset. Starting with the action index from the landing pad
Bill Wendlinga583c552009-08-20 22:02:24 +0000548/// site, each type ID is checked for a match to the current exception. If
Bill Wendling0dafca92009-07-29 00:50:05 +0000549/// it matches then the exception and type id are passed on to the landing
550/// pad. Otherwise the next action is looked up. This chain is terminated
551/// with a next action of zero. If no type id is found the the frame is
552/// unwound and handling continues.
Bill Wendlinga583c552009-08-20 22:02:24 +0000553/// 3. Type ID table contains references to all the C++ typeinfo for all
Bill Wendling0dafca92009-07-29 00:50:05 +0000554/// catches in the function. This tables is reversed indexed base 1.
Bill Wendlingade025c2009-07-29 00:31:35 +0000555void DwarfException::EmitExceptionTable() {
556 const std::vector<GlobalVariable *> &TypeInfos = MMI->getTypeInfos();
557 const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
558 const std::vector<LandingPadInfo> &PadInfos = MMI->getLandingPads();
559 if (PadInfos.empty()) return;
560
561 // Sort the landing pads in order of their type ids. This is used to fold
562 // duplicate actions.
563 SmallVector<const LandingPadInfo *, 64> LandingPads;
564 LandingPads.reserve(PadInfos.size());
565
566 for (unsigned i = 0, N = PadInfos.size(); i != N; ++i)
567 LandingPads.push_back(&PadInfos[i]);
568
569 std::sort(LandingPads.begin(), LandingPads.end(), PadLT);
570
571 // Compute the actions table and gather the first action index for each
572 // landing pad site.
573 SmallVector<ActionEntry, 32> Actions;
574 SmallVector<unsigned, 64> FirstActions;
575 unsigned SizeActions = ComputeActionsTable(LandingPads, Actions, FirstActions);
576
577 // Invokes and nounwind calls have entries in PadMap (due to being bracketed
578 // by try-range labels when lowered). Ordinary calls do not, so appropriate
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000579 // try-ranges for them need be deduced when using Dwarf exception handling.
Bill Wendlingade025c2009-07-29 00:31:35 +0000580 RangeMapType PadMap;
581 for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) {
582 const LandingPadInfo *LandingPad = LandingPads[i];
583 for (unsigned j = 0, E = LandingPad->BeginLabels.size(); j != E; ++j) {
584 unsigned BeginLabel = LandingPad->BeginLabels[j];
585 assert(!PadMap.count(BeginLabel) && "Duplicate landing pad labels!");
586 PadRange P = { i, j };
587 PadMap[BeginLabel] = P;
588 }
589 }
590
591 // Compute the call-site table.
592 SmallVector<CallSiteEntry, 64> CallSites;
Jim Grosbach8b818d72009-08-17 16:41:22 +0000593 ComputeCallSiteTable(CallSites, PadMap, LandingPads, FirstActions);
Bill Wendlingeb907212009-05-15 01:12:28 +0000594
595 // Final tallies.
596
597 // Call sites.
Bill Wendling40121bc2009-09-10 00:13:16 +0000598 const unsigned SiteStartSize = SizeOfEncodedValue(dwarf::DW_EH_PE_udata4);
599 const unsigned SiteLengthSize = SizeOfEncodedValue(dwarf::DW_EH_PE_udata4);
600 const unsigned LandingPadSize = SizeOfEncodedValue(dwarf::DW_EH_PE_udata4);
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000601 unsigned SizeSites;
Jim Grosbachbff39232009-08-12 17:38:44 +0000602
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000603 bool IsSJLJ = MAI->getExceptionHandlingType() == ExceptionHandling::SjLj;
Jim Grosbachbff39232009-08-12 17:38:44 +0000604
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000605 bool HaveTTData = IsSJLJ ? (!TypeInfos.empty() || !FilterIds.empty()) : true;
606
607 if (IsSJLJ)
Jim Grosbach8b818d72009-08-17 16:41:22 +0000608 SizeSites = 0;
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000609 else
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000610 SizeSites = CallSites.size() *
611 (SiteStartSize + SiteLengthSize + LandingPadSize);
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000612
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000613 for (unsigned i = 0, e = CallSites.size(); i < e; ++i) {
Chris Lattneraf76e592009-08-22 20:48:53 +0000614 SizeSites += MCAsmInfo::getULEB128Size(CallSites[i].Action);
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000615 if (IsSJLJ)
Chris Lattneraf76e592009-08-22 20:48:53 +0000616 SizeSites += MCAsmInfo::getULEB128Size(i);
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000617 }
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000618
Bill Wendlingeb907212009-05-15 01:12:28 +0000619 // Type infos.
Chris Lattnerd5bbb072009-08-02 01:34:32 +0000620 const MCSection *LSDASection = Asm->getObjFileLowering().getLSDASection();
Bill Wendlingfe220282009-09-10 02:07:37 +0000621 unsigned TTypeFormat;
Bill Wendlingeb907212009-05-15 01:12:28 +0000622
Bill Wendling43e484f2009-09-10 01:12:47 +0000623 if (!HaveTTData) {
Bill Wendlingfe220282009-09-10 02:07:37 +0000624 TTypeFormat = dwarf::DW_EH_PE_omit;
Chris Lattner81c9a062009-07-31 22:03:47 +0000625 } else {
Chris Lattnerad88bc42009-08-02 03:59:56 +0000626 // Okay, we have actual filters or typeinfos to emit. As such, we need to
627 // pick a type encoding for them. We're about to emit a list of pointers to
628 // typeinfo objects at the end of the LSDA. However, unless we're in static
629 // mode, this reference will require a relocation by the dynamic linker.
Chris Lattner46b754c2009-07-31 22:18:14 +0000630 //
Chris Lattnerad88bc42009-08-02 03:59:56 +0000631 // Because of this, we have a couple of options:
632 // 1) If we are in -static mode, we can always use an absolute reference
633 // from the LSDA, because the static linker will resolve it.
634 // 2) Otherwise, if the LSDA section is writable, we can output the direct
635 // reference to the typeinfo and allow the dynamic linker to relocate
636 // it. Since it is in a writable section, the dynamic linker won't
637 // have a problem.
638 // 3) Finally, if we're in PIC mode and the LDSA section isn't writable,
639 // we need to use some form of indirection. For example, on Darwin,
640 // we can output a statically-relocatable reference to a dyld stub. The
641 // offset to the stub is constant, but the contents are in a section
642 // that is updated by the dynamic linker. This is easy enough, but we
643 // need to tell the personality function of the unwinder to indirect
644 // through the dyld stub.
645 //
Bill Wendling43e484f2009-09-10 01:12:47 +0000646 // FIXME: When (3) is actually implemented, we'll have to emit the stubs
Chris Lattnerad88bc42009-08-02 03:59:56 +0000647 // somewhere. This predicate should be moved to a shared location that is
648 // in target-independent code.
649 //
Bill Wendling43e484f2009-09-10 01:12:47 +0000650 if (LSDASection->getKind().isWriteable() ||
651 Asm->TM.getRelocationModel() == Reloc::Static)
652 TTypeFormat = dwarf::DW_EH_PE_absptr;
653 else
654 TTypeFormat = dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel |
655 dwarf::DW_EH_PE_sdata4;
Bill Wendlingfe220282009-09-10 02:07:37 +0000656 }
Bill Wendling43e484f2009-09-10 01:12:47 +0000657
Bill Wendlingfe220282009-09-10 02:07:37 +0000658 // Begin the exception table.
659 Asm->OutStreamer.SwitchSection(LSDASection);
660 Asm->EmitAlignment(2, 0, 0, false);
Bill Wendling43e484f2009-09-10 01:12:47 +0000661
Bill Wendlingfe220282009-09-10 02:07:37 +0000662 O << "GCC_except_table" << SubprogramCount << ":\n";
663 EmitLabel("exception", SubprogramCount);
664
665 if (IsSJLJ) {
666 SmallString<16> LSDAName;
667 raw_svector_ostream(LSDAName) << MAI->getPrivateGlobalPrefix() <<
668 "_LSDA_" << Asm->getFunctionNumber();
669 O << LSDAName.str() << ":\n";
670 }
671
672 // Emit the header.
673 Asm->EmitInt8(dwarf::DW_EH_PE_omit);
674 Asm->EOL("@LPStart format", dwarf::DW_EH_PE_omit);
675
676 // For SjLj exceptions, if there is no TypeInfo, then we just explicitly
677 // say that we're omitting that bit.
678 Asm->EmitInt8(TTypeFormat);
679 Asm->EOL("@TType format", TTypeFormat);
680
681 if (HaveTTData) {
682 unsigned TypeFormatSize = SizeOfEncodedValue(TTypeFormat);
683 unsigned SizeTypes = TypeInfos.size() * TypeFormatSize;
684 unsigned BeforeOffset = 2;
685 unsigned TypeOffset = sizeof(int8_t) + // Call site format
686 MCAsmInfo::getULEB128Size(SizeSites) + // Call-site table length
687 SizeSites + SizeActions + SizeTypes;
688 unsigned Offset = TypeOffset;
689 unsigned LastOffset = 0;
690
691 while (Offset != LastOffset) {
692 LastOffset = Offset;
693 unsigned Size = MCAsmInfo::getULEB128Size(Offset);
694 unsigned Pad = BeforeOffset + Size + TypeOffset;
695
696 if (Pad % TypeFormatSize)
697 Pad = TypeFormatSize - (Pad % TypeFormatSize);
698 else
699 Pad = 0;
700
701 Offset = TypeOffset + Pad;
702 }
703
704 Asm->EmitULEB128Bytes(Offset);
Bill Wendlinga583c552009-08-20 22:02:24 +0000705 Asm->EOL("@TType base offset");
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000706 }
Bill Wendlingb0d9c3e2009-07-28 22:23:45 +0000707
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000708 // SjLj Exception handilng
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000709 if (IsSJLJ) {
Bill Wendling639217c2009-08-27 03:32:50 +0000710 Asm->EmitInt8(dwarf::DW_EH_PE_udata4);
Bill Wendling0734d352009-09-09 21:26:19 +0000711 Asm->EOL("Call site format", dwarf::DW_EH_PE_udata4);
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000712 Asm->EmitULEB128Bytes(SizeSites);
Bill Wendlinga583c552009-08-20 22:02:24 +0000713 Asm->EOL("Call site table length");
Bill Wendlingeb907212009-05-15 01:12:28 +0000714
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000715 // Emit the landing pad site information.
Jim Grosbach8b818d72009-08-17 16:41:22 +0000716 unsigned idx = 0;
717 for (SmallVectorImpl<CallSiteEntry>::const_iterator
718 I = CallSites.begin(), E = CallSites.end(); I != E; ++I, ++idx) {
719 const CallSiteEntry &S = *I;
Bill Wendlinga583c552009-08-20 22:02:24 +0000720
721 // Offset of the landing pad, counted in 16-byte bundles relative to the
722 // @LPStart address.
Jim Grosbach8b818d72009-08-17 16:41:22 +0000723 Asm->EmitULEB128Bytes(idx);
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000724 Asm->EOL("Landing pad");
Bill Wendlinga583c552009-08-20 22:02:24 +0000725
726 // Offset of the first associated action record, relative to the start of
727 // the action table. This value is biased by 1 (1 indicates the start of
728 // the action table), and 0 indicates that there are no actions.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000729 Asm->EmitULEB128Bytes(S.Action);
730 Asm->EOL("Action");
Bill Wendlingeb907212009-05-15 01:12:28 +0000731 }
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000732 } else {
733 // DWARF Exception handling
Chris Lattner33adcfb2009-08-22 21:43:10 +0000734 assert(MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf);
Bill Wendlingeb907212009-05-15 01:12:28 +0000735
Bill Wendlinga583c552009-08-20 22:02:24 +0000736 // The call-site table is a list of all call sites that may throw an
737 // exception (including C++ 'throw' statements) in the procedure
738 // fragment. It immediately follows the LSDA header. Each entry indicates,
739 // for a given call, the first corresponding action record and corresponding
740 // landing pad.
741 //
742 // The table begins with the number of bytes, stored as an LEB128
743 // compressed, unsigned integer. The records immediately follow the record
744 // count. They are sorted in increasing call-site address. Each record
745 // indicates:
746 //
747 // * The position of the call-site.
748 // * The position of the landing pad.
749 // * The first action record for that call site.
750 //
751 // A missing entry in the call-site table indicates that a call is not
752 // supposed to throw. Such calls include:
753 //
754 // * Calls to destructors within cleanup code. C++ semantics forbids these
755 // calls to throw.
756 // * Calls to intrinsic routines in the standard library which are known
757 // not to throw (sin, memcpy, et al).
758 //
759 // If the runtime does not find the call-site entry for a given call, it
760 // will call `terminate()'.
761
762 // Emit the landing pad call site table.
Bill Wendling639217c2009-08-27 03:32:50 +0000763 Asm->EmitInt8(dwarf::DW_EH_PE_udata4);
Bill Wendling0734d352009-09-09 21:26:19 +0000764 Asm->EOL("Call site format", dwarf::DW_EH_PE_udata4);
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000765 Asm->EmitULEB128Bytes(SizeSites);
Bill Wendlinga583c552009-08-20 22:02:24 +0000766 Asm->EOL("Call site table size");
Bill Wendlingeb907212009-05-15 01:12:28 +0000767
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000768 for (SmallVectorImpl<CallSiteEntry>::const_iterator
769 I = CallSites.begin(), E = CallSites.end(); I != E; ++I) {
770 const CallSiteEntry &S = *I;
771 const char *BeginTag;
772 unsigned BeginNumber;
Bill Wendlingeb907212009-05-15 01:12:28 +0000773
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000774 if (!S.BeginLabel) {
775 BeginTag = "eh_func_begin";
776 BeginNumber = SubprogramCount;
777 } else {
778 BeginTag = "label";
779 BeginNumber = S.BeginLabel;
780 }
Bill Wendlingeb907212009-05-15 01:12:28 +0000781
Bill Wendlinga583c552009-08-20 22:02:24 +0000782 // Offset of the call site relative to the previous call site, counted in
783 // number of 16-byte bundles. The first call site is counted relative to
784 // the start of the procedure fragment.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000785 EmitSectionOffset(BeginTag, "eh_func_begin", BeginNumber, SubprogramCount,
Bill Wendlingeb907212009-05-15 01:12:28 +0000786 true, true);
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000787 Asm->EOL("Region start");
Bill Wendlingeb907212009-05-15 01:12:28 +0000788
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000789 if (!S.EndLabel)
790 EmitDifference("eh_func_end", SubprogramCount, BeginTag, BeginNumber,
791 true);
792 else
793 EmitDifference("label", S.EndLabel, BeginTag, BeginNumber, true);
Bill Wendlingeb907212009-05-15 01:12:28 +0000794
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000795 Asm->EOL("Region length");
796
Bill Wendlinga583c552009-08-20 22:02:24 +0000797 // Offset of the landing pad, counted in 16-byte bundles relative to the
798 // @LPStart address.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000799 if (!S.PadLabel)
800 Asm->EmitInt32(0);
801 else
802 EmitSectionOffset("label", "eh_func_begin", S.PadLabel, SubprogramCount,
803 true, true);
804
805 Asm->EOL("Landing pad");
806
Bill Wendlinga583c552009-08-20 22:02:24 +0000807 // Offset of the first associated action record, relative to the start of
808 // the action table. This value is biased by 1 (1 indicates the start of
809 // the action table), and 0 indicates that there are no actions.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000810 Asm->EmitULEB128Bytes(S.Action);
811 Asm->EOL("Action");
812 }
Bill Wendlingeb907212009-05-15 01:12:28 +0000813 }
814
Bill Wendlinga583c552009-08-20 22:02:24 +0000815 // Emit the Action Table.
Bill Wendling5cff4872009-07-28 23:44:43 +0000816 for (SmallVectorImpl<ActionEntry>::const_iterator
817 I = Actions.begin(), E = Actions.end(); I != E; ++I) {
818 const ActionEntry &Action = *I;
Bill Wendlinga583c552009-08-20 22:02:24 +0000819
820 // Type Filter
821 //
822 // Used by the runtime to match the type of the thrown exception to the
823 // type of the catch clauses or the types in the exception specification.
824
Bill Wendlingeb907212009-05-15 01:12:28 +0000825 Asm->EmitSLEB128Bytes(Action.ValueForTypeID);
826 Asm->EOL("TypeInfo index");
Bill Wendlinga583c552009-08-20 22:02:24 +0000827
828 // Action Record
829 //
830 // Self-relative signed displacement in bytes of the next action record,
831 // or 0 if there is no next action record.
832
Bill Wendlingeb907212009-05-15 01:12:28 +0000833 Asm->EmitSLEB128Bytes(Action.NextAction);
834 Asm->EOL("Next action");
835 }
836
Bill Wendlinga583c552009-08-20 22:02:24 +0000837 // Emit the Catch Clauses. The code for the catch clauses following the same
838 // try is similar to a switch statement. The catch clause action record
839 // informs the runtime about the type of a catch clause and about the
840 // associated switch value.
841 //
842 // Action Record Fields:
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000843 //
Bill Wendlinga583c552009-08-20 22:02:24 +0000844 // * Filter Value
845 // Positive value, starting at 1. Index in the types table of the
846 // __typeinfo for the catch-clause type. 1 is the first word preceding
847 // TTBase, 2 is the second word, and so on. Used by the runtime to check
848 // if the thrown exception type matches the catch-clause type. Back-end
849 // generated switch statements check against this value.
850 //
851 // * Next
852 // Signed offset, in bytes from the start of this field, to the next
853 // chained action record, or zero if none.
854 //
855 // The order of the action records determined by the next field is the order
856 // of the catch clauses as they appear in the source code, and must be kept in
857 // the same order. As a result, changing the order of the catch clause would
858 // change the semantics of the program.
Bill Wendling5cff4872009-07-28 23:44:43 +0000859 for (std::vector<GlobalVariable *>::const_reverse_iterator
860 I = TypeInfos.rbegin(), E = TypeInfos.rend(); I != E; ++I) {
Bill Wendlinga583c552009-08-20 22:02:24 +0000861 const GlobalVariable *GV = *I;
Bill Wendlingeb907212009-05-15 01:12:28 +0000862 PrintRelDirective();
863
864 if (GV) {
865 std::string GLN;
866 O << Asm->getGlobalLinkName(GV, GLN);
867 } else {
Bill Wendling049e98d2009-08-31 18:26:48 +0000868 O << "0x0";
Bill Wendlingeb907212009-05-15 01:12:28 +0000869 }
870
871 Asm->EOL("TypeInfo");
872 }
873
Bill Wendlinga583c552009-08-20 22:02:24 +0000874 // Emit the Type Table.
Bill Wendling5cff4872009-07-28 23:44:43 +0000875 for (std::vector<unsigned>::const_iterator
876 I = FilterIds.begin(), E = FilterIds.end(); I < E; ++I) {
877 unsigned TypeID = *I;
Bill Wendlingeb907212009-05-15 01:12:28 +0000878 Asm->EmitULEB128Bytes(TypeID);
879 Asm->EOL("Filter TypeInfo index");
880 }
881
882 Asm->EmitAlignment(2, 0, 0, false);
883}
884
Bill Wendlingeb907212009-05-15 01:12:28 +0000885/// EndModule - Emit all exception information that should come after the
886/// content.
887void DwarfException::EndModule() {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000888 if (MAI->getExceptionHandlingType() != ExceptionHandling::Dwarf)
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000889 return;
Bill Wendlingb4049fe2009-09-09 21:06:24 +0000890
Bill Wendling52783c62009-09-09 23:56:55 +0000891 if (!shouldEmitMovesModule && !shouldEmitTableModule)
892 return;
893
Bill Wendlingeb907212009-05-15 01:12:28 +0000894 if (TimePassesIsEnabled)
895 ExceptionTimer->startTimer();
896
Bill Wendling52783c62009-09-09 23:56:55 +0000897 const std::vector<Function *> Personalities = MMI->getPersonalities();
Bill Wendlingb4049fe2009-09-09 21:06:24 +0000898
Bill Wendling52783c62009-09-09 23:56:55 +0000899 for (unsigned i = 0, e = Personalities.size(); i < e; ++i)
900 EmitCIE(Personalities[i], i);
Bill Wendlingeb907212009-05-15 01:12:28 +0000901
Bill Wendling52783c62009-09-09 23:56:55 +0000902 for (std::vector<FunctionEHFrameInfo>::iterator
903 I = EHFrames.begin(), E = EHFrames.end(); I != E; ++I)
904 EmitFDE(*I);
Bill Wendlingeb907212009-05-15 01:12:28 +0000905
906 if (TimePassesIsEnabled)
907 ExceptionTimer->stopTimer();
908}
909
910/// BeginFunction - Gather pre-function exception information. Assumes being
911/// emitted immediately after the function entry point.
912void DwarfException::BeginFunction(MachineFunction *MF) {
913 if (TimePassesIsEnabled)
914 ExceptionTimer->startTimer();
915
916 this->MF = MF;
917 shouldEmitTable = shouldEmitMoves = false;
918
Chris Lattner33adcfb2009-08-22 21:43:10 +0000919 if (MMI && MAI->doesSupportExceptionHandling()) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000920 // Map all labels and get rid of any dead landing pads.
921 MMI->TidyLandingPads();
922
923 // If any landing pads survive, we need an EH table.
Bill Wendlingb4049fe2009-09-09 21:06:24 +0000924 if (!MMI->getLandingPads().empty())
Bill Wendlingeb907212009-05-15 01:12:28 +0000925 shouldEmitTable = true;
926
927 // See if we need frame move info.
928 if (!MF->getFunction()->doesNotThrow() || UnwindTablesMandatory)
929 shouldEmitMoves = true;
930
931 if (shouldEmitMoves || shouldEmitTable)
932 // Assumes in correct section after the entry point.
933 EmitLabel("eh_func_begin", ++SubprogramCount);
934 }
935
936 shouldEmitTableModule |= shouldEmitTable;
937 shouldEmitMovesModule |= shouldEmitMoves;
938
939 if (TimePassesIsEnabled)
940 ExceptionTimer->stopTimer();
941}
942
943/// EndFunction - Gather and emit post-function exception information.
944///
945void DwarfException::EndFunction() {
Bill Wendling7b09a6c2009-09-09 21:08:12 +0000946 if (!shouldEmitMoves && !shouldEmitTable) return;
947
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000948 if (TimePassesIsEnabled)
Bill Wendlingeb907212009-05-15 01:12:28 +0000949 ExceptionTimer->startTimer();
950
Bill Wendling7b09a6c2009-09-09 21:08:12 +0000951 EmitLabel("eh_func_end", SubprogramCount);
952 EmitExceptionTable();
Bill Wendlingeb907212009-05-15 01:12:28 +0000953
Bill Wendling7b09a6c2009-09-09 21:08:12 +0000954 // Save EH frame information
955 EHFrames.push_back(FunctionEHFrameInfo(getAsm()->getCurrentFunctionEHName(MF),
956 SubprogramCount,
957 MMI->getPersonalityIndex(),
958 MF->getFrameInfo()->hasCalls(),
959 !MMI->getLandingPads().empty(),
960 MMI->getFrameMoves(),
961 MF->getFunction()));
Bill Wendlingeb907212009-05-15 01:12:28 +0000962
Bill Wendling52783c62009-09-09 23:56:55 +0000963 // Record if this personality index uses a landing pad.
964 UsesLSDA[MMI->getPersonalityIndex()] |= !MMI->getLandingPads().empty();
965
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000966 if (TimePassesIsEnabled)
Bill Wendlingeb907212009-05-15 01:12:28 +0000967 ExceptionTimer->stopTimer();
968}