16b00ef566871d57c839581d14c4eb4cf846bee3
[IRC.git] / Robust / src / buildscript
1 #!/bin/bash
2
3 printhelp() {
4 echo -robustroot set up the ROBUSTROOT to directory other than default one
5 echo -dsm distributed shared memory
6 echo -singleTM single machine committing transactions
7 echo -readset turn on readset
8 echo -stmdebug STM debug
9 echo "-stmstats prints single machine commit (stm) statistics for the benchmark"
10 echo -fastmemcpy use fast memcpy
11 echo -abortreaders abort readers immediately
12 echo -trueprob double - probabiltiy of true branch
13 echo -dsmcaching -enable caching in dsm runtime
14 echo -mac distributed shared memory mac support
15 echo -check generate check code
16 echo -dmalloc link in dmalloc
17 echo -64bit compile for 64 bit machine
18 echo -32bit compile for 32 bit machine
19 echo -joptimize java compiler optimizations
20 echo -dcopts conflict optimizations for transactional memory
21 echo -recover compile task code
22 echo -fastcheck fast checkpointing for Bristlecone
23 echo -specdir directory
24 echo -printflat print out flat representation
25 echo -selfloop task - this task cannot self loop forever
26 echo "-excprefetch methoddescriptor - exclude prefetches for this method (specified as class.method)"
27 echo -taskstate do task state analysis
28 echo -tagstate do tag state analysis
29 echo -scheduling do task scheduling
30 echo -multicore generate multi-core version binary
31 echo "-numcore set the number of cores (should be used together with -multicore), defaultly set as 1"
32 echo "-cacheflush enable cache flush in raw version binary (should be used togethere with -raw)"
33 echo "-interrupt generate raw version binary with interruption (should be used togethere with -raw)"
34 echo "-rawpath print out execute path information for raw version (should be used together with -raw)"
35 echo "-useprofile use profiling data for scheduling (should be used together with -raw)"
36 echo -printscheduling print out scheduling graphs
37 echo -printschedulesim print out scheduling simulator result graphs
38 echo -abcclose close the array boundary check
39 echo "-tilera generate tilera version binary (should be used together with -multicore"
40 echo "-tileraconfig config tilera simulator/pci as nxm (should be used together with -tilera)"
41 echo "-raw generate raw version binary (should be used together with -multicore)"
42 echo "-rawconfig config raw simulator as 4xn (should be used together with -raw)"
43 echo -threadsimulate generate multi-thread simulate version binary
44 echo -optional enable optional
45 echo -debug generate debug symbols
46 echo -prefetch do prefetch analysis
47 echo -transstats generates transaction stats on commits and aborts
48 echo -garbagestats Print garbage collection statistics
49 echo -webinterface enable web interface
50 echo -runtimedebug printout runtime debug messages
51 echo -inlineatomic depth inline methods inside of transactions to specified depth
52 echo "-thread use support for multiple threads"
53 echo "-optimize call gcc with -O9 (optimize)"
54 echo "-nooptimize call gcc with -O0 (do not optimize)"
55 echo -curdir directory 
56 echo -mainclass class with main method
57 echo -o binary
58 echo -nojava do not run bristlecone compiler
59 echo -instructionfailures inject code for instructionfailures
60 echo -profile build with profile options
61 echo -accurateprofile build with accurate profile information including pre/post task processing info
62 echo "-useio use standard io to output profiling data (should be used together with -raw and -profile), it only works with single core version"
63 echo "-enable-assertions execute assert statements during compilation"
64 echo -justanalyze exit after compiler analyses complete
65 echo "-distributioninfo  execute to collect distribution info for simulated annealing in multi-core version"
66 echo "-disall  execute to collect whole distribution"
67 echo "-disstart specify the start number of distribution information collection"
68 echo -assembly generate assembly
69 echo -help help
70 }
71
72 ABORTREADERS=false;
73 ROBUSTROOT=~/research/Robust/src
74 DSMRUNTIME=$ROBUSTROOT/Runtime/DSTM/interface/
75 REPAIRROOT=~/research/Repair/RepairCompiler/
76 CURDIR=`pwd`
77 DSMFLAG=false
78 FASTMEMCPY=false
79 SINGLETM=false
80 NOJAVA=false
81 CHECKFLAG=false
82 RECOVERFLAG=false
83 MLPFLAG=false
84 MLPDEBUG=false
85 MULTICOREFLAG=false
86 RAWFLAG=false
87 TILERAFLAG=false
88 TILERACONFIG=''
89 CACHEFLUSHFLAG=false
90 RAWCONFIG=''
91 DEBUGFLAG=false
92 RAWPATHFLAG=false
93 PROFILEFLAG=false
94 ACCURATEPROFILEFLAG=false
95 USEIOFLAG=false
96 INTERRUPTFLAG=false
97 THREADSIMULATEFLAG=false;
98 USEDMALLOC=false
99 THREADFLAG=false
100 FASTCHECK=false
101 SPECDIR=`pwd`
102 SRCFILES=''
103 EXTRAOPTIONS=''
104 MAINFILE='a'
105 JAVAFORWARDOPTS=''
106 JAVAOPTS=''
107 OPTIONALFLAG=false
108 EXITAFTERANALYSIS=false
109 ASSEMBLY=false
110
111 if [[ -z $1 ]]
112 then
113 printhelp
114 exit
115 fi
116
117 while [[ -n $1 ]]
118 do
119 if [[ $1 = '-help' ]]
120 then
121 printhelp
122 exit
123 elif [[ $1 = '-justanalyze' ]]
124 then
125 EXITAFTERANALYSIS=true
126 elif [[ $1 = '-assembly' ]]
127 then
128 ASSEMBLY=true
129 elif [[ $1 = '-abortreaders' ]]
130 then
131 ABORTREADERS=true
132 EXTRAOPTIONS="$EXTRAOPTIONS -DABORTREADERS"
133 JAVAOPTS="$JAVAOPTS -abortreaders"
134 elif [[ $1 = '-robustroot' ]]
135 then
136 ROBUSTROOT="$2"
137 shift
138 elif [[ $1 = '-nojava' ]]
139 then
140 NOJAVA=true
141 elif [[ $1 = '-garbagestats' ]]
142 then
143 EXTRAOPTIONS="$EXTRAOPTIONS -DGARBAGESTATS"
144 elif [[ $1 = '-64bit' ]]
145 then
146 EXTRAOPTIONS="$EXTRAOPTIONS -DBIT64"
147 elif [[ $1 = '-32bit' ]]
148 then
149 EXTRAOPTIONS="$EXTRAOPTIONS -m32"
150 elif [[ $1 = '-fastcheck' ]]
151 then
152 EXTRAOPTIONS="$EXTRAOPTIONS -DFASTCHECK"
153 JAVAOPTS="$JAVAOPTS -fastcheck"
154 FASTCHECK=true
155 elif [[ $1 = '-o' ]]
156 then
157 MAINFILE="$2"
158 shift
159 elif [[ $1 = '-mainclass' ]]
160 then
161 JAVAOPTS="$JAVAOPTS -mainclass $2"
162 shift
163 elif [[ $1 = '-selfloop' ]]
164 then
165 JAVAOPTS="$JAVAOPTS -selfloop $2"
166 shift
167 elif [[ $1 = '-excprefetch' ]]
168 then
169 JAVAOPTS="$JAVAOPTS -excprefetch $2"
170 shift
171 elif [[ $1 = '-arraypad' ]]
172 then
173 JAVAOPTS="$JAVAOPTS -arraypad"
174 elif [[ $1 = '-dsm' ]]
175 then
176 JAVAOPTS="$JAVAOPTS -dsm"
177 DSMFLAG=true
178 elif [[ $1 = '-fastmemcpy' ]]
179 then
180 FASTMEMCPY=true
181 EXTRAOPTIONS="$EXTRAOPTIONS -DFASTMEMCPY"
182 elif [[ $1 = '-singleTM' ]]
183 then
184 JAVAOPTS="$JAVAOPTS -singleTM"
185 EXTRAOPTIONS="$EXTRAOPTIONS -DSTM"
186 SINGLETM=true
187 elif [[ $1 = '-readset' ]]
188 then
189 JAVAOPTS="$JAVAOPTS -readset"
190 EXTRAOPTIONS="$EXTRAOPTIONS -DREADSET"
191 elif [[ $1 = '-stmdebug' ]]
192 then
193 EXTRAOPTIONS="$EXTRAOPTIONS -DSTMDEBUG"
194 elif [[ $1 = '-stmstats' ]]
195 then
196 EXTRAOPTIONS="$EXTRAOPTIONS -DSTMSTATS"
197 elif [[ $1 = '-prefetch' ]]
198 then
199 JAVAOPTS="$JAVAOPTS -prefetch"
200 elif [[ $1 = '-transstats' ]]
201 then
202 EXTRAOPTIONS="$EXTRAOPTIONS -DTRANSSTATS"
203 elif [[ $1 = '-printflat' ]]
204 then
205 JAVAOPTS="$JAVAOPTS -printflat"
206 elif [[ $1 = '-trueprob' ]]
207 then
208 JAVAOPTS="$JAVAOPTS -trueprob $2"
209 shift
210 elif [[ $1 = '-inlineatomic' ]]
211 then
212 JAVAOPTS="$JAVAOPTS -inlineatomic $2"
213 shift
214 elif [[ $1 = '-mac' ]]
215 then
216 EXTRAOPTIONS="$EXTRAOPTIONS -DMAC"
217 elif [[ $1 = '-profile' ]]
218 then
219 PROFILEFLAG=true
220 EXTRAOPTIONS="$EXTRAOPTIONS -pg"
221 elif [[ $1 = '-accurateprofile' ]]
222 then
223 ACCURATEPROFILEFLAG=true
224 elif [[ $1 = '-useio' ]]
225 then
226 USEIOFLAG=true
227 elif [[ $1 = '-taskstate' ]]
228 then
229 JAVAOPTS="$JAVAOPTS -taskstate"
230 elif [[ $1 = '-tagstate' ]]
231 then
232 JAVAOPTS="$JAVAOPTS -tagstate"
233 elif [[ $1 = '-scheduling' ]]
234 then
235 JAVAOPTS="$JAVAOPTS -scheduling"
236 elif [[ $1 = '-multicore' ]]
237 then
238 MULTICOREFLAG=true
239 JAVAOPTS="$JAVAOPTS -multicore"
240 elif [[ $1 = '-numcore' ]]
241 then
242 JAVAOPTS="$JAVAOPTS -numcore $2"
243 shift
244 elif [[ $1 = '-raw' ]]
245 then
246 RAWFLAG=true
247 JAVAOPTS="$JAVAOPTS -raw"
248 elif [[ $1 = '-tilera' ]]
249 then
250 TILERAFLAG=true
251 elif [[ $1 = '-tileraconfig' ]]
252 then
253 TILERACONFIG="$2"
254 shift
255 elif [[ $1 = '-cacheflush' ]]
256 then
257 CACHEFLUSHFLAG=true
258 elif [[ $1 = '-rawconfig' ]]
259 then
260 RAWCONFIG="$2"
261 shift
262 elif [[ $1 = '-interrupt' ]]
263 then
264 INTERRUPTFLAG=true
265 elif [[ $1 = '-threadsimulate' ]]
266 then
267 THREADSIMULATEFLAG=true
268 elif [[ $1 = '-abcclose' ]]
269 then
270 JAVAOPTS="$JAVAOPTS -abcclose"
271 elif [[ $1 = '-optional' ]]
272 then
273 JAVAOPTS="$JAVAOPTS -optional"
274 OPTIONALFLAG=true
275 elif [[ $1 = '-dmalloc' ]]
276 then
277 USEDMALLOC=true
278 elif [[ $1 = '-recover' ]]
279 then
280 RECOVERFLAG=true
281 JAVAOPTS="$JAVAOPTS -task"
282 elif [[ $1 = '-useprofile' ]]
283 then
284 JAVAOPTS="$JAVAOPTS -useprofile $2"
285 shift
286 elif [[ $1 = '-webinterface' ]]
287 then
288 JAVAOPTS="$JAVAOPTS -webinterface"
289 elif [[ $1 = '-instructionfailures' ]]
290 then
291 JAVAOPTS="$JAVAOPTS -instructionfailures"
292 elif [[ $1 = '-joptimize' ]]
293 then
294 JAVAOPTS="$JAVAOPTS -optimize"
295 elif [[ $1 = '-dcopts' ]]
296 then
297 JAVAOPTS="$JAVAOPTS -dcopts"
298 elif [[ $1 = '-delaycomp' ]]
299 then
300 JAVAOPTS="$JAVAOPTS -delaycomp"
301 EXTRAOPTIONS="$EXTRAOPTIONS -DDELAYCOMP"
302 elif [[ $1 = '-minimize' ]]
303 then
304 JAVAOPTS="$JAVAOPTS -minimize"
305 elif [[ $1 = '-mlp' ]]
306 then
307 MLPFLAG=true
308 EXTRAOPTIONS="$EXTRAOPTIONS -lpthread"
309 elif [[ $1 = '-mlpdebug' ]]
310 then
311 JAVAOPTS="$JAVAOPTS -mlpdebug"
312 MLPFLAG=true
313 EXTRAOPTIONS="$EXTRAOPTIONS -lpthread"
314 elif [[ $1 = '-check' ]]
315 then
316 CHECKFLAG=true
317 JAVAOPTS="$JAVAOPTS -conscheck"
318 elif [[ $1 = '-enable-assertions' ]]
319 then
320 JAVAFORWARDOPTS="$JAVAFORWARDOPTS -ea"
321 elif [[ $1 = '-specdir' ]]
322 then
323 cd $2
324 SPECDIR=`pwd`
325 cd $CURDIR
326 shift
327 elif [[ $1 = '-debug' ]]
328 then
329 DEBUGFLAG=true
330 EXTRAOPTIONS="$EXTRAOPTIONS -g -rdynamic"
331 elif [[ $1 = '-rawpath' ]]
332 then
333 RAWPATHFLAG=true
334 elif [[ $1 = '-runtimedebug' ]]
335 then
336 EXTRAOPTIONS="$EXTRAOPTIONS -DDEBUG"
337 elif [[ $1 = '-dsmcaching' ]]
338 then
339 EXTRAOPTIONS="$EXTRAOPTIONS -DCACHE"
340 elif [[ $1 = '-rangeprefetch' ]]
341 then
342 EXTRAOPTIONS="$EXTRAOPTIONS -DRANGEPREFETCH"
343 elif [[ $1 = '-nooptimize' ]]
344 then
345 EXTRAOPTIONS="$EXTRAOPTIONS -O0"
346 elif [[ $1 = '-optimize' ]]
347 then
348 EXTRAOPTIONS="$EXTRAOPTIONS -O9"
349 elif [[ $1 = '-thread' ]]
350 then
351 JAVAOPTS="$JAVAOPTS -thread"
352 EXTRAOPTIONS="$EXTRAOPTIONS -DTHREADS -lpthread"
353 THREADFLAG=true
354 elif [[ $1 = '-distributioninfo' ]]
355 then
356 JAVAOPTS="$JAVAOPTS -distributioninfo"
357 elif [[ $1 = '-disall' ]]
358 then
359 JAVAOPTS="$JAVAOPTS -disall"
360 elif [[ $1 = '-disstart' ]]
361 then
362 JAVAOPTS="$JAVAOPTS -disstart $2"
363 shift
364 elif [[ $1 = '-noc' ]]
365 then
366 CCOMPILEFLAG=false
367 elif [[ $1 = '-curdir' ]]
368 then
369 CURDIR=$2
370 shift
371 elif [[ $1 = '-outputdir' ]]
372 then
373 JAVAOPTS="$JAVAOPTS -outputdir $2"
374 shift
375 else
376 SRCFILES="$SRCFILES $1"
377 fi
378 shift
379 done
380
381 BUILDDIR="$CURDIR/tmpbuilddirectory"
382
383 cd $1
384 cd $CURDIR
385 shift
386
387 mkdir $BUILDDIR
388
389 if $CHECKFLAG #Generate structure files for repair tool
390 then
391 JAVAOPTS="$JAVAOPTS -struct structfile"
392 fi
393
394 # Setup class path
395
396 if $RECOVERFLAG
397 then
398 if $FASTCHECK
399 then
400 #fast transactions
401 JAVAOPTS="$JAVAOPTS -classlibrary $ROBUSTROOT/ClassLibrary/FastCheck"
402 else
403 #base bristlecone files
404 JAVAOPTS="$JAVAOPTS -classlibrary $ROBUSTROOT/ClassLibrary/Bristlecone"
405 fi
406 else
407 if $DSMFLAG
408 then
409 #dsm stuff
410 JAVAOPTS="$JAVAOPTS -classlibrary $ROBUSTROOT/ClassLibrary/JavaDSM"
411 elif $SINGLETM
412 then
413 JAVAOPTS="$JAVAOPTS -classlibrary $ROBUSTROOT/ClassLibrary/JavaSTM"
414 elif $THREADFLAG
415 then
416 #threading java stuff
417 JAVAOPTS="$JAVAOPTS -classlibrary $ROBUSTROOT/ClassLibrary/JavaThread"
418 fi
419 #base java stuff
420 JAVAOPTS="$JAVAOPTS -classlibrary $ROBUSTROOT/ClassLibrary/Java"
421 fi
422
423 # Build bristlecone/java sources
424
425 if $MULTICOREFLAG
426 then
427 if ! ${ROBUSTROOT}/ourjava -Xms50m -Xmx1500m $JAVAFORWARDOPTS -classpath $ROBUSTROOT/../cup/:$ROBUSTROOT Main.Main -classlibrary \
428 $ROBUSTROOT/ClassLibrary/ -classlibrary $ROBUSTROOT/ClassLibrary/gnu/ \
429 -dir $BUILDDIR $JAVAOPTS $SRCFILES
430 then exit $?
431 fi
432 else
433 #if ! ${ROBUSTROOT}/ourjava -Xms5m -Xmx100m $JAVAFORWARDOPTS -classpath $ROBUSTROOT/../cup/:$ROBUSTROOT Main.Main -classlibrary \
434 if ! $NOJAVA
435 then
436 if ! ${ROBUSTROOT}/ourjava -Xms50m -Xmx1500m $JAVAFORWARDOPTS -classpath $ROBUSTROOT/../cup/:$ROBUSTROOT Main.Main -classlibrary \
437 $ROBUSTROOT/ClassLibrary/ -classlibrary $ROBUSTROOT/ClassLibrary/gnu/ -dir $BUILDDIR -precise \
438 $JAVAOPTS $SRCFILES
439 then exit $?
440 fi
441 fi
442 fi
443
444 if $EXITAFTERANALYSIS
445 then
446 exit
447 fi
448
449 # Build all of the consistency specs
450
451 if $CHECKFLAG # CHECKFLAG
452 then
453 cd $SPECDIR
454 mkdir $BUILDDIR/specdir
455 cp $REPAIRROOT/MCC/CRuntime/* $BUILDDIR/specdir
456
457 echo > $BUILDDIR/specs
458
459 # compile specs into C code
460 for i in * # iterate over all directories
461 do
462 if [[ "$i" != "CVS" ]] # CVSDIR CHECK
463 then
464 cd $SPECDIR/$i
465 cat $BUILDDIR/structfile.struct $i.label > $i.struct
466 java -cp $REPAIRROOT/:. MCC.Compiler -name $i -checkonly $i
467 cp size.[c,h] $BUILDDIR/specdir
468 cp $i.c $i\_aux.[c,h] $BUILDDIR/specdir
469 echo $i >> $BUILDDIR/specs
470 fi # CVSDIR CHECK
471 done # iterate over all directories
472
473 #compile C code
474
475 cd $BUILDDIR/specdir
476 ./buildrobust
477 echo > $BUILDDIR/checkers.h
478 for i in `cat $BUILDDIR/specs`
479 do
480 gcc -O0 -g -fbounds-check -c $i\_aux.c
481 echo \#include \"specdir\/$i\_aux.h\" >> $BUILDDIR/checkers.h
482 done
483 fi # CHECKFLAG
484
485 #build and link everything
486
487 if $RAWFLAG
488 then # RAWFLAG
489 RAWDIR="$CURDIR/raw"
490 MAKEFILE="Makefile.raw"
491 mkdir $RAWDIR
492 cd $RAWDIR
493 make clean
494 rm ./*
495
496 export RAWRGCCFLAGS="-DTASK -DMULTICORE -DRAW"
497
498 if $CACHEFLUSHFLAG
499 then # print path
500 RAWRGCCFLAGS="${RAWRGCCFLAGS} -DCACHEFLUSH"
501 fi
502
503 if $RAWPATHFLAG
504 then # print path
505 RAWRGCCFLAGS="${RAWRGCCFLAGS} -DRAWPATH"
506 fi
507
508 if $DEBUGFLAG
509 then #debug version
510 RAWRGCCFLAGS="${RAWRGCCFLAGS} -DDEBUG"
511 fi
512
513 if $PROFILEFLAG
514 then # profile version
515 RAWRGCCFLAGS="${RAWRGCCFLAGS} -DPROFILE"
516 fi
517
518 if $ACCURATEPROFILEFLAG
519 then # accurateprofile version
520 RAWRGCCFLAGS="${RAWRGCCFLAGS} -DACCURATEPROFILE"
521 fi
522
523 if $USEIOFLAG
524 then # useio version
525 RAWRGCCFLAGS="${RAWRGCCFLAGS} -DUSEIO"
526 fi
527
528 if $INTERRUPTFLAG
529 then #INTERRUPT version
530 RAWRGCCFLAGS="${RAWRGCCFLAGS} -DINTERRUPT"
531 fi #INTERRUPT version
532
533 if $USEIOFLAG
534 then # useio version
535 MAKEFILE="$MAKEFILE.io"
536 echo "+++++++++++use Makefile.raw.io++++++++++++++++"
537 else
538 MAKEFILE="$MAKEFILE.$RAWCONFIG"
539 fi #useio version
540
541 cp $ROBUSTROOT/Runtime/RAW/$MAKEFILE ./Makefile
542 cp ../Runtime/*.c ./
543 cp ../Runtime/*.h ./
544 cp ../Runtime/*.S ./
545 cp ../Runtime/*.s ./
546 cp ../Runtime/RAW/*.c ./
547 cp ../Runtime/RAW/*.h ./
548 cp ../Runtime/RAW/*.S ./
549 cp ../Runtime/RAW/*.s ./
550 cp ../tmpbuilddirectory/*.c ./
551 cp ../tmpbuilddirectory/*.h ./
552
553 make
554
555 elif $TILERAFLAG
556 then # TILERAFLAG
557 TILERADIR="$CURDIR/tilera"
558 MAKEFILE="Makefile.tilera.$TILERACONFIG"
559 SIMHVC="sim.hvc.$TILERACONFIG"
560 PCIHVC="pci.hvc.$TILERACONFIG"
561 mkdir $TILERADIR
562 cd $TILERADIR
563 make clean
564 rm ./*
565
566 export TILERACFLAGS="-DTASK -DMULTICORE"
567
568 if $CACHEFLUSHFLAG
569 then # print path
570 TILERACFLAGS="${TILERACFLAGS} -DCACHEFLUSH"
571 fi
572
573 if $RAWPATHFLAG
574 then # print path
575 TILERACFLAGS="${TILERACFLAGS} -DRAWPATH"
576 fi
577
578 if $DEBUGFLAG
579 then #debug version
580 TILERACFLAGS="${TILERACFLAGS} -DDEBUG"
581 fi
582
583 if $PROFILEFLAG
584 then # profile version
585 TILERACFLAGS="${TILERACFLAGS} -DPROFILE"
586 fi
587
588 if $ACCURATEPROFILEFLAG
589 then # accurateprofile version
590 TILERACFLAGS="${TILERACFLAGS} -DACCURATEPROFILE"
591 fi
592
593 if $USEIOFLAG
594 then # useio version
595 TILERACFLAGS="${TILERACFLAGS} -DUSEIO"
596 fi
597
598 if $INTERRUPTFLAG
599 then #INTERRUPT version
600 TILERACFLAGS="${TILERACFLAGS} -DINTERRUPT"
601 fi #INTERRUPT version
602
603 cp $ROBUSTROOT/Tilera/Runtime/$MAKEFILE ./Makefile
604 cp $ROBUSTROOT/Tilera/Runtime/$SIMHVC ./sim.hvc
605 cp $ROBUSTROOT/Tilera/Runtime/$PCIHVC ./pci.hvc
606 cp $ROBUSTROOT/Tilera/Runtime/bamboo-vmlinux-pci.hvc ./bamboo-vmlinux-pci.hvc
607 cp ../Runtime/multicoretask.c ./
608 cp ../Runtime/multicoreruntime.c ./
609 cp ../Runtime/Queue.c ./
610 cp ../Runtime/file.c ./
611 cp ../Runtime/math.c ./
612 cp ../Runtime/object.c ./
613 cp ../Runtime/GenericHashtable.c ./
614 cp ../Runtime/SimpleHash.c ./
615 cp ../Runtime/ObjectHash.c ./
616 cp ../Runtime/socket.c ./
617 cp ../Runtime/mem.c ./
618 cp ../Runtime/GenericHashtable.h ./
619 cp ../Runtime/mem.h ./
620 cp ../Runtime/multicoreruntime.h ./
621 cp ../Runtime/object.h ./
622 cp ../Runtime/ObjectHash.h ./
623 cp ../Runtime/Queue.h ./
624 cp ../Runtime/runtime.h ./
625 cp ../Runtime/SimpleHash.h ./
626 cp ../Tilera/Runtime/*.c ./
627 cp ../Tilera/Runtime/*.h ./
628 cp ../Tilera/lib/* ./
629 cp ../tmpbuilddirectory/*.c ./
630 cp ../tmpbuilddirectory/*.h ./
631
632 make
633
634 else #!RAWFLAG && !TILERAFLAG
635 cd $CURDIR 
636
637 INCLUDES="$INCLUDES -I$ROBUSTROOT/Runtime -I. -IRuntime/include \
638 -I$BUILDDIR"
639
640 if $MULTICOREFLAG
641 then
642 RUNTIMEFILE="$ROBUSTROOT/Runtime/multicoreruntime.c $ROBUSTROOT/Runtime/multicoretask.c"
643 else
644 RUNTIMEFILE="$ROBUSTROOT/Runtime/runtime.c $ROBUSTROOT/Runtime/task.c"
645 fi
646
647 FILES="$RUNTIMEFILE \
648 $ROBUSTROOT/Runtime/file.c $ROBUSTROOT/Runtime/Queue.c \
649 $ROBUSTROOT/Runtime/SimpleHash.c $ROBUSTROOT/Runtime/option.c \
650 $ROBUSTROOT/Runtime/ObjectHash.c \
651 $ROBUSTROOT/Runtime/garbage.c $ROBUSTROOT/Runtime/socket.c \
652 $ROBUSTROOT/Runtime/math.c \
653 $ROBUSTROOT/Runtime/GenericHashtable.c $ROBUSTROOT/Runtime/object.c"
654
655 if $FASTMEMCPY
656 then
657 FILES="$FILES $ROBUSTROOT/Runtime/memcpy32.o $ROBUSTROOT/Runtime/instrset32.o"
658 fi
659
660 if $DSMFLAG
661 then
662 EXTRAOPTIONS="$EXTRAOPTIONS -lpthread -DCOMPILER -DDSTM -I$DSMRUNTIME"
663 FILES="$FILES $DSMRUNTIME/trans.c $DSMRUNTIME/mcpileq.c $DSMRUNTIME/objstr.c $DSMRUNTIME/dstm.c $DSMRUNTIME/mlookup.c $DSMRUNTIME/clookup.c $DSMRUNTIME/llookup.c $DSMRUNTIME/threadnotify.c $DSMRUNTIME/dstmserver.c $DSMRUNTIME/plookup.c $DSMRUNTIME/ip.c $DSMRUNTIME/queue.c $DSMRUNTIME/prelookup.c $DSMRUNTIME/machinepile.c $ROBUSTROOT/Runtime/localobjects.c $ROBUSTROOT/Runtime/thread.c $DSMRUNTIME/sockpool.c $DSMRUNTIME/addUdpEnhance.c $DSMRUNTIME/signal.c $DSMRUNTIME/gCollect.c $DSMRUNTIME/addPrefetchEnhance.c $DSMRUNTIME/dsmlock.c $DSMRUNTIME/prefetch.c"
664 fi
665
666 if $SINGLETM
667 then
668 EXTRAOPTIONS="$EXTRAOPTIONS -lpthread -DCOMPILER -I$DSMRUNTIME"
669 FILES="$FILES $DSMRUNTIME/stmlock.c $DSMRUNTIME/singleTMCommit.c $DSMRUNTIME/stmlookup.c $ROBUSTROOT/Runtime/thread.c"
670 fi
671
672 if $ABORTREADERS
673 then
674 FILES="$FILES $DSMRUNTIME/abortreaders.c"
675 fi
676
677 if $FASTCHECK
678 then
679 FILES="$FILES $ROBUSTROOT/Runtime/localobjects.c"
680 fi
681
682 if $MLPFLAG
683 then
684 FILES="$FILES $ROBUSTROOT/Runtime/mlp_runtime.c"
685 FILES="$FILES $ROBUSTROOT/Runtime/psemaphore.c"
686 FILES="$FILES $ROBUSTROOT/Runtime/workschedule.c"
687 fi
688
689 if $RECOVERFLAG
690 then
691 EXTRAOPTIONS="$EXTRAOPTIONS -DTASK"
692 if $MULTICOREFLAG
693 then
694 EXTRAOPTIONS="$EXTRAOPTIONS -DMULTICORE"
695 fi
696 FILES="$FILES tmpbuilddirectory/taskdefs.c $ROBUSTROOT/Runtime/checkpoint.c $ROBUSTROOT/Runtime/chash.c"
697 if $RAWFLAG
698 then
699 EXTRAOPTIONS="$EXTRAOPTIONS -DRAW"
700 fi
701 if $THREADSIMULATEFLAG
702 then
703 # -lpthread for pthread functions, -lrt for message queue functions
704 EXTRAOPTIONS="$EXTRAOPTIONS -DTHREADSIMULATE -lpthread -lrt"
705 fi
706 fi
707
708 if $OPTIONALFLAG
709 then
710 EXTRAOPTIONS="$EXTRAOPTIONS -DOPTIONAL"
711 FILES="$FILES tmpbuilddirectory/optionalarrays.c"
712 fi
713
714 if $THREADFLAG
715 then
716 FILES="$FILES $ROBUSTROOT/Runtime/thread.c"
717 fi
718
719 if $CHECKFLAG
720 then
721 EXTRAOPTIONS="$EXTRAOPTIONS -DCONSCHECK $BUILDDIR/specdir/*.o"
722 INCLUDES="$INCLUDES -I$BUILDDIR/specdir"
723 fi
724
725 if $USEDMALLOC
726 then
727 EXTRAOPTIONS="$EXTRAOPTIONS -ldmalloc -DDMALLOC"
728 fi
729
730 if $ASSEMBLY
731 then
732 gcc -S $INCLUDES $EXTRAOPTIONS -DPRECISE_GC \
733 -c tmpbuilddirectory/methods.c -lm
734 fi
735
736 if $MULTICOREFLAG
737 then
738 gcc $INCLUDES $EXTRAOPTIONS \
739 tmpbuilddirectory/methods.c $FILES -lm -o $MAINFILE.bin
740 else
741 gcc $INCLUDES $EXTRAOPTIONS -DPRECISE_GC \
742 tmpbuilddirectory/methods.c $FILES -lm -o $MAINFILE.bin
743 fi
744
745
746 fi #!RAWFLAG
747
748 exit
749