blob: 5a0145eb0b8e7305c00909665bbd9a143a04fe81 [file] [log] [blame]
John McCalled1ae862011-01-28 11:13:47 +00001//===-- CGCleanup.h - Classes for cleanups IR generation --------*- C++ -*-===//
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//
10// These classes support the generation of LLVM IR for cleanups.
11//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramer2f5db8b2014-08-13 16:25:19 +000014#ifndef LLVM_CLANG_LIB_CODEGEN_CGCLEANUP_H
15#define LLVM_CLANG_LIB_CODEGEN_CGCLEANUP_H
John McCalled1ae862011-01-28 11:13:47 +000016
Reid Klecknerd29f1342013-06-19 17:07:50 +000017#include "EHScopeStack.h"
John McCall7f416cc2015-09-08 08:05:57 +000018
19#include "Address.h"
Reid Kleckner200fe222013-06-09 16:45:02 +000020#include "llvm/ADT/SmallPtrSet.h"
21#include "llvm/ADT/SmallVector.h"
Reid Klecknerd29f1342013-06-19 17:07:50 +000022
23namespace llvm {
24class BasicBlock;
25class Value;
26class ConstantInt;
27class AllocaInst;
28}
John McCalled1ae862011-01-28 11:13:47 +000029
30namespace clang {
David Majnemerc28d46e2015-07-22 23:46:21 +000031class FunctionDecl;
John McCalled1ae862011-01-28 11:13:47 +000032namespace CodeGen {
David Majnemerc28d46e2015-07-22 23:46:21 +000033class CodeGenModule;
34class CodeGenFunction;
John McCalled1ae862011-01-28 11:13:47 +000035
Reid Kleckner10aa7702015-09-16 20:15:55 +000036/// The MS C++ ABI needs a pointer to RTTI data plus some flags to describe the
37/// type of a catch handler, so we use this wrapper.
38struct CatchTypeInfo {
39 llvm::Constant *RTTI;
40 unsigned Flags;
41};
42
John McCalled1ae862011-01-28 11:13:47 +000043/// A protected scope for zero-cost EH handling.
44class EHScope {
45 llvm::BasicBlock *CachedLandingPad;
John McCall8e4c74b2011-08-11 02:22:43 +000046 llvm::BasicBlock *CachedEHDispatchBlock;
John McCalled1ae862011-01-28 11:13:47 +000047
John McCall8e4c74b2011-08-11 02:22:43 +000048 EHScopeStack::stable_iterator EnclosingEHScope;
49
50 class CommonBitFields {
51 friend class EHScope;
David Majnemerdbf10452015-07-31 17:58:45 +000052 unsigned Kind : 3;
John McCall8e4c74b2011-08-11 02:22:43 +000053 };
David Majnemerdbf10452015-07-31 17:58:45 +000054 enum { NumCommonBits = 3 };
John McCalled1ae862011-01-28 11:13:47 +000055
56protected:
John McCall8e4c74b2011-08-11 02:22:43 +000057 class CatchBitFields {
58 friend class EHCatchScope;
59 unsigned : NumCommonBits;
60
61 unsigned NumHandlers : 32 - NumCommonBits;
62 };
63
64 class CleanupBitFields {
65 friend class EHCleanupScope;
66 unsigned : NumCommonBits;
67
68 /// Whether this cleanup needs to be run along normal edges.
69 unsigned IsNormalCleanup : 1;
70
71 /// Whether this cleanup needs to be run along exception edges.
72 unsigned IsEHCleanup : 1;
73
74 /// Whether this cleanup is currently active.
75 unsigned IsActive : 1;
76
David Majnemerdc012fa2015-04-22 21:38:15 +000077 /// Whether this cleanup is a lifetime marker
78 unsigned IsLifetimeMarker : 1;
79
John McCall8e4c74b2011-08-11 02:22:43 +000080 /// Whether the normal cleanup should test the activation flag.
81 unsigned TestFlagInNormalCleanup : 1;
82
83 /// Whether the EH cleanup should test the activation flag.
84 unsigned TestFlagInEHCleanup : 1;
85
86 /// The amount of extra storage needed by the Cleanup.
87 /// Always a multiple of the scope-stack alignment.
88 unsigned CleanupSize : 12;
89
90 /// The number of fixups required by enclosing scopes (not including
91 /// this one). If this is the top cleanup scope, all the fixups
92 /// from this index onwards belong to this scope.
David Majnemerdbf10452015-07-31 17:58:45 +000093 unsigned FixupDepth : 32 - 18 - NumCommonBits; // currently 12
John McCall8e4c74b2011-08-11 02:22:43 +000094 };
95
96 class FilterBitFields {
97 friend class EHFilterScope;
98 unsigned : NumCommonBits;
99
100 unsigned NumFilters : 32 - NumCommonBits;
101 };
102
103 union {
104 CommonBitFields CommonBits;
105 CatchBitFields CatchBits;
106 CleanupBitFields CleanupBits;
107 FilterBitFields FilterBits;
108 };
John McCalled1ae862011-01-28 11:13:47 +0000109
110public:
Reid Kleckner2586aac2015-09-10 22:11:13 +0000111 enum Kind { Cleanup, Catch, Terminate, Filter, PadEnd };
John McCalled1ae862011-01-28 11:13:47 +0000112
John McCall8e4c74b2011-08-11 02:22:43 +0000113 EHScope(Kind kind, EHScopeStack::stable_iterator enclosingEHScope)
Craig Topper8a13c412014-05-21 05:09:00 +0000114 : CachedLandingPad(nullptr), CachedEHDispatchBlock(nullptr),
John McCall8e4c74b2011-08-11 02:22:43 +0000115 EnclosingEHScope(enclosingEHScope) {
116 CommonBits.Kind = kind;
117 }
John McCalled1ae862011-01-28 11:13:47 +0000118
John McCall8e4c74b2011-08-11 02:22:43 +0000119 Kind getKind() const { return static_cast<Kind>(CommonBits.Kind); }
John McCalled1ae862011-01-28 11:13:47 +0000120
121 llvm::BasicBlock *getCachedLandingPad() const {
122 return CachedLandingPad;
123 }
124
John McCall8e4c74b2011-08-11 02:22:43 +0000125 void setCachedLandingPad(llvm::BasicBlock *block) {
126 CachedLandingPad = block;
127 }
128
129 llvm::BasicBlock *getCachedEHDispatchBlock() const {
130 return CachedEHDispatchBlock;
131 }
132
133 void setCachedEHDispatchBlock(llvm::BasicBlock *block) {
134 CachedEHDispatchBlock = block;
135 }
136
137 bool hasEHBranches() const {
138 if (llvm::BasicBlock *block = getCachedEHDispatchBlock())
139 return !block->use_empty();
140 return false;
141 }
142
143 EHScopeStack::stable_iterator getEnclosingEHScope() const {
144 return EnclosingEHScope;
John McCalled1ae862011-01-28 11:13:47 +0000145 }
146};
147
148/// A scope which attempts to handle some, possibly all, types of
149/// exceptions.
150///
James Dennettbe302452012-06-15 22:10:14 +0000151/// Objective C \@finally blocks are represented using a cleanup scope
John McCalled1ae862011-01-28 11:13:47 +0000152/// after the catch scope.
153class EHCatchScope : public EHScope {
John McCalled1ae862011-01-28 11:13:47 +0000154 // In effect, we have a flexible array member
155 // Handler Handlers[0];
156 // But that's only standard in C99, not C++, so we have to do
157 // annoying pointer arithmetic instead.
158
159public:
160 struct Handler {
161 /// A type info value, or null (C++ null, not an LLVM null pointer)
162 /// for a catch-all.
Reid Kleckner10aa7702015-09-16 20:15:55 +0000163 CatchTypeInfo Type;
John McCalled1ae862011-01-28 11:13:47 +0000164
165 /// The catch handler for this type.
166 llvm::BasicBlock *Block;
167
Reid Kleckner10aa7702015-09-16 20:15:55 +0000168 bool isCatchAll() const { return Type.RTTI == nullptr; }
John McCalled1ae862011-01-28 11:13:47 +0000169 };
170
171private:
172 friend class EHScopeStack;
173
174 Handler *getHandlers() {
175 return reinterpret_cast<Handler*>(this+1);
176 }
177
178 const Handler *getHandlers() const {
179 return reinterpret_cast<const Handler*>(this+1);
180 }
181
182public:
183 static size_t getSizeForNumHandlers(unsigned N) {
184 return sizeof(EHCatchScope) + N * sizeof(Handler);
185 }
186
John McCall8e4c74b2011-08-11 02:22:43 +0000187 EHCatchScope(unsigned numHandlers,
188 EHScopeStack::stable_iterator enclosingEHScope)
189 : EHScope(Catch, enclosingEHScope) {
190 CatchBits.NumHandlers = numHandlers;
John McCalled1ae862011-01-28 11:13:47 +0000191 }
192
193 unsigned getNumHandlers() const {
John McCall8e4c74b2011-08-11 02:22:43 +0000194 return CatchBits.NumHandlers;
John McCalled1ae862011-01-28 11:13:47 +0000195 }
196
197 void setCatchAllHandler(unsigned I, llvm::BasicBlock *Block) {
Reid Kleckner10aa7702015-09-16 20:15:55 +0000198 setHandler(I, CatchTypeInfo{nullptr, 0}, Block);
John McCalled1ae862011-01-28 11:13:47 +0000199 }
200
Rafael Espindolabb9e7a32014-06-04 18:51:46 +0000201 void setHandler(unsigned I, llvm::Constant *Type, llvm::BasicBlock *Block) {
John McCalled1ae862011-01-28 11:13:47 +0000202 assert(I < getNumHandlers());
Reid Kleckner10aa7702015-09-16 20:15:55 +0000203 getHandlers()[I].Type = CatchTypeInfo{Type, 0};
204 getHandlers()[I].Block = Block;
205 }
206
207 void setHandler(unsigned I, CatchTypeInfo Type, llvm::BasicBlock *Block) {
208 assert(I < getNumHandlers());
John McCalled1ae862011-01-28 11:13:47 +0000209 getHandlers()[I].Type = Type;
210 getHandlers()[I].Block = Block;
211 }
212
213 const Handler &getHandler(unsigned I) const {
214 assert(I < getNumHandlers());
215 return getHandlers()[I];
216 }
217
Kostya Serebryanyba4aced2014-01-09 09:22:32 +0000218 // Clear all handler blocks.
219 // FIXME: it's better to always call clearHandlerBlocks in DTOR and have a
220 // 'takeHandler' or some such function which removes ownership from the
221 // EHCatchScope object if the handlers should live longer than EHCatchScope.
222 void clearHandlerBlocks() {
223 for (unsigned I = 0, N = getNumHandlers(); I != N; ++I)
224 delete getHandler(I).Block;
225 }
226
John McCalled1ae862011-01-28 11:13:47 +0000227 typedef const Handler *iterator;
228 iterator begin() const { return getHandlers(); }
229 iterator end() const { return getHandlers() + getNumHandlers(); }
230
231 static bool classof(const EHScope *Scope) {
232 return Scope->getKind() == Catch;
233 }
234};
235
236/// A cleanup scope which generates the cleanup blocks lazily.
James Y Knight53c76162015-07-17 18:21:37 +0000237class LLVM_ALIGNAS(/*alignof(uint64_t)*/ 8) EHCleanupScope : public EHScope {
John McCalled1ae862011-01-28 11:13:47 +0000238 /// The nearest normal cleanup scope enclosing this one.
239 EHScopeStack::stable_iterator EnclosingNormal;
240
John McCall8e4c74b2011-08-11 02:22:43 +0000241 /// The nearest EH scope enclosing this one.
John McCalled1ae862011-01-28 11:13:47 +0000242 EHScopeStack::stable_iterator EnclosingEH;
243
244 /// The dual entry/exit block along the normal edge. This is lazily
245 /// created if needed before the cleanup is popped.
246 llvm::BasicBlock *NormalBlock;
247
John McCalled1ae862011-01-28 11:13:47 +0000248 /// An optional i1 variable indicating whether this cleanup has been
249 /// activated yet.
250 llvm::AllocaInst *ActiveFlag;
251
252 /// Extra information required for cleanups that have resolved
253 /// branches through them. This has to be allocated on the side
254 /// because everything on the cleanup stack has be trivially
255 /// movable.
256 struct ExtInfo {
257 /// The destinations of normal branch-afters and branch-throughs.
258 llvm::SmallPtrSet<llvm::BasicBlock*, 4> Branches;
259
260 /// Normal branch-afters.
Chris Lattner01cf8db2011-07-20 06:58:45 +0000261 SmallVector<std::pair<llvm::BasicBlock*,llvm::ConstantInt*>, 4>
John McCalled1ae862011-01-28 11:13:47 +0000262 BranchAfters;
John McCalled1ae862011-01-28 11:13:47 +0000263 };
264 mutable struct ExtInfo *ExtInfo;
265
266 struct ExtInfo &getExtInfo() {
267 if (!ExtInfo) ExtInfo = new struct ExtInfo();
268 return *ExtInfo;
269 }
270
271 const struct ExtInfo &getExtInfo() const {
272 if (!ExtInfo) ExtInfo = new struct ExtInfo();
273 return *ExtInfo;
274 }
275
276public:
277 /// Gets the size required for a lazy cleanup scope with the given
278 /// cleanup-data requirements.
279 static size_t getSizeForCleanupSize(size_t Size) {
280 return sizeof(EHCleanupScope) + Size;
281 }
282
283 size_t getAllocatedSize() const {
John McCall8e4c74b2011-08-11 02:22:43 +0000284 return sizeof(EHCleanupScope) + CleanupBits.CleanupSize;
John McCalled1ae862011-01-28 11:13:47 +0000285 }
286
John McCall8e4c74b2011-08-11 02:22:43 +0000287 EHCleanupScope(bool isNormal, bool isEH, bool isActive,
288 unsigned cleanupSize, unsigned fixupDepth,
289 EHScopeStack::stable_iterator enclosingNormal,
290 EHScopeStack::stable_iterator enclosingEH)
291 : EHScope(EHScope::Cleanup, enclosingEH), EnclosingNormal(enclosingNormal),
Craig Topper8a13c412014-05-21 05:09:00 +0000292 NormalBlock(nullptr), ActiveFlag(nullptr), ExtInfo(nullptr) {
John McCall8e4c74b2011-08-11 02:22:43 +0000293 CleanupBits.IsNormalCleanup = isNormal;
294 CleanupBits.IsEHCleanup = isEH;
295 CleanupBits.IsActive = isActive;
David Majnemerdc012fa2015-04-22 21:38:15 +0000296 CleanupBits.IsLifetimeMarker = false;
John McCall8e4c74b2011-08-11 02:22:43 +0000297 CleanupBits.TestFlagInNormalCleanup = false;
298 CleanupBits.TestFlagInEHCleanup = false;
299 CleanupBits.CleanupSize = cleanupSize;
300 CleanupBits.FixupDepth = fixupDepth;
301
302 assert(CleanupBits.CleanupSize == cleanupSize && "cleanup size overflow");
John McCalled1ae862011-01-28 11:13:47 +0000303 }
304
Kostya Serebryanyb21aa762014-10-08 18:31:54 +0000305 void Destroy() {
John McCalled1ae862011-01-28 11:13:47 +0000306 delete ExtInfo;
307 }
Kostya Serebryanyb21aa762014-10-08 18:31:54 +0000308 // Objects of EHCleanupScope are not destructed. Use Destroy().
Aaron Ballmanabc18922015-02-15 22:54:08 +0000309 ~EHCleanupScope() = delete;
John McCalled1ae862011-01-28 11:13:47 +0000310
John McCall8e4c74b2011-08-11 02:22:43 +0000311 bool isNormalCleanup() const { return CleanupBits.IsNormalCleanup; }
John McCalled1ae862011-01-28 11:13:47 +0000312 llvm::BasicBlock *getNormalBlock() const { return NormalBlock; }
313 void setNormalBlock(llvm::BasicBlock *BB) { NormalBlock = BB; }
314
John McCall8e4c74b2011-08-11 02:22:43 +0000315 bool isEHCleanup() const { return CleanupBits.IsEHCleanup; }
John McCalled1ae862011-01-28 11:13:47 +0000316
John McCall8e4c74b2011-08-11 02:22:43 +0000317 bool isActive() const { return CleanupBits.IsActive; }
318 void setActive(bool A) { CleanupBits.IsActive = A; }
John McCalled1ae862011-01-28 11:13:47 +0000319
David Majnemerdc012fa2015-04-22 21:38:15 +0000320 bool isLifetimeMarker() const { return CleanupBits.IsLifetimeMarker; }
321 void setLifetimeMarker() { CleanupBits.IsLifetimeMarker = true; }
322
John McCall7f416cc2015-09-08 08:05:57 +0000323 bool hasActiveFlag() const { return ActiveFlag != nullptr; }
324 Address getActiveFlag() const {
325 return Address(ActiveFlag, CharUnits::One());
326 }
327 void setActiveFlag(Address Var) {
328 assert(Var.getAlignment().isOne());
329 ActiveFlag = cast<llvm::AllocaInst>(Var.getPointer());
330 }
John McCalled1ae862011-01-28 11:13:47 +0000331
John McCall8e4c74b2011-08-11 02:22:43 +0000332 void setTestFlagInNormalCleanup() {
333 CleanupBits.TestFlagInNormalCleanup = true;
334 }
335 bool shouldTestFlagInNormalCleanup() const {
336 return CleanupBits.TestFlagInNormalCleanup;
337 }
John McCalled1ae862011-01-28 11:13:47 +0000338
John McCall8e4c74b2011-08-11 02:22:43 +0000339 void setTestFlagInEHCleanup() {
340 CleanupBits.TestFlagInEHCleanup = true;
341 }
342 bool shouldTestFlagInEHCleanup() const {
343 return CleanupBits.TestFlagInEHCleanup;
344 }
John McCalled1ae862011-01-28 11:13:47 +0000345
John McCall8e4c74b2011-08-11 02:22:43 +0000346 unsigned getFixupDepth() const { return CleanupBits.FixupDepth; }
John McCalled1ae862011-01-28 11:13:47 +0000347 EHScopeStack::stable_iterator getEnclosingNormalCleanup() const {
348 return EnclosingNormal;
349 }
John McCalled1ae862011-01-28 11:13:47 +0000350
John McCall8e4c74b2011-08-11 02:22:43 +0000351 size_t getCleanupSize() const { return CleanupBits.CleanupSize; }
John McCalled1ae862011-01-28 11:13:47 +0000352 void *getCleanupBuffer() { return this + 1; }
353
354 EHScopeStack::Cleanup *getCleanup() {
355 return reinterpret_cast<EHScopeStack::Cleanup*>(getCleanupBuffer());
356 }
357
358 /// True if this cleanup scope has any branch-afters or branch-throughs.
359 bool hasBranches() const { return ExtInfo && !ExtInfo->Branches.empty(); }
360
361 /// Add a branch-after to this cleanup scope. A branch-after is a
362 /// branch from a point protected by this (normal) cleanup to a
363 /// point in the normal cleanup scope immediately containing it.
364 /// For example,
365 /// for (;;) { A a; break; }
366 /// contains a branch-after.
367 ///
368 /// Branch-afters each have their own destination out of the
369 /// cleanup, guaranteed distinct from anything else threaded through
370 /// it. Therefore branch-afters usually force a switch after the
371 /// cleanup.
372 void addBranchAfter(llvm::ConstantInt *Index,
373 llvm::BasicBlock *Block) {
374 struct ExtInfo &ExtInfo = getExtInfo();
David Blaikie82e95a32014-11-19 07:49:47 +0000375 if (ExtInfo.Branches.insert(Block).second)
John McCalled1ae862011-01-28 11:13:47 +0000376 ExtInfo.BranchAfters.push_back(std::make_pair(Block, Index));
377 }
378
379 /// Return the number of unique branch-afters on this scope.
380 unsigned getNumBranchAfters() const {
381 return ExtInfo ? ExtInfo->BranchAfters.size() : 0;
382 }
383
384 llvm::BasicBlock *getBranchAfterBlock(unsigned I) const {
385 assert(I < getNumBranchAfters());
386 return ExtInfo->BranchAfters[I].first;
387 }
388
389 llvm::ConstantInt *getBranchAfterIndex(unsigned I) const {
390 assert(I < getNumBranchAfters());
391 return ExtInfo->BranchAfters[I].second;
392 }
393
394 /// Add a branch-through to this cleanup scope. A branch-through is
395 /// a branch from a scope protected by this (normal) cleanup to an
396 /// enclosing scope other than the immediately-enclosing normal
397 /// cleanup scope.
398 ///
399 /// In the following example, the branch through B's scope is a
400 /// branch-through, while the branch through A's scope is a
401 /// branch-after:
402 /// for (;;) { A a; B b; break; }
403 ///
404 /// All branch-throughs have a common destination out of the
405 /// cleanup, one possibly shared with the fall-through. Therefore
406 /// branch-throughs usually don't force a switch after the cleanup.
407 ///
408 /// \return true if the branch-through was new to this scope
409 bool addBranchThrough(llvm::BasicBlock *Block) {
David Blaikie82e95a32014-11-19 07:49:47 +0000410 return getExtInfo().Branches.insert(Block).second;
John McCalled1ae862011-01-28 11:13:47 +0000411 }
412
413 /// Determines if this cleanup scope has any branch throughs.
414 bool hasBranchThroughs() const {
415 if (!ExtInfo) return false;
416 return (ExtInfo->BranchAfters.size() != ExtInfo->Branches.size());
417 }
418
John McCalled1ae862011-01-28 11:13:47 +0000419 static bool classof(const EHScope *Scope) {
420 return (Scope->getKind() == Cleanup);
421 }
422};
James Y Knight53c76162015-07-17 18:21:37 +0000423// NOTE: there's a bunch of different data classes tacked on after an
424// EHCleanupScope. It is asserted (in EHScopeStack::pushCleanup*) that
425// they don't require greater alignment than ScopeStackAlignment. So,
426// EHCleanupScope ought to have alignment equal to that -- not more
427// (would be misaligned by the stack allocator), and not less (would
428// break the appended classes).
429static_assert(llvm::AlignOf<EHCleanupScope>::Alignment ==
430 EHScopeStack::ScopeStackAlignment,
431 "EHCleanupScope expected alignment");
John McCalled1ae862011-01-28 11:13:47 +0000432
433/// An exceptions scope which filters exceptions thrown through it.
434/// Only exceptions matching the filter types will be permitted to be
435/// thrown.
436///
437/// This is used to implement C++ exception specifications.
438class EHFilterScope : public EHScope {
John McCalled1ae862011-01-28 11:13:47 +0000439 // Essentially ends in a flexible array member:
440 // llvm::Value *FilterTypes[0];
441
442 llvm::Value **getFilters() {
443 return reinterpret_cast<llvm::Value**>(this+1);
444 }
445
446 llvm::Value * const *getFilters() const {
447 return reinterpret_cast<llvm::Value* const *>(this+1);
448 }
449
450public:
John McCall8e4c74b2011-08-11 02:22:43 +0000451 EHFilterScope(unsigned numFilters)
452 : EHScope(Filter, EHScopeStack::stable_end()) {
453 FilterBits.NumFilters = numFilters;
John McCalled1ae862011-01-28 11:13:47 +0000454 }
455
John McCall8e4c74b2011-08-11 02:22:43 +0000456 static size_t getSizeForNumFilters(unsigned numFilters) {
457 return sizeof(EHFilterScope) + numFilters * sizeof(llvm::Value*);
John McCalled1ae862011-01-28 11:13:47 +0000458 }
459
John McCall8e4c74b2011-08-11 02:22:43 +0000460 unsigned getNumFilters() const { return FilterBits.NumFilters; }
461
462 void setFilter(unsigned i, llvm::Value *filterValue) {
463 assert(i < getNumFilters());
464 getFilters()[i] = filterValue;
John McCalled1ae862011-01-28 11:13:47 +0000465 }
466
John McCall8e4c74b2011-08-11 02:22:43 +0000467 llvm::Value *getFilter(unsigned i) const {
468 assert(i < getNumFilters());
469 return getFilters()[i];
470 }
471
472 static bool classof(const EHScope *scope) {
473 return scope->getKind() == Filter;
John McCalled1ae862011-01-28 11:13:47 +0000474 }
475};
476
477/// An exceptions scope which calls std::terminate if any exception
478/// reaches it.
479class EHTerminateScope : public EHScope {
John McCalled1ae862011-01-28 11:13:47 +0000480public:
John McCall8e4c74b2011-08-11 02:22:43 +0000481 EHTerminateScope(EHScopeStack::stable_iterator enclosingEHScope)
482 : EHScope(Terminate, enclosingEHScope) {}
John McCalled1ae862011-01-28 11:13:47 +0000483 static size_t getSize() { return sizeof(EHTerminateScope); }
484
John McCall8e4c74b2011-08-11 02:22:43 +0000485 static bool classof(const EHScope *scope) {
486 return scope->getKind() == Terminate;
John McCalled1ae862011-01-28 11:13:47 +0000487 }
488};
489
Reid Kleckner2586aac2015-09-10 22:11:13 +0000490class EHPadEndScope : public EHScope {
David Majnemerdbf10452015-07-31 17:58:45 +0000491public:
Reid Kleckner2586aac2015-09-10 22:11:13 +0000492 EHPadEndScope(EHScopeStack::stable_iterator enclosingEHScope)
493 : EHScope(PadEnd, enclosingEHScope) {}
494 static size_t getSize() { return sizeof(EHPadEndScope); }
David Majnemerdbf10452015-07-31 17:58:45 +0000495
496 static bool classof(const EHScope *scope) {
Reid Kleckner2586aac2015-09-10 22:11:13 +0000497 return scope->getKind() == PadEnd;
David Majnemerdbf10452015-07-31 17:58:45 +0000498 }
499};
500
John McCalled1ae862011-01-28 11:13:47 +0000501/// A non-stable pointer into the scope stack.
502class EHScopeStack::iterator {
503 char *Ptr;
504
505 friend class EHScopeStack;
506 explicit iterator(char *Ptr) : Ptr(Ptr) {}
507
508public:
Craig Topper8a13c412014-05-21 05:09:00 +0000509 iterator() : Ptr(nullptr) {}
John McCalled1ae862011-01-28 11:13:47 +0000510
511 EHScope *get() const {
512 return reinterpret_cast<EHScope*>(Ptr);
513 }
514
515 EHScope *operator->() const { return get(); }
516 EHScope &operator*() const { return *get(); }
517
518 iterator &operator++() {
James Y Knight53c76162015-07-17 18:21:37 +0000519 size_t Size;
John McCalled1ae862011-01-28 11:13:47 +0000520 switch (get()->getKind()) {
521 case EHScope::Catch:
James Y Knight53c76162015-07-17 18:21:37 +0000522 Size = EHCatchScope::getSizeForNumHandlers(
523 static_cast<const EHCatchScope *>(get())->getNumHandlers());
John McCalled1ae862011-01-28 11:13:47 +0000524 break;
525
526 case EHScope::Filter:
James Y Knight53c76162015-07-17 18:21:37 +0000527 Size = EHFilterScope::getSizeForNumFilters(
528 static_cast<const EHFilterScope *>(get())->getNumFilters());
John McCalled1ae862011-01-28 11:13:47 +0000529 break;
530
531 case EHScope::Cleanup:
James Y Knight53c76162015-07-17 18:21:37 +0000532 Size = static_cast<const EHCleanupScope *>(get())->getAllocatedSize();
John McCalled1ae862011-01-28 11:13:47 +0000533 break;
534
535 case EHScope::Terminate:
James Y Knight53c76162015-07-17 18:21:37 +0000536 Size = EHTerminateScope::getSize();
John McCalled1ae862011-01-28 11:13:47 +0000537 break;
David Majnemerdbf10452015-07-31 17:58:45 +0000538
Reid Kleckner2586aac2015-09-10 22:11:13 +0000539 case EHScope::PadEnd:
540 Size = EHPadEndScope::getSize();
David Majnemerdbf10452015-07-31 17:58:45 +0000541 break;
John McCalled1ae862011-01-28 11:13:47 +0000542 }
James Y Knight53c76162015-07-17 18:21:37 +0000543 Ptr += llvm::RoundUpToAlignment(Size, ScopeStackAlignment);
John McCalled1ae862011-01-28 11:13:47 +0000544 return *this;
545 }
546
547 iterator next() {
548 iterator copy = *this;
549 ++copy;
550 return copy;
551 }
552
553 iterator operator++(int) {
554 iterator copy = *this;
555 operator++();
556 return copy;
557 }
558
559 bool encloses(iterator other) const { return Ptr >= other.Ptr; }
560 bool strictlyEncloses(iterator other) const { return Ptr > other.Ptr; }
561
562 bool operator==(iterator other) const { return Ptr == other.Ptr; }
563 bool operator!=(iterator other) const { return Ptr != other.Ptr; }
564};
565
566inline EHScopeStack::iterator EHScopeStack::begin() const {
567 return iterator(StartOfData);
568}
569
570inline EHScopeStack::iterator EHScopeStack::end() const {
571 return iterator(EndOfBuffer);
572}
573
574inline void EHScopeStack::popCatch() {
575 assert(!empty() && "popping exception stack when not empty");
576
John McCall8e4c74b2011-08-11 02:22:43 +0000577 EHCatchScope &scope = cast<EHCatchScope>(*begin());
578 InnermostEHScope = scope.getEnclosingEHScope();
James Y Knight53c76162015-07-17 18:21:37 +0000579 deallocate(EHCatchScope::getSizeForNumHandlers(scope.getNumHandlers()));
John McCalled1ae862011-01-28 11:13:47 +0000580}
581
582inline void EHScopeStack::popTerminate() {
583 assert(!empty() && "popping exception stack when not empty");
584
John McCall8e4c74b2011-08-11 02:22:43 +0000585 EHTerminateScope &scope = cast<EHTerminateScope>(*begin());
586 InnermostEHScope = scope.getEnclosingEHScope();
James Y Knight53c76162015-07-17 18:21:37 +0000587 deallocate(EHTerminateScope::getSize());
John McCalled1ae862011-01-28 11:13:47 +0000588}
589
Reid Kleckner2586aac2015-09-10 22:11:13 +0000590inline void EHScopeStack::popPadEnd() {
David Majnemerdbf10452015-07-31 17:58:45 +0000591 assert(!empty() && "popping exception stack when not empty");
592
Reid Kleckner2586aac2015-09-10 22:11:13 +0000593 EHPadEndScope &scope = cast<EHPadEndScope>(*begin());
David Majnemerdbf10452015-07-31 17:58:45 +0000594 InnermostEHScope = scope.getEnclosingEHScope();
Reid Kleckner2586aac2015-09-10 22:11:13 +0000595 deallocate(EHPadEndScope::getSize());
David Majnemerdbf10452015-07-31 17:58:45 +0000596}
597
John McCalled1ae862011-01-28 11:13:47 +0000598inline EHScopeStack::iterator EHScopeStack::find(stable_iterator sp) const {
599 assert(sp.isValid() && "finding invalid savepoint");
600 assert(sp.Size <= stable_begin().Size && "finding savepoint after pop");
601 return iterator(EndOfBuffer - sp.Size);
602}
603
604inline EHScopeStack::stable_iterator
605EHScopeStack::stabilize(iterator ir) const {
606 assert(StartOfData <= ir.Ptr && ir.Ptr <= EndOfBuffer);
607 return stable_iterator(EndOfBuffer - ir.Ptr);
608}
609
David Majnemerc28d46e2015-07-22 23:46:21 +0000610/// The exceptions personality for a function.
611struct EHPersonality {
612 const char *PersonalityFn;
613
614 // If this is non-null, this personality requires a non-standard
615 // function for rethrowing an exception after a catchall cleanup.
616 // This function must have prototype void(void*).
617 const char *CatchallRethrowFn;
618
619 static const EHPersonality &get(CodeGenModule &CGM, const FunctionDecl *FD);
620 static const EHPersonality &get(CodeGenFunction &CGF);
621
622 static const EHPersonality GNU_C;
623 static const EHPersonality GNU_C_SJLJ;
624 static const EHPersonality GNU_C_SEH;
625 static const EHPersonality GNU_ObjC;
626 static const EHPersonality GNUstep_ObjC;
627 static const EHPersonality GNU_ObjCXX;
628 static const EHPersonality NeXT_ObjC;
629 static const EHPersonality GNU_CPlusPlus;
630 static const EHPersonality GNU_CPlusPlus_SJLJ;
631 static const EHPersonality GNU_CPlusPlus_SEH;
632 static const EHPersonality MSVC_except_handler;
633 static const EHPersonality MSVC_C_specific_handler;
634 static const EHPersonality MSVC_CxxFrameHandler3;
David Majnemerdbf10452015-07-31 17:58:45 +0000635
Reid Kleckner129552b2015-10-08 01:13:52 +0000636 /// Does this personality use landingpads or the family of pad instructions
637 /// designed to form funclets?
638 bool usesFuncletPads() const { return isMSVCPersonality(); }
639
David Majnemerdbf10452015-07-31 17:58:45 +0000640 bool isMSVCPersonality() const {
641 return this == &MSVC_except_handler || this == &MSVC_C_specific_handler ||
642 this == &MSVC_CxxFrameHandler3;
643 }
644
645 bool isMSVCXXPersonality() const { return this == &MSVC_CxxFrameHandler3; }
David Majnemerc28d46e2015-07-22 23:46:21 +0000646};
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000647}
648}
John McCalled1ae862011-01-28 11:13:47 +0000649
650#endif