blob: 5f94aec49783a91eb1e82b04a2455a4c42a228da [file] [log] [blame]
John McCall36f893c2011-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
Stephen Hines176edba2014-12-01 14:53:08 -080014#ifndef LLVM_CLANG_LIB_CODEGEN_CGCLEANUP_H
15#define LLVM_CLANG_LIB_CODEGEN_CGCLEANUP_H
John McCall36f893c2011-01-28 11:13:47 +000016
Reid Kleckner43a75fc2013-06-19 17:07:50 +000017#include "EHScopeStack.h"
Reid Kleckner6fe91e42013-06-09 16:45:02 +000018#include "llvm/ADT/SmallPtrSet.h"
19#include "llvm/ADT/SmallVector.h"
Reid Kleckner43a75fc2013-06-19 17:07:50 +000020
21namespace llvm {
22class BasicBlock;
23class Value;
24class ConstantInt;
25class AllocaInst;
26}
John McCall36f893c2011-01-28 11:13:47 +000027
28namespace clang {
29namespace CodeGen {
30
31/// A protected scope for zero-cost EH handling.
32class EHScope {
33 llvm::BasicBlock *CachedLandingPad;
John McCall777d6e52011-08-11 02:22:43 +000034 llvm::BasicBlock *CachedEHDispatchBlock;
John McCall36f893c2011-01-28 11:13:47 +000035
John McCall777d6e52011-08-11 02:22:43 +000036 EHScopeStack::stable_iterator EnclosingEHScope;
37
38 class CommonBitFields {
39 friend class EHScope;
40 unsigned Kind : 2;
41 };
42 enum { NumCommonBits = 2 };
John McCall36f893c2011-01-28 11:13:47 +000043
44protected:
John McCall777d6e52011-08-11 02:22:43 +000045 class CatchBitFields {
46 friend class EHCatchScope;
47 unsigned : NumCommonBits;
48
49 unsigned NumHandlers : 32 - NumCommonBits;
50 };
51
52 class CleanupBitFields {
53 friend class EHCleanupScope;
54 unsigned : NumCommonBits;
55
56 /// Whether this cleanup needs to be run along normal edges.
57 unsigned IsNormalCleanup : 1;
58
59 /// Whether this cleanup needs to be run along exception edges.
60 unsigned IsEHCleanup : 1;
61
62 /// Whether this cleanup is currently active.
63 unsigned IsActive : 1;
64
65 /// Whether the normal cleanup should test the activation flag.
66 unsigned TestFlagInNormalCleanup : 1;
67
68 /// Whether the EH cleanup should test the activation flag.
69 unsigned TestFlagInEHCleanup : 1;
70
71 /// The amount of extra storage needed by the Cleanup.
72 /// Always a multiple of the scope-stack alignment.
73 unsigned CleanupSize : 12;
74
75 /// The number of fixups required by enclosing scopes (not including
76 /// this one). If this is the top cleanup scope, all the fixups
77 /// from this index onwards belong to this scope.
78 unsigned FixupDepth : 32 - 17 - NumCommonBits; // currently 13
79 };
80
81 class FilterBitFields {
82 friend class EHFilterScope;
83 unsigned : NumCommonBits;
84
85 unsigned NumFilters : 32 - NumCommonBits;
86 };
87
88 union {
89 CommonBitFields CommonBits;
90 CatchBitFields CatchBits;
91 CleanupBitFields CleanupBits;
92 FilterBitFields FilterBits;
93 };
John McCall36f893c2011-01-28 11:13:47 +000094
95public:
96 enum Kind { Cleanup, Catch, Terminate, Filter };
97
John McCall777d6e52011-08-11 02:22:43 +000098 EHScope(Kind kind, EHScopeStack::stable_iterator enclosingEHScope)
Stephen Hines6bcf27b2014-05-29 04:14:42 -070099 : CachedLandingPad(nullptr), CachedEHDispatchBlock(nullptr),
John McCall777d6e52011-08-11 02:22:43 +0000100 EnclosingEHScope(enclosingEHScope) {
101 CommonBits.Kind = kind;
102 }
John McCall36f893c2011-01-28 11:13:47 +0000103
John McCall777d6e52011-08-11 02:22:43 +0000104 Kind getKind() const { return static_cast<Kind>(CommonBits.Kind); }
John McCall36f893c2011-01-28 11:13:47 +0000105
106 llvm::BasicBlock *getCachedLandingPad() const {
107 return CachedLandingPad;
108 }
109
John McCall777d6e52011-08-11 02:22:43 +0000110 void setCachedLandingPad(llvm::BasicBlock *block) {
111 CachedLandingPad = block;
112 }
113
114 llvm::BasicBlock *getCachedEHDispatchBlock() const {
115 return CachedEHDispatchBlock;
116 }
117
118 void setCachedEHDispatchBlock(llvm::BasicBlock *block) {
119 CachedEHDispatchBlock = block;
120 }
121
122 bool hasEHBranches() const {
123 if (llvm::BasicBlock *block = getCachedEHDispatchBlock())
124 return !block->use_empty();
125 return false;
126 }
127
128 EHScopeStack::stable_iterator getEnclosingEHScope() const {
129 return EnclosingEHScope;
John McCall36f893c2011-01-28 11:13:47 +0000130 }
131};
132
133/// A scope which attempts to handle some, possibly all, types of
134/// exceptions.
135///
James Dennett2ee5ba32012-06-15 22:10:14 +0000136/// Objective C \@finally blocks are represented using a cleanup scope
John McCall36f893c2011-01-28 11:13:47 +0000137/// after the catch scope.
138class EHCatchScope : public EHScope {
John McCall36f893c2011-01-28 11:13:47 +0000139 // In effect, we have a flexible array member
140 // Handler Handlers[0];
141 // But that's only standard in C99, not C++, so we have to do
142 // annoying pointer arithmetic instead.
143
144public:
145 struct Handler {
146 /// A type info value, or null (C++ null, not an LLVM null pointer)
147 /// for a catch-all.
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700148 llvm::Constant *Type;
John McCall36f893c2011-01-28 11:13:47 +0000149
150 /// The catch handler for this type.
151 llvm::BasicBlock *Block;
152
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700153 bool isCatchAll() const { return Type == nullptr; }
John McCall36f893c2011-01-28 11:13:47 +0000154 };
155
156private:
157 friend class EHScopeStack;
158
159 Handler *getHandlers() {
160 return reinterpret_cast<Handler*>(this+1);
161 }
162
163 const Handler *getHandlers() const {
164 return reinterpret_cast<const Handler*>(this+1);
165 }
166
167public:
168 static size_t getSizeForNumHandlers(unsigned N) {
169 return sizeof(EHCatchScope) + N * sizeof(Handler);
170 }
171
John McCall777d6e52011-08-11 02:22:43 +0000172 EHCatchScope(unsigned numHandlers,
173 EHScopeStack::stable_iterator enclosingEHScope)
174 : EHScope(Catch, enclosingEHScope) {
175 CatchBits.NumHandlers = numHandlers;
John McCall36f893c2011-01-28 11:13:47 +0000176 }
177
178 unsigned getNumHandlers() const {
John McCall777d6e52011-08-11 02:22:43 +0000179 return CatchBits.NumHandlers;
John McCall36f893c2011-01-28 11:13:47 +0000180 }
181
182 void setCatchAllHandler(unsigned I, llvm::BasicBlock *Block) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700183 setHandler(I, /*catchall*/ nullptr, Block);
John McCall36f893c2011-01-28 11:13:47 +0000184 }
185
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700186 void setHandler(unsigned I, llvm::Constant *Type, llvm::BasicBlock *Block) {
John McCall36f893c2011-01-28 11:13:47 +0000187 assert(I < getNumHandlers());
188 getHandlers()[I].Type = Type;
189 getHandlers()[I].Block = Block;
190 }
191
192 const Handler &getHandler(unsigned I) const {
193 assert(I < getNumHandlers());
194 return getHandlers()[I];
195 }
196
Stephen Hines651f13c2014-04-23 16:59:28 -0700197 // Clear all handler blocks.
198 // FIXME: it's better to always call clearHandlerBlocks in DTOR and have a
199 // 'takeHandler' or some such function which removes ownership from the
200 // EHCatchScope object if the handlers should live longer than EHCatchScope.
201 void clearHandlerBlocks() {
202 for (unsigned I = 0, N = getNumHandlers(); I != N; ++I)
203 delete getHandler(I).Block;
204 }
205
John McCall36f893c2011-01-28 11:13:47 +0000206 typedef const Handler *iterator;
207 iterator begin() const { return getHandlers(); }
208 iterator end() const { return getHandlers() + getNumHandlers(); }
209
210 static bool classof(const EHScope *Scope) {
211 return Scope->getKind() == Catch;
212 }
213};
214
215/// A cleanup scope which generates the cleanup blocks lazily.
216class EHCleanupScope : public EHScope {
John McCall36f893c2011-01-28 11:13:47 +0000217 /// The nearest normal cleanup scope enclosing this one.
218 EHScopeStack::stable_iterator EnclosingNormal;
219
John McCall777d6e52011-08-11 02:22:43 +0000220 /// The nearest EH scope enclosing this one.
John McCall36f893c2011-01-28 11:13:47 +0000221 EHScopeStack::stable_iterator EnclosingEH;
222
223 /// The dual entry/exit block along the normal edge. This is lazily
224 /// created if needed before the cleanup is popped.
225 llvm::BasicBlock *NormalBlock;
226
John McCall36f893c2011-01-28 11:13:47 +0000227 /// An optional i1 variable indicating whether this cleanup has been
228 /// activated yet.
229 llvm::AllocaInst *ActiveFlag;
230
231 /// Extra information required for cleanups that have resolved
232 /// branches through them. This has to be allocated on the side
233 /// because everything on the cleanup stack has be trivially
234 /// movable.
235 struct ExtInfo {
236 /// The destinations of normal branch-afters and branch-throughs.
237 llvm::SmallPtrSet<llvm::BasicBlock*, 4> Branches;
238
239 /// Normal branch-afters.
Chris Lattner686775d2011-07-20 06:58:45 +0000240 SmallVector<std::pair<llvm::BasicBlock*,llvm::ConstantInt*>, 4>
John McCall36f893c2011-01-28 11:13:47 +0000241 BranchAfters;
John McCall36f893c2011-01-28 11:13:47 +0000242 };
243 mutable struct ExtInfo *ExtInfo;
244
245 struct ExtInfo &getExtInfo() {
246 if (!ExtInfo) ExtInfo = new struct ExtInfo();
247 return *ExtInfo;
248 }
249
250 const struct ExtInfo &getExtInfo() const {
251 if (!ExtInfo) ExtInfo = new struct ExtInfo();
252 return *ExtInfo;
253 }
254
255public:
256 /// Gets the size required for a lazy cleanup scope with the given
257 /// cleanup-data requirements.
258 static size_t getSizeForCleanupSize(size_t Size) {
259 return sizeof(EHCleanupScope) + Size;
260 }
261
262 size_t getAllocatedSize() const {
John McCall777d6e52011-08-11 02:22:43 +0000263 return sizeof(EHCleanupScope) + CleanupBits.CleanupSize;
John McCall36f893c2011-01-28 11:13:47 +0000264 }
265
John McCall777d6e52011-08-11 02:22:43 +0000266 EHCleanupScope(bool isNormal, bool isEH, bool isActive,
267 unsigned cleanupSize, unsigned fixupDepth,
268 EHScopeStack::stable_iterator enclosingNormal,
269 EHScopeStack::stable_iterator enclosingEH)
270 : EHScope(EHScope::Cleanup, enclosingEH), EnclosingNormal(enclosingNormal),
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700271 NormalBlock(nullptr), ActiveFlag(nullptr), ExtInfo(nullptr) {
John McCall777d6e52011-08-11 02:22:43 +0000272 CleanupBits.IsNormalCleanup = isNormal;
273 CleanupBits.IsEHCleanup = isEH;
274 CleanupBits.IsActive = isActive;
275 CleanupBits.TestFlagInNormalCleanup = false;
276 CleanupBits.TestFlagInEHCleanup = false;
277 CleanupBits.CleanupSize = cleanupSize;
278 CleanupBits.FixupDepth = fixupDepth;
279
280 assert(CleanupBits.CleanupSize == cleanupSize && "cleanup size overflow");
John McCall36f893c2011-01-28 11:13:47 +0000281 }
282
Stephen Hines176edba2014-12-01 14:53:08 -0800283 void Destroy() {
John McCall36f893c2011-01-28 11:13:47 +0000284 delete ExtInfo;
285 }
Stephen Hines176edba2014-12-01 14:53:08 -0800286 // Objects of EHCleanupScope are not destructed. Use Destroy().
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700287 ~EHCleanupScope() = delete;
John McCall36f893c2011-01-28 11:13:47 +0000288
John McCall777d6e52011-08-11 02:22:43 +0000289 bool isNormalCleanup() const { return CleanupBits.IsNormalCleanup; }
John McCall36f893c2011-01-28 11:13:47 +0000290 llvm::BasicBlock *getNormalBlock() const { return NormalBlock; }
291 void setNormalBlock(llvm::BasicBlock *BB) { NormalBlock = BB; }
292
John McCall777d6e52011-08-11 02:22:43 +0000293 bool isEHCleanup() const { return CleanupBits.IsEHCleanup; }
John McCall36f893c2011-01-28 11:13:47 +0000294
John McCall777d6e52011-08-11 02:22:43 +0000295 bool isActive() const { return CleanupBits.IsActive; }
296 void setActive(bool A) { CleanupBits.IsActive = A; }
John McCall36f893c2011-01-28 11:13:47 +0000297
298 llvm::AllocaInst *getActiveFlag() const { return ActiveFlag; }
299 void setActiveFlag(llvm::AllocaInst *Var) { ActiveFlag = Var; }
300
John McCall777d6e52011-08-11 02:22:43 +0000301 void setTestFlagInNormalCleanup() {
302 CleanupBits.TestFlagInNormalCleanup = true;
303 }
304 bool shouldTestFlagInNormalCleanup() const {
305 return CleanupBits.TestFlagInNormalCleanup;
306 }
John McCall36f893c2011-01-28 11:13:47 +0000307
John McCall777d6e52011-08-11 02:22:43 +0000308 void setTestFlagInEHCleanup() {
309 CleanupBits.TestFlagInEHCleanup = true;
310 }
311 bool shouldTestFlagInEHCleanup() const {
312 return CleanupBits.TestFlagInEHCleanup;
313 }
John McCall36f893c2011-01-28 11:13:47 +0000314
John McCall777d6e52011-08-11 02:22:43 +0000315 unsigned getFixupDepth() const { return CleanupBits.FixupDepth; }
John McCall36f893c2011-01-28 11:13:47 +0000316 EHScopeStack::stable_iterator getEnclosingNormalCleanup() const {
317 return EnclosingNormal;
318 }
John McCall36f893c2011-01-28 11:13:47 +0000319
John McCall777d6e52011-08-11 02:22:43 +0000320 size_t getCleanupSize() const { return CleanupBits.CleanupSize; }
John McCall36f893c2011-01-28 11:13:47 +0000321 void *getCleanupBuffer() { return this + 1; }
322
323 EHScopeStack::Cleanup *getCleanup() {
324 return reinterpret_cast<EHScopeStack::Cleanup*>(getCleanupBuffer());
325 }
326
327 /// True if this cleanup scope has any branch-afters or branch-throughs.
328 bool hasBranches() const { return ExtInfo && !ExtInfo->Branches.empty(); }
329
330 /// Add a branch-after to this cleanup scope. A branch-after is a
331 /// branch from a point protected by this (normal) cleanup to a
332 /// point in the normal cleanup scope immediately containing it.
333 /// For example,
334 /// for (;;) { A a; break; }
335 /// contains a branch-after.
336 ///
337 /// Branch-afters each have their own destination out of the
338 /// cleanup, guaranteed distinct from anything else threaded through
339 /// it. Therefore branch-afters usually force a switch after the
340 /// cleanup.
341 void addBranchAfter(llvm::ConstantInt *Index,
342 llvm::BasicBlock *Block) {
343 struct ExtInfo &ExtInfo = getExtInfo();
Stephen Hines176edba2014-12-01 14:53:08 -0800344 if (ExtInfo.Branches.insert(Block).second)
John McCall36f893c2011-01-28 11:13:47 +0000345 ExtInfo.BranchAfters.push_back(std::make_pair(Block, Index));
346 }
347
348 /// Return the number of unique branch-afters on this scope.
349 unsigned getNumBranchAfters() const {
350 return ExtInfo ? ExtInfo->BranchAfters.size() : 0;
351 }
352
353 llvm::BasicBlock *getBranchAfterBlock(unsigned I) const {
354 assert(I < getNumBranchAfters());
355 return ExtInfo->BranchAfters[I].first;
356 }
357
358 llvm::ConstantInt *getBranchAfterIndex(unsigned I) const {
359 assert(I < getNumBranchAfters());
360 return ExtInfo->BranchAfters[I].second;
361 }
362
363 /// Add a branch-through to this cleanup scope. A branch-through is
364 /// a branch from a scope protected by this (normal) cleanup to an
365 /// enclosing scope other than the immediately-enclosing normal
366 /// cleanup scope.
367 ///
368 /// In the following example, the branch through B's scope is a
369 /// branch-through, while the branch through A's scope is a
370 /// branch-after:
371 /// for (;;) { A a; B b; break; }
372 ///
373 /// All branch-throughs have a common destination out of the
374 /// cleanup, one possibly shared with the fall-through. Therefore
375 /// branch-throughs usually don't force a switch after the cleanup.
376 ///
377 /// \return true if the branch-through was new to this scope
378 bool addBranchThrough(llvm::BasicBlock *Block) {
Stephen Hines176edba2014-12-01 14:53:08 -0800379 return getExtInfo().Branches.insert(Block).second;
John McCall36f893c2011-01-28 11:13:47 +0000380 }
381
382 /// Determines if this cleanup scope has any branch throughs.
383 bool hasBranchThroughs() const {
384 if (!ExtInfo) return false;
385 return (ExtInfo->BranchAfters.size() != ExtInfo->Branches.size());
386 }
387
John McCall36f893c2011-01-28 11:13:47 +0000388 static bool classof(const EHScope *Scope) {
389 return (Scope->getKind() == Cleanup);
390 }
391};
392
393/// An exceptions scope which filters exceptions thrown through it.
394/// Only exceptions matching the filter types will be permitted to be
395/// thrown.
396///
397/// This is used to implement C++ exception specifications.
398class EHFilterScope : public EHScope {
John McCall36f893c2011-01-28 11:13:47 +0000399 // Essentially ends in a flexible array member:
400 // llvm::Value *FilterTypes[0];
401
402 llvm::Value **getFilters() {
403 return reinterpret_cast<llvm::Value**>(this+1);
404 }
405
406 llvm::Value * const *getFilters() const {
407 return reinterpret_cast<llvm::Value* const *>(this+1);
408 }
409
410public:
John McCall777d6e52011-08-11 02:22:43 +0000411 EHFilterScope(unsigned numFilters)
412 : EHScope(Filter, EHScopeStack::stable_end()) {
413 FilterBits.NumFilters = numFilters;
John McCall36f893c2011-01-28 11:13:47 +0000414 }
415
John McCall777d6e52011-08-11 02:22:43 +0000416 static size_t getSizeForNumFilters(unsigned numFilters) {
417 return sizeof(EHFilterScope) + numFilters * sizeof(llvm::Value*);
John McCall36f893c2011-01-28 11:13:47 +0000418 }
419
John McCall777d6e52011-08-11 02:22:43 +0000420 unsigned getNumFilters() const { return FilterBits.NumFilters; }
421
422 void setFilter(unsigned i, llvm::Value *filterValue) {
423 assert(i < getNumFilters());
424 getFilters()[i] = filterValue;
John McCall36f893c2011-01-28 11:13:47 +0000425 }
426
John McCall777d6e52011-08-11 02:22:43 +0000427 llvm::Value *getFilter(unsigned i) const {
428 assert(i < getNumFilters());
429 return getFilters()[i];
430 }
431
432 static bool classof(const EHScope *scope) {
433 return scope->getKind() == Filter;
John McCall36f893c2011-01-28 11:13:47 +0000434 }
435};
436
437/// An exceptions scope which calls std::terminate if any exception
438/// reaches it.
439class EHTerminateScope : public EHScope {
John McCall36f893c2011-01-28 11:13:47 +0000440public:
John McCall777d6e52011-08-11 02:22:43 +0000441 EHTerminateScope(EHScopeStack::stable_iterator enclosingEHScope)
442 : EHScope(Terminate, enclosingEHScope) {}
John McCall36f893c2011-01-28 11:13:47 +0000443 static size_t getSize() { return sizeof(EHTerminateScope); }
444
John McCall777d6e52011-08-11 02:22:43 +0000445 static bool classof(const EHScope *scope) {
446 return scope->getKind() == Terminate;
John McCall36f893c2011-01-28 11:13:47 +0000447 }
448};
449
450/// A non-stable pointer into the scope stack.
451class EHScopeStack::iterator {
452 char *Ptr;
453
454 friend class EHScopeStack;
455 explicit iterator(char *Ptr) : Ptr(Ptr) {}
456
457public:
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700458 iterator() : Ptr(nullptr) {}
John McCall36f893c2011-01-28 11:13:47 +0000459
460 EHScope *get() const {
461 return reinterpret_cast<EHScope*>(Ptr);
462 }
463
464 EHScope *operator->() const { return get(); }
465 EHScope &operator*() const { return *get(); }
466
467 iterator &operator++() {
468 switch (get()->getKind()) {
469 case EHScope::Catch:
470 Ptr += EHCatchScope::getSizeForNumHandlers(
471 static_cast<const EHCatchScope*>(get())->getNumHandlers());
472 break;
473
474 case EHScope::Filter:
475 Ptr += EHFilterScope::getSizeForNumFilters(
476 static_cast<const EHFilterScope*>(get())->getNumFilters());
477 break;
478
479 case EHScope::Cleanup:
480 Ptr += static_cast<const EHCleanupScope*>(get())
481 ->getAllocatedSize();
482 break;
483
484 case EHScope::Terminate:
485 Ptr += EHTerminateScope::getSize();
486 break;
487 }
488
489 return *this;
490 }
491
492 iterator next() {
493 iterator copy = *this;
494 ++copy;
495 return copy;
496 }
497
498 iterator operator++(int) {
499 iterator copy = *this;
500 operator++();
501 return copy;
502 }
503
504 bool encloses(iterator other) const { return Ptr >= other.Ptr; }
505 bool strictlyEncloses(iterator other) const { return Ptr > other.Ptr; }
506
507 bool operator==(iterator other) const { return Ptr == other.Ptr; }
508 bool operator!=(iterator other) const { return Ptr != other.Ptr; }
509};
510
511inline EHScopeStack::iterator EHScopeStack::begin() const {
512 return iterator(StartOfData);
513}
514
515inline EHScopeStack::iterator EHScopeStack::end() const {
516 return iterator(EndOfBuffer);
517}
518
519inline void EHScopeStack::popCatch() {
520 assert(!empty() && "popping exception stack when not empty");
521
John McCall777d6e52011-08-11 02:22:43 +0000522 EHCatchScope &scope = cast<EHCatchScope>(*begin());
523 InnermostEHScope = scope.getEnclosingEHScope();
524 StartOfData += EHCatchScope::getSizeForNumHandlers(scope.getNumHandlers());
John McCall36f893c2011-01-28 11:13:47 +0000525}
526
527inline void EHScopeStack::popTerminate() {
528 assert(!empty() && "popping exception stack when not empty");
529
John McCall777d6e52011-08-11 02:22:43 +0000530 EHTerminateScope &scope = cast<EHTerminateScope>(*begin());
531 InnermostEHScope = scope.getEnclosingEHScope();
John McCall36f893c2011-01-28 11:13:47 +0000532 StartOfData += EHTerminateScope::getSize();
John McCall36f893c2011-01-28 11:13:47 +0000533}
534
535inline EHScopeStack::iterator EHScopeStack::find(stable_iterator sp) const {
536 assert(sp.isValid() && "finding invalid savepoint");
537 assert(sp.Size <= stable_begin().Size && "finding savepoint after pop");
538 return iterator(EndOfBuffer - sp.Size);
539}
540
541inline EHScopeStack::stable_iterator
542EHScopeStack::stabilize(iterator ir) const {
543 assert(StartOfData <= ir.Ptr && ir.Ptr <= EndOfBuffer);
544 return stable_iterator(EndOfBuffer - ir.Ptr);
545}
546
John McCall36f893c2011-01-28 11:13:47 +0000547}
548}
549
550#endif