1 //===-- EHScopeStack.h - Stack for cleanup 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 should be the minimum interface required for other parts of 11 // CodeGen to emit cleanups. The implementation is in CGCleanup.cpp and other 12 // implemenentation details that are not widely needed are in CGCleanup.h. 13 // 14 //===----------------------------------------------------------------------===// 15 16 #ifndef LLVM_CLANG_LIB_CODEGEN_EHSCOPESTACK_H 17 #define LLVM_CLANG_LIB_CODEGEN_EHSCOPESTACK_H 18 19 #include "clang/Basic/LLVM.h" 20 #include "llvm/ADT/STLExtras.h" 21 #include "llvm/ADT/SmallVector.h" 22 #include "llvm/IR/BasicBlock.h" 23 #include "llvm/IR/Instructions.h" 24 #include "llvm/IR/Value.h" 25 26 namespace clang { 27 namespace CodeGen { 28 29 class CodeGenFunction; 30 31 /// A branch fixup. These are required when emitting a goto to a 32 /// label which hasn't been emitted yet. The goto is optimistically 33 /// emitted as a branch to the basic block for the label, and (if it 34 /// occurs in a scope with non-trivial cleanups) a fixup is added to 35 /// the innermost cleanup. When a (normal) cleanup is popped, any 36 /// unresolved fixups in that scope are threaded through the cleanup. 37 struct BranchFixup { 38 /// The block containing the terminator which needs to be modified 39 /// into a switch if this fixup is resolved into the current scope. 40 /// If null, LatestBranch points directly to the destination. 41 llvm::BasicBlock *OptimisticBranchBlock; 42 43 /// The ultimate destination of the branch. 44 /// 45 /// This can be set to null to indicate that this fixup was 46 /// successfully resolved. 47 llvm::BasicBlock *Destination; 48 49 /// The destination index value. 50 unsigned DestinationIndex; 51 52 /// The initial branch of the fixup. 53 llvm::BranchInst *InitialBranch; 54 }; 55 56 template <class T> struct InvariantValue { 57 typedef T type; 58 typedef T saved_type; 59 static bool needsSaving(type value) { return false; } 60 static saved_type save(CodeGenFunction &CGF, type value) { return value; } 61 static type restore(CodeGenFunction &CGF, saved_type value) { return value; } 62 }; 63 64 /// A metaprogramming class for ensuring that a value will dominate an 65 /// arbitrary position in a function. 66 template <class T> struct DominatingValue : InvariantValue<T> {}; 67 68 template <class T, bool mightBeInstruction = 69 std::is_base_of<llvm::Value, T>::value && 70 !std::is_base_of<llvm::Constant, T>::value && 71 !std::is_base_of<llvm::BasicBlock, T>::value> 72 struct DominatingPointer; 73 template <class T> struct DominatingPointer<T,false> : InvariantValue<T*> {}; 74 // template <class T> struct DominatingPointer<T,true> at end of file 75 76 template <class T> struct DominatingValue<T*> : DominatingPointer<T> {}; 77 78 enum CleanupKind : unsigned { 79 /// Denotes a cleanup that should run when a scope is exited using exceptional 80 /// control flow (a throw statement leading to stack unwinding, ). 81 EHCleanup = 0x1, 82 83 /// Denotes a cleanup that should run when a scope is exited using normal 84 /// control flow (falling off the end of the scope, return, goto, ...). 85 NormalCleanup = 0x2, 86 87 NormalAndEHCleanup = EHCleanup | NormalCleanup, 88 89 InactiveCleanup = 0x4, 90 InactiveEHCleanup = EHCleanup | InactiveCleanup, 91 InactiveNormalCleanup = NormalCleanup | InactiveCleanup, 92 InactiveNormalAndEHCleanup = NormalAndEHCleanup | InactiveCleanup 93 }; 94 95 /// A stack of scopes which respond to exceptions, including cleanups 96 /// and catch blocks. 97 class EHScopeStack { 98 public: 99 /* Should switch to alignof(uint64_t) instead of 8, when EHCleanupScope can */ 100 enum { ScopeStackAlignment = 8 }; 101 102 /// A saved depth on the scope stack. This is necessary because 103 /// pushing scopes onto the stack invalidates iterators. 104 class stable_iterator { 105 friend class EHScopeStack; 106 107 /// Offset from StartOfData to EndOfBuffer. 108 ptrdiff_t Size; 109 110 stable_iterator(ptrdiff_t Size) : Size(Size) {} 111 112 public: 113 static stable_iterator invalid() { return stable_iterator(-1); } 114 stable_iterator() : Size(-1) {} 115 116 bool isValid() const { return Size >= 0; } 117 118 /// Returns true if this scope encloses I. 119 /// Returns false if I is invalid. 120 /// This scope must be valid. 121 bool encloses(stable_iterator I) const { return Size <= I.Size; } 122 123 /// Returns true if this scope strictly encloses I: that is, 124 /// if it encloses I and is not I. 125 /// Returns false is I is invalid. 126 /// This scope must be valid. 127 bool strictlyEncloses(stable_iterator I) const { return Size < I.Size; } 128 129 friend bool operator==(stable_iterator A, stable_iterator B) { 130 return A.Size == B.Size; 131 } 132 friend bool operator!=(stable_iterator A, stable_iterator B) { 133 return A.Size != B.Size; 134 } 135 }; 136 137 /// Information for lazily generating a cleanup. Subclasses must be 138 /// POD-like: cleanups will not be destructed, and they will be 139 /// allocated on the cleanup stack and freely copied and moved 140 /// around. 141 /// 142 /// Cleanup implementations should generally be declared in an 143 /// anonymous namespace. 144 class Cleanup { 145 // Anchor the construction vtable. 146 virtual void anchor(); 147 public: 148 /// Generation flags. 149 class Flags { 150 enum { 151 F_IsForEH = 0x1, 152 F_IsNormalCleanupKind = 0x2, 153 F_IsEHCleanupKind = 0x4 154 }; 155 unsigned flags; 156 157 public: 158 Flags() : flags(0) {} 159 160 /// isForEH - true if the current emission is for an EH cleanup. 161 bool isForEHCleanup() const { return flags & F_IsForEH; } 162 bool isForNormalCleanup() const { return !isForEHCleanup(); } 163 void setIsForEHCleanup() { flags |= F_IsForEH; } 164 165 bool isNormalCleanupKind() const { return flags & F_IsNormalCleanupKind; } 166 void setIsNormalCleanupKind() { flags |= F_IsNormalCleanupKind; } 167 168 /// isEHCleanupKind - true if the cleanup was pushed as an EH 169 /// cleanup. 170 bool isEHCleanupKind() const { return flags & F_IsEHCleanupKind; } 171 void setIsEHCleanupKind() { flags |= F_IsEHCleanupKind; } 172 }; 173 174 // Provide a virtual destructor to suppress a very common warning 175 // that unfortunately cannot be suppressed without this. Cleanups 176 // should not rely on this destructor ever being called. 177 virtual ~Cleanup() {} 178 179 /// Emit the cleanup. For normal cleanups, this is run in the 180 /// same EH context as when the cleanup was pushed, i.e. the 181 /// immediately-enclosing context of the cleanup scope. For 182 /// EH cleanups, this is run in a terminate context. 183 /// 184 // \param flags cleanup kind. 185 virtual void Emit(CodeGenFunction &CGF, Flags flags) = 0; 186 }; 187 188 /// ConditionalCleanup stores the saved form of its parameters, 189 /// then restores them and performs the cleanup. 190 template <class T, class... As> class ConditionalCleanup : public Cleanup { 191 typedef std::tuple<typename DominatingValue<As>::saved_type...> SavedTuple; 192 SavedTuple Saved; 193 194 template <std::size_t... Is> 195 T restore(CodeGenFunction &CGF, llvm::index_sequence<Is...>) { 196 // It's important that the restores are emitted in order. The braced init 197 // list guarentees that. 198 return T{DominatingValue<As>::restore(CGF, std::get<Is>(Saved))...}; 199 } 200 201 void Emit(CodeGenFunction &CGF, Flags flags) override { 202 restore(CGF, llvm::index_sequence_for<As...>()).Emit(CGF, flags); 203 } 204 205 public: 206 ConditionalCleanup(typename DominatingValue<As>::saved_type... A) 207 : Saved(A...) {} 208 209 ConditionalCleanup(SavedTuple Tuple) : Saved(std::move(Tuple)) {} 210 }; 211 212 private: 213 // The implementation for this class is in CGException.h and 214 // CGException.cpp; the definition is here because it's used as a 215 // member of CodeGenFunction. 216 217 /// The start of the scope-stack buffer, i.e. the allocated pointer 218 /// for the buffer. All of these pointers are either simultaneously 219 /// null or simultaneously valid. 220 char *StartOfBuffer; 221 222 /// The end of the buffer. 223 char *EndOfBuffer; 224 225 /// The first valid entry in the buffer. 226 char *StartOfData; 227 228 /// The innermost normal cleanup on the stack. 229 stable_iterator InnermostNormalCleanup; 230 231 /// The innermost EH scope on the stack. 232 stable_iterator InnermostEHScope; 233 234 /// The current set of branch fixups. A branch fixup is a jump to 235 /// an as-yet unemitted label, i.e. a label for which we don't yet 236 /// know the EH stack depth. Whenever we pop a cleanup, we have 237 /// to thread all the current branch fixups through it. 238 /// 239 /// Fixups are recorded as the Use of the respective branch or 240 /// switch statement. The use points to the final destination. 241 /// When popping out of a cleanup, these uses are threaded through 242 /// the cleanup and adjusted to point to the new cleanup. 243 /// 244 /// Note that branches are allowed to jump into protected scopes 245 /// in certain situations; e.g. the following code is legal: 246 /// struct A { ~A(); }; // trivial ctor, non-trivial dtor 247 /// goto foo; 248 /// A a; 249 /// foo: 250 /// bar(); 251 SmallVector<BranchFixup, 8> BranchFixups; 252 253 char *allocate(size_t Size); 254 void deallocate(size_t Size); 255 256 void *pushCleanup(CleanupKind K, size_t DataSize); 257 258 public: 259 EHScopeStack() : StartOfBuffer(nullptr), EndOfBuffer(nullptr), 260 StartOfData(nullptr), InnermostNormalCleanup(stable_end()), 261 InnermostEHScope(stable_end()) {} 262 ~EHScopeStack() { delete[] StartOfBuffer; } 263 264 /// Push a lazily-created cleanup on the stack. 265 template <class T, class... As> void pushCleanup(CleanupKind Kind, As... A) { 266 static_assert(llvm::AlignOf<T>::Alignment <= ScopeStackAlignment, 267 "Cleanup's alignment is too large."); 268 void *Buffer = pushCleanup(Kind, sizeof(T)); 269 Cleanup *Obj = new (Buffer) T(A...); 270 (void) Obj; 271 } 272 273 /// Push a lazily-created cleanup on the stack. Tuple version. 274 template <class T, class... As> 275 void pushCleanupTuple(CleanupKind Kind, std::tuple<As...> A) { 276 static_assert(llvm::AlignOf<T>::Alignment <= ScopeStackAlignment, 277 "Cleanup's alignment is too large."); 278 void *Buffer = pushCleanup(Kind, sizeof(T)); 279 Cleanup *Obj = new (Buffer) T(std::move(A)); 280 (void) Obj; 281 } 282 283 // Feel free to add more variants of the following: 284 285 /// Push a cleanup with non-constant storage requirements on the 286 /// stack. The cleanup type must provide an additional static method: 287 /// static size_t getExtraSize(size_t); 288 /// The argument to this method will be the value N, which will also 289 /// be passed as the first argument to the constructor. 290 /// 291 /// The data stored in the extra storage must obey the same 292 /// restrictions as normal cleanup member data. 293 /// 294 /// The pointer returned from this method is valid until the cleanup 295 /// stack is modified. 296 template <class T, class... As> 297 T *pushCleanupWithExtra(CleanupKind Kind, size_t N, As... A) { 298 static_assert(llvm::AlignOf<T>::Alignment <= ScopeStackAlignment, 299 "Cleanup's alignment is too large."); 300 void *Buffer = pushCleanup(Kind, sizeof(T) + T::getExtraSize(N)); 301 return new (Buffer) T(N, A...); 302 } 303 304 void pushCopyOfCleanup(CleanupKind Kind, const void *Cleanup, size_t Size) { 305 void *Buffer = pushCleanup(Kind, Size); 306 std::memcpy(Buffer, Cleanup, Size); 307 } 308 309 /// Pops a cleanup scope off the stack. This is private to CGCleanup.cpp. 310 void popCleanup(); 311 312 /// Push a set of catch handlers on the stack. The catch is 313 /// uninitialized and will need to have the given number of handlers 314 /// set on it. 315 class EHCatchScope *pushCatch(unsigned NumHandlers); 316 317 /// Pops a catch scope off the stack. This is private to CGException.cpp. 318 void popCatch(); 319 320 /// Push an exceptions filter on the stack. 321 class EHFilterScope *pushFilter(unsigned NumFilters); 322 323 /// Pops an exceptions filter off the stack. 324 void popFilter(); 325 326 /// Push a terminate handler on the stack. 327 void pushTerminate(); 328 329 /// Pops a terminate handler off the stack. 330 void popTerminate(); 331 332 void pushCatchEnd(llvm::BasicBlock *CatchEndBlockBB); 333 334 void popCatchEnd(); 335 336 // Returns true iff the current scope is either empty or contains only 337 // lifetime markers, i.e. no real cleanup code 338 bool containsOnlyLifetimeMarkers(stable_iterator Old) const; 339 340 /// Determines whether the exception-scopes stack is empty. 341 bool empty() const { return StartOfData == EndOfBuffer; } 342 343 bool requiresLandingPad() const { 344 return InnermostEHScope != stable_end(); 345 } 346 347 /// Determines whether there are any normal cleanups on the stack. 348 bool hasNormalCleanups() const { 349 return InnermostNormalCleanup != stable_end(); 350 } 351 352 /// Returns the innermost normal cleanup on the stack, or 353 /// stable_end() if there are no normal cleanups. 354 stable_iterator getInnermostNormalCleanup() const { 355 return InnermostNormalCleanup; 356 } 357 stable_iterator getInnermostActiveNormalCleanup() const; 358 359 stable_iterator getInnermostEHScope() const { 360 return InnermostEHScope; 361 } 362 363 stable_iterator getInnermostActiveEHScope() const; 364 365 /// An unstable reference to a scope-stack depth. Invalidated by 366 /// pushes but not pops. 367 class iterator; 368 369 /// Returns an iterator pointing to the innermost EH scope. 370 iterator begin() const; 371 372 /// Returns an iterator pointing to the outermost EH scope. 373 iterator end() const; 374 375 /// Create a stable reference to the top of the EH stack. The 376 /// returned reference is valid until that scope is popped off the 377 /// stack. 378 stable_iterator stable_begin() const { 379 return stable_iterator(EndOfBuffer - StartOfData); 380 } 381 382 /// Create a stable reference to the bottom of the EH stack. 383 static stable_iterator stable_end() { 384 return stable_iterator(0); 385 } 386 387 /// Translates an iterator into a stable_iterator. 388 stable_iterator stabilize(iterator it) const; 389 390 /// Turn a stable reference to a scope depth into a unstable pointer 391 /// to the EH stack. 392 iterator find(stable_iterator save) const; 393 394 /// Removes the cleanup pointed to by the given stable_iterator. 395 void removeCleanup(stable_iterator save); 396 397 /// Add a branch fixup to the current cleanup scope. 398 BranchFixup &addBranchFixup() { 399 assert(hasNormalCleanups() && "adding fixup in scope without cleanups"); 400 BranchFixups.push_back(BranchFixup()); 401 return BranchFixups.back(); 402 } 403 404 unsigned getNumBranchFixups() const { return BranchFixups.size(); } 405 BranchFixup &getBranchFixup(unsigned I) { 406 assert(I < getNumBranchFixups()); 407 return BranchFixups[I]; 408 } 409 410 /// Pops lazily-removed fixups from the end of the list. This 411 /// should only be called by procedures which have just popped a 412 /// cleanup or resolved one or more fixups. 413 void popNullFixups(); 414 415 /// Clears the branch-fixups list. This should only be called by 416 /// ResolveAllBranchFixups. 417 void clearFixups() { BranchFixups.clear(); } 418 }; 419 420 } // namespace CodeGen 421 } // namespace clang 422 423 #endif 424