Changeset 034165a for src/benchmark/Makefile.in
- Timestamp:
- Oct 26, 2017, 11:17:20 AM (6 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:
- 4149d9d
- Parents:
- f1dd17a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/benchmark/Makefile.in
rf1dd17a r034165a 302 302 top_srcdir = @top_srcdir@ 303 303 AM_CFLAGS = -g -Wall -Wno-unused-function -O2 304 REPEAT = ${abs_top_srcdir}/tools/a.out 305 repeats = 30 304 306 noinst_PROGRAMS = bench$(EXEEXT) ctxswitch-coroutine$(EXEEXT) ctxswitch-thread$(EXEEXT) sched-int$(EXEEXT) monitor$(EXEEXT) csv-data$(EXEEXT) 305 307 all: all-am … … 339 341 clean-noinstPROGRAMS: 340 342 -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS) 343 344 ctxswitch-coroutine$(EXEEXT): $(ctxswitch_coroutine_OBJECTS) $(ctxswitch_coroutine_DEPENDENCIES) $(EXTRA_ctxswitch_coroutine_DEPENDENCIES) 345 @rm -f ctxswitch-coroutine$(EXEEXT) 346 $(AM_V_CCLD)$(LINK) $(ctxswitch_coroutine_OBJECTS) $(ctxswitch_coroutine_LDADD) $(LIBS) 347 348 ctxswitch-thread$(EXEEXT): $(ctxswitch_thread_OBJECTS) $(ctxswitch_thread_DEPENDENCIES) $(EXTRA_ctxswitch_thread_DEPENDENCIES) 349 @rm -f ctxswitch-thread$(EXEEXT) 350 $(AM_V_CCLD)$(LINK) $(ctxswitch_thread_OBJECTS) $(ctxswitch_thread_LDADD) $(LIBS) 341 351 342 352 mostlyclean-compile: … … 572 582 573 583 584 .NOTPARALLEL: 585 574 586 bench$(EXEEXT) : 575 587 @for ccflags in "-debug" "-nodebug"; do \ … … 580 592 rm -f ./a.out ; 581 593 582 ctxswitch-coroutine$(EXEEXT):583 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 CorCtxSwitch.c584 @rm -f .result.log585 @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \586 ./a.out | tee -a .result.log ; \587 done588 @./stat.py .result.log589 @rm -f a.out .result.log590 591 ctxswitch-thread$(EXEEXT):592 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 ThrdCtxSwitch.c593 @rm -f .result.log594 @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \595 ./a.out | tee -a .result.log ; \596 done597 @./stat.py .result.log598 @rm -f a.out .result.log599 600 ctxswitch-pthread$(EXEEXT):601 @BACKEND_CC@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} -lrt -pthread -DN=50000000 PthrdCtxSwitch.c602 @rm -f .result.log603 @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \604 ./a.out | tee -a .result.log ; \605 done606 @./stat.py .result.log607 @rm -f a.out .result.log608 609 sched-int$(EXEEXT):610 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 SchedInt.c611 @rm -f .result.log612 @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \613 ./a.out | tee -a .result.log ; \614 done615 @./stat.py .result.log616 @rm -f a.out .result.log617 618 monitor$(EXEEXT):619 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 Monitor.c620 @rm -f .result.log621 @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \622 ./a.out | tee -a .result.log ; \623 done624 @./stat.py .result.log625 @rm -f a.out .result.log626 627 594 csv-data$(EXEEXT): 628 595 @${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -quiet -DN=50000000 csv-data.c … … 630 597 @rm -f ./a.out 631 598 599 ctxswitch$(EXEEXT): \ 600 ctxswitch-cfa_coroutine.run \ 601 ctxswitch-cfa_thread.run \ 602 ctxswitch-upp_coroutine.run \ 603 ctxswitch-upp_thread.run \ 604 ctxswitch-pthread.run 605 606 ctxswitch-cfa_coroutine$(EXEEXT): 607 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -I. -nodebug -lrt -DN=50000000 ctxswitch/cfa_cor.c 608 609 ctxswitch-cfa_thread$(EXEEXT): 610 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -I. -nodebug -lrt -DN=50000000 ctxswitch/cfa_thrd.c 611 612 ctxswitch-upp_coroutine$(EXEEXT): 613 u++ ${AM_CFLAGS} ${CFLAGS} ${ccflags} ${ccflags} -I. -nodebug -lrt -DN=50000000 ctxswitch/upp_cor.cc 614 615 ctxswitch-upp_thread$(EXEEXT): 616 u++ ${AM_CFLAGS} ${CFLAGS} ${ccflags} ${ccflags} -I. -nodebug -lrt -DN=50000000 ctxswitch/upp_cor.cc 617 618 ctxswitch-pthread$(EXEEXT): 619 @BACKEND_CC@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} -I. -lrt -pthread -DN=50000000 ctxswitch/pthreads.c 620 621 creation$(EXEEXT) :\ 622 creation-pthread.run \ 623 creation-cfa_coroutine.run \ 624 creation-cfa_thread.run \ 625 creation-upp_coroutine.run \ 626 creation-upp_thread.run 627 628 creation-cfa_coroutine$(EXEEXT): 629 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -I. -nodebug -lrt -DBENCH_N=500000000 creation/cfa_cor.c 630 631 creation-cfa_thread$(EXEEXT): 632 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -I. -nodebug -lrt -DBENCH_N=10000000 creation/cfa_thrd.c 633 634 creation-upp_coroutine$(EXEEXT): 635 u++ ${AM_CFLAGS} ${CFLAGS} ${ccflags} ${ccflags} -I. -nodebug -lrt -DBENCH_N=50000000 creation/upp_cor.cc 636 637 creation-upp_thread$(EXEEXT): 638 u++ ${AM_CFLAGS} ${CFLAGS} ${ccflags} ${ccflags} -I. -nodebug -lrt -DBENCH_N=50000000 creation/upp_cor.cc 639 640 creation-pthread$(EXEEXT): 641 @BACKEND_CC@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} -I. -lrt -pthread -DBENCH_N=2500000 creation/pthreads.c 642 643 sched-int$(EXEEXT): 644 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 SchedInt.c 645 646 monitor$(EXEEXT): 647 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 Monitor.c 648 649 %.run : %$(EXEEXT) 650 @rm -f .result.log 651 @./catchsig 652 @${REPEAT} ${repeats} ./a.out | tee -a .result.log 653 @./stat.py .result.log 654 @rm -f a.out .result.log 655 632 656 # Tell versions [3.59,3.63) of GNU make to not export all variables. 633 657 # Otherwise a system limit (for SysV at least) may be exceeded.
Note: See TracChangeset
for help on using the changeset viewer.