# Common Makefile elements for the experiments. # Make sure EROOT is defined before including this file. # EROOT should be a path to the root of the experiments directory, # which is the directory in which this file resides. ROOT=$(EROOT)/.. CONFIGS = $(ROOT)/config ifneq ("$(wildcard $(CONFIGS)/config.mk)","") CONFIG = $(CONFIGS)/config.mk else CONFIG = $(CONFIGS)/config_default.mk endif include $(CONFIG) # Commands VERIFY = civl verify -userIncludePath=$(INC) COLLECT=$(ROOT)/bin/$(COLLECT_BIN) # Directories UTIL = $(ROOT)/src/util DRIVER = $(ROOT)/src/driver INC = $(ROOT)/include # Important files SET_H = $(INC)/Set.h QUEUE_H = $(INC)/Queue.h PQUEUE_H = $(INC)/PQueue.h AR_INC = $(INC)/AtomicReference.cvh AR_SRC = $(UTIL)/AtomicReference.cvl AMR_INC = $(INC)/AtomicMarkableReference.cvh AMR_SRC = $(UTIL)/AtomicMarkableReference.cvl AB_INC = $(INC)/AtomicBoolean.cvh AB_SRC = $(UTIL)/AtomicBoolean.cvl AI_INC = $(INC)/AtomicInteger.h AI_SRC = $(UTIL)/AtomicInteger.cvl BIN_INC = $(INC)/Bin.h BIN_SRC = $(UTIL)/Bin.cvl COND_INC = $(INC)/Condition.h COND_SRC = $(UTIL)/Condition.cvl COND2_INC = $(INC)/Condition_dl.h COND2_SRC = $(UTIL)/Condition_dl.cvl TID_INC = $(INC)/tid.h TID_SRC = $(UTIL)/tid.cvl HASH_INC = $(INC)/hash.cvh HASH_SRC = $(UTIL)/hash.cvl LOCK_INC = $(INC)/Lock.h LOCK_SRC = $(UTIL)/ReentrantLock.cvl FAIRLOCK_SRC = $(UTIL)/FairReentrantLock.cvl ARRAYLIST_INC = $(INC)/ArrayList.h ARRAYLIST_SRC = $(UTIL)/ArrayList.cvl NPD_INC = $(INC)/NPDetector.cvh NPD_SRC = $(UTIL)/NPDetector.cvl DRIVER_INC = $(INC)/driver.h $(INC)/perm.h $(INC)/schedule.h $(INC)/types.h \ $(INC)/tid.h $(INC)/collection.h $(INC)/oracle.h DRIVER_SRC = $(DRIVER)/driver.cvl $(DRIVER)/perm.c \ $(DRIVER)/schedule.cvl $(UTIL)/tid.cvl DRIVERQ_SRC = $(DRIVER)/driver_q.cvl $(DRIVER)/perm.c \ $(DRIVER)/schedule.cvl $(UTIL)/tid.cvl # Experiment directories EXP = $(EROOT)/src SET_DIR = $(EXP)/hashset LIST_DIR = $(EXP)/list QUEUE_DIR = $(EXP)/queue PQUEUE_DIR = $(EXP)/pqueue SCHEDULE_DIR = $(EXP)/schedule OUT_DIR = $(EROOT)/results/out # Collection kinds: wrap any kind of collection into one interface SET_COL = $(DRIVER)/set_collection.cvl QUEUE_COL = $(DRIVER)/queue_collection.cvl PQUEUE_COL = $(DRIVER)/pqueue_collection.cvl # Oracles: specify expected behavior NBSET_OR = $(DRIVER)/nonblocking_set_oracle.cvl NBQUEUE_OR = $(DRIVER)/nonblocking_queue_oracle.cvl BQUEUE_OR = $(DRIVER)/bounded_queue_oracle.cvl SQUEUE_OR = $(DRIVER)/sync_queue_oracle.cvl NBPQUEUE_OR = $(DRIVER)/nonblocking_pqueue_oracle.cvl # Global bound settings BOUND_A = -hashKind=ident -valueBound=2 -nthread=1..2 -nstep=1..2 \ -npreAdd=0 -checkTermination -threadSym -ncore=$(NCORE) BOUND_B = -hashKind=ident -valueBound=3 -nthread=1..2 -nstep=1..2 \ -npreAdd=0..1 -checkTermination -threadSym -ncore=$(NCORE) BOUND_C = -hashKind=nd -valueBound=3 -nthread=1..2 -nstep=1..2 \ -npreAdd=0..1 -checkTermination -threadSym -ncore=$(NCORE) \ -hashRangeBound=2 -hashDomainBound=3 BOUND_D = -hashKind=ident -valueBound=4 -nthread=1..3 -nstep=1..3 \ -npreAdd=0..1 -checkTermination -threadSym -ncore=$(NCORE) BOUND_E = -hashKind=ident -valueBound=5 -nthread=1..3 -nstep=1..4 \ -npreAdd=0..1 -checkTermination -threadSym -ncore=$(NCORE) \ -preemptionBound=2 # Notes on the above bounds: # BOUND_A: # - Lists: 63 schedules # - Queues: 9 schedules # - SyncQueues: 9 schedules # - PQueues: 7 schedules # - Hashsets: 63 schedules # BOUND_B: # - Lists: 270 schedules # - Queues: 18 schedules # - SyncQueues: 25 schedules # - PQueues: 25 schedules # - Hashsets: 270 schedules # BOUND_C: # - Lists: 270 schedules # - Queues: 18 schedules # - SyncQueues: 25 schedules # - PQueues: 25 schedules # - Hashsets: 270 schedules # BOUND_D: # - Lists: 8108 schedules # - Queues: 58 schedules # - SyncQueues: 83 schedules # - PQueues: 156 schedules # - Hashsets: 8108 schedules # BOUND_E: # - Lists: 322930 schedules # - Queues: 166 schedules # - SyncQueues: 223 schedules # - PQueues: 1096 schedules # - Hashsets: 322930 schedules