blob: 89fe385722836e9e466ed2736cb5e998811f46ba [file] [log] [blame]
Eugene Zelenko149178d2017-10-10 22:33:29 +00001//===- CodeGen/AsmPrinter/EHStreamer.cpp - Exception Directive Streamer ---===//
Bill Wendlingd64cd2b2009-05-15 01:12:28 +00002//
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//
Saleem Abdulrasool8076cab2014-06-11 01:19:03 +000010// This file contains support for writing exception info into assembly files.
Bill Wendlingd64cd2b2009-05-15 01:12:28 +000011//
12//===----------------------------------------------------------------------===//
13
Saleem Abdulrasool8076cab2014-06-11 01:19:03 +000014#include "EHStreamer.h"
Eugene Zelenko149178d2017-10-10 22:33:29 +000015#include "llvm/ADT/SmallVector.h"
16#include "llvm/ADT/Twine.h"
17#include "llvm/ADT/iterator_range.h"
18#include "llvm/BinaryFormat/Dwarf.h"
Chris Lattnerda790ea2010-04-05 05:28:23 +000019#include "llvm/CodeGen/AsmPrinter.h"
David Greenea5be1b12009-08-19 21:55:33 +000020#include "llvm/CodeGen/MachineFunction.h"
Saleem Abdulrasool8076cab2014-06-11 01:19:03 +000021#include "llvm/CodeGen/MachineInstr.h"
Eugene Zelenko149178d2017-10-10 22:33:29 +000022#include "llvm/CodeGen/MachineOperand.h"
23#include "llvm/IR/DataLayout.h"
Saleem Abdulrasool8076cab2014-06-11 01:19:03 +000024#include "llvm/IR/Function.h"
Chris Lattnerb8666022009-09-16 01:46:41 +000025#include "llvm/MC/MCAsmInfo.h"
Eugene Zelenko149178d2017-10-10 22:33:29 +000026#include "llvm/MC/MCContext.h"
Chris Lattner4b7dadb2009-08-19 05:49:37 +000027#include "llvm/MC/MCStreamer.h"
Chris Lattner555ceabe2010-01-16 18:37:32 +000028#include "llvm/MC/MCSymbol.h"
Eugene Zelenko149178d2017-10-10 22:33:29 +000029#include "llvm/MC/MCTargetOptions.h"
30#include "llvm/Support/Casting.h"
Logan Chien5b776b72014-02-22 14:00:39 +000031#include "llvm/Support/LEB128.h"
David Blaikie6054e652018-03-23 23:58:19 +000032#include "llvm/Target/TargetLoweringObjectFile.h"
Eugene Zelenko149178d2017-10-10 22:33:29 +000033#include <algorithm>
34#include <cassert>
35#include <cstdint>
36#include <vector>
Saleem Abdulrasool8076cab2014-06-11 01:19:03 +000037
Bill Wendlingd64cd2b2009-05-15 01:12:28 +000038using namespace llvm;
39
Rafael Espindoladc4263c2015-03-17 13:57:48 +000040EHStreamer::EHStreamer(AsmPrinter *A) : Asm(A), MMI(Asm->MMI) {}
Bill Wendlingdd20b982009-05-15 01:18:50 +000041
Eugene Zelenko149178d2017-10-10 22:33:29 +000042EHStreamer::~EHStreamer() = default;
Bill Wendlingdd20b982009-05-15 01:18:50 +000043
Saleem Abdulrasool8076cab2014-06-11 01:19:03 +000044/// How many leading type ids two landing pads have in common.
45unsigned EHStreamer::sharedTypeIDs(const LandingPadInfo *L,
46 const LandingPadInfo *R) {
Bill Wendlingd64cd2b2009-05-15 01:12:28 +000047 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
48 unsigned LSize = LIds.size(), RSize = RIds.size();
49 unsigned MinSize = LSize < RSize ? LSize : RSize;
50 unsigned Count = 0;
51
52 for (; Count != MinSize; ++Count)
53 if (LIds[Count] != RIds[Count])
54 return Count;
55
56 return Count;
57}
58
Saleem Abdulrasool8076cab2014-06-11 01:19:03 +000059/// Compute the actions table and gather the first action index for each landing
60/// pad site.
Rafael Espindolad09b4162018-02-09 17:00:25 +000061void EHStreamer::computeActionsTable(
62 const SmallVectorImpl<const LandingPadInfo *> &LandingPads,
63 SmallVectorImpl<ActionEntry> &Actions,
64 SmallVectorImpl<unsigned> &FirstActions) {
Bill Wendling0e749fe2009-08-20 22:02:24 +000065 // The action table follows the call-site table in the LSDA. The individual
66 // records are of two types:
67 //
68 // * Catch clause
69 // * Exception specification
70 //
71 // The two record kinds have the same format, with only small differences.
72 // They are distinguished by the "switch value" field: Catch clauses
73 // (TypeInfos) have strictly positive switch values, and exception
74 // specifications (FilterIds) have strictly negative switch values. Value 0
75 // indicates a catch-all clause.
76 //
Bill Wendling1fddd872009-07-28 23:22:13 +000077 // Negative type IDs index into FilterIds. Positive type IDs index into
78 // TypeInfos. The value written for a positive type ID is just the type ID
79 // itself. For a negative type ID, however, the value written is the
Bill Wendlingd64cd2b2009-05-15 01:12:28 +000080 // (negative) byte offset of the corresponding FilterIds entry. The byte
Bill Wendling1fddd872009-07-28 23:22:13 +000081 // offset is usually equal to the type ID (because the FilterIds entries are
82 // written using a variable width encoding, which outputs one byte per entry
83 // as long as the value written is not too large) but can differ. This kind
84 // of complication does not occur for positive type IDs because type infos are
Bill Wendlingd64cd2b2009-05-15 01:12:28 +000085 // output using a fixed width encoding. FilterOffsets[i] holds the byte
86 // offset corresponding to FilterIds[i].
Bill Wendling45057342009-07-29 21:19:44 +000087
Matthias Braund0ee66c2016-12-01 19:32:15 +000088 const std::vector<unsigned> &FilterIds = Asm->MF->getFilterIds();
Bill Wendlingd64cd2b2009-05-15 01:12:28 +000089 SmallVector<int, 16> FilterOffsets;
90 FilterOffsets.reserve(FilterIds.size());
91 int Offset = -1;
Bill Wendling45057342009-07-29 21:19:44 +000092
93 for (std::vector<unsigned>::const_iterator
94 I = FilterIds.begin(), E = FilterIds.end(); I != E; ++I) {
Bill Wendlingd64cd2b2009-05-15 01:12:28 +000095 FilterOffsets.push_back(Offset);
Logan Chien5b776b72014-02-22 14:00:39 +000096 Offset -= getULEB128Size(*I);
Bill Wendlingd64cd2b2009-05-15 01:12:28 +000097 }
98
Bill Wendlingd64cd2b2009-05-15 01:12:28 +000099 FirstActions.reserve(LandingPads.size());
100
101 int FirstAction = 0;
102 unsigned SizeActions = 0;
Craig Topper353eda42014-04-24 06:44:33 +0000103 const LandingPadInfo *PrevLPI = nullptr;
Bill Wendling45057342009-07-29 21:19:44 +0000104
Bill Wendling23b177e2009-07-28 23:44:43 +0000105 for (SmallVectorImpl<const LandingPadInfo *>::const_iterator
Bill Wendling1fddd872009-07-28 23:22:13 +0000106 I = LandingPads.begin(), E = LandingPads.end(); I != E; ++I) {
107 const LandingPadInfo *LPI = *I;
108 const std::vector<int> &TypeIds = LPI->TypeIds;
Saleem Abdulrasool8076cab2014-06-11 01:19:03 +0000109 unsigned NumShared = PrevLPI ? sharedTypeIDs(LPI, PrevLPI) : 0;
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000110 unsigned SizeSiteActions = 0;
111
112 if (NumShared < TypeIds.size()) {
113 unsigned SizeAction = 0;
Bill Wendling7742b642010-02-10 21:41:57 +0000114 unsigned PrevAction = (unsigned)-1;
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000115
116 if (NumShared) {
Chris Lattner07c1b942010-04-04 20:10:41 +0000117 unsigned SizePrevIds = PrevLPI->TypeIds.size();
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000118 assert(Actions.size());
Bill Wendling7742b642010-02-10 21:41:57 +0000119 PrevAction = Actions.size() - 1;
Logan Chien5b776b72014-02-22 14:00:39 +0000120 SizeAction = getSLEB128Size(Actions[PrevAction].NextAction) +
121 getSLEB128Size(Actions[PrevAction].ValueForTypeID);
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000122
123 for (unsigned j = NumShared; j != SizePrevIds; ++j) {
Bill Wendling7742b642010-02-10 21:41:57 +0000124 assert(PrevAction != (unsigned)-1 && "PrevAction is invalid!");
Logan Chien5b776b72014-02-22 14:00:39 +0000125 SizeAction -= getSLEB128Size(Actions[PrevAction].ValueForTypeID);
Bill Wendling7742b642010-02-10 21:41:57 +0000126 SizeAction += -Actions[PrevAction].NextAction;
127 PrevAction = Actions[PrevAction].Previous;
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000128 }
129 }
130
131 // Compute the actions.
Bill Wendling1fddd872009-07-28 23:22:13 +0000132 for (unsigned J = NumShared, M = TypeIds.size(); J != M; ++J) {
133 int TypeID = TypeIds[J];
134 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
Reid Kleckner0a57f652015-01-14 01:05:27 +0000135 int ValueForTypeID =
136 isFilterEHSelector(TypeID) ? FilterOffsets[-1 - TypeID] : TypeID;
Logan Chien5b776b72014-02-22 14:00:39 +0000137 unsigned SizeTypeID = getSLEB128Size(ValueForTypeID);
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000138
139 int NextAction = SizeAction ? -(SizeAction + SizeTypeID) : 0;
Logan Chien5b776b72014-02-22 14:00:39 +0000140 SizeAction = SizeTypeID + getSLEB128Size(NextAction);
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000141 SizeSiteActions += SizeAction;
142
Bill Wendling0e749fe2009-08-20 22:02:24 +0000143 ActionEntry Action = { ValueForTypeID, NextAction, PrevAction };
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000144 Actions.push_back(Action);
Bill Wendling7742b642010-02-10 21:41:57 +0000145 PrevAction = Actions.size() - 1;
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000146 }
147
148 // Record the first action of the landing pad site.
149 FirstAction = SizeActions + SizeSiteActions - SizeAction + 1;
150 } // else identical - re-use previous FirstAction
151
Eric Christopherd72f78e2018-01-09 23:25:38 +0000152 // Information used when creating the call-site table. The action record
Bill Wendling0e749fe2009-08-20 22:02:24 +0000153 // field of the call site record is the offset of the first associated
154 // action record, relative to the start of the actions table. This value is
Bill Wendling7742b642010-02-10 21:41:57 +0000155 // biased by 1 (1 indicating the start of the actions table), and 0
Bill Wendling0e749fe2009-08-20 22:02:24 +0000156 // indicates that there are no actions.
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000157 FirstActions.push_back(FirstAction);
158
159 // Compute this sites contribution to size.
160 SizeActions += SizeSiteActions;
Bill Wendling1fddd872009-07-28 23:22:13 +0000161
162 PrevLPI = LPI;
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000163 }
Bill Wendling1fddd872009-07-28 23:22:13 +0000164}
165
Saleem Abdulrasool8076cab2014-06-11 01:19:03 +0000166/// Return `true' if this is a call to a function marked `nounwind'. Return
167/// `false' otherwise.
168bool EHStreamer::callToNoUnwindFunction(const MachineInstr *MI) {
Evan Cheng7f8e5632011-12-07 07:15:52 +0000169 assert(MI->isCall() && "This should be a call instruction!");
Bill Wendlinge4120642009-11-12 21:59:20 +0000170
171 bool MarkedNoUnwind = false;
172 bool SawFunc = false;
173
174 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
175 const MachineOperand &MO = MI->getOperand(I);
176
Chris Lattner17d38592010-03-31 06:09:04 +0000177 if (!MO.isGlobal()) continue;
Anton Korobeynikov61d167e2011-01-14 21:57:45 +0000178
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000179 const Function *F = dyn_cast<Function>(MO.getGlobal());
Craig Topper353eda42014-04-24 06:44:33 +0000180 if (!F) continue;
Bill Wendlingc781d7a2009-11-12 23:13:08 +0000181
Chris Lattner17d38592010-03-31 06:09:04 +0000182 if (SawFunc) {
183 // Be conservative. If we have more than one function operand for this
184 // call, then we can't make the assumption that it's the callee and
185 // not a parameter to the call.
Anton Korobeynikov61d167e2011-01-14 21:57:45 +0000186 //
Chris Lattner17d38592010-03-31 06:09:04 +0000187 // FIXME: Determine if there's a way to say that `F' is the callee or
188 // parameter.
189 MarkedNoUnwind = false;
190 break;
Bill Wendlinge4120642009-11-12 21:59:20 +0000191 }
Chris Lattner17d38592010-03-31 06:09:04 +0000192
193 MarkedNoUnwind = F->doesNotThrow();
194 SawFunc = true;
Bill Wendlinge4120642009-11-12 21:59:20 +0000195 }
196
197 return MarkedNoUnwind;
198}
199
David Majnemercde33032015-03-30 22:58:10 +0000200void EHStreamer::computePadMap(
201 const SmallVectorImpl<const LandingPadInfo *> &LandingPads,
202 RangeMapType &PadMap) {
203 // Invokes and nounwind calls have entries in PadMap (due to being bracketed
204 // by try-range labels when lowered). Ordinary calls do not, so appropriate
205 // try-ranges for them need be deduced so we can put them in the LSDA.
206 for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) {
207 const LandingPadInfo *LandingPad = LandingPads[i];
208 for (unsigned j = 0, E = LandingPad->BeginLabels.size(); j != E; ++j) {
209 MCSymbol *BeginLabel = LandingPad->BeginLabels[j];
210 assert(!PadMap.count(BeginLabel) && "Duplicate landing pad labels!");
211 PadRange P = { i, j };
212 PadMap[BeginLabel] = P;
213 }
214 }
215}
216
Saleem Abdulrasool8076cab2014-06-11 01:19:03 +0000217/// Compute the call-site table. The entry for an invoke has a try-range
218/// containing the call, a non-zero landing pad, and an appropriate action. The
219/// entry for an ordinary call has a try-range containing the call and zero for
220/// the landing pad and the action. Calls marked 'nounwind' have no entry and
221/// must not be contained in the try-range of any entry - they form gaps in the
222/// table. Entries must be ordered by try-range address.
223void EHStreamer::
224computeCallSiteTable(SmallVectorImpl<CallSiteEntry> &CallSites,
Bill Wendlingb67440e2009-07-29 00:31:35 +0000225 const SmallVectorImpl<const LandingPadInfo *> &LandingPads,
226 const SmallVectorImpl<unsigned> &FirstActions) {
Reid Klecknerf2acbba2014-12-19 22:30:08 +0000227 RangeMapType PadMap;
David Majnemercde33032015-03-30 22:58:10 +0000228 computePadMap(LandingPads, PadMap);
Reid Klecknerf2acbba2014-12-19 22:30:08 +0000229
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000230 // The end label of the previous invoke or nounwind try-range.
Craig Topper353eda42014-04-24 06:44:33 +0000231 MCSymbol *LastLabel = nullptr;
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000232
233 // Whether there is a potentially throwing instruction (currently this means
234 // an ordinary call) between the end of the previous try-range and now.
235 bool SawPotentiallyThrowing = false;
236
Bill Wendling23b177e2009-07-28 23:44:43 +0000237 // Whether the last CallSite entry was for an invoke.
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000238 bool PreviousIsInvoke = false;
239
Reid Kleckner93acac62014-12-19 22:19:48 +0000240 bool IsSJLJ = Asm->MAI->getExceptionHandlingType() == ExceptionHandling::SjLj;
241
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000242 // Visit all instructions in order of address.
Alexey Samsonov41b977d2014-04-30 18:29:51 +0000243 for (const auto &MBB : *Asm->MF) {
Alexey Samsonovf74bde62014-04-30 22:17:38 +0000244 for (const auto &MI : MBB) {
245 if (!MI.isEHLabel()) {
246 if (MI.isCall())
Saleem Abdulrasool8076cab2014-06-11 01:19:03 +0000247 SawPotentiallyThrowing |= !callToNoUnwindFunction(&MI);
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000248 continue;
249 }
250
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000251 // End of the previous try-range?
Alexey Samsonovf74bde62014-04-30 22:17:38 +0000252 MCSymbol *BeginLabel = MI.getOperand(0).getMCSymbol();
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000253 if (BeginLabel == LastLabel)
254 SawPotentiallyThrowing = false;
255
256 // Beginning of a new try-range?
Jeffrey Yasskinb40d3f72009-11-10 01:02:17 +0000257 RangeMapType::const_iterator L = PadMap.find(BeginLabel);
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000258 if (L == PadMap.end())
259 // Nope, it was just some random label.
260 continue;
261
Bill Wendling0e749fe2009-08-20 22:02:24 +0000262 const PadRange &P = L->second;
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000263 const LandingPadInfo *LandingPad = LandingPads[P.PadIndex];
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000264 assert(BeginLabel == LandingPad->BeginLabels[P.RangeIndex] &&
265 "Inconsistent landing pad map!");
266
Bill Wendling0e749fe2009-08-20 22:02:24 +0000267 // For Dwarf exception handling (SjLj handling doesn't use this). If some
268 // instruction between the previous try-range and this one may throw,
269 // create a call-site entry with no landing pad for the region between the
270 // try-ranges.
Reid Kleckner5cc15692015-01-23 18:49:01 +0000271 if (SawPotentiallyThrowing && Asm->MAI->usesCFIForEH()) {
Craig Topper353eda42014-04-24 06:44:33 +0000272 CallSiteEntry Site = { LastLabel, BeginLabel, nullptr, 0 };
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000273 CallSites.push_back(Site);
274 PreviousIsInvoke = false;
275 }
276
277 LastLabel = LandingPad->EndLabels[P.RangeIndex];
278 assert(BeginLabel && LastLabel && "Invalid landing pad!");
279
Chris Lattner17d38592010-03-31 06:09:04 +0000280 if (!LandingPad->LandingPadLabel) {
281 // Create a gap.
282 PreviousIsInvoke = false;
283 } else {
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000284 // This try-range is for an invoke.
Bill Wendling0e749fe2009-08-20 22:02:24 +0000285 CallSiteEntry Site = {
286 BeginLabel,
287 LastLabel,
Reid Kleckner0a57f652015-01-14 01:05:27 +0000288 LandingPad,
Bill Wendling0e749fe2009-08-20 22:02:24 +0000289 FirstActions[P.PadIndex]
290 };
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000291
Jim Grosbach5afbf2b2009-09-01 17:19:13 +0000292 // Try to merge with the previous call-site. SJLJ doesn't do this
Reid Kleckner93acac62014-12-19 22:19:48 +0000293 if (PreviousIsInvoke && !IsSJLJ) {
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000294 CallSiteEntry &Prev = CallSites.back();
Reid Kleckner0a57f652015-01-14 01:05:27 +0000295 if (Site.LPad == Prev.LPad && Site.Action == Prev.Action) {
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000296 // Extend the range of the previous entry.
297 Prev.EndLabel = Site.EndLabel;
298 continue;
299 }
300 }
301
302 // Otherwise, create a new call-site.
Reid Kleckner93acac62014-12-19 22:19:48 +0000303 if (!IsSJLJ)
Jim Grosbach54c05302010-01-28 01:45:32 +0000304 CallSites.push_back(Site);
305 else {
306 // SjLj EH must maintain the call sites in the order assigned
307 // to them by the SjLjPrepare pass.
Matthias Braund0ee66c2016-12-01 19:32:15 +0000308 unsigned SiteNo = Asm->MF->getCallSiteBeginLabel(BeginLabel);
Jim Grosbach54c05302010-01-28 01:45:32 +0000309 if (CallSites.size() < SiteNo)
310 CallSites.resize(SiteNo);
311 CallSites[SiteNo - 1] = Site;
312 }
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000313 PreviousIsInvoke = true;
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000314 }
315 }
316 }
317
318 // If some instruction between the previous try-range and the end of the
319 // function may throw, create a call-site entry with no landing pad for the
320 // region following the try-range.
Reid Klecknerc2f1bbf2017-05-31 22:18:49 +0000321 if (SawPotentiallyThrowing && !IsSJLJ) {
Craig Topper353eda42014-04-24 06:44:33 +0000322 CallSiteEntry Site = { LastLabel, nullptr, nullptr, 0 };
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000323 CallSites.push_back(Site);
324 }
Bill Wendlingb67440e2009-07-29 00:31:35 +0000325}
326
Saleem Abdulrasool8076cab2014-06-11 01:19:03 +0000327/// Emit landing pads and actions.
Bill Wendling2cf00142009-07-29 00:50:05 +0000328///
329/// The general organization of the table is complex, but the basic concepts are
330/// easy. First there is a header which describes the location and organization
331/// of the three components that follow.
Eric Christopherd517ac02009-08-28 22:33:43 +0000332///
Bill Wendling2cf00142009-07-29 00:50:05 +0000333/// 1. The landing pad site information describes the range of code covered by
334/// the try. In our case it's an accumulation of the ranges covered by the
335/// invokes in the try. There is also a reference to the landing pad that
336/// handles the exception once processed. Finally an index into the actions
337/// table.
Bill Wendling0e749fe2009-08-20 22:02:24 +0000338/// 2. The action table, in our case, is composed of pairs of type IDs and next
Bill Wendling2cf00142009-07-29 00:50:05 +0000339/// action offset. Starting with the action index from the landing pad
Bill Wendling0e749fe2009-08-20 22:02:24 +0000340/// site, each type ID is checked for a match to the current exception. If
Bill Wendling2cf00142009-07-29 00:50:05 +0000341/// it matches then the exception and type id are passed on to the landing
342/// pad. Otherwise the next action is looked up. This chain is terminated
Bill Wendling023ed642009-09-10 06:50:01 +0000343/// with a next action of zero. If no type id is found then the frame is
Bill Wendling2cf00142009-07-29 00:50:05 +0000344/// unwound and handling continues.
Bill Wendling0e749fe2009-08-20 22:02:24 +0000345/// 3. Type ID table contains references to all the C++ typeinfo for all
Bill Wendling023ed642009-09-10 06:50:01 +0000346/// catches in the function. This tables is reverse indexed base 1.
Saleem Abdulrasool8076cab2014-06-11 01:19:03 +0000347void EHStreamer::emitExceptionTable() {
Matthias Braund0ee66c2016-12-01 19:32:15 +0000348 const MachineFunction *MF = Asm->MF;
349 const std::vector<const GlobalValue *> &TypeInfos = MF->getTypeInfos();
350 const std::vector<unsigned> &FilterIds = MF->getFilterIds();
351 const std::vector<LandingPadInfo> &PadInfos = MF->getLandingPads();
Bill Wendlingb67440e2009-07-29 00:31:35 +0000352
353 // Sort the landing pads in order of their type ids. This is used to fold
354 // duplicate actions.
355 SmallVector<const LandingPadInfo *, 64> LandingPads;
356 LandingPads.reserve(PadInfos.size());
357
358 for (unsigned i = 0, N = PadInfos.size(); i != N; ++i)
359 LandingPads.push_back(&PadInfos[i]);
360
Benjamin Kramerb0f74b22014-03-07 21:35:39 +0000361 // Order landing pads lexicographically by type id.
Fangrui Song0cac7262018-09-27 02:13:45 +0000362 llvm::sort(LandingPads, [](const LandingPadInfo *L, const LandingPadInfo *R) {
363 return L->TypeIds < R->TypeIds;
364 });
Bill Wendlingb67440e2009-07-29 00:31:35 +0000365
366 // Compute the actions table and gather the first action index for each
367 // landing pad site.
368 SmallVector<ActionEntry, 32> Actions;
369 SmallVector<unsigned, 64> FirstActions;
Rafael Espindolad09b4162018-02-09 17:00:25 +0000370 computeActionsTable(LandingPads, Actions, FirstActions);
Bill Wendlingb67440e2009-07-29 00:31:35 +0000371
Bill Wendlingb67440e2009-07-29 00:31:35 +0000372 // Compute the call-site table.
373 SmallVector<CallSiteEntry, 64> CallSites;
Reid Klecknerf2acbba2014-12-19 22:30:08 +0000374 computeCallSiteTable(CallSites, LandingPads, FirstActions);
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000375
Chris Lattnerfd795022010-04-05 00:26:50 +0000376 bool IsSJLJ = Asm->MAI->getExceptionHandlingType() == ExceptionHandling::SjLj;
Rafael Espindolac052fa02018-02-09 17:13:37 +0000377 unsigned CallSiteEncoding =
378 IsSJLJ ? dwarf::DW_EH_PE_udata4 : dwarf::DW_EH_PE_uleb128;
379 bool HaveTTData = !TypeInfos.empty() || !FilterIds.empty();
Anton Korobeynikov61d167e2011-01-14 21:57:45 +0000380
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000381 // Type infos.
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000382 MCSection *LSDASection = Asm->getObjFileLowering().getLSDASection();
Anton Korobeynikovae4ccc12010-02-15 22:35:59 +0000383 unsigned TTypeEncoding;
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000384
Bill Wendlingbf562682009-09-10 01:12:47 +0000385 if (!HaveTTData) {
Rafael Espindolac052fa02018-02-09 17:13:37 +0000386 // If there is no TypeInfo, then we just explicitly say that we're omitting
387 // that bit.
Anton Korobeynikovae4ccc12010-02-15 22:35:59 +0000388 TTypeEncoding = dwarf::DW_EH_PE_omit;
Chris Lattner47fc2352009-07-31 22:03:47 +0000389 } else {
Chris Lattner7005cd32009-08-02 03:59:56 +0000390 // Okay, we have actual filters or typeinfos to emit. As such, we need to
391 // pick a type encoding for them. We're about to emit a list of pointers to
392 // typeinfo objects at the end of the LSDA. However, unless we're in static
393 // mode, this reference will require a relocation by the dynamic linker.
Chris Lattnerf4b92a82009-07-31 22:18:14 +0000394 //
Chris Lattner7005cd32009-08-02 03:59:56 +0000395 // Because of this, we have a couple of options:
Anton Korobeynikov61d167e2011-01-14 21:57:45 +0000396 //
Chris Lattner7005cd32009-08-02 03:59:56 +0000397 // 1) If we are in -static mode, we can always use an absolute reference
398 // from the LSDA, because the static linker will resolve it.
Anton Korobeynikov61d167e2011-01-14 21:57:45 +0000399 //
Chris Lattner7005cd32009-08-02 03:59:56 +0000400 // 2) Otherwise, if the LSDA section is writable, we can output the direct
401 // reference to the typeinfo and allow the dynamic linker to relocate
402 // it. Since it is in a writable section, the dynamic linker won't
403 // have a problem.
Anton Korobeynikov61d167e2011-01-14 21:57:45 +0000404 //
Chris Lattner7005cd32009-08-02 03:59:56 +0000405 // 3) Finally, if we're in PIC mode and the LDSA section isn't writable,
406 // we need to use some form of indirection. For example, on Darwin,
407 // we can output a statically-relocatable reference to a dyld stub. The
408 // offset to the stub is constant, but the contents are in a section
409 // that is updated by the dynamic linker. This is easy enough, but we
410 // need to tell the personality function of the unwinder to indirect
411 // through the dyld stub.
412 //
Bill Wendlingbf562682009-09-10 01:12:47 +0000413 // FIXME: When (3) is actually implemented, we'll have to emit the stubs
Chris Lattner7005cd32009-08-02 03:59:56 +0000414 // somewhere. This predicate should be moved to a shared location that is
415 // in target-independent code.
416 //
Anton Korobeynikovae4ccc12010-02-15 22:35:59 +0000417 TTypeEncoding = Asm->getObjFileLowering().getTTypeEncoding();
Bill Wendling243ac562009-09-10 02:07:37 +0000418 }
Bill Wendlingbf562682009-09-10 01:12:47 +0000419
Bill Wendling243ac562009-09-10 02:07:37 +0000420 // Begin the exception table.
Anton Korobeynikovfe3a6e02011-01-30 22:07:31 +0000421 // Sometimes we want not to emit the data into separate section (e.g. ARM
422 // EHABI). In this case LSDASection will be NULL.
Anton Korobeynikovb15beb22011-01-24 22:38:40 +0000423 if (LSDASection)
Lang Hames9ff69c82015-04-24 19:11:51 +0000424 Asm->OutStreamer->SwitchSection(LSDASection);
Chris Lattner9e06e532010-04-28 01:05:45 +0000425 Asm->EmitAlignment(2);
Bill Wendlingbf562682009-09-10 01:12:47 +0000426
Bill Wendling88fdcd32010-02-24 23:34:35 +0000427 // Emit the LSDA.
Anton Korobeynikov61d167e2011-01-14 21:57:45 +0000428 MCSymbol *GCCETSym =
Jim Grosbach6f482002015-05-18 18:43:14 +0000429 Asm->OutContext.getOrCreateSymbol(Twine("GCC_except_table")+
Chris Lattnerfd795022010-04-05 00:26:50 +0000430 Twine(Asm->getFunctionNumber()));
Lang Hames9ff69c82015-04-24 19:11:51 +0000431 Asm->OutStreamer->EmitLabel(GCCETSym);
432 Asm->OutStreamer->EmitLabel(Asm->getCurExceptionSym());
Bill Wendling243ac562009-09-10 02:07:37 +0000433
Bill Wendling88fdcd32010-02-24 23:34:35 +0000434 // Emit the LSDA header.
Chris Lattnerb75af3c2010-04-04 20:04:21 +0000435 Asm->EmitEncodingByte(dwarf::DW_EH_PE_omit, "@LPStart");
436 Asm->EmitEncodingByte(TTypeEncoding, "@TType");
Bill Wendling243ac562009-09-10 02:07:37 +0000437
Rafael Espindolad09b4162018-02-09 17:00:25 +0000438 MCSymbol *TTBaseLabel = nullptr;
Bill Wendling24c74f12010-02-25 23:52:44 +0000439 if (HaveTTData) {
Rafael Espindolad09b4162018-02-09 17:00:25 +0000440 // N.B.: There is a dependency loop between the size of the TTBase uleb128
441 // here and the amount of padding before the aligned type table. The
442 // assembler must sometimes pad this uleb128 or insert extra padding before
443 // the type table. See PR35809 or GNU as bug 4029.
444 MCSymbol *TTBaseRefLabel = Asm->createTempSymbol("ttbaseref");
445 TTBaseLabel = Asm->createTempSymbol("ttbase");
446 Asm->EmitLabelDifferenceAsULEB128(TTBaseLabel, TTBaseRefLabel);
447 Asm->OutStreamer->EmitLabel(TTBaseRefLabel);
Bill Wendling24c74f12010-02-25 23:52:44 +0000448 }
Bill Wendling15349f82009-07-28 22:23:45 +0000449
Lang Hames9ff69c82015-04-24 19:11:51 +0000450 bool VerboseAsm = Asm->OutStreamer->isVerboseAsm();
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000451
Rafael Espindolad09b4162018-02-09 17:00:25 +0000452 // Emit the landing pad call site table.
453 MCSymbol *CstBeginLabel = Asm->createTempSymbol("cst_begin");
454 MCSymbol *CstEndLabel = Asm->createTempSymbol("cst_end");
Rafael Espindolac052fa02018-02-09 17:13:37 +0000455 Asm->EmitEncodingByte(CallSiteEncoding, "Call site");
Rafael Espindolad09b4162018-02-09 17:00:25 +0000456 Asm->EmitLabelDifferenceAsULEB128(CstEndLabel, CstBeginLabel);
457 Asm->OutStreamer->EmitLabel(CstBeginLabel);
458
Bill Wendling023ed642009-09-10 06:50:01 +0000459 // SjLj Exception handling
Bill Wendlinga482ec82009-09-10 00:17:04 +0000460 if (IsSJLJ) {
Jim Grosbach486be662009-08-17 16:41:22 +0000461 unsigned idx = 0;
462 for (SmallVectorImpl<CallSiteEntry>::const_iterator
463 I = CallSites.begin(), E = CallSites.end(); I != E; ++I, ++idx) {
464 const CallSiteEntry &S = *I;
Bill Wendling0e749fe2009-08-20 22:02:24 +0000465
Rafael Espindolad09b4162018-02-09 17:00:25 +0000466 // Index of the call site entry.
Bill Wendlingddec6832011-06-21 22:40:24 +0000467 if (VerboseAsm) {
Lang Hames9ff69c82015-04-24 19:11:51 +0000468 Asm->OutStreamer->AddComment(">> Call Site " + Twine(idx) + " <<");
469 Asm->OutStreamer->AddComment(" On exception at call site "+Twine(idx));
Bill Wendlingddec6832011-06-21 22:40:24 +0000470 }
Bill Wendlingddec6832011-06-21 22:40:24 +0000471 Asm->EmitULEB128(idx);
Bill Wendling0e749fe2009-08-20 22:02:24 +0000472
473 // Offset of the first associated action record, relative to the start of
474 // the action table. This value is biased by 1 (1 indicates the start of
475 // the action table), and 0 indicates that there are no actions.
Renato Golinc8d40652011-08-18 23:43:14 +0000476 if (VerboseAsm) {
477 if (S.Action == 0)
Lang Hames9ff69c82015-04-24 19:11:51 +0000478 Asm->OutStreamer->AddComment(" Action: cleanup");
Renato Golinc8d40652011-08-18 23:43:14 +0000479 else
Lang Hames9ff69c82015-04-24 19:11:51 +0000480 Asm->OutStreamer->AddComment(" Action: " +
481 Twine((S.Action - 1) / 2 + 1));
Renato Golinc8d40652011-08-18 23:43:14 +0000482 }
Bill Wendlingddec6832011-06-21 22:40:24 +0000483 Asm->EmitULEB128(S.Action);
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000484 }
Jim Grosbach693e36a2009-08-11 00:09:57 +0000485 } else {
Reid Kleckner93acac62014-12-19 22:19:48 +0000486 // Itanium LSDA exception handling
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000487
Bill Wendling0e749fe2009-08-20 22:02:24 +0000488 // The call-site table is a list of all call sites that may throw an
489 // exception (including C++ 'throw' statements) in the procedure
490 // fragment. It immediately follows the LSDA header. Each entry indicates,
491 // for a given call, the first corresponding action record and corresponding
492 // landing pad.
493 //
494 // The table begins with the number of bytes, stored as an LEB128
495 // compressed, unsigned integer. The records immediately follow the record
496 // count. They are sorted in increasing call-site address. Each record
497 // indicates:
498 //
499 // * The position of the call-site.
500 // * The position of the landing pad.
501 // * The first action record for that call site.
502 //
503 // A missing entry in the call-site table indicates that a call is not
Bill Wendling023ed642009-09-10 06:50:01 +0000504 // supposed to throw.
Bill Wendling0e749fe2009-08-20 22:02:24 +0000505
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000506 unsigned Entry = 0;
Jim Grosbach693e36a2009-08-11 00:09:57 +0000507 for (SmallVectorImpl<CallSiteEntry>::const_iterator
508 I = CallSites.begin(), E = CallSites.end(); I != E; ++I) {
509 const CallSiteEntry &S = *I;
Anton Korobeynikov61d167e2011-01-14 21:57:45 +0000510
Rafael Espindola629cdba2015-02-27 18:18:39 +0000511 MCSymbol *EHFuncBeginSym = Asm->getFunctionBegin();
Anton Korobeynikov61d167e2011-01-14 21:57:45 +0000512
Chris Lattner34adc8d2010-03-14 01:41:15 +0000513 MCSymbol *BeginLabel = S.BeginLabel;
Craig Topper353eda42014-04-24 06:44:33 +0000514 if (!BeginLabel)
Chris Lattner34adc8d2010-03-14 01:41:15 +0000515 BeginLabel = EHFuncBeginSym;
516 MCSymbol *EndLabel = S.EndLabel;
Craig Topper353eda42014-04-24 06:44:33 +0000517 if (!EndLabel)
Rafael Espindola629cdba2015-02-27 18:18:39 +0000518 EndLabel = Asm->getFunctionEnd();
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000519
Rafael Espindolad09b4162018-02-09 17:00:25 +0000520 // Offset of the call site relative to the start of the procedure.
Renato Golinc8d40652011-08-18 23:43:14 +0000521 if (VerboseAsm)
Lang Hames9ff69c82015-04-24 19:11:51 +0000522 Asm->OutStreamer->AddComment(">> Call Site " + Twine(++Entry) + " <<");
Rafael Espindolac052fa02018-02-09 17:13:37 +0000523 Asm->EmitLabelDifferenceAsULEB128(BeginLabel, EHFuncBeginSym);
Renato Golinc8d40652011-08-18 23:43:14 +0000524 if (VerboseAsm)
Lang Hames9ff69c82015-04-24 19:11:51 +0000525 Asm->OutStreamer->AddComment(Twine(" Call between ") +
526 BeginLabel->getName() + " and " +
527 EndLabel->getName());
Rafael Espindolac052fa02018-02-09 17:13:37 +0000528 Asm->EmitLabelDifferenceAsULEB128(EndLabel, BeginLabel);
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000529
Rafael Espindolad09b4162018-02-09 17:00:25 +0000530 // Offset of the landing pad relative to the start of the procedure.
Reid Kleckner0a57f652015-01-14 01:05:27 +0000531 if (!S.LPad) {
Renato Golinc8d40652011-08-18 23:43:14 +0000532 if (VerboseAsm)
Lang Hames9ff69c82015-04-24 19:11:51 +0000533 Asm->OutStreamer->AddComment(" has no landing pad");
Rafael Espindolac052fa02018-02-09 17:13:37 +0000534 Asm->EmitULEB128(0);
Renato Golinc8d40652011-08-18 23:43:14 +0000535 } else {
536 if (VerboseAsm)
Lang Hames9ff69c82015-04-24 19:11:51 +0000537 Asm->OutStreamer->AddComment(Twine(" jumps to ") +
538 S.LPad->LandingPadLabel->getName());
Rafael Espindolac052fa02018-02-09 17:13:37 +0000539 Asm->EmitLabelDifferenceAsULEB128(S.LPad->LandingPadLabel,
540 EHFuncBeginSym);
Renato Golinc8d40652011-08-18 23:43:14 +0000541 }
Jim Grosbach693e36a2009-08-11 00:09:57 +0000542
Bill Wendling0e749fe2009-08-20 22:02:24 +0000543 // Offset of the first associated action record, relative to the start of
544 // the action table. This value is biased by 1 (1 indicates the start of
545 // the action table), and 0 indicates that there are no actions.
Renato Golinc8d40652011-08-18 23:43:14 +0000546 if (VerboseAsm) {
547 if (S.Action == 0)
Lang Hames9ff69c82015-04-24 19:11:51 +0000548 Asm->OutStreamer->AddComment(" On action: cleanup");
Renato Golinc8d40652011-08-18 23:43:14 +0000549 else
Lang Hames9ff69c82015-04-24 19:11:51 +0000550 Asm->OutStreamer->AddComment(" On action: " +
551 Twine((S.Action - 1) / 2 + 1));
Renato Golinc8d40652011-08-18 23:43:14 +0000552 }
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000553 Asm->EmitULEB128(S.Action);
Jim Grosbach693e36a2009-08-11 00:09:57 +0000554 }
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000555 }
Rafael Espindolad09b4162018-02-09 17:00:25 +0000556 Asm->OutStreamer->EmitLabel(CstEndLabel);
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000557
Bill Wendling0e749fe2009-08-20 22:02:24 +0000558 // Emit the Action Table.
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000559 int Entry = 0;
Bill Wendling23b177e2009-07-28 23:44:43 +0000560 for (SmallVectorImpl<ActionEntry>::const_iterator
561 I = Actions.begin(), E = Actions.end(); I != E; ++I) {
562 const ActionEntry &Action = *I;
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000563
564 if (VerboseAsm) {
565 // Emit comments that decode the action table.
Lang Hames9ff69c82015-04-24 19:11:51 +0000566 Asm->OutStreamer->AddComment(">> Action Record " + Twine(++Entry) + " <<");
Renato Golinc8d40652011-08-18 23:43:14 +0000567 }
568
569 // Type Filter
570 //
571 // Used by the runtime to match the type of the thrown exception to the
572 // type of the catch clauses or the types in the exception specification.
573 if (VerboseAsm) {
Duncan Sands2e679372011-09-28 09:13:02 +0000574 if (Action.ValueForTypeID > 0)
Lang Hames9ff69c82015-04-24 19:11:51 +0000575 Asm->OutStreamer->AddComment(" Catch TypeInfo " +
576 Twine(Action.ValueForTypeID));
Duncan Sands2e679372011-09-28 09:13:02 +0000577 else if (Action.ValueForTypeID < 0)
Lang Hames9ff69c82015-04-24 19:11:51 +0000578 Asm->OutStreamer->AddComment(" Filter TypeInfo " +
579 Twine(Action.ValueForTypeID));
Duncan Sands2e679372011-09-28 09:13:02 +0000580 else
Lang Hames9ff69c82015-04-24 19:11:51 +0000581 Asm->OutStreamer->AddComment(" Cleanup");
Renato Golinc8d40652011-08-18 23:43:14 +0000582 }
583 Asm->EmitSLEB128(Action.ValueForTypeID);
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000584
Renato Golinc8d40652011-08-18 23:43:14 +0000585 // Action Record
586 //
587 // Self-relative signed displacement in bytes of the next action record,
588 // or 0 if there is no next action record.
589 if (VerboseAsm) {
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000590 if (Action.NextAction == 0) {
Lang Hames9ff69c82015-04-24 19:11:51 +0000591 Asm->OutStreamer->AddComment(" No further actions");
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000592 } else {
593 unsigned NextAction = Entry + (Action.NextAction + 1) / 2;
Lang Hames9ff69c82015-04-24 19:11:51 +0000594 Asm->OutStreamer->AddComment(" Continue to action "+Twine(NextAction));
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000595 }
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000596 }
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000597 Asm->EmitSLEB128(Action.NextAction);
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000598 }
599
Rafael Espindolad09b4162018-02-09 17:00:25 +0000600 if (HaveTTData) {
601 Asm->EmitAlignment(2);
602 emitTypeInfos(TTypeEncoding, TTBaseLabel);
603 }
Anton Korobeynikovf65a6382012-11-19 21:06:26 +0000604
605 Asm->EmitAlignment(2);
606}
607
Rafael Espindolad09b4162018-02-09 17:00:25 +0000608void EHStreamer::emitTypeInfos(unsigned TTypeEncoding, MCSymbol *TTBaseLabel) {
Matthias Braund0ee66c2016-12-01 19:32:15 +0000609 const MachineFunction *MF = Asm->MF;
610 const std::vector<const GlobalValue *> &TypeInfos = MF->getTypeInfos();
611 const std::vector<unsigned> &FilterIds = MF->getFilterIds();
Anton Korobeynikovf65a6382012-11-19 21:06:26 +0000612
Lang Hames9ff69c82015-04-24 19:11:51 +0000613 bool VerboseAsm = Asm->OutStreamer->isVerboseAsm();
Anton Korobeynikovf65a6382012-11-19 21:06:26 +0000614
615 int Entry = 0;
Bill Wendling4f0b8d72009-10-22 20:48:59 +0000616 // Emit the Catch TypeInfos.
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000617 if (VerboseAsm && !TypeInfos.empty()) {
Lang Hames9ff69c82015-04-24 19:11:51 +0000618 Asm->OutStreamer->AddComment(">> Catch TypeInfos <<");
619 Asm->OutStreamer->AddBlankLine();
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000620 Entry = TypeInfos.size();
Chris Lattner566cae92010-03-09 23:52:58 +0000621 }
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000622
Pete Cooper7679afd2015-07-24 21:13:43 +0000623 for (const GlobalValue *GV : make_range(TypeInfos.rbegin(),
624 TypeInfos.rend())) {
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000625 if (VerboseAsm)
Lang Hames9ff69c82015-04-24 19:11:51 +0000626 Asm->OutStreamer->AddComment("TypeInfo " + Twine(Entry--));
Anton Korobeynikov097b0e92012-11-19 21:17:20 +0000627 Asm->EmitTTypeReference(GV, TTypeEncoding);
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000628 }
629
Rafael Espindolad09b4162018-02-09 17:00:25 +0000630 Asm->OutStreamer->EmitLabel(TTBaseLabel);
631
Bill Wendling4f0b8d72009-10-22 20:48:59 +0000632 // Emit the Exception Specifications.
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000633 if (VerboseAsm && !FilterIds.empty()) {
Lang Hames9ff69c82015-04-24 19:11:51 +0000634 Asm->OutStreamer->AddComment(">> Filter TypeInfos <<");
635 Asm->OutStreamer->AddBlankLine();
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000636 Entry = 0;
Chris Lattner566cae92010-03-09 23:52:58 +0000637 }
Bill Wendling23b177e2009-07-28 23:44:43 +0000638 for (std::vector<unsigned>::const_iterator
639 I = FilterIds.begin(), E = FilterIds.end(); I < E; ++I) {
640 unsigned TypeID = *I;
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000641 if (VerboseAsm) {
642 --Entry;
Reid Kleckner0a57f652015-01-14 01:05:27 +0000643 if (isFilterEHSelector(TypeID))
Lang Hames9ff69c82015-04-24 19:11:51 +0000644 Asm->OutStreamer->AddComment("FilterInfo " + Twine(Entry));
Bill Wendlinga8339eb2011-06-21 22:30:20 +0000645 }
646
647 Asm->EmitULEB128(TypeID);
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000648 }
Bill Wendlingd64cd2b2009-05-15 01:12:28 +0000649}