X-Git-Url: https://git.llucax.com/software/dgc/dgcbench.git/blobdiff_plain/205f85e112c3611d888e5d56edb6e4e5b64a71ae..87dc0324ffd32c5a094ba2d1a42b10c6565470f3:/Makefile?ds=sidebyside diff --git a/Makefile b/Makefile index ca678cf..2ba5804 100644 --- a/Makefile +++ b/Makefile @@ -1,73 +1,106 @@ -VERS := naive -DC := dmd -DL := dmd -GNUPLOT := gnuplot -DFLAGS += -release -inline -O -DFLAGS += -defaultlib=tango-base-dmd-$(VERS) -debuglib=tango-base-dmd-$(VERS) \ - -L-ltango-user-dmd-$(VERS) - -O := $(VERS) - -micro_src := $(wildcard micro/*.d) +GC := cdgc +O := build/$(GC) +DC := dmd +LD := dmd +LN := ln +GNUPLOT := gnuplot +override DFLAGS ?= -release -inline -O -gc +LDFLAGS := -defaultlib=tango-$(GC) -debuglib=tango-$(GC) +LIBTANGO := ../lib/libtango-$(GC).a ifndef V P = @ -P_DC = @printf ' DC %- 40s <- %s\n' '$@' '$<'; -P_LD = @printf ' LD %- 40s <- %s\n' '$@' '$^'; -P_PLOT = @printf ' PLOT %- 40s <- %s\n' '$@' '$< ...'; +P_DC = @printf ' DC %- 40s <- %s\n' '$@' '$(if \ + $(subst 1,,$(words $^)),$< ... $(lastword $^),$<)'; +P_PLOT = @printf ' PLOT %- 40s <- %s\n' '$@' '$(filter %.csv,$^)'; P_AWK = @printf ' AWK %- 40s <- %s\n' '$@' '$<'; P_RUN = @printf ' RUN $< $(args)\n'; P_MAKE = @printf ' MAKE $@\n'; P_RM = @printf ' RM $^\n'; +P_LN = @printf ' LN %- 40s <- %s\n' '$@' '$<'; endif # create build directories if they don't already exist ifneq ($(wildcard $O),$O) -dummy_mkdir := $(shell mkdir -p $O) +dummy_mkdir := $(shell mkdir -p $O $O/bin $O/stats) endif # don't use Gold with old DMDs -ifneq ($(shell ld --version | grep gold),) +ifeq ($(subst dmd,,$(DC)),) +ifneq ($(strip $(shell ld --version | grep gold)),) export LD_ := /usr/bin/ld.single endif +endif .PHONY: all -all: naive +all: cdgc basic -.PHONY: naive basic -naive basic: - $(P_MAKE) $(MAKE) --no-print-directory micro VERS=$@ +.PHONY: cdgc basic +cdgc basic: + $(P_MAKE) $(MAKE) --no-print-directory micro-build dil-build GC=$@ -$O/%: $O/%.o - $(P_LD) $(DC) $(DFLAGS) -of$@ $^ -$O/%.o: %.d - $(P_DC) $(DC) $(DFLAGS) -c -of$@ $< +# micro +######## + +.PHONY: micro-build +micro-build: $(patsubst micro/%.d,$O/bin/%,$(wildcard micro/*.d)) -.PRECIOUS: $O/%.c.csv $O/%.a.csv -$O/%.c.csv $O/%.a.csv: $O/% - $(P_RUN) ./$< $(args) - $P mv gc-collections.csv $O/$*.c.csv - $P mv gc-mallocs.csv $O/$*.a.csv +.PRECIOUS: $O/bin/% +$O/bin/%: $O/micro/%.o + $(P_DC) $(DC) $(LDFLAGS) -of$@ $^ -# special command line arguments for benchmarks +.PHONY: micro-stats +micro-stats: $(patsubst micro/%.d,$O/stats/%.eps,$(wildcard micro/*.d)) + +# special command line arguments 'split' micro benchmark $O/micro/split.c.csv $O/micro/split.a.csv: override args := micro/bible.txt -.PRECIOUS: $O/%.h.csv -$O/%.h.csv: $O/%.a.csv hist.awk - $(P_AWK) awk -F, -f $(lastword $^) $< > $@ -.PHONY: micro -micro: $(patsubst %.d,$O/%.eps,$(micro_src)) +# dil +###### + +DIL_SRC = $(wildcard dil/src/*.d dil/src/cmd/*.d dil/src/util/*.d \ + dil/src/dil/*.d dil/src/dil/*/*.d) + +.PHONY: dil-nop-stats +dil-nop-stats: $O/stats/dil-nop.eps + +.PHONY: dil-build +dil-build: $O/bin/dil +$O/bin/dil: override DFLAGS += -Idil/src +$O/bin/dil: $(patsubst %.d,$O/%.o,$(DIL_SRC)) $(LIBTANGO) + $(P_DC) $(DC) $(LDFLAGS) -L-lmpfr -L-lgmp -of$@ $^ -.PRECIOUS: $O/%.tics -$O/%.tics: $O/%.h.csv tics.awk +$O/bin/dil-nop: $O/bin/dil + @$(P_LN) $(LN) -sf $( $@ + +.PRECIOUS: $O/stats/%.tics +$O/stats/%.tics: $O/stats/%.h.csv tics.awk $(P_AWK) awk -F, -f $(lastword $^) $< > $@ -$O/%.eps: $O/%.c.csv $O/%.a.csv \ - $O/%.h.csv $O/%.tics plot.gpi - $(P_PLOT) sed "s|@@PRG@@|$(*F)|g; s|@@COL@@|$(VERS)|g; \ +$O/stats/%.eps: $O/stats/%.c.csv $O/stats/%.a.csv $O/stats/%.h.csv \ + $O/stats/%.tics plot.gpi + $(P_PLOT) sed "s|@@PRG@@|$(*F)|g; s|@@COL@@|$(GC)|g; \ s|@@INC@@|$(word 1,$^)|g; s|@@INA@@|$(word 2,$^)|g; \ s|@@INH@@|$(word 3,$^)|g; s|@@OUT@@|$@|g; \ s|@@TICS@@|$(shell cat $(word 4,$^))|g" $(word 5,$^) \ @@ -77,3 +110,10 @@ $O/%.eps: $O/%.c.csv $O/%.a.csv \ clean: $O/ $(P_RM) $(RM) -r $^ +.PHONY: clean-all +clean-all: clean-cdgc clean-basic +clean-cdgc: + $(P_MAKE) $(MAKE) --no-print-directory clean GC=cdgc +clean-basic: + $(P_MAKE) $(MAKE) --no-print-directory clean GC=basic +