2010-03-03 21:02:56 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: sw=4 ts=4 et :
|
|
|
|
*/
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-03-03 21:02:56 -08:00
|
|
|
|
2010-11-09 02:13:03 -08:00
|
|
|
#if defined(XP_WIN) || defined(XP_OS2)
|
2010-04-08 11:05:02 -07:00
|
|
|
# define MOZALLOC_EXPORT __declspec(dllexport)
|
|
|
|
#endif
|
|
|
|
|
2010-04-20 13:12:02 -07:00
|
|
|
#include "mozilla/mozalloc_abort.h"
|
2010-03-03 21:02:56 -08:00
|
|
|
#include "mozilla/mozalloc_oom.h"
|
2013-03-18 10:58:31 -07:00
|
|
|
#include "mozilla/Assertions.h"
|
2010-03-03 21:02:56 -08:00
|
|
|
|
2012-01-24 08:08:51 -08:00
|
|
|
static mozalloc_oom_abort_handler gAbortHandler;
|
|
|
|
|
2013-02-28 11:43:51 -08:00
|
|
|
#define OOM_MSG_LEADER "out of memory: 0x"
|
|
|
|
#define OOM_MSG_DIGITS "0000000000000000" // large enough for 2^64
|
|
|
|
#define OOM_MSG_TRAILER " bytes requested"
|
|
|
|
#define OOM_MSG_FIRST_DIGIT_OFFSET sizeof(OOM_MSG_LEADER) - 1
|
|
|
|
#define OOM_MSG_LAST_DIGIT_OFFSET sizeof(OOM_MSG_LEADER) + \
|
|
|
|
sizeof(OOM_MSG_DIGITS) - 3
|
|
|
|
|
|
|
|
static const char *hex = "0123456789ABCDEF";
|
|
|
|
|
2010-03-03 21:02:56 -08:00
|
|
|
void
|
2012-01-24 08:08:51 -08:00
|
|
|
mozalloc_handle_oom(size_t size)
|
2010-03-03 21:02:56 -08:00
|
|
|
{
|
2013-02-28 11:43:51 -08:00
|
|
|
char oomMsg[] = OOM_MSG_LEADER OOM_MSG_DIGITS OOM_MSG_TRAILER;
|
2013-03-18 10:58:31 -07:00
|
|
|
size_t i;
|
2013-02-28 11:43:51 -08:00
|
|
|
|
2010-03-03 21:02:56 -08:00
|
|
|
// NB: this is handle_oom() stage 1, which simply aborts on OOM.
|
|
|
|
// we might proceed to a stage 2 in which an attempt is made to
|
|
|
|
// reclaim memory
|
2012-01-24 08:08:51 -08:00
|
|
|
|
|
|
|
if (gAbortHandler)
|
|
|
|
gAbortHandler(size);
|
|
|
|
|
2013-07-18 10:59:53 -07:00
|
|
|
static_assert(OOM_MSG_FIRST_DIGIT_OFFSET > 0,
|
|
|
|
"Loop below will never terminate (i can't go below 0)");
|
2013-03-18 10:58:31 -07:00
|
|
|
|
2013-02-28 11:43:51 -08:00
|
|
|
// Insert size into the diagnostic message using only primitive operations
|
|
|
|
for (i = OOM_MSG_LAST_DIGIT_OFFSET;
|
|
|
|
size && i >= OOM_MSG_FIRST_DIGIT_OFFSET; i--) {
|
|
|
|
oomMsg[i] = hex[size % 16];
|
|
|
|
size /= 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
mozalloc_abort(oomMsg);
|
2010-03-03 21:02:56 -08:00
|
|
|
}
|
2012-01-24 08:08:51 -08:00
|
|
|
|
|
|
|
void
|
|
|
|
mozalloc_set_oom_abort_handler(mozalloc_oom_abort_handler handler)
|
|
|
|
{
|
|
|
|
gAbortHandler = handler;
|
|
|
|
}
|