7a8fff12e87a8955afc1aa22768844775cead62e
[IRC.git] / Robust / src / buildscript
1 #!/bin/bash
2
3 printhelp() {
4 echo STM Options
5 echo -singleTM single machine committing transactions
6 echo -stmdebug STM debug
7 echo "-stmstats prints single machine commit (stm) statistics for the benchmark"
8 echo -fastmemcpy use fast memcpy
9 echo -sandbox sandbox transactions
10 echo -dcopts conflict optimizations for transactional memory
11 echo -transstats generates transaction stats on commits and aborts
12 echo -inlineatomic depth inline methods inside of transactions to specified depth
13 echo "-stmarray partial array treatment"
14 echo "-dualview dual view of arrays"
15 echo "-hybrid use fission only when it looks like a good choice"
16 echo "-numa numa aware"
17 echo "-eventmonitor turn on transaction event trace recording"
18 echo
19 echo OOOJava options
20 echo -coreprof, turn on profiling API
21 echo -coreprof-eventwords NUM, space in words/thread for coreprof events
22 echo -coreprof-checkoverflow, ONLY use for debugging event overflow
23 echo -coreprof-enable EVENTNAME, only enable desired events to reduce overhead
24 echo   EVENTNAME can be: cpe_main, cpe_runmalloc, cpe_runfree, cpe_poolalloc, cpe_count_poolalloc, cpe_count_poolreuse, cpe_workschedgrab, cpe_taskdispatch, cpe_preparememq, cpe_taskexecute, cpe_taskretire, cpe_taskstallvar, cpe_taskstallmem 
25 echo "-ooojava <numberofcores> <maxseseage>"
26 echo -ooodebug general OOOJava debugging messages
27 echo -ooodebug-disable-task-mem-pool this is a tricky module, disable for simpler runtime
28 echo -mempool-detect-misuse turn on to find code misusing pool-allocated records
29 echo -rcr turn on runtime conflict resolver
30 echo -rcr_debug Shows weakly connected heaproots and which allocation sites were considered for traversal
31 echo -rcr_debug_verbose in addition to above, also prints out effects passed in, internal representation of effects, and internal representation of reach graph
32 echo -squeue use single queue
33 echo -corepin use core pinning
34 echo -nostalltr turn off RCR traversers that only handle conflicts between task and stallsite
35 echo -nolock turn off synchronization lock
36 echo
37 echo Disjoint Reachability Analysis options
38 echo -disjoint enable analysis
39 echo -disjoint-k set k-limit for heap nodes per allocation site
40 echo "-disjoint-write-dots <all/final> write reach graphs for all method sols. or only final sols."
41 echo -disjoint-write-initial-contexts write reach graphs for callee initial contexts from all call sites
42 echo -disjoint-write-ihms write reach graphs for each call site\'s Initial Heap Model
43 echo "-disjoint-alias-file <filename> <normal/tabbed> write sharing for normal human reading or LaTeX tabbed"
44 echo "-disjoint-debug-callsite <callee> <caller> <visit to start> <num caps> <T/F stop after>"
45 echo "  To debug call site, give callee caller symbols (ie foo) the analysis visit to start capturing, num captures to take, and whether to halt analysis after capturing"
46 echo "-disjoint-debug-snap-method <method> <visit to start> <num caps> <T/F stop after>"
47 echo "  To take snapshots at statements, give method symbol, the analysis visit to start capturing, num captures to take, and whether to halt analsyis after capturing"
48 echo "-disjoint-dvisit-stack use stack strat to visit descriptors (tasks or methods)"
49 echo -disjoint-dvisit-stack-callees-on-top alternate stack strat
50 echo -disjoint-dvisit-pqueue use prio. q strat to visit descriptors
51 echo -disjoint-desire-determinism set above interproc for determinism
52 echo -disjoint-debug-scheduling debug when methods are scheduled for analysis
53 echo 
54 echo "-mlp <num cores> <max sese age> build mlp code"
55 echo -mlpdebug if mlp, report progress and interim results
56 echo
57 echo DSM options
58 echo -dsm distributed shared memory
59 echo -abortreaders abort readers immediately
60 echo -trueprob double - probabiltiy of true branch
61 echo -dsmcaching -enable caching in dsm runtime
62 echo
63 echo BAMBOO Multicore options
64 echo -scheduling do task scheduling
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 -multicore generate multi-core version binary
69 echo "-numcore set the number of cores (should be used together with -multicore), defaultly set as 1"
70 echo "-cacheflush enable cache flush in raw version binary (should be used togethere with -raw)"
71 echo "-interrupt generate raw version binary with interruption (should be used togethere with -raw)"
72 echo "-rawpath print out execute path information for raw version (should be used together with -raw)"
73 echo "-useprofile use profiling data for scheduling (should be used together with -raw)"
74 echo -printscheduling print out scheduling graphs
75 echo -printschedulesim print out scheduling simulator result graphs
76 echo "-tilera_bme generate tilera version binary for Bare Mental Environment (should be used together with -multicore"
77 echo "-tilera_zlinux generate tilera version binary for Zero-Overhead Linux with multi-process mode (should be used together with -multicore"
78 echo "-tileraconfig config tilera simulator/pci as nxm (should be used together with -tilera)"
79 echo "-raw generate raw version binary (should be used together with -multicore)"
80 echo "-rawconfig config raw simulator as 4xn (should be used together with -raw)"
81 echo "-tilera_memprof build the memprof version (should be used together with -tilera_xx) "
82 echo -accurateprofile build with accurate profile information including pre/post task processing info
83 echo -profile_interrupt build with profile information of interrupts
84 echo "-useio use standard io to output profiling data (should be used together with -raw and -profile), it only works with single core version"
85 echo
86 echo Multicore GC options
87 echo -multicoregc generate multi-core binary with garbage collection
88 echo "-numcore4gc set the number of cores for gc (should be used together with -multicoregc), defaultly set as 0"
89 echo "-gcmem_local set the gc shared memory allocation strategy as local (should be used together with -multicoregc)"
90 echo "-gcmem_fixed set the gc shared memory allocation strategy as fixed (should be used together with -multicoregc)"
91 echo "-gcmem_mixed set the gc shared memory allocation strategy as mixed (should be used together with -multicoregc)"
92 echo "-gcmem_global set the gc shared memory allocation strategy as global (should be used together with -multicoregc)"
93 echo "-gccache_local set the gc shared memory cache strategy as local (should be used together with -multicoregc)"
94 echo "-gccache_ran set the gc shared memory cache strategy as random (should be used together with -multicoregc)"
95 echo "-gccontroller_near set the gc shared memory to use the nearest controller for each core (should be used together with -multicoregc)"
96 echo "-gccontroller_remote set the gc shared memory to use a remote controller for each core (should be used together with -multicoregc)"
97 echo "-gcsmallpagesize(2) set the gc shared memory to use small page size (should be used together with -multicoregc)"
98 echo "-gclargepagesize set the gc shared memory to use large page size (should be used together with -multicoregc)"
99 echo "-gclargesharedheap(2) set the gc shared memory as large (should be used together with -multicoregc)"
100 echo "-gccacheadapt setup as cacheadaptable mode (should be used together with -multicoregc)"
101 echo -gcprofile build with gcprofile options
102 echo -mgc generate Multicore GC binary without task stuff
103 echo -objectlockdebug generate OBJECT_LOCK_DEBUG code
104 echo -gctbldebug generate GC_TBL_DEBUG code
105 echo
106 echo SSJava options
107 echo -ssjava enables SSJava
108 echo
109 echo Other options
110 echo -jni enable jni
111 echo -abcclose turnoff array boundary checks
112 echo -builddir setup different build directory
113 echo -robustroot set up the ROBUSTROOT to directory other than default one
114 echo -readset turn on readset
115 echo -mac distributed shared memory mac support
116 echo -check generate check code
117 echo -dmalloc link in dmalloc
118 echo -64bit compile for 64 bit machine
119 echo -32bit compile for 32 bit machine
120 echo -joptimize java compiler optimizations
121 echo -noloop turnoff loop optimizations
122 echo -recover compile task code
123 echo -fastcheck fast checkpointing for Bristlecone
124 echo -specdir directory
125 echo -printflat print out flat representation
126 echo -selfloop task - this task cannot self loop forever
127 echo "-excprefetch methoddescriptor - exclude prefetches for this method (specified as class.method)"
128 echo -taskstate do task state analysis
129 echo -tagstate do tag state analysis
130 echo -optional enable optional
131 echo -debug generate debug symbols
132 echo -prefetch do prefetch analysis
133 echo -heapsize-mb NUM  set initial heap size in MB, default is 256
134 echo -garbagestats Print garbage collection statistics
135 echo -webinterface enable web interface
136 echo -runtimedebug printout runtime debug messages
137 echo "-thread use support for multiple threads"
138 echo "-optimize call gcc with -O9 (optimize)"
139 echo "-nooptimize call gcc with -O0 (do not optimize)"
140 echo -curdir directory 
141 echo -mainclass class with main method
142 echo -o binary
143 echo -nojava do not run bristlecone compiler
144 echo -instructionfailures inject code for instructionfailures
145 echo -profile build with profile options
146 echo "-enable-assertions execute assert statements during compilation"
147 echo -justanalyze exit after compiler analyses complete
148 echo -assembly generate assembly
149 echo -recovery compile recovery code
150 echo -dsmtask support work and task class library
151 echo -recoverystats print out recovery record 
152 echo -src-after-pp prints source code after preprocessor to tmp.c
153 echo -printlinenum print out line numbers in generated C codes
154 echo -help help
155 }
156
157 tmpbuilddirectory="tmpbuilddirectory"
158 JNI=false
159 SRCAFTERPP=false;
160 COREPROF=false;
161 NUMA=false;
162 SANDBOX=false;
163 ABORTREADERS=false;
164 ROBUSTROOT=~/research/Robust/src
165 DSMRUNTIME=$ROBUSTROOT/Runtime/DSTM/interface/
166 STMRUNTIME=$ROBUSTROOT/Runtime/STM/
167 DSMRECOVERYRUNTIME=$ROBUSTROOT/Runtime/DSTM/interface_recovery/
168 REPAIRROOT=~/research/Repair/RepairCompiler/
169 CURDIR=`pwd`
170 SQUEUE=false
171 DSMFLAG=false
172 DSMRECOVERY=false
173 FASTMEMCPY=false
174 STMARRAY=false
175 DUALVIEW=false
176 STM=false
177 EVENTMONITOR=false
178 NOJAVA=false
179 CHECKFLAG=false
180 RECOVERFLAG=false
181 MLP_ON=false
182 RCR=false
183 RCR_DEBUG=false
184 RCR_DEBUG_VERBOSE=false
185 MLPDEBUG=false
186 MULTICOREFLAG=false
187 RAWFLAG=false
188 TILERAFLAG=false
189 TILERABMEFLAG=false
190 TILERAZLINUXFLAG=false
191 TILERAMEMPROFFLAG=false
192 TILERACONFIG=''
193 TILERACORES=''
194 CACHEFLUSHFLAG=false
195 RAWCONFIG=''
196 DEBUGFLAG=false
197 RAWPATHFLAG=false
198 PROFILEFLAG=false
199 GCPROFILEFLAG=false
200 GCPROFILESFLAG=false
201 ACCURATEPROFILEFLAG=false
202 PROFILEINTERRUPTFLAG=false
203 USEIOFLAG=false
204 INTERRUPTFLAG=false
205 THREADSIMULATEFLAG=false;
206 MULTICOREGCFLAG=false;
207 GCMEMLOCALFLAG=false;
208 GCMEMFIXEDFLAG=false;
209 GCMEMMIXEDFLAG=false;
210 GCMEMGLOBALFLAG=false;
211 GCCACHELOCALFLAG=false;
212 GCCACHERANFLAG=false;
213 GCCONTROLLERNEARFLAG=false;
214 GCCONTROLLERREMOTEFLAG=false;
215 GCSMALLPAGESIZEFLAG=false;
216 GCLARGEPAGESIZEFLAG=false;
217 GCLARGEPAGESIZE2FLAG=false;
218 GCLARGESHAREDHEAPFLAG=false;
219 GCSMALLPAGESIZEFLAG2=false;
220 GCLARGESHAREDHEAPFLAG2=false;
221 GCCACHEADAPTFLAG=false
222 GCCACHEADAPTPOLICYFLAG=false
223 GCCACHEADAPTPOLICY=''
224 GCCACHESAMPLINGFLAG=false
225 MGCFLAG=false
226 MGCINTELFLAG=false
227 OBJECTLOCKDEBUGFLAG=false
228 GCTBLDEBUGFLAG=false
229 USEDMALLOC=false
230 THREADFLAG=false
231 FASTCHECK=false
232 SPECDIR=`pwd`
233 SRCFILES=''
234 EXTRAOPTIONS=''
235 MAINFILE='a'
236 JAVAFORWARDOPTS=''
237 JAVAOPTS=''
238 OPTIONALFLAG=false
239 EXITAFTERANALYSIS=false
240 ASSEMBLY=false
241 GCCORES=''
242 TILERAN1COREFLAG=false
243 TILERA56COREFLAG=false
244
245 if [[ -z $1 ]]
246 then
247 printhelp
248 exit
249 fi
250
251 while [[ -n $1 ]]
252 do
253 if [[ $1 = '-help' ]]
254 then
255 printhelp
256 exit
257 elif [[ $1 = '-jni' ]]
258 then
259 JNI=true
260 JAVAOPTS="$JAVAOPTS -jni"
261 EXTRAOPTIONS="$EXTRAOPTIONS -DJNI -I$ROBUSTROOT/Runtime/jni"
262 elif [[ $1 = '-justanalyze' ]]
263 then
264 EXITAFTERANALYSIS=true
265 elif [[ $1 = '-src-after-pp' ]]
266 then
267 SRCAFTERPP=true
268 elif [[ $1 = '-assembly' ]]
269 then
270 ASSEMBLY=true
271 elif [[ $1 = '-abortreaders' ]]
272 then
273 ABORTREADERS=true
274 EXTRAOPTIONS="$EXTRAOPTIONS -DABORTREADERS"
275 JAVAOPTS="$JAVAOPTS -abortreaders"
276 elif [[ $1 = '-sandbox' ]]
277 then
278 SANDBOX=true
279 EXTRAOPTIONS="$EXTRAOPTIONS -DSANDBOX"
280 JAVAOPTS="$JAVAOPTS -sandbox"
281 elif [[ $1 = '-numa' ]]
282 then
283 EXTRAOPTIONS="$EXTRAOPTIONS -DAFFINITY -D_GNU_SOURCE"
284 NUMA=true
285 elif [[ $1 = '-robustroot' ]]
286 then
287 ROBUSTROOT="$2"
288 shift
289 elif [[ $1 = '-builddir' ]]
290 then
291 tmpbuilddirectory="$2"
292 shift
293 elif [[ $1 = '-nojava' ]]
294 then
295 NOJAVA=true
296 elif [[ $1 = '-eventmonitor' ]]
297 then
298 JAVAOPTS="$JAVAOPTS -eventmonitor"
299 EVENTMONITOR=true
300 EXTRAOPTIONS="$EXTRAOPTIONS -DEVENTMONITOR"
301 elif [[ $1 = '-garbagestats' ]]
302 then
303 EXTRAOPTIONS="$EXTRAOPTIONS -DGARBAGESTATS"
304 elif [[ $1 = '-64bit' ]]
305 then
306 EXTRAOPTIONS="$EXTRAOPTIONS -DBIT64 -m64"
307 elif [[ $1 = '-32bit' ]]
308 then
309 EXTRAOPTIONS="$EXTRAOPTIONS -m32"
310 elif [[ $1 = '-fastcheck' ]]
311 then
312 EXTRAOPTIONS="$EXTRAOPTIONS -DFASTCHECK"
313 JAVAOPTS="$JAVAOPTS -fastcheck"
314 FASTCHECK=true
315 elif [[ $1 = '-o' ]]
316 then
317 MAINFILE="$2"
318 shift
319 elif [[ $1 = '-mainclass' ]]
320 then
321 JAVAOPTS="$JAVAOPTS -mainclass $2"
322 shift
323 elif [[ $1 = '-selfloop' ]]
324 then
325 JAVAOPTS="$JAVAOPTS -selfloop $2"
326 shift
327 elif [[ $1 = '-excprefetch' ]]
328 then
329 JAVAOPTS="$JAVAOPTS -excprefetch $2"
330 shift
331 elif [[ $1 = '-arraypad' ]]
332 then
333 JAVAOPTS="$JAVAOPTS -arraypad"
334 elif [[ $1 = '-dsm' ]]
335 then
336 JAVAOPTS="$JAVAOPTS -dsm"
337 DSMFLAG=true
338 elif [[ $1 = '-fastmemcpy' ]]
339 then
340 FASTMEMCPY=true
341 EXTRAOPTIONS="$EXTRAOPTIONS -DFASTMEMCPY"
342 elif [[ $1 = '-singleTM' ]]
343 then
344 JAVAOPTS="$JAVAOPTS -singleTM"
345 EXTRAOPTIONS="$EXTRAOPTIONS -DSTM"
346 STM=true
347 elif [[ $1 = '-stmarray' ]]
348 then
349 JAVAOPTS="$JAVAOPTS -stmarray"
350 EXTRAOPTIONS="$EXTRAOPTIONS -DSTMARRAY"
351 STMARRAY=true
352 elif [[ $1 = '-dualview' ]]
353 then
354 JAVAOPTS="$JAVAOPTS -dualview"
355 EXTRAOPTIONS="$EXTRAOPTIONS -DDUALVIEW"
356 DUALVIEW=true
357 elif [[ $1 = '-readset' ]]
358 then
359 JAVAOPTS="$JAVAOPTS -readset"
360 EXTRAOPTIONS="$EXTRAOPTIONS -DREADSET"
361 elif [[ $1 = '-stmdebug' ]]
362 then
363 EXTRAOPTIONS="$EXTRAOPTIONS -DSTMDEBUG"
364 elif [[ $1 = '-stmstats' ]]
365 then
366 EXTRAOPTIONS="$EXTRAOPTIONS -DSTMSTATS"
367 elif [[ $1 = '-stmlog' ]]
368 then
369 EXTRAOPTIONS="$EXTRAOPTIONS -DSTMLOG"
370 elif [[ $1 = '-prefetch' ]]
371 then
372 JAVAOPTS="$JAVAOPTS -prefetch"
373 elif [[ $1 = '-transstats' ]]
374 then
375 EXTRAOPTIONS="$EXTRAOPTIONS -DTRANSSTATS"
376 elif [[ $1 = '-printflat' ]]
377 then
378 JAVAOPTS="$JAVAOPTS -printflat"
379 elif [[ $1 = '-trueprob' ]]
380 then
381 JAVAOPTS="$JAVAOPTS -trueprob $2"
382 shift
383 elif [[ $1 = '-inlineatomic' ]]
384 then
385 JAVAOPTS="$JAVAOPTS -inlineatomic $2"
386 shift
387 elif [[ $1 = '-mac' ]]
388 then
389 EXTRAOPTIONS="$EXTRAOPTIONS -DMAC"
390 elif [[ $1 = '-squeue' ]]
391 then
392 EXTRAOPTIONS="$EXTRAOPTIONS -DSQUEUE"
393 elif [[ $1 = '-corepin' ]]
394 then
395 EXTRAOPTIONS="$EXTRAOPTIONS -DCOREPIN"
396 SQUEUE=true
397 elif [[ $1 = '-profile' ]]
398 then
399 PROFILEFLAG=true
400 EXTRAOPTIONS="$EXTRAOPTIONS -pg"
401 elif [[ $1 = '-gcprofile' ]]
402 then
403 GCPROFILEFLAG=true
404 elif [[ $1 = '-gcprofile_s' ]]
405 then
406 GCPROFILESFLAG=true
407 elif [[ $1 = '-accurateprofile' ]]
408 then
409 ACCURATEPROFILEFLAG=true
410 elif [[ $1 = '-profile_interrupt' ]]
411 then
412 PROFILEINTERRUPTFLAG=true
413 elif [[ $1 = '-useio' ]]
414 then
415 USEIOFLAG=true
416 elif [[ $1 = '-taskstate' ]]
417 then
418 JAVAOPTS="$JAVAOPTS -taskstate"
419 elif [[ $1 = '-tagstate' ]]
420 then
421 JAVAOPTS="$JAVAOPTS -tagstate"
422 elif [[ $1 = '-scheduling' ]]
423 then
424 JAVAOPTS="$JAVAOPTS -scheduling"
425 elif [[ $1 = '-multicore' ]]
426 then
427 MULTICOREFLAG=true
428 JAVAOPTS="$JAVAOPTS -multicore"
429 elif [[ $1 = '-numcore' ]]
430 then
431 JAVAOPTS="$JAVAOPTS -numcore $2"
432 TILERACORES="$2"
433 if [[ "$2" -gt "1" ]]
434 then
435 TILERAN1COREFLAG=true
436 if [[ "$2" -eq "56" ]]
437 then
438 TILERA56COREFLAG=true
439 fi
440 fi
441 shift
442 elif [[ $1 = '-numcore4gc' ]]
443 then
444 JAVAOPTS="$JAVAOPTS -numcore4gc $2"
445 GCCORES="GC_$2"
446 shift
447 elif [[ $1 = '-raw' ]]
448 then
449 RAWFLAG=true
450 JAVAOPTS="$JAVAOPTS -raw"
451 elif [[ $1 = '-tilera_bme' ]]
452 then
453 TILERAFLAG=true
454 TILERABMEFLAG=true
455 elif [[ $1 = '-tilera_zlinux' ]]
456 then
457 TILERAFLAG=true
458 TILERAZLINUXFLAG=true
459 elif [[ $1 = '-tilera_memprof' ]]
460 then
461 TILERAMEMPROFFLAG=true
462 elif [[ $1 = '-tileraconfig' ]]
463 then
464 TILERACONFIG="$2"
465 shift
466 elif [[ $1 = '-cacheflush' ]]
467 then
468 CACHEFLUSHFLAG=true
469 elif [[ $1 = '-rawconfig' ]]
470 then
471 RAWCONFIG="$2"
472 shift
473 elif [[ $1 = '-interrupt' ]]
474 then
475 INTERRUPTFLAG=true
476 elif [[ $1 = '-abcclose' ]]
477 then
478 JAVAOPTS="$JAVAOPTS -abcclose"
479 elif [[ $1 = '-optional' ]]
480 then
481 JAVAOPTS="$JAVAOPTS -optional"
482 OPTIONALFLAG=true
483 elif [[ $1 = '-multicoregc' ]]
484 then
485 MULTICOREGCFLAG=true
486 JAVAOPTS="$JAVAOPTS -multicoregc"
487 elif [[ $1 = '-gcmem_local' ]]
488 then
489 GCMEMLOCALFLAG=true
490 elif [[ $1 = '-gcmem_fixed' ]]
491 then
492 GCMEMFIXEDFLAG=true
493 elif [[ $1 = '-gcmem_mixed' ]]
494 then
495 GCMEMMIXEDFLAG=true
496 elif [[ $1 = '-gcmem_global' ]]
497 then
498 GCMEMGLOBALFLAG=true
499 elif [[ $1 = '-gccache_local' ]]
500 then
501 GCCACHELOCALFLAG=true
502 elif [[ $1 = '-gccache_ran' ]]
503 then
504 GCCACHERANFLAG=true
505 elif [[ $1 = '-gccontroller_near' ]]
506 then
507 GCCONTROLLERNEARFLAG=true
508 elif [[ $1 = '-gccontroller_remote' ]]
509 then
510 GCCONTROLLERREMOTEFLAG=true
511 elif [[ $1 = '-gcsmallpagesize' ]]
512 then
513 GCSMALLPAGESIZEFLAG=true
514 elif [[ $1 = '-gcsmallpagesize2' ]]
515 then
516 GCSMALLPAGESIZEFLAG2=true
517 elif [[ $1 = '-gclargepagesize' ]]
518 then
519 GCLARGEPAGESIZEFLAG=true
520 elif [[ $1 = '-gclargepagesize2' ]]
521 then
522 GCLARGEPAGESIZE2FLAG=true
523 elif [[ $1 = '-gclargesharedheap' ]]
524 then
525 GCLARGESHAREDHEAPFLAG=true
526 elif [[ $1 = '-gclargesharedheap2' ]]
527 then
528 GCLARGESHAREDHEAPFLAG2=true
529 elif [[ $1 = '-gccacheadapt' ]]
530 then
531 GCCACHEADAPTFLAG=true
532 elif [[ $1 = '-gccacheadaptpolicy' ]]
533 then
534 GCCACHEADAPTPOLICYFLAG=true
535 GCCACHEADAPTPOLICY="$2"
536 shift
537 elif [[ $1 = '-gccachesampling' ]]
538 then
539 GCCACHESAMPLINGFLAG=true
540 elif [[ $1 = '-mgc' ]]
541 then
542 MGCFLAG=true
543 JAVAOPTS="$JAVAOPTS -mgc"
544 elif [[ $1 = '-mgcintel' ]]
545 then
546 MGCINTELFLAG=true
547 elif [[ $1 = '-objectlockdebug' ]]
548 then
549 OBJECTLOCKDEBUGFLAG=true
550 JAVAOPTS="$JAVAOPTS -objectlockdebug"
551 elif [[ $1 = '-gctbldebug' ]]
552 then
553 GCTBLDEBUGFLAG=true
554 elif [[ $1 = '-dmalloc' ]]
555 then
556 USEDMALLOC=true
557 elif [[ $1 = '-recover' ]]
558 then
559 RECOVERFLAG=true
560 JAVAOPTS="$JAVAOPTS -task"
561 elif [[ $1 = '-useprofile' ]]
562 then
563 JAVAOPTS="$JAVAOPTS -useprofile $2"
564 shift
565 elif [[ $1 = '-webinterface' ]]
566 then
567 JAVAOPTS="$JAVAOPTS -webinterface"
568 elif [[ $1 = '-instructionfailures' ]]
569 then
570 JAVAOPTS="$JAVAOPTS -instructionfailures"
571 elif [[ $1 = '-joptimize' ]]
572 then
573 JAVAOPTS="$JAVAOPTS -optimize"
574 elif [[ $1 = '-noloop' ]]
575 then
576 JAVAOPTS="$JAVAOPTS -noloop"
577 elif [[ $1 = '-dcopts' ]]
578 then
579 JAVAOPTS="$JAVAOPTS -dcopts"
580 elif [[ $1 = '-delaycomp' ]]
581 then
582 JAVAOPTS="$JAVAOPTS -delaycomp"
583 EXTRAOPTIONS="$EXTRAOPTIONS -DDELAYCOMP"
584 elif [[ $1 = '-hybrid' ]]
585 then
586 JAVAOPTS="$JAVAOPTS -hybrid"
587 EXTRAOPTIONS="$EXTRAOPTIONS -DHYBRID"
588 elif [[ $1 = '-minimize' ]]
589 then
590 JAVAOPTS="$JAVAOPTS -minimize"
591
592 elif [[ $1 = '-ooojava' ]]
593 then
594 MLP_ON=true
595 JAVAOPTS="$JAVAOPTS -ooojava $2 $3"
596 EXTRAOPTIONS="$EXTRAOPTIONS -DPRECISE_GC -lpthread -DMLP"
597 shift
598 shift
599
600 elif [[ $1 = '-ooodebug-disable-task-mem-pool' ]]
601 then
602 EXTRAOPTIONS="$EXTRAOPTIONS -DOOO_DISABLE_TASKMEMPOOL"
603
604 elif [[ $1 = '-mempool-detect-misuse' ]]
605 then
606 EXTRAOPTIONS="$EXTRAOPTIONS -DMEMPOOL_DETECT_MISUSE"
607
608 elif [[ $1 = '-heapsize-mb' ]]
609 then
610 EXTRAOPTIONS="$EXTRAOPTIONS -DINITIALHEAPSIZE_MB=($2)"
611 shift
612
613 elif [[ $1 = '-nostalltr' ]]
614 then
615 JAVAOPTS="$JAVAOPTS -nostalltr"
616
617 elif [[ $1 = '-printlinenum' ]]
618 then
619 JAVAOPTS="$JAVAOPTS -printlinenum"
620
621 elif [[ $1 = '-rcr' ]]
622 then
623 JAVAOPTS="$JAVAOPTS -rcr"
624 RCR=true
625 EXTRAOPTIONS="$EXTRAOPTIONS -DRCR -I$ROBUSTROOT/Runtime/oooJava"
626
627 elif [[ $1 = '-rcr_debug' ]]
628 then
629 JAVAOPTS="$JAVAOPTS -rcr_debug"
630 RCR_DEBUG=true
631
632 elif [[ $1 = '-rcr_debug_verbose' ]]
633 then
634 JAVAOPTS="$JAVAOPTS -rcr_debug_verbose"
635 RCR_DEBUG_VERBOSE=true
636
637 elif [[ $1 = '-debug-deque' ]]
638 then
639 EXTRAOPTIONS="$EXTRAOPTIONS -DDEBUG_DEQUE"
640
641 elif [[ $1 = '-nolock' ]]
642 then
643 EXTRAOPTIONS="$EXTRAOPTIONS -DNOLOCK"
644
645 elif [[ $1 = '-coreprof' ]]
646 then
647 COREPROF=true
648 JAVAOPTS="$JAVAOPTS -coreprof"
649 EXTRAOPTIONS="$EXTRAOPTIONS -DCOREPROF -I$ROBUSTROOT/Runtime/coreprof"
650
651 elif [[ $1 = '-coreprof-eventwords' ]]
652 then
653 EXTRAOPTIONS="$EXTRAOPTIONS -DCP_MAXEVENTWORDS=($2)"
654 shift
655
656 elif [[ $1 = '-coreprof-checkoverflow' ]]
657 then
658 EXTRAOPTIONS="$EXTRAOPTIONS -DCOREPROF_CHECKOVERFLOW"
659
660 elif [[ $1 = '-coreprof-enable' ]]
661 then
662 EXTRAOPTIONS="$EXTRAOPTIONS -D$2"
663 shift
664
665 elif [[ $1 = '-mlp' ]]
666 then
667 MLP_ON=true
668 EXTRAOPTIONS="$EXTRAOPTIONS -DPRECISE_GC -lpthread -DMLP"
669 JAVAOPTS="$JAVAOPTS -mlp $2 $3"
670 shift
671 shift
672
673 elif [[ $1 = '-mlpdebug' ]]
674 then
675 JAVAOPTS="$JAVAOPTS -mlpdebug"
676
677 elif [[ $1 = '-check' ]]
678 then
679 CHECKFLAG=true
680 JAVAOPTS="$JAVAOPTS -conscheck"
681 elif [[ $1 = '-enable-assertions' ]]
682 then
683 JAVAFORWARDOPTS="$JAVAFORWARDOPTS -ea"
684 elif [[ $1 = '-specdir' ]]
685 then
686 cd $2
687 SPECDIR=`pwd`
688 cd $CURDIR
689 shift
690 elif [[ $1 = '-debug' ]]
691 then
692 DEBUGFLAG=true
693 EXTRAOPTIONS="$EXTRAOPTIONS -g -rdynamic"
694 elif [[ $1 = '-rawpath' ]]
695 then
696 RAWPATHFLAG=true
697 elif [[ $1 = '-runtimedebug' ]]
698 then
699 EXTRAOPTIONS="$EXTRAOPTIONS -DDEBUG"
700 elif [[ $1 = '-dsmcaching' ]]
701 then
702 EXTRAOPTIONS="$EXTRAOPTIONS -DCACHE"
703 elif [[ $1 = '-rangeprefetch' ]]
704 then
705 EXTRAOPTIONS="$EXTRAOPTIONS -DRANGEPREFETCH"
706 elif [[ $1 = '-nooptimize' ]]
707 then
708 EXTRAOPTIONS="$EXTRAOPTIONS -O0"
709 elif [[ $1 = '-optimize' ]]
710 then
711 EXTRAOPTIONS="$EXTRAOPTIONS -O3"
712 elif [[ $1 = '-thread' ]]
713 then
714 JAVAOPTS="$JAVAOPTS -thread"
715 EXTRAOPTIONS="$EXTRAOPTIONS -DTHREADS -lpthread"
716 THREADFLAG=true
717 elif [[ $1 = '-recovery' ]]
718 then
719 EXTRAOPTIONS="$EXTRAOPTIONS -DRECOVERY"
720 DSMRECOVERY=true
721 elif [[ $1 = '-recoverystats' ]]
722 then
723 JAVAOPTS="$JAVAOPTS -recoverystats"
724 EXTRAOPTIONS="$EXTRAOPTIONS -DRECOVERYSTATS"
725 elif [[ $1 = '-distributioninfo' ]]
726 then
727 JAVAOPTS="$JAVAOPTS -distributioninfo"
728 elif [[ $1 = '-disall' ]]
729 then
730 JAVAOPTS="$JAVAOPTS -disall"
731 elif [[ $1 = '-disstart' ]]
732 then
733 JAVAOPTS="$JAVAOPTS -disstart $2"
734 shift
735 elif [[ $1 = '-noc' ]]
736 then
737 CCOMPILEFLAG=false
738 elif [[ $1 = '-curdir' ]]
739 then
740 CURDIR=$2
741 shift
742 elif [[ $1 = '-outputdir' ]]
743 then
744 JAVAOPTS="$JAVAOPTS -outputdir $2"
745 shift
746 else
747 SRCFILES="$SRCFILES $1"
748 fi
749 shift
750 done
751
752 BUILDDIR="$CURDIR/$tmpbuilddirectory"
753
754 BAMBOORUNTIME=$ROBUSTROOT/Runtime/bamboo
755
756 cd $1
757 cd $CURDIR
758 shift
759
760 mkdir $BUILDDIR
761
762 if $CHECKFLAG #Generate structure files for repair tool
763 then
764 JAVAOPTS="$JAVAOPTS -struct structfile"
765 fi
766
767 # Setup class path
768 if $JNI
769 then
770 JAVAOPTS="$JAVAOPTS -classlibrary $ROBUSTROOT/classpath/java/lang/ -classlibrary $ROBUSTROOT/classpath/java/io/ -classlibrary $ROBUSTROOT/classpath/java/lang/reflect/ -classlibrary $ROBUSTROOT/classpath/java/text/ -classlibrary $ROBUSTROOT/classpath/java/security/ -classlibrary $ROBUSTROOT/classpath/java/net/"
771 elif $MGCINTELFLAG
772 then
773 JAVAOPTS="$JAVAOPTS -classlibrary $ROBUSTROOT/ClassLibrary/MGC/ -classlibrary $ROBUSTROOT/ClassLibrary/MGC/gnu/"
774 elif $MGCFLAG
775 then
776 #base multicore gc files
777 JAVAOPTS="$JAVAOPTS -classlibrary $ROBUSTROOT/ClassLibrary/MGC/ -classlibrary $ROBUSTROOT/ClassLibrary/MGC/gnu/"
778 else
779 if $RECOVERFLAG
780 then
781 if $FASTCHECK
782 then
783 #fast transactions
784 JAVAOPTS="$JAVAOPTS -classlibrary $ROBUSTROOT/ClassLibrary/FastCheck"
785 else
786 #base bristlecone files
787 JAVAOPTS="$JAVAOPTS -classlibrary $ROBUSTROOT/ClassLibrary/Bristlecone"
788 fi
789 elif $DSMFLAG
790 then
791 #dsm stuff
792 JAVAOPTS="$JAVAOPTS -classlibrary $ROBUSTROOT/ClassLibrary/JavaDSM"
793 elif $STM
794 then
795 JAVAOPTS="$JAVAOPTS -classlibrary $ROBUSTROOT/ClassLibrary/JavaSTM"
796 elif $THREADFLAG
797 then
798 #threading java stuff
799 JAVAOPTS="$JAVAOPTS -classlibrary $ROBUSTROOT/ClassLibrary/JavaThread"
800 fi
801 #base java stuff
802 JAVAOPTS="$JAVAOPTS -classlibrary $ROBUSTROOT/ClassLibrary/Java"
803 fi
804
805 # Build bristlecone/java sources
806
807 if $MULTICOREFLAG
808 then
809 if ! ${ROBUSTROOT}/ourjava -Xms50m -Xmx1500m $JAVAFORWARDOPTS -classpath $ROBUSTROOT/../cup/:$ROBUSTROOT Main.Main \
810 -dir $BUILDDIR $JAVAOPTS -classlibrary $ROBUSTROOT/ClassLibrary/ \
811 -classlibrary $ROBUSTROOT/ClassLibrary/gnu/ $SRCFILES
812 then exit $?
813 fi
814 else
815 #if ! ${ROBUSTROOT}/ourjava -Xms5m -Xmx100m $JAVAFORWARDOPTS -classpath $ROBUSTROOT/../cup/:$ROBUSTROOT Main.Main -classlibrary \
816 if $MGCINTELFLAG
817 then
818 if ! ${ROBUSTROOT}/ourjava -Xms50m -Xmx1500m $JAVAFORWARDOPTS -classpath $ROBUSTROOT/../cup/:$ROBUSTROOT Main.Main $JAVAOPTS -classlibrary \
819 $ROBUSTROOT/ClassLibrary/ -classlibrary $ROBUSTROOT/ClassLibrary/gnu/ -dir $BUILDDIR -precise \
820 $SRCFILES
821 then exit $?
822 fi
823 else
824 if ! $NOJAVA
825 then
826 if ! ${ROBUSTROOT}/ourjava -Xms50m -Xmx1500m $JAVAFORWARDOPTS -classpath $ROBUSTROOT/../cup/:$ROBUSTROOT Main.Main -classlibrary \
827 $ROBUSTROOT/ClassLibrary/ -classlibrary $ROBUSTROOT/ClassLibrary/gnu/ -dir $BUILDDIR -precise \
828 $JAVAOPTS $SRCFILES
829 then exit $?
830 fi
831 fi
832 fi
833 fi
834
835 if $EXITAFTERANALYSIS
836 then
837 exit
838 fi
839
840 # Build all of the consistency specs
841
842 if $CHECKFLAG # CHECKFLAG
843 then
844 cd $SPECDIR
845 mkdir $BUILDDIR/specdir
846 cp $REPAIRROOT/MCC/CRuntime/* $BUILDDIR/specdir
847
848 echo > $BUILDDIR/specs
849
850 # compile specs into C code
851 for i in * # iterate over all directories
852 do
853 if [[ "$i" != "CVS" ]] # CVSDIR CHECK
854 then
855 cd $SPECDIR/$i
856 cat $BUILDDIR/structfile.struct $i.label > $i.struct
857 java -cp $REPAIRROOT/:. MCC.Compiler -name $i -checkonly $i
858 cp size.[c,h] $BUILDDIR/specdir
859 cp $i.c $i\_aux.[c,h] $BUILDDIR/specdir
860 echo $i >> $BUILDDIR/specs
861 fi # CVSDIR CHECK
862 done # iterate over all directories
863
864 #compile C code
865
866 cd $BUILDDIR/specdir
867 ./buildrobust
868 echo > $BUILDDIR/checkers.h
869 for i in `cat $BUILDDIR/specs`
870 do
871 gcc -O0 -g -fbounds-check -c $i\_aux.c
872 echo \#include \"specdir\/$i\_aux.h\" >> $BUILDDIR/checkers.h
873 done
874 fi # CHECKFLAG
875
876 #build and link everything
877
878 if $RAWFLAG
879 then # RAWFLAG
880 RAWDIR="$CURDIR/raw"
881 MAKEFILE="Makefile.raw"
882 mkdir $RAWDIR
883 cd $RAWDIR
884 make clean
885 rm ./*
886
887 export RAWRGCCFLAGS="-DTASK -DMULTICORE -DRAW"
888
889 if $CACHEFLUSHFLAG
890 then # print path
891 RAWRGCCFLAGS="${RAWRGCCFLAGS} -DCACHEFLUSH"
892 fi
893
894 if $RAWPATHFLAG
895 then # print path
896 RAWRGCCFLAGS="${RAWRGCCFLAGS} -DRAWPATH"
897 fi
898
899 if $DEBUGFLAG
900 then #debug version
901 RAWRGCCFLAGS="${RAWRGCCFLAGS} -DDEBUG"
902 fi
903
904 if $PROFILEFLAG
905 then # profile version
906 RAWRGCCFLAGS="${RAWRGCCFLAGS} -DPROFILE"
907 fi
908
909 if $ACCURATEPROFILEFLAG
910 then # accurateprofile version
911 RAWRGCCFLAGS="${RAWRGCCFLAGS} -DACCURATEPROFILE"
912 fi
913
914 if $USEIOFLAG
915 then # useio version
916 RAWRGCCFLAGS="${RAWRGCCFLAGS} -DUSEIO"
917 fi
918
919 if $INTERRUPTFLAG
920 then #INTERRUPT version
921 RAWRGCCFLAGS="${RAWRGCCFLAGS} -DINTERRUPT"
922 fi #INTERRUPT version
923
924 if $USEIOFLAG
925 then # useio version
926 MAKEFILE="$MAKEFILE.io"
927 echo "+++++++++++use Makefile.raw.io++++++++++++++++"
928 else
929 MAKEFILE="$MAKEFILE.$RAWCONFIG"
930 fi #useio version
931
932 cp $BAMBOORUNTIME/RAW/$MAKEFILE ./Makefile
933 cp ../Runtime/*.c ./
934 cp ../Runtime/*.h ./
935 cp ../Runtime/*.S ./
936 cp ../Runtime/*.s ./
937 cp $BAMBOORUNTIME/*.c ./
938 cp $BAMBOORUNTIME/*.h ./
939 cp $BAMBOORUNTIME/RAW/*.c ./
940 cp $BAMBOORUNTIME/RAW/*.h ./
941 cp $BAMBOORUNTIME/RAW/*.S ./
942 cp $BAMBOORUNTIME/RAW/*.s ./
943 cp ../$tmpbuilddirectory/*.c ./
944 cp ../$tmpbuilddirectory/*.h ./
945
946 make
947
948 elif $TILERAFLAG
949 then # TILERAFLAG
950 TILERADIR="$CURDIR/tilera"
951 if $TILERABMEFLAG
952 then # TILERABMEFLAG
953 TILERA_INDIR="BME"
954 MAKEFILE="Makefile.tilera.$TILERACORES"
955 #SIMHVC="sim.hvc.$TILERACONFIG"
956 PCIHVC="pci.hvc.$TILERACORES"
957 if $TILERA56COREFLAG
958 then
959   PCIHVC="$PCIHVC.56"
960 fi
961 elif $TILERAZLINUXFLAG
962 then # TILERAZLINUXFLAG
963 TILERA_INDIR="ZLinux"
964 MAKEFILE="Makefile.tilera.$TILERACONFIG"
965 fi
966
967 mkdir $TILERADIR
968 cd $TILERADIR
969 make clean
970 rm ./*
971
972 if $MGCFLAG
973 then
974 export TILERACFLAGS="-DMULTICORE -DCLOSE_PRINT -DTILERA"
975 else
976 export TILERACFLAGS="-DTASK -DMULTICORE -DCLOSE_PRINT -DTILERA"
977 fi
978
979 if $GCTBLDEBUGFLAG
980 then
981 TILERACFLAGS="${TILERACFLAGS} -DGC_TBL_DEBUG"
982 fi
983
984 if $OBJECTLOCKDEBUGFLAG
985 then
986 TILERACFLAGS="${TILERACFLAGS} -DOBJECT_LOCK_DEBUG"
987 fi
988
989 if $TILERAMEMPROFFLAG
990 then # not only with 1 core
991   PCIHVC="$PCIHVC.memprof"
992   TILERACFLAGS="${TILERACFLAGS} -DBAMBOO_MEMPROF"
993 fi
994
995 if $TILERABMEFLAG
996 then # TILERABMEFLAG
997 TILERACFLAGS="${TILERACFLAGS} -DTILERA_BME"
998 elif $TILERAZLINUXFLAG
999 then # TILERAZLINUXFLAG
1000 TILERACFLAGS="${TILERACFLAGS} -DTILERA_ZLINUX"
1001 fi
1002
1003 if $CACHEFLUSHFLAG
1004 then # print path
1005 TILERACFLAGS="${TILERACFLAGS} -DCACHEFLUSH"
1006 fi
1007
1008 if $RAWPATHFLAG
1009 then # print path
1010 TILERACFLAGS="${TILERACFLAGS} -DRAWPATH"
1011 fi
1012
1013 if $DEBUGFLAG
1014 then #debug version
1015 TILERACFLAGS="${TILERACFLAGS} -DDEBUG"
1016 fi
1017
1018 if $PROFILEFLAG
1019 then # profile version
1020 TILERACFLAGS="${TILERACFLAGS} -DPROFILE"
1021 fi
1022
1023 if $ACCURATEPROFILEFLAG
1024 then # accurateprofile version
1025 TILERACFLAGS="${TILERACFLAGS} -DACCURATEPROFILE"
1026 fi
1027
1028 if $PROFILEINTERRUPTFLAG
1029 then # profile_interrupt version
1030 TILERACFLAGS="${TILERACFLAGS} -DPROFILE_INTERRUPT"
1031 fi
1032
1033 if $USEIOFLAG
1034 then # useio version
1035 TILERACFLAGS="${TILERACFLAGS} -DUSEIO"
1036 fi
1037
1038 if $INTERRUPTFLAG
1039 then #INTERRUPT version
1040 TILERACFLAGS="${TILERACFLAGS} -DINTERRUPT"
1041 fi #INTERRUPT version
1042
1043 if $MGCFLAG
1044 then #MGCFLAG
1045 TILERACFLAGS="${TILERACFLAGS} -DMGC -DMGC_SPEC"
1046 fi
1047
1048 if $MULTICOREGCFLAG
1049 then #MULTICOREGC version
1050 TILERACFLAGS="${TILERACFLAGS} -DMULTICORE_GC -D${GCCORES}"
1051 fi
1052
1053 if $GCPROFILEFLAG
1054 then # GC_PROFILE version
1055 TILERACFLAGS="${TILERACFLAGS} -DGC_PROFILE"
1056 fi
1057
1058 if $GCPROFILESFLAG
1059 then # GC_PROFILE_S version
1060 TILERACFLAGS="${TILERACFLAGS} -DGC_PROFILE_S"
1061 fi
1062
1063 if $GCMEMLOCALFLAG
1064 then # SMEMLOCAL version
1065 TILERACFLAGS="${TILERACFLAGS} -DSMEML"
1066 fi
1067
1068 if $GCMEMFIXEDFLAG
1069 then # SMEMFIXED version
1070 TILERACFLAGS="${TILERACFLAGS} -DSMEMF"
1071 fi
1072
1073 if $GCMEMMIXEDFLAG
1074 then # SMEMMIXED version
1075 TILERACFLAGS="${TILERACFLAGS} -DSMEMM"
1076 fi
1077
1078 if $GCMEMGLOBALFLAG
1079 then # SMEMGLOBAL version
1080 TILERACFLAGS="${TILERACFLAGS} -DSMEMG"
1081 fi
1082
1083 if $GCCACHELOCALFLAG
1084 then # CACHE_LOCAL version
1085 TILERACFLAGS="${TILERACFLAGS} -DCACHE_LOCAL"
1086 fi
1087
1088 if $GCCACHERANFLAG
1089 then # CACHE_RAN version
1090 TILERACFLAGS="${TILERACFLAGS} -DCACHE_RAN"
1091 fi
1092
1093 if $GCCONTROLLERNEARFLAG
1094 then # CONTROLLER_NEAR version
1095 TILERACFLAGS="${TILERACFLAGS} -DCONTROLLER_NEAR"
1096 fi
1097
1098 if $GCCONTROLLERREMOTEFLAG
1099 then # CONTROLLER_REMOTE version
1100 TILERACFLAGS="${TILERACFLAGS} -DCONTROLLER_REMOTE"
1101 fi
1102
1103 if $GCSMALLPAGESIZEFLAG
1104 then # GC_SMALLPAGESIZE version
1105 TILERACFLAGS="${TILERACFLAGS} -DGC_SMALLPAGESIZE"
1106 fi
1107
1108 if $GCLARGEPAGESIZEFLAG
1109 then # GC_LARGEPAGESIZE version
1110 TILERACFLAGS="${TILERACFLAGS} -DGC_LARGEPAGESIZE"
1111 fi
1112
1113 if $GCLARGEPAGESIZE2FLAG
1114 then # GC_LARGEPAGESIZE2 version
1115 TILERACFLAGS="${TILERACFLAGS} -DGC_LARGEPAGESIZE2"
1116 fi
1117
1118 if $GCLARGESHAREDHEAPFLAG
1119 then # GC_LARGESHAREDHEAP version
1120 TILERACFLAGS="${TILERACFLAGS} -DGC_LARGESHAREDHEAP"
1121 fi
1122
1123 if $GCSMALLPAGESIZEFLAG2
1124 then # GC_SMALLPAGESIZE2 version
1125 TILERACFLAGS="${TILERACFLAGS} -DGC_SMALLPAGESIZE2"
1126 fi
1127
1128 if $GCLARGESHAREDHEAPFLAG2
1129 then # GC_LARGESHAREDHEAP2 version
1130 TILERACFLAGS="${TILERACFLAGS} -DGC_LARGESHAREDHEAP2"
1131 fi
1132
1133 if $GCCACHEADAPTFLAG
1134 then # GC_CACHE_ADAPT version
1135 TILERACFLAGS="${TILERACFLAGS} -DGC_CACHE_ADAPT"
1136 fi
1137
1138 if $GCCACHEADAPTPOLICYFLAG
1139 then # GC_CACHE_ADAPT version
1140 TILERACFLAGS="${TILERACFLAGS} -DGC_CACHE_ADAPT_POLICY${GCCACHEADAPTPOLICY}"
1141 fi
1142
1143 if $GCCACHESAMPLINGFLAG
1144 then # GC_CACHE_ADAPT version
1145 TILERACFLAGS="${TILERACFLAGS} -DGC_CACHE_SAMPLING"
1146 fi
1147
1148 if $MGCFLAG
1149 then
1150 cp $ROBUSTROOT/Tilera/Runtime/MGC/$MAKEFILE ./Makefile
1151 else
1152 cp $ROBUSTROOT/Tilera/Runtime/$TILERA_INDIR/$MAKEFILE ./Makefile
1153 fi
1154 if $TILERABMEFLAG
1155 then # TILERABMEFLAG
1156 #cp $ROBUSTROOT/Tilera/Runtime/$TILERA_INDIR/$SIMHVC ./sim.hvc
1157 cp $ROBUSTROOT/Tilera/Runtime/$TILERA_INDIR/$PCIHVC ./pci.hvc
1158 if $TILERA56COREFLAG
1159 then
1160 cp $ROBUSTROOT/Tilera/Runtime/$TILERA_INDIR/bamboo-vmlinux-pci.hvc.56 ./bamboo-vmlinux-pci.hvc.56
1161 else
1162 cp $ROBUSTROOT/Tilera/Runtime/$TILERA_INDIR/bamboo-vmlinux-pci.hvc ./bamboo-vmlinux-pci.hvc
1163 fi
1164 fi
1165 cp ../Runtime/Queue.c ./
1166 cp ../Runtime/file.c ./
1167 cp ../Runtime/math.c ./
1168 if [ !$MGCFLAG ]
1169 then
1170 cp ../Runtime/object.c ./
1171 fi
1172 cp ../Runtime/GenericHashtable.c ./
1173 cp ../Runtime/SimpleHash.c ./
1174 cp ../Runtime/ObjectHash.c ./
1175 cp ../Runtime/socket.c ./
1176 cp ../Runtime/mem.c ./
1177 cp ../Runtime/GenericHashtable.h ./
1178 cp ../Runtime/mem.h ./
1179 if [ !$MGCFLAG ]
1180 then
1181 cp ../Runtime/object.h ./
1182 fi
1183 cp ../Runtime/ObjectHash.h ./
1184 cp ../Runtime/Queue.h ./
1185 cp ../Runtime/runtime.h ./
1186 cp ../Runtime/SimpleHash.h ./
1187 cp $BAMBOORUNTIME/multicoretask.c ./
1188 cp $BAMBOORUNTIME/multicoreruntime.c ./
1189 cp $BAMBOORUNTIME/multicoremem.c ./
1190 cp $BAMBOORUNTIME/multicoregarbage.c ./
1191 cp $BAMBOORUNTIME/GCSharedHash.c ./
1192 cp $BAMBOORUNTIME/MGCHash.c ./
1193 cp $BAMBOORUNTIME/multicoreruntime.h ./
1194 cp $BAMBOORUNTIME/multicoremem.h ./
1195 cp $BAMBOORUNTIME/multicoregarbage.h ./
1196 cp $BAMBOORUNTIME/multicorecache.h ./
1197 cp $BAMBOORUNTIME/multicoregc.h ./
1198 cp $BAMBOORUNTIME/multicorehelper.h ./
1199 cp $BAMBOORUNTIME/GCSharedHash.h ./
1200 cp $BAMBOORUNTIME/MGCHash.h ./
1201 cp ../Tilera/Runtime/*.c ./
1202 cp ../Tilera/Runtime/*.h ./
1203 cp ../Tilera/Runtime/$TILERA_INDIR/*.c ./
1204 cp ../Tilera/Runtime/$TILERA_INDIR/*.h ./
1205 if $TILERAZLINUXFLAG
1206 then # TILERAZLINUXFLAG
1207 cp ../Tilera/Runtime/$TILERA_INDIR/*.S ./
1208 fi
1209 #if $TILERAMEMPROFFLAG
1210 #then # TILERAMEMPROFFLAG
1211 cp ../Tilera/Runtime/$TILERA_INDIR/linux_client.c ./
1212 #fi
1213 if $MGCFLAG
1214 then
1215 cp ../Tilera/Runtime/MGC/*.c ./
1216 cp ../Tilera/Runtime/MGC/*.h ./
1217 fi
1218 cp ../Tilera/lib/* ./
1219 cp ../$tmpbuilddirectory/*.c ./
1220 cp ../$tmpbuilddirectory/*.h ./
1221
1222 make
1223
1224 else #!RAWFLAG && !TILERABMEFLAG  && ! TILERAZLINUXFLAG
1225 cd $CURDIR 
1226
1227 INCLUDES="$INCLUDES -I$ROBUSTROOT/Runtime -I. -IRuntime/include \
1228 -I$BUILDDIR"
1229
1230 if $MULTICOREFLAG
1231 then
1232 RUNTIMEFILE="$BAMBOORUNTIME/multicoreruntime.c $BAMBOORUNTIME/multicoretask.c"
1233 INCLUDES="$INCLUDES -I$BAMBOORUNTIME"
1234 else
1235 RUNTIMEFILE="$ROBUSTROOT/Runtime/runtime.c $ROBUSTROOT/Runtime/task.c"
1236 fi
1237
1238 FILES="$RUNTIMEFILE \
1239 $ROBUSTROOT/Runtime/file.c $ROBUSTROOT/Runtime/Queue.c \
1240 $ROBUSTROOT/Runtime/SimpleHash.c $ROBUSTROOT/Runtime/option.c \
1241 $ROBUSTROOT/Runtime/ObjectHash.c \
1242 $ROBUSTROOT/Runtime/garbage.c $ROBUSTROOT/Runtime/socket.c \
1243 $ROBUSTROOT/Runtime/taskgarbage.c $ROBUSTROOT/Runtime/oojgarbage.c \
1244 $ROBUSTROOT/Runtime/math.c \
1245 $ROBUSTROOT/Runtime/GenericHashtable.c $ROBUSTROOT/Runtime/object.c"
1246
1247 if $JNI
1248 then
1249 FILES="$FILES $ROBUSTROOT/Runtime/jni/jni.c $ROBUSTROOT/Runtime/jni/jni-stuff.c"
1250 fi
1251
1252 if $NUMA
1253 then
1254 FILES="$FILES $ROBUSTROOT/Runtime/affinity.c"
1255 fi
1256
1257 if $EVENTMONITOR
1258 then
1259 FILES="$FILES $ROBUSTROOT/Runtime/STM/monitor.c"
1260 fi
1261
1262 if $FASTMEMCPY
1263 then
1264 FILES="$FILES $ROBUSTROOT/Runtime/memcpy32.o $ROBUSTROOT/Runtime/instrset32.o"
1265 fi
1266
1267 if $DSMFLAG
1268 then
1269 if $DSMRECOVERY
1270 then
1271 EXTRAOPTIONS="$EXTRAOPTIONS -lpthread -DCOMPILER -DDSTM -I$DSMRECOVERYRUNTIME"
1272 FILES="$FILES $DSMRECOVERYRUNTIME/trans.c $DSMRECOVERYRUNTIME/mcpileq.c $DSMRECOVERYRUNTIME/objstr.c $DSMRECOVERYRUNTIME/dstm.c $DSMRECOVERYRUNTIME/altmlookup.c $DSMRECOVERYRUNTIME/clookup.c $DSMRECOVERYRUNTIME/llookup.c $DSMRECOVERYRUNTIME/tlookup.c $DSMRECOVERYRUNTIME/threadnotify.c $DSMRECOVERYRUNTIME/dstmserver.c $DSMRECOVERYRUNTIME/plookup.c $DSMRECOVERYRUNTIME/ip.c $DSMRECOVERYRUNTIME/queue.c $DSMRECOVERYRUNTIME/altprelookup.c $DSMRECOVERYRUNTIME/machinepile.c $ROBUSTROOT/Runtime/localobjects.c $ROBUSTROOT/Runtime/thread.c $DSMRECOVERYRUNTIME/sockpool.c $DSMRECOVERYRUNTIME/addUdpEnhance.c $DSMRECOVERYRUNTIME/signal.c $DSMRECOVERYRUNTIME/gCollect.c $DSMRECOVERYRUNTIME/addPrefetchEnhance.c $DSMRECOVERYRUNTIME/dsmlock.c $DSMRECOVERYRUNTIME/translist.c $DSMRECOVERYRUNTIME/paxos.c"
1273 else
1274 EXTRAOPTIONS="$EXTRAOPTIONS -lpthread -DCOMPILER -DDSTM -I$DSMRUNTIME"
1275 FILES="$FILES $DSMRUNTIME/trans.c $DSMRUNTIME/mcpileq.c $DSMRUNTIME/objstr.c $DSMRUNTIME/dstm.c $DSMRUNTIME/clookup.c $DSMRUNTIME/llookup.c $DSMRUNTIME/threadnotify.c $DSMRUNTIME/dstmserver.c $DSMRUNTIME/plookup.c $DSMRUNTIME/ip.c $DSMRUNTIME/queue.c $DSMRUNTIME/altprelookup.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 $DSMRUNTIME/altmlookup.c"
1276 fi
1277 fi
1278
1279 if $STM
1280 then
1281 EXTRAOPTIONS="$EXTRAOPTIONS -lpthread -DCOMPILER -I$STMRUNTIME"
1282 FILES="$FILES $STMRUNTIME/stmlock.c $STMRUNTIME/stm.c $STMRUNTIME/stmlookup.c $ROBUSTROOT/Runtime/thread.c $STMRUNTIME/stats.c $STMRUNTIME/commit.c $STMRUNTIME/objstr.c"
1283 fi
1284
1285 if $SANDBOX
1286 then
1287 if $DSMFLAG
1288 then
1289 FILES="$FILES $DSMRUNTIME/sandbox.c"
1290 else
1291 FILES="$FILES $STMRUNTIME/sandbox.c"
1292 fi
1293 fi
1294
1295 if $ABORTREADERS
1296 then
1297 FILES="$FILES $DSMRUNTIME/abortreaders.c"
1298 fi
1299
1300 if $FASTCHECK
1301 then
1302 FILES="$FILES $ROBUSTROOT/Runtime/localobjects.c"
1303 fi
1304
1305 if $COREPROF
1306 then
1307 FILES="$FILES $ROBUSTROOT/Runtime/coreprof/coreprof.c"
1308 fi
1309
1310 if $RCR
1311 then
1312 FILES="$FILES $tmpbuilddirectory/RuntimeConflictResolver.c $ROBUSTROOT/Runtime/oooJava/hashRCR.c $ROBUSTROOT/Runtime/oooJava/Queue_RCR.c $ROBUSTROOT/Runtime/oooJava/hashStructure.c $ROBUSTROOT/Runtime/oooJava/trqueue.c $ROBUSTROOT/Runtime/oooJava/rcr_runtime.c"
1313 fi
1314
1315 if $MLP_ON
1316 then
1317 FILES="$FILES $ROBUSTROOT/Runtime/mlp_runtime.c"
1318 FILES="$FILES $ROBUSTROOT/Runtime/psemaphore.c"
1319 FILES="$FILES $ROBUSTROOT/Runtime/workschedule.c"
1320 if ! $SQUEUE
1321 then
1322 FILES="$FILES $ROBUSTROOT/Runtime/deque.c"
1323 fi
1324 fi
1325
1326 if $RECOVERFLAG
1327 then
1328 EXTRAOPTIONS="$EXTRAOPTIONS -DTASK"
1329 if $MULTICOREFLAG
1330 then
1331 EXTRAOPTIONS="$EXTRAOPTIONS -DMULTICORE"
1332 fi
1333 FILES="$FILES $tmpbuilddirectory/taskdefs.c $ROBUSTROOT/Runtime/checkpoint.c $ROBUSTROOT/Runtime/chash.c"
1334 if $RAWFLAG
1335 then
1336 EXTRAOPTIONS="$EXTRAOPTIONS -DRAW"
1337 fi
1338 if $THREADSIMULATEFLAG
1339 then
1340 # -lpthread for pthread functions, -lrt for message queue functions
1341 EXTRAOPTIONS="$EXTRAOPTIONS -DTHREADSIMULATE -lpthread -lrt"
1342 fi
1343 fi
1344
1345 if $OPTIONALFLAG
1346 then
1347 EXTRAOPTIONS="$EXTRAOPTIONS -DOPTIONAL"
1348 FILES="$FILES $tmpbuilddirectory/optionalarrays.c"
1349 fi
1350
1351 if $THREADFLAG
1352 then
1353 FILES="$FILES $ROBUSTROOT/Runtime/thread.c"
1354 fi
1355
1356 if $CHECKFLAG
1357 then
1358 EXTRAOPTIONS="$EXTRAOPTIONS -DCONSCHECK $BUILDDIR/specdir/*.o"
1359 INCLUDES="$INCLUDES -I$BUILDDIR/specdir"
1360 fi
1361
1362 if $USEDMALLOC
1363 then
1364 EXTRAOPTIONS="$EXTRAOPTIONS -ldmalloc -DDMALLOC"
1365 fi
1366
1367 echo Compiling C...
1368 echo EXTRAOPTIONS=$EXTRAOPTIONS
1369
1370 if $ASSEMBLY
1371 then
1372 gcc -S $INCLUDES $EXTRAOPTIONS -DPRECISE_GC \
1373 -c $tmpbuilddirectory/methods.c -lm
1374 fi
1375
1376 if $MULTICOREFLAG
1377 then
1378 NONMULTICOREOPTS=
1379 else
1380 NONMULTICOREOPTS=-DPRECISE_GC
1381 fi
1382
1383 if $SRCAFTERPP
1384 then
1385 gcc -E $INCLUDES $EXTRAOPTIONS $NONMULTICOREOPTS \
1386 $tmpbuilddirectory/methods.c $FILES > tmp.c
1387 fi
1388
1389 gcc $INCLUDES $EXTRAOPTIONS $NONMULTICOREOPTS \
1390 $tmpbuilddirectory/methods.c $FILES -lm -o $MAINFILE.bin
1391
1392
1393 fi #!RAWFLAG
1394
1395
1396 exit
1397