summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Evans <je@facebook.com>2010-09-20 23:44:23 (GMT)
committerJason Evans <je@facebook.com>2010-09-20 23:52:41 (GMT)
commit6a0d2918ceede07a36a50389c1a8a95755b0a7f6 (patch)
tree32c22c8462324579f122e9a26e3533008b66b81a
parenta09f55c87d799e6e0e64972838ca6768027e9174 (diff)
downloadjemalloc-6a0d2918ceede07a36a50389c1a8a95755b0a7f6.zip
jemalloc-6a0d2918ceede07a36a50389c1a8a95755b0a7f6.tar.gz
jemalloc-6a0d2918ceede07a36a50389c1a8a95755b0a7f6.tar.bz2
Add memalign() and valloc() overrides.
If memalign() and/or valloc() are present on the system, override them in order to avoid mixed allocator usage.
-rw-r--r--jemalloc/configure.ac8
-rw-r--r--jemalloc/include/jemalloc/jemalloc_defs.h.in7
-rw-r--r--jemalloc/src/jemalloc.c43
3 files changed, 58 insertions, 0 deletions
diff --git a/jemalloc/configure.ac b/jemalloc/configure.ac
index b0d470a..127b695 100644
--- a/jemalloc/configure.ac
+++ b/jemalloc/configure.ac
@@ -711,6 +711,14 @@ if test "x${enable_tls}" = "x0" ; then
fi
dnl ============================================================================
+dnl Check for allocator-related functions that should be wrapped.
+
+AC_CHECK_FUNC([memalign],
+ [AC_DEFINE([JEMALLOC_OVERRIDE_MEMALIGN])])
+AC_CHECK_FUNC([valloc],
+ [AC_DEFINE([JEMALLOC_OVERRIDE_VALLOC])])
+
+dnl ============================================================================
dnl Darwin-related configuration.
if test "x${abi}" = "xmacho" ; then
diff --git a/jemalloc/include/jemalloc/jemalloc_defs.h.in b/jemalloc/include/jemalloc/jemalloc_defs.h.in
index eed33a6..6bdcbaa 100644
--- a/jemalloc/include/jemalloc/jemalloc_defs.h.in
+++ b/jemalloc/include/jemalloc/jemalloc_defs.h.in
@@ -99,6 +99,13 @@
#undef JEMALLOC_IVSALLOC
/*
+ * Define overrides for non-standard allocator-related functions if they
+ * are present on the system.
+ */
+#undef JEMALLOC_OVERRIDE_MEMALIGN
+#undef JEMALLOC_OVERRIDE_VALLOC
+
+/*
* Darwin (OS X) uses zones to work around Mach-O symbol override shortcomings.
*/
#undef JEMALLOC_ZONE
diff --git a/jemalloc/src/jemalloc.c b/jemalloc/src/jemalloc.c
index 0b60ce6..3f115d8 100644
--- a/jemalloc/src/jemalloc.c
+++ b/jemalloc/src/jemalloc.c
@@ -1146,6 +1146,45 @@ JEMALLOC_P(free)(void *ptr)
*/
/******************************************************************************/
/*
+ * Begin non-standard override functions.
+ *
+ * These overrides are omitted if the JEMALLOC_PREFIX is defined, since the
+ * entire point is to avoid accidental mixed allocator usage.
+ */
+#ifndef JEMALLOC_PREFIX
+
+#ifdef JEMALLOC_OVERRIDE_MEMALIGN
+JEMALLOC_ATTR(malloc)
+JEMALLOC_ATTR(visibility("default"))
+void *
+JEMALLOC_P(memalign)(size_t alignment, size_t size)
+{
+ void *ret;
+
+ posix_memalign(&ret, alignment, size);
+ return (ret);
+}
+#endif
+
+#ifdef JEMALLOC_OVERRIDE_VALLOC
+JEMALLOC_ATTR(malloc)
+JEMALLOC_ATTR(visibility("default"))
+void *
+JEMALLOC_P(valloc)(size_t size)
+{
+ void *ret;
+
+ posix_memalign(&ret, PAGE_SIZE, size);
+ return (ret);
+}
+#endif
+
+#endif /* JEMALLOC_PREFIX */
+/*
+ * End non-standard override functions.
+ */
+/******************************************************************************/
+/*
* Begin non-standard functions.
*/
@@ -1240,6 +1279,7 @@ iallocm(size_t size, size_t alignment, bool zero)
return (imalloc(size));
}
+JEMALLOC_ATTR(nonnull(1))
JEMALLOC_ATTR(visibility("default"))
int
JEMALLOC_P(allocm)(void **ptr, size_t *rsize, size_t size, int flags)
@@ -1297,6 +1337,7 @@ OOM:
return (ALLOCM_ERR_OOM);
}
+JEMALLOC_ATTR(nonnull(1))
JEMALLOC_ATTR(visibility("default"))
int
JEMALLOC_P(rallocm)(void **ptr, size_t *rsize, size_t size, size_t extra,
@@ -1369,6 +1410,7 @@ OOM:
return (ALLOCM_ERR_OOM);
}
+JEMALLOC_ATTR(nonnull(1))
JEMALLOC_ATTR(visibility("default"))
int
JEMALLOC_P(sallocm)(const void *ptr, size_t *rsize, int flags)
@@ -1389,6 +1431,7 @@ JEMALLOC_P(sallocm)(const void *ptr, size_t *rsize, int flags)
return (ALLOCM_SUCCESS);
}
+JEMALLOC_ATTR(nonnull(1))
JEMALLOC_ATTR(visibility("default"))
int
JEMALLOC_P(dallocm)(void *ptr, int flags)