]> git.llucax.com Git - software/dgc/dgcbench.git/blob - Makefile
Create time/pause sub-directories in ./build
[software/dgc/dgcbench.git] / Makefile
1
2 GC       := cdgc
3 B        := build
4 O        := $B/$(GC)
5 DC       := ../dmd/src/dmd
6 LD       := ../dmd/src/dmd
7 LN       := ln
8 GNUPLOT  := gnuplot
9 override DFLAGS ?= -release -inline -O -gc
10 LDFLAGS  := -defaultlib=tango-$(GC) -debuglib=tango-$(GC)
11 LIBTANGO := ../lib/libtango-$(GC).a
12
13 ifndef V
14 P      = @
15 P_DC   = @printf '   DC    %- 40s <-  %s\n' '$@' '$(if \
16                 $(subst 1,,$(words $^)),$< ... $(lastword $^),$<)';
17 P_PLOT = @printf '   PLOT  %- 40s <-  %s\n' '$@' '$(notdir $(filter %.csv,$^))';
18 P_AWK  = @printf '   AWK   %- 40s <-  %s\n' '$@' '$<';
19 P_RUN  = @printf '   RUN   $< $(args)\n';
20 P_MAKE = @printf '   MAKE  $@\n';
21 P_RM   = @printf '   RM    $^\n';
22 P_LN   = @printf '   LN    %- 40s <-  %s\n' '$@' '$<';
23 endif
24
25 # create build directories if they don't already exist
26 dummy_mkdir := $(shell mkdir -p $O $O/bin $O/time $O/stats $O/pause)
27
28
29 ########################################################
30 # general rules that doesn't depend on the GC variable #
31 ########################################################
32
33 .PHONY: all
34 all: basic cdgc
35
36 .PHONY: cdgc basic
37 cdgc basic:
38         $(P_MAKE) $(MAKE) --no-print-directory micro-gc-build dil-gc-build GC=$@
39
40
41 .PHONY: clean-all clean-cdgc clean-basic
42 clean-all: clean-cdgc clean-basic
43 clean-cdgc:
44         $(P_MAKE) $(MAKE) --no-print-directory clean GC=cdgc
45 clean-basic:
46         $(P_MAKE) $(MAKE) --no-print-directory clean GC=basic
47
48
49 #########################################
50 # rules that depends on the GC variable #
51 #########################################
52
53 # micro
54 ########
55
56 micro-src := $(wildcard micro/*.d)
57
58 .PHONY: micro-gc-build
59 micro-gc-build: $(patsubst micro/%.d,$O/bin/%,$(wildcard micro/*.d))
60
61 .PRECIOUS: $O/bin/%
62 $O/bin/%: $O/micro/%.o $(LIBTANGO)
63         $(P_DC) $(DC) $(LDFLAGS) -of$@ $^
64
65 .PHONY: micro-gc-stats
66 micro-gc-stats: $(patsubst micro/%.d,$O/stats/%.eps,$(wildcard micro/*.d))
67
68 # special command line arguments for 'shootout_binarytrees' micro benchmark
69 $O/stats/shootout_binarytrees.c.csv $O/stats/shootout_binarytrees.a.csv: \
70         override args := 16
71
72 # special command line arguments for 'split' micro benchmark
73 $O/stats/split.c.csv $O/stats/split.a.csv: override args := micro/bible.txt 2
74
75 # special command line arguments for 'voronoi' micro benchmark
76 $O/stats/voronoi.c.csv $O/voronoi/split.a.csv: override args := -n 30000
77
78
79 # dil
80 ######
81
82 DIL_SRC = $(wildcard dil/src/*.d dil/src/cmd/*.d dil/src/util/*.d \
83                         dil/src/dil/*.d dil/src/dil/*/*.d)
84
85 .PHONY: dil-gc-build
86 dil-gc-build: $O/bin/dil
87 $O/bin/dil: override DFLAGS += -Idil/src
88 $O/bin/dil: $(patsubst %.d,$O/%.o,$(DIL_SRC)) $(LIBTANGO)
89         $(P_DC) $(DC) $(LDFLAGS) -L-lmpfr -L-lgmp -of$@ $^
90
91
92 # common rules
93 ###############
94
95 .PRECIOUS: $O/%.o
96 $O/%.o: %.d
97         $(P_DC) $(DC) -c $(DFLAGS) -of$@ $^
98
99 .PRECIOUS: $O/stats/%.c.csv $O/stats/%.a.csv
100 $O/stats/%.c.csv $O/stats/%.a.csv: $O/bin/%
101         $(P_RUN) D_GC_STATS=1 ./$< $(args)
102         $P mv gc-collections.csv $O/stats/$*.c.csv
103         $P mv gc-mallocs.csv $O/stats/$*.a.csv
104
105 .PRECIOUS: $O/stats/%.h.csv
106 $O/stats/%.h.csv: $O/stats/%.a.csv hist.awk
107         $(P_AWK) awk -F, -f $(lastword $^) $< > $@
108
109 .PRECIOUS: $O/stats/%.tics
110 $O/stats/%.tics: $O/stats/%.h.csv tics.awk
111         $(P_AWK) awk -F, -f $(lastword $^) $< > $@
112
113 $O/stats/%.eps: $O/stats/%.c.csv $O/stats/%.a.csv $O/stats/%.h.csv \
114                          $O/stats/%.tics plot.gpi
115         $(P_PLOT) sed "s|@@PRG@@|$(*F)|g; s|@@COL@@|$(GC)|g; \
116                         s|@@INC@@|$(word 1,$^)|g; s|@@INA@@|$(word 2,$^)|g; \
117                         s|@@INH@@|$(word 3,$^)|g; s|@@OUT@@|$@|g; \
118                         s|@@TICS@@|$(shell cat $(word 4,$^))|g" $(word 5,$^) \
119                 | $(GNUPLOT)
120
121 .PHONY: clean
122 clean: $O/
123         $(P_RM) $(RM) -r $^
124