1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

jemalloc: set LG_VADDR to 64 on amd64

and allow to revert it back to 48 with WITHOUT_JEMALLOC_LG_VADDR_WIDE build
option.

Reviewed by:	andrew, emaste
Sponsored by:	Advanced Micro Devices (AMD)
Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
Differential revision:	https://reviews.freebsd.org/D46686
This commit is contained in:
Konstantin Belousov 2024-09-17 00:09:03 +03:00
parent f10f288faf
commit eade2001aa
4 changed files with 13 additions and 0 deletions

View File

@ -39,7 +39,11 @@
# define JEMALLOC_TLS_MODEL __attribute__((tls_model("initial-exec")))
#endif
#ifdef __amd64__
#ifdef _USE_LG_VADDR_WIDE
# define LG_VADDR 64
#else
# define LG_VADDR 48
#endif
# define LG_SIZEOF_PTR 3
# define JEMALLOC_TLS_MODEL __attribute__((tls_model("initial-exec")))
#endif

View File

@ -5,6 +5,9 @@ JEMALLOCSRCS:= jemalloc.c arena.c background_thread.c base.c bin.c bitmap.c \
test_hooks.c ticker.c tsd.c witness.c
CFLAGS+=-I${SRCTOP}/contrib/jemalloc/include
.if ${MK_JEMALLOC_LG_VADDR_WIDE} != no
CFLAGS+=-D_USE_LG_VADDR_WIDE
.endif
.for src in ${JEMALLOCSRCS}
MISRCS+=jemalloc_${src}

View File

@ -116,6 +116,7 @@ __DEFAULT_YES_OPTIONS = \
IPFW \
ISCSI \
JAIL \
JEMALLOC_LG_VADDR_WIDE \
KDUMP \
KVM \
LDNS \

View File

@ -0,0 +1,5 @@
Disallow programs to use more than 48 address bits on amd64.
Incompatible with LA57 mode.
Enabling this option might result in a slight reduction in memory
consumption for jemalloc metadata, but also requires disabling LA57
(if hardware supports it).