]> git.ipfire.org Git - thirdparty/glibc.git/blame - malloc/Makefile
malloc: Add missing arena lock in malloc_info [BZ #22408]
[thirdparty/glibc.git] / malloc / Makefile
CommitLineData
bfff8b1b 1# Copyright (C) 1991-2017 Free Software Foundation, Inc.
f65fd747
UD
2# This file is part of the GNU C Library.
3
4# The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
5# modify it under the terms of the GNU Lesser General Public
6# License as published by the Free Software Foundation; either
7# version 2.1 of the License, or (at your option) any later version.
f65fd747
UD
8
9# The GNU C Library is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12# Lesser General Public License for more details.
f65fd747 13
41bdb6e2 14# You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15# License along with the GNU C Library; if not, see
16# <http://www.gnu.org/licenses/>.
f65fd747
UD
17
18#
19# Makefile for malloc routines
20#
33a934a3 21subdir := malloc
f65fd747 22
a5f891ac 23include ../Makeconfig
f65fd747
UD
24
25dist-headers := malloc.h
bd355af0 26headers := $(dist-headers) obstack.h mcheck.h
fa8d436c 27tests := mallocbug tst-malloc tst-valloc tst-calloc tst-obstack \
7c3018f9 28 tst-mcheck tst-mallocfork tst-trim1 \
2e0bbbfb 29 tst-malloc-usable tst-realloc tst-reallocarray tst-posix_memalign \
7c3018f9 30 tst-pvalloc tst-memalign tst-mallopt \
1bd5483e 31 tst-malloc-backtrace tst-malloc-thread-exit \
56290d6e 32 tst-malloc-thread-fail tst-malloc-fork-deadlock \
ef4f9764
FW
33 tst-mallocfork2 \
34 tst-interpose-nothread \
35 tst-interpose-thread \
4dd8e7c0 36 tst-alloc_buffer \
1e26d351 37 tst-malloc-tcache-leak \
7a9368a1 38 tst-malloc_info \
ef4f9764
FW
39
40tests-static := \
41 tst-interpose-static-nothread \
42 tst-interpose-static-thread \
9dd409a5 43 tst-malloc-usable-static \
34a63b09 44
7c3018f9
ZW
45tests-internal := tst-mallocstate tst-scratch_buffer
46
91b6eb11
FW
47# The dynarray framework is only available inside glibc.
48tests-internal += \
49 tst-dynarray \
50 tst-dynarray-fail \
51 tst-dynarray-at-fail \
52
34a63b09
FW
53ifneq (no,$(have-tunables))
54tests += tst-malloc-usable-tunables
55tests-static += tst-malloc-usable-static-tunables
56endif
ef4f9764 57
0f9317dc 58tests += $(tests-static)
990c32b9 59test-srcs = tst-mtrace
f65fd747 60
2e0bbbfb 61routines = malloc morecore mcheck mtrace obstack reallocarray \
cfcfd461 62 scratch_buffer_grow scratch_buffer_grow_preserve \
91b6eb11
FW
63 scratch_buffer_set_array_size \
64 dynarray_at_failure \
65 dynarray_emplace_enlarge \
66 dynarray_finalize \
67 dynarray_resize \
68 dynarray_resize_clear \
4dd8e7c0
FW
69 alloc_buffer_alloc_array \
70 alloc_buffer_allocate \
71 alloc_buffer_copy_bytes \
72 alloc_buffer_copy_string \
73 alloc_buffer_create_failure \
f65fd747 74
6d52618b
UD
75install-lib := libmcheck.a
76non-lib.a := libmcheck.a
77
c8f3e6db 78# Additional library.
e5874a42 79extra-libs = libmemusage
c8f3e6db
UD
80extra-libs-others = $(extra-libs)
81
ef4f9764
FW
82# Helper objects for some tests.
83extra-tests-objs += \
84 tst-interpose-aux-nothread.o \
85 tst-interpose-aux-thread.o \
86
87test-extras = \
88 tst-interpose-aux-nothread \
89 tst-interpose-aux-thread \
90
e5874a42
UD
91libmemusage-routines = memusage
92libmemusage-inhibit-o = $(filter-out .os,$(object-suffixes))
c8f3e6db 93
b87e4137
ST
94$(objpfx)tst-malloc-backtrace: $(shared-thread-library)
95$(objpfx)tst-malloc-thread-exit: $(shared-thread-library)
96$(objpfx)tst-malloc-thread-fail: $(shared-thread-library)
29d79486 97$(objpfx)tst-malloc-fork-deadlock: $(shared-thread-library)
fff94fa2 98
e863cce5
FW
99# Export the __malloc_initialize_hook variable to libc.so.
100LDFLAGS-tst-mallocstate = -rdynamic
101
6d52618b 102# These should be removed by `make clean'.
469e977f 103extra-objs = mcheck-init.o libmcheck.a
d8287b36 104others-extras = mcheck-init.o
6d52618b 105
a5a0310d 106# Include the cleanup handler.
e8783fd5 107aux := set-freeres thread-freeres
a5a0310d 108
eacde9d0 109# The Perl script to analyze the output of the mtrace functions.
a2b08ee5 110ifneq ($(PERL),no)
6c3ebebd 111install-bin-script = mtrace
f08e9a26 112generated += mtrace
a2b08ee5
UD
113
114# The Perl script will print addresses and to do this nicely we must know
115# whether we are on a 32 or 64 bit machine.
737547be 116ifneq ($(findstring wordsize-32,$(config-sysdirs)),)
a2b08ee5
UD
117address-width=10
118else
119address-width=18
120endif
121endif
122
48d99185
UD
123# Unless we get a test for the availability of libgd which also works
124# for cross-compiling we disable the memusagestat generation in this
125# situation.
126ifneq ($(cross-compiling),yes)
e5874a42 127# If the gd library is available we build the `memusagestat' program.
c8f3e6db 128ifneq ($(LIBGD),no)
f50fa10c 129others: $(objpfx)memusage
f8d8a265
UD
130install-bin = memusagestat
131install-bin-script += memusage
991dca90 132generated += memusagestat memusage
469e977f 133extra-objs += memusagestat.o
c843e065 134
cb8a6dbd 135# The configure.ac check for libgd and its headers did not use $SYSINCLUDES.
c843e065
RM
136# The directory specified by --with-headers usually contains only the basic
137# kernel interface headers, not something like libgd. So the simplest thing
138# is to presume that the standard system headers will be ok for this file.
139$(objpfx)memusagestat.o: sysincludes = # nothing
c8f3e6db 140endif
48d99185 141endif
c8f3e6db
UD
142
143# Another goal which can be used to override the configure decision.
e5874a42
UD
144.PHONY: do-memusagestat
145do-memusagestat: $(objpfx)memusagestat
c8f3e6db 146
e5874a42 147memusagestat-modules = memusagestat
9cd47470
SP
148
149cpp-srcs-left := $(memusagestat-modules)
150lib := memusagestat
2bfdaedd 151include $(patsubst %,$(..)libof-iterator.mk,$(cpp-srcs-left))
9cd47470 152
e5874a42 153$(objpfx)memusagestat: $(memusagestat-modules:%=$(objpfx)%.o)
580ca83f 154 $(LINK.o) -o $@ $^ $(libgd-LDFLAGS) -lgd -lpng -lz -lm
c8f3e6db 155
f214606a
JM
156ifeq ($(run-built-tests),yes)
157ifeq (yes,$(build-shared))
158ifneq ($(PERL),no)
159tests-special += $(objpfx)tst-mtrace.out
91b6eb11
FW
160tests-special += $(objpfx)tst-dynarray-mem.out
161tests-special += $(objpfx)tst-dynarray-fail-mem.out
f214606a
JM
162endif
163endif
164endif
165
f65fd747
UD
166include ../Rules
167
c6359097 168CFLAGS-mcheck-init.c = $(PIC-ccflag)
1877ea16 169CFLAGS-obstack.c = $(uses-callbacks)
c6359097 170
6d52618b
UD
171$(objpfx)libmcheck.a: $(objpfx)mcheck-init.o
172 -rm -f $@
e7c5513d
UD
173 $(patsubst %/,cd % &&,$(objpfx)) \
174 $(LN_S) $(<F) $(@F)
6d52618b
UD
175
176lib: $(objpfx)libmcheck.a
177
03ac099f 178ifeq ($(run-built-tests),yes)
02ba6e61 179ifeq (yes,$(build-shared))
9317ba7c 180ifneq ($(PERL),no)
3f36c563 181$(objpfx)tst-mtrace.out: tst-mtrace.sh $(objpfx)tst-mtrace
8540f6d2 182 $(SHELL) $< $(common-objpfx) '$(test-program-prefix-before-env)' \
d5afb385 183 '$(run-program-env)' '$(test-program-prefix-after-env)' > $@; \
f0881698 184 $(evaluate-test)
02ba6e61 185endif
77e4b6fe 186endif
9317ba7c 187endif
199d6eb0 188
bfc832cc 189tst-mcheck-ENV = MALLOC_CHECK_=3
6ef9cc37 190tst-malloc-usable-ENV = MALLOC_CHECK_=3
67e58f39 191tst-malloc-usable-static-ENV = $(tst-malloc-usable-ENV)
9dd409a5
SP
192tst-malloc-usable-tunables-ENV = GLIBC_TUNABLES=glibc.malloc.check=3
193tst-malloc-usable-static-tunables-ENV = $(tst-malloc-usable-tunables-ENV)
bfc832cc 194
d5c3fafc
DD
195ifeq ($(experimental-malloc),yes)
196CPPFLAGS-malloc.c += -DUSE_TCACHE=1
197else
198CPPFLAGS-malloc.c += -DUSE_TCACHE=0
199endif
831372e7 200# Uncomment this for test releases. For public releases it is too expensive.
fa8d436c 201#CPPFLAGS-malloc.o += -DMALLOC_DEBUG=1
a2b08ee5 202
f50fa10c
UD
203sLIBdir := $(shell echo $(slibdir) | sed 's,lib\(\|64\)$$,\\\\$$LIB,')
204
a2b08ee5 205$(objpfx)mtrace: mtrace.pl
dfd2257a 206 rm -f $@.new
a2b08ee5 207 sed -e 's|@PERL@|$(PERL)|' -e 's|@XXX@|$(address-width)|' \
8b748aed
JM
208 -e 's|@VERSION@|$(version)|' \
209 -e 's|@PKGVERSION@|$(PKGVERSION)|' \
210 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|' $^ > $@.new \
43fc8f18
UD
211 && rm -f $@ && mv $@.new $@ && chmod +x $@
212
e5874a42 213$(objpfx)memusage: memusage.sh
43fc8f18 214 rm -f $@.new
926de5eb 215 sed -e 's|@BASH@|$(BASH)|' -e 's|@VERSION@|$(version)|' \
8b748aed
JM
216 -e 's|@SLIBDIR@|$(sLIBdir)|' -e 's|@BINDIR@|$(bindir)|' \
217 -e 's|@PKGVERSION@|$(PKGVERSION)|' \
218 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|' $^ > $@.new \
43fc8f18
UD
219 && rm -f $@ && mv $@.new $@ && chmod +x $@
220
8f48bfcc
UD
221
222# The implementation uses `dlsym'
79520f4b 223$(objpfx)libmemusage.so: $(libdl)
fa8d436c
UD
224
225# Extra dependencies
226$(foreach o,$(all-object-suffixes),$(objpfx)malloc$(o)): arena.c hooks.c
f690b569
FW
227
228# Compile the tests with a flag which suppresses the mallopt call in
229# the test skeleton.
230$(tests:%=$(objpfx)%.o): CPPFLAGS += -DTEST_NO_MALLOPT
ef4f9764
FW
231
232$(objpfx)tst-interpose-nothread: $(objpfx)tst-interpose-aux-nothread.o
233$(objpfx)tst-interpose-thread: \
234 $(objpfx)tst-interpose-aux-thread.o $(shared-thread-library)
235$(objpfx)tst-interpose-static-nothread: $(objpfx)tst-interpose-aux-nothread.o
236$(objpfx)tst-interpose-static-thread: \
237 $(objpfx)tst-interpose-aux-thread.o $(static-thread-library)
91b6eb11
FW
238
239tst-dynarray-ENV = MALLOC_TRACE=$(objpfx)tst-dynarray.mtrace
240$(objpfx)tst-dynarray-mem.out: $(objpfx)tst-dynarray.out
241 $(common-objpfx)malloc/mtrace $(objpfx)tst-dynarray.mtrace > $@; \
242 $(evaluate-test)
243
244tst-dynarray-fail-ENV = MALLOC_TRACE=$(objpfx)tst-dynarray-fail.mtrace
245$(objpfx)tst-dynarray-fail-mem.out: $(objpfx)tst-dynarray-fail.out
246 $(common-objpfx)malloc/mtrace $(objpfx)tst-dynarray-fail.mtrace > $@; \
247 $(evaluate-test)
1e26d351
CD
248
249$(objpfx)tst-malloc-tcache-leak: $(shared-thread-library)
7a9368a1 250$(objpfx)tst-malloc_info: $(shared-thread-library)