]> git.k1024.org Git - perf-null.git/blob - Makefile
Make the run more flexible
[perf-null.git] / Makefile
1 PROGS = \
2         asm/null \
3         c/c-diet-null \
4         c/c-libc-static-null c/c-libc-dynamic-null \
5         c/c++-static-null c/c++-dynamic-null \
6         haskell/null-single haskell/null-threaded \
7         ocaml/null-byte ocaml/null-opt \
8         java/null-gcj
9
10 SCRIPTS = \
11         dash/null.dash bash/null.bash \
12         mksh/null.mksh mksh/null.mksh-static \
13         lua/null.lua51 lua/null.lua52 lua/null.luajit \
14         perl/null.pl \
15         awk/null.mawk awk/null.gawk \
16         ruby/null.rb18 ruby/null.rb19 \
17         php/null.php php/null.php-n \
18         tcl/null.tcl84 tcl/null.tcl85 tcl/null.tcl86 \
19         python/null.py26 python/null.py26-s \
20         python/null.py27 python/null.py27-s python/null.py27-o \
21         python/null.py32 python/null.py32-s python/null.py32-o \
22         python/null.pypy python/null.pypy-s
23
24 #METRICS = \
25 #       cycles,instructions,branches,branch-misses \
26 #       dtlb-loads,dtlb-load-misses,itlb-loads,itlb-load-misses \
27 #       cycles,instructions,cache-references,cache-misses \
28 #       cycles,instructions,stalled-cycles-frontend,stalled-cycles-backend
29
30 METRICS = cycles,instructions,branches,branch-misses,cpu-clock,task-clock,major-faults,minor-faults,cs
31
32 JAVA_VMS = server zero cacao jamvm
33 # see below for how this is called
34 JAVA_INVOCS = $(JAVA_VMS:%="java -cp java -% Null")
35
36 EXTRA_RUN = /bin/true
37
38 REPS = 100
39
40 PERF ?= perf
41
42 all: $(PROGS) java/Null.class
43
44 $(PROGS): Makefile
45
46 asm/null: asm/null.s
47         as -o asm/null.o $<
48         ld -o $@ asm/null.o
49         strip $@
50
51 c-diet-%: %.c
52         diet gcc -O2 -Wall -o $@ $<
53         strip $@
54
55 c-libc-static-%: %.c
56         gcc -static -O2 -Wall -o $@ $<
57         strip $@
58
59 c-libc-dynamic-%: %.c
60         gcc -O2 -Wall -o $@ $<
61         strip $@
62
63 c++-static-%: %.c
64         g++ -static -O2 -Wall -o $@ $<
65         strip $@
66
67 c++-dynamic-%: %.c
68         g++ -O2 -Wall -o $@ $<
69         strip $@
70
71 haskell/null-single: haskell/null.hs
72         ghc --make -O2 -Wall -o $@ $<
73         strip $@
74
75 haskell/null-threaded: haskell/null.hs
76         ghc --make -O2 -Wall -threaded -o $@ $<
77         strip $@
78
79 ocaml/null-byte: ocaml/null.ml
80         ocamlc -o $@ $<
81         # no stripping as this is not an elf file
82
83 ocaml/null-opt: ocaml/null.ml
84         ocamlopt -o $@ $<
85         strip $@
86
87 java/null-gcj: java/Null.java
88         gcj-4.6 --main=Null -o $@ $<
89         strip $@
90
91 java/Null.class: java/Null.java Makefile
92         javac $<
93
94 log: $(PROGS) $(SCRIPTS) java/Null.class Makefile
95         rm -f log; \
96         for prog in $(PROGS:%=./%) $(SCRIPTS:%=./%) $(EXTRA_RUN) $(JAVA_INVOCS); do \
97           echo $$prog; \
98           for metric in $(METRICS); do \
99             LC_ALL=C $(PERF) stat -e "$$metric" -r $(REPS) -o log --append $$prog; \
100           done; \
101         done
102
103 .PHONY: log
104
105 clean:
106         cd asm && rm -f *.o
107         cd haskell && rm -f *.hi *.o
108         cd ocaml && rm -f *.cmo *.cmi *.cmx *.o
109         cd java && rm -f *.class
110         rm -f $(PROGS)