- Timestamp:
- Nov 24, 2017, 8:56:54 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- f5478c8
- Parents:
- fdd3786
- Location:
- src/benchmark
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/benchmark/Makefile.am
rfdd3786 r50abab9 94 94 ctxswitch-cfa_thread.run \ 95 95 ctxswitch-upp_coroutine.run \ 96 ctxswitch-upp_thread.run 96 ctxswitch-upp_thread.run \ 97 ctxswitch-goroutine.run \ 98 ctxswitch-java_thread.run 97 99 98 100 ctxswitch-cfa_coroutine$(EXEEXT): … … 110 112 ctxswitch-pthread$(EXEEXT): 111 113 @@BACKEND_CC@ ctxswitch/pthreads.c -DBENCH_N=50000000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags} 114 115 ctxswitch-goroutine$(EXEEXT): 116 @go build -o a.out ctxswitch/goroutine.go 117 118 ctxswitch-java_thread$(EXEEXT): 119 @javac ctxswitch/JavaThread.java 120 @echo "#!/bin/sh" > a.out 121 @echo "cd ctxswitch && java JavaThread" >> a.out 122 @chmod a+x a.out 112 123 113 124 ## ========================================================================================================= … … 183 194 creation-cfa_thread.run \ 184 195 creation-upp_coroutine.run \ 185 creation-upp_thread.run 196 creation-upp_thread.run \ 197 creation-goroutine.run \ 198 creation-java_thread.run 186 199 187 200 creation-cfa_coroutine$(EXEEXT): … … 202 215 creation-pthread$(EXEEXT): 203 216 @@BACKEND_CC@ creation/pthreads.c -DBENCH_N=250000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags} 217 218 creation-goroutine$(EXEEXT): 219 @go build -o a.out creation/goroutine.go 220 221 creation-java_thread$(EXEEXT): 222 @javac creation/JavaThread.java 223 @echo "#!/bin/sh" > a.out 224 @echo "cd creation && java JavaThread" >> a.out 225 @chmod a+x a.out 204 226 205 227 ## ========================================================================================================= -
src/benchmark/Makefile.in
rfdd3786 r50abab9 507 507 ctxswitch-cfa_thread.run \ 508 508 ctxswitch-upp_coroutine.run \ 509 ctxswitch-upp_thread.run 509 ctxswitch-upp_thread.run \ 510 ctxswitch-goroutine.run \ 511 ctxswitch-java_thread.run 510 512 511 513 ctxswitch-cfa_coroutine$(EXEEXT): … … 523 525 ctxswitch-pthread$(EXEEXT): 524 526 @@BACKEND_CC@ ctxswitch/pthreads.c -DBENCH_N=50000000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags} 527 528 ctxswitch-goroutine$(EXEEXT): 529 @go build -o a.out ctxswitch/goroutine.go 530 531 ctxswitch-java_thread$(EXEEXT): 532 @javac ctxswitch/JavaThread.java 533 @echo "#!/bin/sh" > a.out 534 @echo "cd ctxswitch && java JavaThread" >> a.out 535 @chmod a+x a.out 525 536 526 537 mutex$(EXEEXT) :\ … … 592 603 creation-cfa_thread.run \ 593 604 creation-upp_coroutine.run \ 594 creation-upp_thread.run 605 creation-upp_thread.run \ 606 creation-goroutine.run \ 607 creation-java_thread.run 595 608 596 609 creation-cfa_coroutine$(EXEEXT): … … 611 624 creation-pthread$(EXEEXT): 612 625 @@BACKEND_CC@ creation/pthreads.c -DBENCH_N=250000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags} 626 627 creation-goroutine$(EXEEXT): 628 @go build -o a.out creation/goroutine.go 629 630 creation-java_thread$(EXEEXT): 631 @javac creation/JavaThread.java 632 @echo "#!/bin/sh" > a.out 633 @echo "cd creation && java JavaThread" >> a.out 634 @chmod a+x a.out 613 635 614 636 compile$(EXEEXT) :\
Note: See TracChangeset
for help on using the changeset viewer.