Searched refs:globals (Results 1 – 9 of 9) sorted by relevance
225 __cxa_eh_globals *globals = __cxa_get_globals(); in __cxa_throw() local234 globals->uncaughtExceptions += 1; // Not atomically, since globals are thread-local in __cxa_throw()279 __cxa_eh_globals* globals = __cxa_get_globals(); in __cxa_begin_cleanup() local287 exception_header->nextPropagatingException = globals->propagatingExceptions; in __cxa_begin_cleanup()288 globals->propagatingExceptions = exception_header; in __cxa_begin_cleanup()296 if (NULL != globals->propagatingExceptions) in __cxa_begin_cleanup()298 globals->propagatingExceptions = exception_header; in __cxa_begin_cleanup()317 __cxa_eh_globals* globals = __cxa_get_globals(); in __cxa_end_cleanup_impl() local318 __cxa_exception* exception_header = globals->propagatingExceptions; in __cxa_end_cleanup_impl()331 globals->propagatingExceptions = exception_header->nextPropagatingException; in __cxa_end_cleanup_impl()[all …]
87 __cxa_eh_globals* globals = __cxa_get_globals_fast(); in terminate() local88 if (globals) in terminate()90 __cxa_exception* exception_header = globals->caughtExceptions; in terminate()
29 __cxa_eh_globals* globals = __cxa_get_globals_fast(); in default_terminate_handler() local30 if (globals) in default_terminate_handler()32 __cxa_exception* exception_header = globals->caughtExceptions; in default_terminate_handler()
1241 __cxa_eh_globals* globals = __cxa_get_globals_fast(); in __cxa_call_unexpected() local1242 __cxa_exception* new_exception_header = globals->caughtExceptions; in __cxa_call_unexpected()1268 globals->uncaughtExceptions += 1; in __cxa_call_unexpected()
263 __cxa_eh_globals* globals = __cxa_get_globals(); in throwException() local266 globals->uncaughtExceptions += 1; in throwException()339 __cxa_eh_globals *globals = __cxa_get_globals(); in __cxa_rethrow() local340 __cxa_exception* header = globals->caughtExceptions; in __cxa_rethrow()350 globals->caughtExceptions = 0; in __cxa_rethrow()359 __cxa_eh_globals* globals = __cxa_get_globals(); in __cxa_begin_catch() local362 if (globals->caughtExceptions) { in __cxa_begin_catch()371 if (header != globals->caughtExceptions) { in __cxa_begin_catch()372 header->nextException = globals->caughtExceptions; in __cxa_begin_catch()373 globals->caughtExceptions = header; in __cxa_begin_catch()[all …]
135 __cxa_eh_globals *globals = __cxa_get_globals(); in __cxa_begin_cleanup() local142 header->nextCleanup = globals->cleanupExceptions; in __cxa_begin_cleanup()143 globals->cleanupExceptions = header; in __cxa_begin_cleanup()146 globals->cleanupExceptions = header; in __cxa_begin_cleanup()153 __cxa_eh_globals *globals = __cxa_get_globals(); in helper_end_cleanup() local154 __cxa_exception* header = globals->cleanupExceptions; in helper_end_cleanup()163 globals->cleanupExceptions = header->nextCleanup; in helper_end_cleanup()167 globals->cleanupExceptions = NULL; in helper_end_cleanup()292 __cxa_eh_globals* globals = __cxa_get_globals_fast(); in __cxa_call_unexpected() local293 __cxa_exception* new_exception_header = globals->caughtExceptions; in __cxa_call_unexpected()[all …]
63 __cxa_eh_globals* globals = __cxa_get_globals(); in uncaught_exception() local64 return globals->uncaughtExceptions != 0; in uncaught_exception()
3989 $(call gen-test, utilities/memory/default.allocator/allocator.globals/eq)
3998 $(call gen-test, utilities/memory/default.allocator/allocator.globals/eq)