Changes in / [32ce9b7:e326ebca]
- Location:
- benchmark
- Files:
-
- 2 added
- 2 deleted
- 2 edited
-
Makefile.am (modified) (7 diffs)
-
Makefile.in (modified) (7 diffs)
-
baselines/x64/schedint.csv (deleted)
-
baselines/x64/signal.csv (added)
-
baselines/x86/schedint.csv (deleted)
-
baselines/x86/signal.csv (added)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/Makefile.am
r32ce9b7 re326ebca 72 72 echo "int main() { return 0; }" > ${@} 73 73 74 .SILENT: # do not print recipe 74 #.SILENT: # do not print recipe 75 .ONESHELL: # use one shell to execute recipe 75 76 .NOTPARALLEL: 76 .PHONY: jenkins cleancsv77 .PHONY: compile.csv basic.csv ctxswitch.csv mutex.csv schedint.csv 77 78 78 79 ## ========================================================================================================= … … 141 142 FIX_NEW_LINES = cat $@ | tr "\n" "\t" | sed -r 's/\t,/,/' | tr "\t" "\n" > $@ 142 143 143 cleancsv: 144 rm -f compile.csv basic.csv ctxswitch.csv mutex.csv schedint.csv 145 146 jenkins$(EXEEXT): cleancsv 144 jenkins$(EXEEXT): 147 145 @DOifskipcompile@ 148 146 +make compile.csv 149 147 -+make compile.diff.csv 150 148 @DOendif@ 149 +make basic.csv 150 -+make basic.diff.csv 151 151 +make ctxswitch.csv 152 152 -+make ctxswitch.diff.csv … … 159 159 -cat compile.diff.csv 160 160 @DOendif@ 161 cat basic.csv 162 -cat basic.diff.csv 161 163 cat ctxswitch.csv 162 164 -cat ctxswitch.diff.csv … … 167 169 168 170 compile.csv: 169 echo "building $@"170 171 echo "array,attributes,empty,expression,io,monitor,operators,typeof" > $@ 171 172 +make TIME_FORMAT='%e,' PRINT_FORMAT='' compile-array.make >> $@ … … 179 180 $(srcdir)/fixcsv.sh $@ 180 181 181 # basic.csv: 182 # echo "$@" 183 # echo "generator,coroutine,thread" > $@ 184 # +make basic-cfa_generator.runquiet >> $@ && echo -n ',' >> $@ 185 # +make basic-cfa_coroutine.runquiet >> $@ && echo -n ',' >> $@ 186 # +make basic-cfa_thread.runquiet >> $@ 187 # $(srcdir)/fixcsv.sh $@ 182 basic.csv: 183 echo "generator,coroutine,thread" > $@ 184 +make basic-cfa_generator.runquiet >> $@ && echo -n ',' >> $@ 185 +make basic-cfa_coroutine.runquiet >> $@ && echo -n ',' >> $@ 186 +make basic-cfa_thread.runquiet >> $@ 187 $(srcdir)/fixcsv.sh $@ 188 188 189 189 ctxswitch.csv: 190 echo "building $@"191 190 echo "generator,coroutine,thread" > $@ 192 191 +make ctxswitch-cfa_generator.runquiet >> $@ && echo -n ',' >> $@ … … 196 195 197 196 mutex.csv: 198 echo "building $@"199 197 echo "1-monitor,2-monitor" > $@ 200 198 +make mutex-cfa1.runquiet >> $@ && echo -n ',' >> $@ … … 203 201 204 202 schedint.csv: 205 echo "building $@"206 203 echo "schedint-1,schedint-2,schedext-1,schedext-2" > $@ 207 204 +make schedint-cfa1.runquiet >> $@ && echo -n ',' >> $@ -
benchmark/Makefile.in
r32ce9b7 re326ebca 784 784 echo "int main() { return 0; }" > ${@} 785 785 786 .SILENT: # do not print recipe 786 #.SILENT: # do not print recipe 787 .ONESHELL: # use one shell to execute recipe 787 788 .NOTPARALLEL: 788 .PHONY: jenkins cleancsv789 .PHONY: compile.csv basic.csv ctxswitch.csv mutex.csv schedint.csv 789 790 790 791 all : basic$(EXEEXT) ctxswitch$(EXEEXT) mutex$(EXEEXT) schedint$(EXEEXT) schedext$(EXEEXT) creation$(EXEEXT) … … 816 817 +make -C ${abs_top_builddir}/tools repeat 817 818 818 cleancsv: 819 rm -f compile.csv basic.csv ctxswitch.csv mutex.csv schedint.csv 820 821 jenkins$(EXEEXT): cleancsv 819 jenkins$(EXEEXT): 822 820 @DOifskipcompile@ 823 821 +make compile.csv 824 822 -+make compile.diff.csv 825 823 @DOendif@ 824 +make basic.csv 825 -+make basic.diff.csv 826 826 +make ctxswitch.csv 827 827 -+make ctxswitch.diff.csv … … 834 834 -cat compile.diff.csv 835 835 @DOendif@ 836 cat basic.csv 837 -cat basic.diff.csv 836 838 cat ctxswitch.csv 837 839 -cat ctxswitch.diff.csv … … 842 844 843 845 compile.csv: 844 echo "building $@"845 846 echo "array,attributes,empty,expression,io,monitor,operators,typeof" > $@ 846 847 +make TIME_FORMAT='%e,' PRINT_FORMAT='' compile-array.make >> $@ … … 854 855 $(srcdir)/fixcsv.sh $@ 855 856 856 # basic.csv: 857 # echo "$@" 858 # echo "generator,coroutine,thread" > $@ 859 # +make basic-cfa_generator.runquiet >> $@ && echo -n ',' >> $@ 860 # +make basic-cfa_coroutine.runquiet >> $@ && echo -n ',' >> $@ 861 # +make basic-cfa_thread.runquiet >> $@ 862 # $(srcdir)/fixcsv.sh $@ 857 basic.csv: 858 echo "generator,coroutine,thread" > $@ 859 +make basic-cfa_generator.runquiet >> $@ && echo -n ',' >> $@ 860 +make basic-cfa_coroutine.runquiet >> $@ && echo -n ',' >> $@ 861 +make basic-cfa_thread.runquiet >> $@ 862 $(srcdir)/fixcsv.sh $@ 863 863 864 864 ctxswitch.csv: 865 echo "building $@"866 865 echo "generator,coroutine,thread" > $@ 867 866 +make ctxswitch-cfa_generator.runquiet >> $@ && echo -n ',' >> $@ … … 871 870 872 871 mutex.csv: 873 echo "building $@"874 872 echo "1-monitor,2-monitor" > $@ 875 873 +make mutex-cfa1.runquiet >> $@ && echo -n ',' >> $@ … … 878 876 879 877 schedint.csv: 880 echo "building $@"881 878 echo "schedint-1,schedint-2,schedext-1,schedext-2" > $@ 882 879 +make schedint-cfa1.runquiet >> $@ && echo -n ',' >> $@
Note:
See TracChangeset
for help on using the changeset viewer.