Skip to content

Commit f4c6a52

Browse files
avargitster
authored andcommitted
Makefile: define $(LIB_H) in terms of $(FIND_SOURCE_FILES)
Combine the definitions of $(FIND_SOURCE_FILES) and $(LIB_H) to speed up the Makefile, as these are the two main expensive $(shell) commands that we execute unconditionally. When see what was in $(FOUND_SOURCE_FILES) that wasn't in $(LIB_H) via the ad-hoc test of: $(error $(filter-out $(LIB_H),$(filter %.h,$(ALL_SOURCE_FILES)))) $(error $(filter-out $(ALL_SOURCE_FILES),$(filter %.h,$(LIB_H)))) We'll get, respectively: Makefile:850: *** t/helper/test-tool.h. Stop. Makefile:850: *** . Stop. I.e. we only had a discrepancy when it came to t/helper/test-tool.h. In terms of correctness this was broken before, but now works: $ make t/helper/test-tool.hco HDR t/helper/test-tool.h This speeds things up a lot: $ git -c hyperfine.hook.setup= hyperfine -L rev HEAD~1,HEAD~0 -s 'make NO_TCLTK=Y' 'make -j1 NO_TCLTK=Y' --warmup 10 -M 10 Benchmark 1: make -j1 NO_TCLTK=Y' in 'HEAD~1 Time (mean ± σ): 159.9 ms ± 6.8 ms [User: 137.2 ms, System: 28.0 ms] Range (min … max): 154.6 ms … 175.9 ms 10 runs Benchmark 2: make -j1 NO_TCLTK=Y' in 'HEAD~0 Time (mean ± σ): 100.0 ms ± 1.3 ms [User: 84.2 ms, System: 20.2 ms] Range (min … max): 98.8 ms … 102.8 ms 10 runs Summary 'make -j1 NO_TCLTK=Y' in 'HEAD~0' ran 1.60 ± 0.07 times faster than 'make -j1 NO_TCLTK=Y' in 'HEAD~1' Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent dafc2de commit f4c6a52

File tree

1 file changed

+26
-28
lines changed

1 file changed

+26
-28
lines changed

Makefile

Lines changed: 26 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -833,12 +833,33 @@ GENERATED_H += hook-list.h
833833
.PHONY: generated-hdrs
834834
generated-hdrs: $(GENERATED_H)
835835

836-
LIB_H := $(sort $(patsubst ./%,%,$(shell git ls-files '*.h' ':!t/' ':!Documentation/' 2>/dev/null || \
836+
## Exhaustive lists of our source files, either dynamically generated,
837+
## or hardcoded.
838+
SOURCES_CMD = ( \
839+
git ls-files \
840+
'*.[hcS]' \
841+
'*.sh' \
842+
':!*[tp][0-9][0-9][0-9][0-9]*' \
843+
':!contrib' \
844+
2>/dev/null || \
837845
$(FIND) . \
838-
-name .git -prune -o \
839-
-name t -prune -o \
840-
-name Documentation -prune -o \
841-
-name '*.h' -print)))
846+
\( -name .git -type d -prune \) \
847+
-o \( -name '[tp][0-9][0-9][0-9][0-9]*' -prune \) \
848+
-o \( -name contrib -type d -prune \) \
849+
-o \( -name build -type d -prune \) \
850+
-o \( -name 'trash*' -type d -prune \) \
851+
-o \( -name '*.[hcS]' -type f -print \) \
852+
-o \( -name '*.sh' -type f -print \) \
853+
| sed -e 's|^\./||' \
854+
)
855+
FOUND_SOURCE_FILES := $(shell $(SOURCES_CMD))
856+
857+
FOUND_C_SOURCES = $(filter %.c,$(FOUND_SOURCE_FILES))
858+
FOUND_H_SOURCES = $(filter %.h,$(FOUND_SOURCE_FILES))
859+
860+
COCCI_SOURCES = $(filter-out $(THIRD_PARTY_SOURCES),$(FOUND_C_SOURCES))
861+
862+
LIB_H = $(FOUND_H_SOURCES)
842863

843864
LIB_OBJS += abspath.o
844865
LIB_OBJS += add-interactive.o
@@ -2789,26 +2810,6 @@ perl/build/man/man3/Git.3pm: perl/Git.pm
27892810
$(QUIET_GEN)mkdir -p $(dir $@) && \
27902811
pod2man $< $@
27912812

2792-
FIND_SOURCE_FILES = ( \
2793-
git ls-files \
2794-
'*.[hcS]' \
2795-
'*.sh' \
2796-
':!*[tp][0-9][0-9][0-9][0-9]*' \
2797-
':!contrib' \
2798-
2>/dev/null || \
2799-
$(FIND) . \
2800-
\( -name .git -type d -prune \) \
2801-
-o \( -name '[tp][0-9][0-9][0-9][0-9]*' -prune \) \
2802-
-o \( -name contrib -type d -prune \) \
2803-
-o \( -name build -type d -prune \) \
2804-
-o \( -name 'trash*' -type d -prune \) \
2805-
-o \( -name '*.[hcS]' -type f -print \) \
2806-
-o \( -name '*.sh' -type f -print \) \
2807-
| sed -e 's|^\./||' \
2808-
)
2809-
2810-
FOUND_SOURCE_FILES = $(shell $(FIND_SOURCE_FILES))
2811-
28122813
$(ETAGS_TARGET): $(FOUND_SOURCE_FILES)
28132814
$(QUIET_GEN)$(RM) $@+ && \
28142815
echo $(FOUND_SOURCE_FILES) | xargs etags -a -o $@+ && \
@@ -3018,9 +3019,6 @@ check: $(GENERATED_H)
30183019
exit 1; \
30193020
fi
30203021

3021-
FOUND_C_SOURCES = $(filter %.c,$(FOUND_SOURCE_FILES))
3022-
COCCI_SOURCES = $(filter-out $(THIRD_PARTY_SOURCES),$(FOUND_C_SOURCES))
3023-
30243022
%.cocci.patch: %.cocci $(COCCI_SOURCES)
30253023
$(QUIET_SPATCH) \
30263024
if test $(SPATCH_BATCH_SIZE) = 0; then \

0 commit comments

Comments
 (0)