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