Home
last modified time | relevance | path

Searched refs:handlerCount (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/libcxxabi/src/
H A Dcxa_exception.cpp116 return ++exception->handlerCount; in incrementHandlerCount()
121 return --exception->handlerCount; in decrementHandlerCount()
458 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()
459 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()
511 static_assert(__builtin_offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()
512 __builtin_offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()
526 if (exception_header->handlerCount < 0) in __cxa_end_catch()
613 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
H A Dcxa_exception.h52 int handlerCount; member
90 int handlerCount; member
H A Dcxa_personality.cpp1260 new_exception_header->handlerCount = -new_exception_header->handlerCount; in __cxa_call_unexpected()