Home
last modified time | relevance | path

Searched refs:numHandlers (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtCXX.cpp34 unsigned numHandlers) { in Create() argument
35 const size_t Size = totalSizeToAlloc<Stmt *>(numHandlers + 1); in Create()
37 return new (Mem) CXXTryStmt(Empty, numHandlers); in Create()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtCXX.h80 CXXTryStmt(EmptyShell Empty, unsigned numHandlers) in CXXTryStmt() argument
81 : Stmt(CXXTryStmtClass), NumHandlers(numHandlers) { } in CXXTryStmt()
91 unsigned numHandlers);
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCleanup.h192 EHCatchScope(unsigned numHandlers,
195 CatchBits.NumHandlers = numHandlers;
196 assert(CatchBits.NumHandlers == numHandlers && "NumHandlers overflow?");
H A DCGCleanup.cpp235 EHCatchScope *EHScopeStack::pushCatch(unsigned numHandlers) { in pushCatch() argument
236 char *buffer = allocate(EHCatchScope::getSizeForNumHandlers(numHandlers)); in pushCatch()
238 new (buffer) EHCatchScope(numHandlers, InnermostEHScope); in pushCatch()