Evet, cevap derleyiciye bağlıdır.
Derleyicim ( g++ 4.4.3
) ile yapılan hızlı bir deney , çalışma zamanı kitaplığının ilk önce malloc
istisna için belleğe almayı denediğini ve başarısız olursa, veri segmentinde yaşayan süreç çapında bir "acil durum arabelleği" içinde alan ayırmaya çalıştığını ortaya koyuyor . Bu işe yaramazsa, çağırıyor std::terminate()
.
Görünüşe göre acil durum tamponunun ana amacı std::bad_alloc
, işlemin yığın alanı tükendikten sonra (bu durumda malloc
çağrı başarısız olacaktır) fırlatmaktır .
İlgili işlev __cxa_allocate_exception
:
extern "C" void *
__cxxabiv1::__cxa_allocate_exception(std::size_t thrown_size) throw()
{
void *ret;
thrown_size += sizeof (__cxa_refcounted_exception);
ret = malloc (thrown_size);
if (! ret)
{
__gnu_cxx::__scoped_lock sentry(emergency_mutex);
bitmask_type used = emergency_used;
unsigned int which = 0;
if (thrown_size > EMERGENCY_OBJ_SIZE)
goto failed;
while (used & 1)
{
used >>= 1;
if (++which >= EMERGENCY_OBJ_COUNT)
goto failed;
}
emergency_used |= (bitmask_type)1 << which;
ret = &emergency_buffer[which][0];
failed:;
if (!ret)
std::terminate ();
}
__cxa_eh_globals *globals = __cxa_get_globals ();
globals->uncaughtExceptions += 1;
memset (ret, 0, sizeof (__cxa_refcounted_exception));
return (void *)((char *)ret + sizeof (__cxa_refcounted_exception));
}
Bu planın ne kadar tipik olduğunu bilmiyorum.