]> git.llucax.com Git - software/dgc/dgcbench.git/blob - Makefile
Update micro benchmarks
[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 TIME     := /usr/bin/time
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)
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: micro-time
37 micro: micro-time
38
39 .PHONY: dil
40 dil:
41         # TODO
42
43 .PHONY: micro-time
44 micro-time: $B/time.eps $B/time.svg
45 $B/time.%: $(patsubst micro/%.d,$B/time-%.csv,$(wildcard micro/*.d)) \
46                         time-plot.tpl-gpi time-plot.sh templite.py
47         $(P_PLOT) ./time-plot.sh $* $@ $(filter %.csv,$^)
48
49 .PRECIOUS: $B/time-%.csv
50 $B/time-%.csv: $B/basic/time/%.csv | basic cdgc
51         $P echo -n > $@
52         $P for t in basic cdgc; do \
53                 (echo -n $$t,; ./stats.py < $B/$$t/time/$*.csv) >> $@; \
54                 echo "   STATS `tail -n1 $@` >> $@"; \
55            done
56
57 .PHONY: cdgc basic
58 cdgc basic:
59         $(P_MAKE) $(MAKE) --no-print-directory micro-gc-build dil-gc-build GC=$@
60
61
62 .PHONY: clean-all clean-cdgc clean-basic
63 clean-all: clean-cdgc clean-basic
64 clean-cdgc:
65         $(P_MAKE) $(MAKE) --no-print-directory clean GC=cdgc
66 clean-basic:
67         $(P_MAKE) $(MAKE) --no-print-directory clean GC=basic
68
69
70 #########################################
71 # rules that depends on the GC variable #
72 #########################################
73
74 # micro
75 ########
76
77 micro-src := $(wildcard micro/*.d)
78
79 .PHONY: micro-gc-build
80 micro-gc-build: $(patsubst micro/%.d,$O/bin/%,$(wildcard micro/*.d))
81
82 .PRECIOUS: $O/bin/%
83 $O/bin/%: $O/micro/%.o $(LIBTANGO)
84         $(P_DC) $(DC) $(LDFLAGS) -of$@ $^
85
86 .PHONY: micro-gc-time
87 micro-gc-time: $(patsubst micro/%.d,$O/time/%.csv,$(wildcard micro/*.d))
88
89 .PHONY: micro-gc-stats
90 micro-gc-stats: $(patsubst micro/%.d,$O/stats/%.eps,$(wildcard micro/*.d))
91
92 # special command line arguments for 'shootout_binarytrees' micro benchmark
93 $O/time/shootout_binarytrees.csv $O/stats/shootout_binarytrees.c.csv \
94                 $O/stats/shootout_binarytrees.a.csv: \
95         override args := 16
96
97 # special command line arguments for 'split' micro benchmark
98 $O/time/split.csv $O/stats/split.c.csv $O/stats/split.a.csv: \
99         override args := micro/bible.txt 2
100
101 # special command line arguments for 'voronoi' micro benchmark
102 $O/time/voronoi.csv $O/stats/voronoi.c.csv $O/voronoi/split.a.csv: \
103         override args := -n 30000
104
105
106 # dil
107 ######
108
109 DIL_SRC = $(wildcard dil/src/*.d dil/src/cmd/*.d dil/src/util/*.d \
110                         dil/src/dil/*.d dil/src/dil/*/*.d)
111
112 .PHONY: dil-gc-build
113 dil-gc-build: $O/bin/dil
114 $O/bin/dil: override DFLAGS += -Idil/src
115 $O/bin/dil: $(patsubst %.d,$O/%.o,$(DIL_SRC)) $(LIBTANGO)
116         $(P_DC) $(DC) $(LDFLAGS) -L-lmpfr -L-lgmp -of$@ $^
117
118 .PHONY: dil-gc-time
119 dil-gc-time: $O/time/dil.csv
120
121
122 # common rules
123 ###############
124
125 .PRECIOUS: $O/%.o
126 $O/%.o: %.d
127         $(P_DC) $(DC) -c $(DFLAGS) -of$@ $^
128
129 I := 3
130 .PRECIOUS: $O/time/%.csv
131 ifeq ($F,1)
132 .PHONY: $(patsubst micro/%.d,$O/bin/%,$(wildcard micro/*.d))
133 endif
134 $O/time/%.csv: $O/bin/%
135         $P echo -n '   RUN   $* $(args) > $@ ($I)'
136         $P echo -n > $@
137         $P for i in `seq $I`; do \
138                 echo -n " $$i"; \
139                 $(TIME) -f%e -a -o $@ ./$< $(args); \
140         done; echo
141
142 .PRECIOUS: $O/stats/%.c.csv $O/stats/%.a.csv
143 $O/stats/%.c.csv $O/stats/%.a.csv: $O/bin/%
144         $(P_RUN) D_GC_STATS=1 ./$< $(args)
145         $P mv gc-collections.csv $O/stats/$*.c.csv
146         $P mv gc-mallocs.csv $O/stats/$*.a.csv
147
148 .PRECIOUS: $O/stats/%.h.csv
149 $O/stats/%.h.csv: $O/stats/%.a.csv hist.awk
150         $(P_AWK) awk -F, -f $(lastword $^) $< > $@
151
152 .PRECIOUS: $O/stats/%.tics
153 $O/stats/%.tics: $O/stats/%.h.csv tics.awk
154         $(P_AWK) awk -F, -f $(lastword $^) $< > $@
155
156 $O/stats/%.eps: $O/stats/%.c.csv $O/stats/%.a.csv $O/stats/%.h.csv \
157                          $O/stats/%.tics plot.gpi
158         $(P_PLOT) sed "s|@@PRG@@|$(*F)|g; s|@@COL@@|$(GC)|g; \
159                         s|@@INC@@|$(word 1,$^)|g; s|@@INA@@|$(word 2,$^)|g; \
160                         s|@@INH@@|$(word 3,$^)|g; s|@@OUT@@|$@|g; \
161                         s|@@TICS@@|$(shell cat $(word 4,$^))|g" $(word 5,$^) \
162                 | $(GNUPLOT)
163
164 .PHONY: clean
165 clean: $O/
166         $(P_RM) $(RM) -r $^
167