Changeset 3351cc0
- Timestamp:
- Nov 9, 2017, 10:59:04 AM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, 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:
- 3edc2df, ea7d2b0
- Parents:
- 954908d
- Location:
- src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/InitTweak.cc
r954908d r3351cc0 98 98 class InitExpander::ExpanderImpl { 99 99 public: 100 virtual ~ExpanderImpl() = default; 100 101 virtual std::list< Expression * > next( std::list< Expression * > & indices ) = 0; 101 102 virtual Statement * buildListInit( UntypedExpr * callExpr, std::list< Expression * > & indices ) = 0; -
src/benchmark/Makefile.am
r954908d r3351cc0 133 133 ## ========================================================================================================= 134 134 creation$(EXEEXT) :\ 135 creation-pthread.run \ 136 creation-cfa_coroutine.run \ 137 creation-cfa_thread.run \ 138 creation-upp_coroutine.run \ 135 creation-pthread.run \ 136 creation-cfa_coroutine.run \ 137 creation-cfa_coroutine_eager.run \ 138 creation-cfa_thread.run \ 139 creation-upp_coroutine.run \ 139 140 creation-upp_thread.run 140 141 141 142 creation-cfa_coroutine$(EXEEXT): 142 143 ${CC} creation/cfa_cor.c -DBENCH_N=10000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} 144 145 creation-cfa_coroutine_eager$(EXEEXT): 146 ${CC} creation/cfa_cor.c -DBENCH_N=10000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} -DEAGER 143 147 144 148 creation-cfa_thread$(EXEEXT): -
src/benchmark/Makefile.in
r954908d r3351cc0 544 544 545 545 creation$(EXEEXT) :\ 546 creation-pthread.run \ 547 creation-cfa_coroutine.run \ 548 creation-cfa_thread.run \ 549 creation-upp_coroutine.run \ 546 creation-pthread.run \ 547 creation-cfa_coroutine.run \ 548 creation-cfa_coroutine_eager.run \ 549 creation-cfa_thread.run \ 550 creation-upp_coroutine.run \ 550 551 creation-upp_thread.run 551 552 552 553 creation-cfa_coroutine$(EXEEXT): 553 554 ${CC} creation/cfa_cor.c -DBENCH_N=10000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} 555 556 creation-cfa_coroutine_eager$(EXEEXT): 557 ${CC} creation/cfa_cor.c -DBENCH_N=10000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} -DEAGER 554 558 555 559 creation-cfa_thread$(EXEEXT): -
src/benchmark/creation/cfa_cor.c
r954908d r3351cc0 5 5 6 6 coroutine MyCoroutine {}; 7 void ?{} (MyCoroutine & this) { prime(this); } 7 void ?{} (MyCoroutine & this) { 8 #ifdef EAGER 9 prime(this); 10 #endif 11 } 8 12 void main(MyCoroutine & this) {} 9 13
Note: See TracChangeset
for help on using the changeset viewer.