2010-03-04 08:02:56 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: sw=4 ts=4 et :
|
|
|
|
*/
|
2012-05-21 15:12:37 +04: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-04 08:02:56 +03:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <new> // for std::bad_alloc
|
|
|
|
#include <string.h>
|
|
|
|
|
2011-04-14 12:49:38 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2010-03-04 08:02:56 +03:00
|
|
|
#if defined(MALLOC_H)
|
2012-10-17 18:39:15 +04:00
|
|
|
# include MALLOC_H // for memalign, valloc, malloc_size, malloc_usable_size
|
2010-03-04 08:02:56 +03:00
|
|
|
#endif // if defined(MALLOC_H)
|
|
|
|
#include <stddef.h> // for size_t
|
|
|
|
#include <stdlib.h> // for malloc, free
|
2010-04-11 01:29:46 +04:00
|
|
|
#if defined(XP_UNIX)
|
|
|
|
# include <unistd.h> // for valloc on *BSD
|
|
|
|
#endif //if defined(XP_UNIX)
|
2010-03-04 08:02:56 +03:00
|
|
|
|
2014-02-11 02:57:01 +04:00
|
|
|
#if defined(XP_WIN)
|
2010-04-08 22:05:02 +04:00
|
|
|
# define MOZALLOC_EXPORT __declspec(dllexport)
|
|
|
|
#endif
|
|
|
|
|
2010-03-04 08:02:56 +03:00
|
|
|
#include "mozilla/mozalloc.h"
|
|
|
|
#include "mozilla/mozalloc_oom.h" // for mozalloc_handle_oom
|
|
|
|
|
2012-04-05 11:20:53 +04:00
|
|
|
/* Windows doesn't have malloc_usable_size, but jemalloc has */
|
|
|
|
#if defined(MOZ_MEMORY_WINDOWS)
|
|
|
|
extern "C" size_t malloc_usable_size(const void *ptr);
|
|
|
|
#endif
|
2010-03-04 08:02:56 +03:00
|
|
|
|
2012-12-18 22:22:28 +04:00
|
|
|
#ifdef __GNUC__
|
2010-03-04 08:02:56 +03:00
|
|
|
#define LIKELY(x) (__builtin_expect(!!(x), 1))
|
|
|
|
#define UNLIKELY(x) (__builtin_expect(!!(x), 0))
|
|
|
|
#else
|
|
|
|
#define LIKELY(x) (x)
|
|
|
|
#define UNLIKELY(x) (x)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
|
|
|
moz_free(void* ptr)
|
|
|
|
{
|
|
|
|
free(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
|
|
|
moz_xmalloc(size_t size)
|
|
|
|
{
|
|
|
|
void* ptr = malloc(size);
|
2012-02-02 18:34:22 +04:00
|
|
|
if (UNLIKELY(!ptr && size)) {
|
2012-01-24 20:08:51 +04:00
|
|
|
mozalloc_handle_oom(size);
|
2010-03-04 08:02:56 +03:00
|
|
|
return moz_xmalloc(size);
|
|
|
|
}
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
void*
|
|
|
|
moz_malloc(size_t size)
|
|
|
|
{
|
|
|
|
return malloc(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
|
|
|
moz_xcalloc(size_t nmemb, size_t size)
|
|
|
|
{
|
|
|
|
void* ptr = calloc(nmemb, size);
|
2012-02-02 18:34:22 +04:00
|
|
|
if (UNLIKELY(!ptr && nmemb && size)) {
|
2012-01-24 20:08:51 +04:00
|
|
|
mozalloc_handle_oom(size);
|
2010-03-04 08:02:56 +03:00
|
|
|
return moz_xcalloc(nmemb, size);
|
|
|
|
}
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
void*
|
|
|
|
moz_calloc(size_t nmemb, size_t size)
|
|
|
|
{
|
|
|
|
return calloc(nmemb, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
|
|
|
moz_xrealloc(void* ptr, size_t size)
|
|
|
|
{
|
|
|
|
void* newptr = realloc(ptr, size);
|
2012-02-02 18:34:22 +04:00
|
|
|
if (UNLIKELY(!newptr && size)) {
|
2012-01-24 20:08:51 +04:00
|
|
|
mozalloc_handle_oom(size);
|
2010-03-04 08:02:56 +03:00
|
|
|
return moz_xrealloc(ptr, size);
|
|
|
|
}
|
|
|
|
return newptr;
|
|
|
|
}
|
|
|
|
void*
|
|
|
|
moz_realloc(void* ptr, size_t size)
|
|
|
|
{
|
|
|
|
return realloc(ptr, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
char*
|
|
|
|
moz_xstrdup(const char* str)
|
|
|
|
{
|
|
|
|
char* dup = strdup(str);
|
|
|
|
if (UNLIKELY(!dup)) {
|
2012-01-24 20:08:51 +04:00
|
|
|
mozalloc_handle_oom(0);
|
2010-03-04 08:02:56 +03:00
|
|
|
return moz_xstrdup(str);
|
|
|
|
}
|
|
|
|
return dup;
|
|
|
|
}
|
|
|
|
char*
|
|
|
|
moz_strdup(const char* str)
|
|
|
|
{
|
|
|
|
return strdup(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(HAVE_STRNDUP)
|
|
|
|
char*
|
|
|
|
moz_xstrndup(const char* str, size_t strsize)
|
|
|
|
{
|
|
|
|
char* dup = strndup(str, strsize);
|
|
|
|
if (UNLIKELY(!dup)) {
|
2012-01-24 20:08:51 +04:00
|
|
|
mozalloc_handle_oom(strsize);
|
2010-03-04 08:02:56 +03:00
|
|
|
return moz_xstrndup(str, strsize);
|
|
|
|
}
|
|
|
|
return dup;
|
|
|
|
}
|
|
|
|
char*
|
|
|
|
moz_strndup(const char* str, size_t strsize)
|
|
|
|
{
|
|
|
|
return strndup(str, strsize);
|
|
|
|
}
|
|
|
|
#endif // if defined(HAVE_STRNDUP)
|
|
|
|
|
2012-04-05 11:20:53 +04:00
|
|
|
#if defined(HAVE_POSIX_MEMALIGN)
|
2010-03-04 08:02:56 +03:00
|
|
|
int
|
|
|
|
moz_xposix_memalign(void **ptr, size_t alignment, size_t size)
|
|
|
|
{
|
|
|
|
int err = posix_memalign(ptr, alignment, size);
|
|
|
|
if (UNLIKELY(err && ENOMEM == err)) {
|
2012-01-24 20:08:51 +04:00
|
|
|
mozalloc_handle_oom(size);
|
2010-03-04 08:02:56 +03:00
|
|
|
return moz_xposix_memalign(ptr, alignment, size);
|
|
|
|
}
|
|
|
|
// else: (0 == err) or (EINVAL == err)
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
int
|
|
|
|
moz_posix_memalign(void **ptr, size_t alignment, size_t size)
|
|
|
|
{
|
2011-05-22 07:27:00 +04:00
|
|
|
int code = posix_memalign(ptr, alignment, size);
|
|
|
|
if (code)
|
|
|
|
return code;
|
|
|
|
|
|
|
|
#if defined(XP_MACOSX)
|
|
|
|
// Workaround faulty OSX posix_memalign, which provides memory with the
|
|
|
|
// incorrect alignment sometimes, but returns 0 as if nothing was wrong.
|
|
|
|
size_t mask = alignment - 1;
|
|
|
|
if (((size_t)(*ptr) & mask) != 0) {
|
|
|
|
void* old = *ptr;
|
|
|
|
code = moz_posix_memalign(ptr, alignment, size);
|
|
|
|
free(old);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return code;
|
|
|
|
|
2010-03-04 08:02:56 +03:00
|
|
|
}
|
|
|
|
#endif // if defined(HAVE_POSIX_MEMALIGN)
|
|
|
|
|
2012-04-05 11:20:53 +04:00
|
|
|
#if defined(HAVE_MEMALIGN)
|
2010-03-04 08:02:56 +03:00
|
|
|
void*
|
|
|
|
moz_xmemalign(size_t boundary, size_t size)
|
|
|
|
{
|
|
|
|
void* ptr = memalign(boundary, size);
|
|
|
|
if (UNLIKELY(!ptr && EINVAL != errno)) {
|
2012-01-24 20:08:51 +04:00
|
|
|
mozalloc_handle_oom(size);
|
2010-03-04 08:02:56 +03:00
|
|
|
return moz_xmemalign(boundary, size);
|
|
|
|
}
|
|
|
|
// non-NULL ptr or errno == EINVAL
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
void*
|
|
|
|
moz_memalign(size_t boundary, size_t size)
|
|
|
|
{
|
|
|
|
return memalign(boundary, size);
|
|
|
|
}
|
|
|
|
#endif // if defined(HAVE_MEMALIGN)
|
|
|
|
|
2012-04-05 11:20:53 +04:00
|
|
|
#if defined(HAVE_VALLOC)
|
2010-03-04 08:02:56 +03:00
|
|
|
void*
|
|
|
|
moz_xvalloc(size_t size)
|
|
|
|
{
|
|
|
|
void* ptr = valloc(size);
|
|
|
|
if (UNLIKELY(!ptr)) {
|
2012-01-24 20:08:51 +04:00
|
|
|
mozalloc_handle_oom(size);
|
2010-03-04 08:02:56 +03:00
|
|
|
return moz_xvalloc(size);
|
|
|
|
}
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
void*
|
|
|
|
moz_valloc(size_t size)
|
|
|
|
{
|
|
|
|
return valloc(size);
|
|
|
|
}
|
|
|
|
#endif // if defined(HAVE_VALLOC)
|
|
|
|
|
2010-06-01 06:19:35 +04:00
|
|
|
size_t
|
|
|
|
moz_malloc_usable_size(void *ptr)
|
|
|
|
{
|
|
|
|
if (!ptr)
|
|
|
|
return 0;
|
|
|
|
|
2011-05-22 07:27:00 +04:00
|
|
|
#if defined(XP_MACOSX)
|
2010-06-01 06:19:35 +04:00
|
|
|
return malloc_size(ptr);
|
2012-10-17 18:39:15 +04:00
|
|
|
#elif defined(HAVE_MALLOC_USABLE_SIZE) || defined(MOZ_MEMORY)
|
2011-05-22 07:27:00 +04:00
|
|
|
return malloc_usable_size(ptr);
|
2010-06-01 06:19:35 +04:00
|
|
|
#elif defined(XP_WIN)
|
|
|
|
return _msize(ptr);
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
2010-03-04 08:02:56 +03:00
|
|
|
|
2012-01-25 12:52:51 +04:00
|
|
|
size_t moz_malloc_size_of(const void *ptr)
|
2011-11-28 07:03:14 +04:00
|
|
|
{
|
2012-01-25 12:52:51 +04:00
|
|
|
return moz_malloc_usable_size((void *)ptr);
|
2011-11-28 07:03:14 +04:00
|
|
|
}
|
|
|
|
|
2010-03-04 08:02:56 +03:00
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
const fallible_t fallible = fallible_t();
|
|
|
|
|
|
|
|
} // namespace mozilla
|