hack OoOJava RCR to not run disjointness twice...we don't need fine-grained conflicts...
[IRC.git] / Robust / src / IR / Flat / BuildCode.java
1 package IR.Flat;
2 import IR.Tree.Modifiers;
3 import IR.Tree.FlagExpressionNode;
4 import IR.Tree.DNFFlag;
5 import IR.Tree.DNFFlagAtom;
6 import IR.Tree.TagExpressionList;
7 import IR.Tree.OffsetNode;
8 import IR.*;
9
10 import java.util.*;
11 import java.io.*;
12
13 import Util.Relation;
14 import Analysis.TaskStateAnalysis.FlagState;
15 import Analysis.TaskStateAnalysis.FlagComparator;
16 import Analysis.TaskStateAnalysis.OptionalTaskDescriptor;
17 import Analysis.TaskStateAnalysis.Predicate;
18 import Analysis.TaskStateAnalysis.SafetyAnalysis;
19 import Analysis.TaskStateAnalysis.TaskIndex;
20 import Analysis.Locality.LocalityAnalysis;
21 import Analysis.Locality.LocalityBinding;
22 import Analysis.Locality.DiscoverConflicts;
23 import Analysis.Locality.DCWrapper;
24 import Analysis.Locality.DelayComputation;
25 import Analysis.Locality.BranchAnalysis;
26 import Analysis.CallGraph.CallGraph;
27 import Analysis.Disjoint.AllocSite;
28 import Analysis.Disjoint.Effect;
29 import Analysis.Disjoint.ReachGraph;
30 import Analysis.Disjoint.Taint;
31 import Analysis.OoOJava.OoOJavaAnalysis;
32 import Analysis.Prefetch.*;
33 import Analysis.Loops.WriteBarrier;
34 import Analysis.Loops.GlobalFieldType;
35 import Analysis.Locality.TypeAnalysis;
36 import Analysis.MLP.ConflictGraph;
37 import Analysis.MLP.ConflictNode;
38 import Analysis.MLP.MLPAnalysis;
39 import Analysis.MLP.ParentChildConflictsMap;
40 import Analysis.MLP.SESELock;
41 import Analysis.MLP.SESEWaitingQueue;
42 import Analysis.MLP.VariableSourceToken;
43 import Analysis.MLP.VSTWrapper;
44 import Analysis.MLP.CodePlan;
45 import Analysis.MLP.SESEandAgePair;
46 import Analysis.MLP.WaitingElement;
47
48 public class BuildCode {
49   State state;
50   Hashtable temptovar;
51   Hashtable paramstable;
52   Hashtable tempstable;
53   Hashtable fieldorder;
54   Hashtable flagorder;
55   int tag=0;
56   String localsprefix="___locals___";
57   String localsprefixaddr="&"+localsprefix;
58   String localsprefixderef=localsprefix+".";
59   String fcrevert="___fcrevert___";
60   String paramsprefix="___params___";
61   String oidstr="___nextobject___";
62   String nextobjstr="___nextobject___";
63   String localcopystr="___localcopy___";
64   public static boolean GENERATEPRECISEGC=false;
65   public static String PREFIX="";
66   public static String arraytype="ArrayObject";
67   public static int flagcount = 0;
68   Virtual virtualcalls;
69   TypeUtil typeutil;
70   protected int maxtaskparams=0;
71   private int maxcount=0;
72   ClassDescriptor[] cdarray;
73   TypeDescriptor[] arraytable;
74   LocalityAnalysis locality;
75   Hashtable<LocalityBinding, TempDescriptor> reverttable;
76   Hashtable<LocalityBinding, Hashtable<TempDescriptor, TempDescriptor>> backuptable;
77   SafetyAnalysis sa;
78   PrefetchAnalysis pa;
79   MLPAnalysis mlpa;
80   OoOJavaAnalysis oooa;
81   String maxTaskRecSizeStr="__maxTaskRecSize___";
82   String mlperrstr = "if(status != 0) { "+
83     "sprintf(errmsg, \"MLP error at %s:%d\", __FILE__, __LINE__); "+
84     "perror(errmsg); exit(-1); }";
85   boolean nonSESEpass=true;
86   RuntimeConflictResolver rcr = null;
87   WriteBarrier wb;
88   DiscoverConflicts dc;
89   DiscoverConflicts recorddc;
90   DCWrapper delaycomp;
91   CallGraph callgraph;
92
93
94   public BuildCode(State st, Hashtable temptovar, TypeUtil typeutil, SafetyAnalysis sa, PrefetchAnalysis pa) {
95     this(st, temptovar, typeutil, null, sa, pa, null, null);
96   }
97
98   public BuildCode(State st, Hashtable temptovar, TypeUtil typeutil, SafetyAnalysis sa, PrefetchAnalysis pa, MLPAnalysis mlpa, OoOJavaAnalysis oooa) {
99     this(st, temptovar, typeutil, null, sa, pa, mlpa, oooa);
100   }
101
102   public BuildCode(State st, Hashtable temptovar, TypeUtil typeutil, LocalityAnalysis locality, PrefetchAnalysis pa, MLPAnalysis mlpa, OoOJavaAnalysis oooa) {
103     this(st, temptovar, typeutil, locality, null, pa, mlpa, oooa);
104   }
105
106   public BuildCode(State st, Hashtable temptovar, TypeUtil typeutil, LocalityAnalysis locality, SafetyAnalysis sa, PrefetchAnalysis pa, MLPAnalysis mlpa, OoOJavaAnalysis oooa) {
107     this.sa=sa;
108     this.pa=pa;
109     this.mlpa=mlpa;
110     this.oooa=oooa;
111     state=st;
112     callgraph=new CallGraph(state);
113     if (state.SINGLETM)
114       oidstr="___objlocation___";
115     this.temptovar=temptovar;
116     paramstable=new Hashtable();
117     tempstable=new Hashtable();
118     fieldorder=new Hashtable();
119     flagorder=new Hashtable();
120     this.typeutil=typeutil;
121     virtualcalls=new Virtual(state,locality);
122     if (locality!=null) {
123       this.locality=locality;
124       this.reverttable=new Hashtable<LocalityBinding, TempDescriptor>();
125       this.backuptable=new Hashtable<LocalityBinding, Hashtable<TempDescriptor, TempDescriptor>>();
126       this.wb=new WriteBarrier(locality, st);
127     }
128     if (state.SINGLETM&&state.DCOPTS) {
129       TypeAnalysis typeanalysis=new TypeAnalysis(locality, st, typeutil,callgraph);
130       GlobalFieldType gft=new GlobalFieldType(callgraph, st, typeutil.getMain());
131       this.dc=new DiscoverConflicts(locality, st, typeanalysis, gft);
132       dc.doAnalysis();
133     }
134     if (state.DELAYCOMP) {
135       //TypeAnalysis typeanalysis=new TypeAnalysis(locality, st, typeutil,callgraph);
136       TypeAnalysis typeanalysis=new TypeAnalysis(locality, st, typeutil,callgraph);
137       GlobalFieldType gft=new GlobalFieldType(callgraph, st, typeutil.getMain());
138       delaycomp=new DCWrapper(locality, st, typeanalysis, gft);
139       dc=delaycomp.getConflicts();
140       recorddc=new DiscoverConflicts(locality, st, typeanalysis, delaycomp.getCannotDelayMap(), true, true, null);
141       recorddc.doAnalysis();
142     }
143   }
144
145   /** The buildCode method outputs C code for all the methods.  The Flat
146    * versions of the methods must already be generated and stored in
147    * the State object. */
148   PrintWriter outsandbox=null;
149
150   public void buildCode() {
151     /* Create output streams to write to */
152     PrintWriter outclassdefs=null;
153     PrintWriter outstructs=null;
154     PrintWriter outrepairstructs=null;
155     PrintWriter outmethodheader=null;
156     PrintWriter outmethod=null;
157     PrintWriter outvirtual=null;
158     PrintWriter outtask=null;
159     PrintWriter outtaskdefs=null;
160     PrintWriter outoptionalarrays=null;
161     PrintWriter optionalheaders=null;
162
163     try {
164       if (state.SANDBOX) {
165         outsandbox=new PrintWriter(new FileOutputStream(PREFIX+"sandboxdefs.c"), true);
166       }
167       outstructs=new PrintWriter(new FileOutputStream(PREFIX+"structdefs.h"), true);
168       outmethodheader=new PrintWriter(new FileOutputStream(PREFIX+"methodheaders.h"), true);
169       outclassdefs=new PrintWriter(new FileOutputStream(PREFIX+"classdefs.h"), true);
170       outmethod=new PrintWriter(new FileOutputStream(PREFIX+"methods.c"), true);
171       outvirtual=new PrintWriter(new FileOutputStream(PREFIX+"virtualtable.h"), true);
172       if (state.TASK) {
173         outtask=new PrintWriter(new FileOutputStream(PREFIX+"task.h"), true);
174         outtaskdefs=new PrintWriter(new FileOutputStream(PREFIX+"taskdefs.c"), true);
175         if (state.OPTIONAL) {
176           outoptionalarrays=new PrintWriter(new FileOutputStream(PREFIX+"optionalarrays.c"), true);
177           optionalheaders=new PrintWriter(new FileOutputStream(PREFIX+"optionalstruct.h"), true);
178         }
179       }
180       if (state.structfile!=null) {
181         outrepairstructs=new PrintWriter(new FileOutputStream(PREFIX+state.structfile+".struct"), true);
182       }
183     } catch (Exception e) {
184       e.printStackTrace();
185       System.exit(-1);
186     }
187
188     /* Build the virtual dispatch tables */
189     buildVirtualTables(outvirtual);
190
191     /* Output includes */
192     outmethodheader.println("#ifndef METHODHEADERS_H");
193     outmethodheader.println("#define METHODHEADERS_H");
194     outmethodheader.println("#include \"structdefs.h\"");
195     if (state.DSM)
196       outmethodheader.println("#include \"dstm.h\"");
197     if (state.SANDBOX) {
198       outmethodheader.println("#include \"sandbox.h\"");
199     }
200     if (state.EVENTMONITOR) {
201       outmethodheader.println("#include \"monitor.h\"");
202     }
203     if (state.SINGLETM) {
204       outmethodheader.println("#include \"tm.h\"");
205       outmethodheader.println("#include \"delaycomp.h\"");
206       outmethodheader.println("#include \"inlinestm.h\"");
207     }
208     if (state.ABORTREADERS) {
209       outmethodheader.println("#include \"abortreaders.h\"");
210       outmethodheader.println("#include <setjmp.h>");
211     }
212     if (state.MLP || state.OOOJAVA) {
213       outmethodheader.println("#include <stdlib.h>");
214       outmethodheader.println("#include <stdio.h>");
215       outmethodheader.println("#include <string.h>");
216       outmethodheader.println("#include \"mlp_runtime.h\"");
217       outmethodheader.println("#include \"psemaphore.h\"");
218       outmethodheader.println("#include \"memPool.h\"");
219
220       // spit out a global to inform all worker threads with
221       // the maximum size is for any task record
222       outmethodheader.println("extern int "+maxTaskRecSizeStr+";");
223     }
224
225     /* Output Structures */
226     outputStructs(outstructs);
227
228     // Output the C class declarations
229     // These could mutually reference each other
230     
231     
232     outclassdefs.println("#ifndef __CLASSDEF_H_");
233     outclassdefs.println("#define __CLASSDEF_H_");
234     outputClassDeclarations(outclassdefs);
235
236     // Output function prototypes and structures for parameters
237     Iterator it=state.getClassSymbolTable().getDescriptorsIterator();
238     while(it.hasNext()) {
239       ClassDescriptor cn=(ClassDescriptor)it.next();
240       generateCallStructs(cn, outclassdefs, outstructs, outmethodheader);
241     }
242     outclassdefs.println("#endif");
243     outclassdefs.close();
244
245     if (state.TASK) {
246       /* Map flags to integers */
247       /* The runtime keeps track of flags using these integers */
248       it=state.getClassSymbolTable().getDescriptorsIterator();
249       while(it.hasNext()) {
250         ClassDescriptor cn=(ClassDescriptor)it.next();
251         mapFlags(cn);
252       }
253       /* Generate Tasks */
254       generateTaskStructs(outstructs, outmethodheader);
255
256       /* Outputs generic task structures if this is a task
257          program */
258       outputTaskTypes(outtask);
259     }
260
261     if( state.MLP || state.OOOJAVA) {      
262       // have to initialize some SESE compiler data before
263       // analyzing normal methods, which must happen before
264       // generating SESE internal code
265       
266       Iterator<FlatSESEEnterNode> seseit;
267       if(state.MLP){
268         seseit=mlpa.getAllSESEs().iterator();
269       }else{
270         seseit=oooa.getAllSESEs().iterator();
271       }
272       
273       //TODO signal the object that will report errors
274       if(state.RCR) {
275         try {
276           rcr = new RuntimeConflictResolver(PREFIX);
277           rcr.setGlobalEffects(oooa.getDisjointAnalysis().getEffectsAnalysis().getAllEffects());
278         } catch (FileNotFoundException e) {
279           System.out.println("Runtime Conflict Resolver could not create output file.");
280         }
281       }
282       
283       while(seseit.hasNext()){
284         FlatSESEEnterNode fsen = seseit.next();
285         initializeSESE( fsen );
286         
287         //this code will culminate all conflicts into one master hashtable. 
288         if(state.RCR && rcr != null) {
289           Analysis.OoOJava.ConflictGraph conflictGraph;
290           Hashtable<Taint, Set<Effect>> conflicts;
291
292           System.out.println("-------");
293           System.out.println(fsen);
294           System.out.println(fsen.getIsCallerSESEplaceholder());
295           System.out.println(fsen.getParent());
296           
297           if (fsen.getParent()!=null) {
298             conflictGraph = oooa.getConflictGraph(fsen.getParent());
299             System.out.println("CG="+conflictGraph);
300             if (conflictGraph!=null)
301               System.out.println("Conflicts="+conflictGraph.getConflictEffectSet(fsen));
302           }
303           
304           if(!fsen.getIsCallerSESEplaceholder() && fsen.getParent()!=null && 
305             (conflictGraph = oooa.getConflictGraph(fsen.getParent())) != null && 
306             (conflicts = conflictGraph.getConflictEffectSet(fsen)) != null) {
307             FlatMethod fm=fsen.getfmEnclosing();
308             ReachGraph rg=oooa.getDisjointAnalysis().getReachGraph(fm.getMethod());
309             if(rcr.cSideDebug)
310               rg.writeGraph("RCR_RG_SESE_DEBUG");
311             
312             rcr.addToTraverseToDoList(fsen, rg, conflicts);
313           }
314         }
315       }
316     }
317
318     /* Build the actual methods */
319     outputMethods(outmethod);
320
321     // Output function prototypes and structures for SESE's and code
322     if( state.MLP || state.OOOJAVA ) {
323
324       // spit out a global to inform all worker threads with
325       // the maximum size is for any task record
326       outmethod.println("int "+maxTaskRecSizeStr+" = 0;");
327
328       // used to differentiate, during code generation, whether we are
329       // passing over SESE body code, or non-SESE code
330       nonSESEpass = false;
331
332       // first generate code for each sese's internals     
333       Iterator<FlatSESEEnterNode> seseit;
334       if(state.MLP){
335         seseit=mlpa.getAllSESEs().iterator();
336       }else{
337         seseit=oooa.getAllSESEs().iterator();
338       }
339       
340       while(seseit.hasNext()) {
341         FlatSESEEnterNode fsen = seseit.next();
342         generateMethodSESE(fsen, null, outstructs, outmethodheader, outmethod);
343       }
344
345       // then write the invokeSESE switch to decouple scheduler
346       // from having to do unique details of sese invocation
347       generateSESEinvocationMethod(outmethodheader, outmethod);
348     }
349
350     if (state.TASK) {
351       /* Output code for tasks */
352       outputTaskCode(outtaskdefs, outmethod);
353       outtaskdefs.close();
354       /* Record maximum number of task parameters */
355       outstructs.println("#define MAXTASKPARAMS "+maxtaskparams);
356     } else if (state.main!=null) {
357       /* Generate main method */
358       outputMainMethod(outmethod);
359     }
360
361     /* Generate information for task with optional parameters */
362     if (state.TASK&&state.OPTIONAL) {
363       generateOptionalArrays(outoptionalarrays, optionalheaders, state.getAnalysisResult(), state.getOptionalTaskDescriptors());
364       outoptionalarrays.close();
365     }
366     
367     /* Output structure definitions for repair tool */
368     if (state.structfile!=null) {
369       buildRepairStructs(outrepairstructs);
370       outrepairstructs.close();
371     }
372     
373     /* Close files */
374     outmethodheader.println("#endif");
375     outmethodheader.close();
376     outmethod.close();
377     outstructs.println("#endif");
378     outstructs.close();
379     if(rcr != null) {
380       rcr.close();
381       System.out.println("Runtime Conflict Resolver Done.");
382     }  
383   }
384   
385
386   /* This code just generates the main C method for java programs.
387    * The main C method packs up the arguments into a string array
388    * and passes it to the java main method. */
389
390   private void outputMainMethod(PrintWriter outmethod) {
391     outmethod.println("int main(int argc, const char *argv[]) {");
392     outmethod.println("  int i;");
393
394     if (state.MLP || state.OOOJAVA) {
395
396       // do a calculation to determine which task record
397       // is the largest, store that as a global value for
398       // allocating records
399       Iterator<FlatSESEEnterNode> seseit;
400       if(state.MLP){
401         seseit=mlpa.getAllSESEs().iterator();
402       }else{
403         seseit=oooa.getAllSESEs().iterator();
404       }      
405       while(seseit.hasNext()){
406         FlatSESEEnterNode fsen = seseit.next();
407         outmethod.println("if( sizeof( "+fsen.getSESErecordName()+
408                           " ) > "+maxTaskRecSizeStr+
409                           " ) { "+maxTaskRecSizeStr+
410                           " = sizeof( "+fsen.getSESErecordName()+
411                           " ); }" );
412       }
413       
414       outmethod.println("  runningSESE = NULL;");
415
416       outmethod.println("  workScheduleInit( "+state.MLP_NUMCORES+", invokeSESEmethod );");
417       
418       //initializes data structures needed for the RCR traverser
419       if(state.RCR && rcr != null) {
420         outmethod.println("  initializeStructsRCR();");
421       }
422     }
423
424     if (state.DSM) {
425       if (state.DSMRECOVERYSTATS) {
426         outmethod.println("#ifdef RECOVERYSTATS \n");
427         outmethod.println("handle();\n");
428         outmethod.println("#endif\n");
429       } else {
430         outmethod.println("#if defined(TRANSSTATS) || defined(RECOVERYSTATS) \n");
431         outmethod.println("handle();\n");
432         outmethod.println("#endif\n");
433       }
434     }
435     
436     if (state.THREAD||state.DSM||state.SINGLETM) {
437       outmethod.println("initializethreads();");
438     }
439     if (state.DSM) {
440       outmethod.println("if (dstmStartup(argv[1])) {");
441       if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
442         outmethod.println("  struct ArrayObject * stringarray=allocate_newarray(NULL, STRINGARRAYTYPE, argc-2);");
443       } else {
444         outmethod.println("  struct ArrayObject * stringarray=allocate_newarray(STRINGARRAYTYPE, argc-2);");
445       }
446     } else {
447       if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
448         outmethod.println("  struct ArrayObject * stringarray=allocate_newarray(NULL, STRINGARRAYTYPE, argc-1);");
449       } else {
450         outmethod.println("  struct ArrayObject * stringarray=allocate_newarray(STRINGARRAYTYPE, argc-1);");
451       }
452     }
453     if (state.DSM) {
454       outmethod.println("  for(i=2;i<argc;i++) {");
455     } else
456       outmethod.println("  for(i=1;i<argc;i++) {");
457     outmethod.println("    int length=strlen(argv[i]);");
458     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
459       outmethod.println("    struct ___String___ *newstring=NewString(NULL, argv[i], length);");
460     } else {
461       outmethod.println("    struct ___String___ *newstring=NewString(argv[i], length);");
462     }
463     if (state.DSM)
464       outmethod.println("    ((void **)(((char *)& stringarray->___length___)+sizeof(int)))[i-2]=newstring;");
465     else
466       outmethod.println("    ((void **)(((char *)& stringarray->___length___)+sizeof(int)))[i-1]=newstring;");
467     outmethod.println("  }");
468
469     MethodDescriptor md=typeutil.getMain();
470     ClassDescriptor cd=typeutil.getMainClass();
471
472     outmethod.println("   {");
473     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
474       if (state.DSM||state.SINGLETM) {
475         outmethod.print("       struct "+cd.getSafeSymbol()+locality.getMain().getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params __parameterlist__={");
476       } else
477         outmethod.print("       struct "+cd.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params __parameterlist__={");
478     outmethod.println("1, NULL,"+"stringarray};");
479       if (state.DSM||state.SINGLETM)
480         outmethod.println("     "+cd.getSafeSymbol()+locality.getMain().getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"(& __parameterlist__);");
481       else
482         outmethod.println("     "+cd.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"(& __parameterlist__);");
483     } else {
484       if (state.DSM||state.SINGLETM)
485         outmethod.println("     "+cd.getSafeSymbol()+locality.getMain().getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"(stringarray);");
486       else
487         outmethod.println("     "+cd.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"(stringarray);");
488     }
489     outmethod.println("   }");
490
491     if (state.DSM) {
492       outmethod.println("}");
493     }
494
495     if (state.THREAD||state.DSM||state.SINGLETM) {
496       outmethod.println("pthread_mutex_lock(&gclistlock);");
497       outmethod.println("threadcount--;");
498       outmethod.println("pthread_cond_signal(&gccond);");
499       outmethod.println("pthread_mutex_unlock(&gclistlock);");
500     }
501
502     if (state.DSM||state.SINGLETM) {
503       //outmethod.println("#if defined(TRANSSTATS) || defined(RECOVERYSTATS) \n");
504       outmethod.println("#if defined(TRANSSTATS) \n");
505       outmethod.println("printf(\"******  Transaction Stats   ******\\n\");");
506       outmethod.println("printf(\"numTransCommit= %d\\n\", numTransCommit);");
507       outmethod.println("printf(\"numTransAbort= %d\\n\", numTransAbort);");
508       outmethod.println("printf(\"nSoftAbort= %d\\n\", nSoftAbort);");
509       if (state.DSM) {
510         outmethod.println("printf(\"nchashSearch= %d\\n\", nchashSearch);");
511         outmethod.println("printf(\"nmhashSearch= %d\\n\", nmhashSearch);");
512         outmethod.println("printf(\"nprehashSearch= %d\\n\", nprehashSearch);");
513         outmethod.println("printf(\"ndirtyCacheObj= %d\\n\", ndirtyCacheObj);");
514         outmethod.println("printf(\"nRemoteReadSend= %d\\n\", nRemoteSend);");
515         outmethod.println("printf(\"bytesSent= %d\\n\", bytesSent);");
516         outmethod.println("printf(\"bytesRecv= %d\\n\", bytesRecv);");
517         outmethod.println("printf(\"totalObjSize= %d\\n\", totalObjSize);");
518         outmethod.println("printf(\"sendRemoteReq= %d\\n\", sendRemoteReq);");
519         outmethod.println("printf(\"getResponse= %d\\n\", getResponse);");
520       } else if (state.SINGLETM) {
521         outmethod.println("printf(\"nSoftAbortAbort= %d\\n\", nSoftAbortAbort);");
522         outmethod.println("printf(\"nSoftAbortCommit= %d\\n\", nSoftAbortCommit);");
523         outmethod.println("#ifdef STMSTATS\n");
524         outmethod.println("for(i=0; i<TOTALNUMCLASSANDARRAY; i++) {\n");
525         outmethod.println("  printf(\"typesCausingAbort[%2d] numaccess= %5d numabort= %3d\\n\", i, typesCausingAbort[i].numaccess, typesCausingAbort[i].numabort);\n");
526         outmethod.println("}\n");
527         outmethod.println("#endif\n");
528         outmethod.println("fflush(stdout);");
529       }
530       outmethod.println("#endif\n");
531     }
532
533     if (state.EVENTMONITOR) {
534       outmethod.println("dumpdata();");
535     }
536
537     if (state.THREAD||state.SINGLETM)
538       outmethod.println("pthread_exit(NULL);");
539
540     if (state.MLP || state.OOOJAVA ) {
541       outmethod.println("  workScheduleBegin();");
542     }
543
544     outmethod.println("}");
545   }
546
547   /* This method outputs code for each task. */
548
549   private void outputTaskCode(PrintWriter outtaskdefs, PrintWriter outmethod) {
550     /* Compile task based program */
551     outtaskdefs.println("#include \"task.h\"");
552     outtaskdefs.println("#include \"methodheaders.h\"");
553     Iterator taskit=state.getTaskSymbolTable().getDescriptorsIterator();
554     while(taskit.hasNext()) {
555       TaskDescriptor td=(TaskDescriptor)taskit.next();
556       FlatMethod fm=state.getMethodFlat(td);
557       generateFlatMethod(fm, null, outmethod);
558       generateTaskDescriptor(outtaskdefs, fm, td);
559     }
560
561     //Output task descriptors
562     taskit=state.getTaskSymbolTable().getDescriptorsIterator();
563     outtaskdefs.println("struct taskdescriptor * taskarray[]= {");
564     boolean first=true;
565     while(taskit.hasNext()) {
566       TaskDescriptor td=(TaskDescriptor)taskit.next();
567       if (first)
568         first=false;
569       else
570         outtaskdefs.println(",");
571       outtaskdefs.print("&task_"+td.getSafeSymbol());
572     }
573     outtaskdefs.println("};");
574
575     outtaskdefs.println("int numtasks="+state.getTaskSymbolTable().getValueSet().size()+";");
576   }
577
578   /* This method outputs most of the methods.c file.  This includes
579    * some standard includes and then an array with the sizes of
580    * objets and array that stores supertype and then the code for
581    * the Java methods.. */
582
583   protected void outputMethods(PrintWriter outmethod) {
584     outmethod.println("#include \"methodheaders.h\"");
585     outmethod.println("#include \"virtualtable.h\"");
586     outmethod.println("#include \"runtime.h\"");
587
588     // always include: compiler directives will leave out
589     // instrumentation when option is not set
590     outmethod.println("#include \"coreprof/coreprof.h\"");
591
592     if (state.SANDBOX) {
593       outmethod.println("#include \"sandboxdefs.c\"");
594     }
595     if (state.DSM) {
596       outmethod.println("#include \"addPrefetchEnhance.h\"");
597       outmethod.println("#include \"localobjects.h\"");
598     }
599     if (state.FASTCHECK) {
600       outmethod.println("#include \"localobjects.h\"");
601     }
602     if(state.MULTICORE) {
603       outmethod.println("#include \"task.h\"");
604           outmethod.println("#include \"multicoreruntime.h\"");
605           outmethod.println("#include \"runtime_arch.h\"");
606     }
607     if (state.THREAD||state.DSM||state.SINGLETM)
608       outmethod.println("#include <thread.h>");
609     if (state.main!=null) {
610       outmethod.println("#include <string.h>");
611     }
612     if (state.CONSCHECK) {
613       outmethod.println("#include \"checkers.h\"");
614     }
615     if (state.MLP || state.OOOJAVA ) {
616       outmethod.println("#include <stdlib.h>");
617       outmethod.println("#include <stdio.h>");
618       outmethod.println("#include \"mlp_runtime.h\"");
619       outmethod.println("#include \"psemaphore.h\"");
620       
621       if( state.RCR && rcr != null) {
622         outmethod.println("#include \"RuntimeConflictResolver.h\"");
623       }
624     }
625
626     //Store the sizes of classes & array elements
627     generateSizeArray(outmethod);
628
629     //Store table of supertypes
630     generateSuperTypeTable(outmethod);
631
632     //Store the layout of classes
633     generateLayoutStructs(outmethod);
634
635     /* Generate code for methods */
636     if (state.DSM||state.SINGLETM) {
637       for(Iterator<LocalityBinding> lbit=locality.getLocalityBindings().iterator(); lbit.hasNext();) {
638         LocalityBinding lb=lbit.next();
639         MethodDescriptor md=lb.getMethod();
640         FlatMethod fm=state.getMethodFlat(md);
641         wb.analyze(lb);
642         if (!md.getModifiers().isNative()) {
643           generateFlatMethod(fm, lb, outmethod);
644       //System.out.println("fm= " + fm + " md= " + md);
645         }
646       }
647     } else {
648       Iterator classit=state.getClassSymbolTable().getDescriptorsIterator();
649       while(classit.hasNext()) {
650         ClassDescriptor cn=(ClassDescriptor)classit.next();
651         Iterator methodit=cn.getMethods();
652         while(methodit.hasNext()) {
653           /* Classify parameters */
654           MethodDescriptor md=(MethodDescriptor)methodit.next();
655           FlatMethod fm=state.getMethodFlat(md);
656           if (!md.getModifiers().isNative()) {
657             generateFlatMethod(fm, null, outmethod);
658           }
659         }
660       }
661     }
662   }
663
664   protected void outputStructs(PrintWriter outstructs) {
665     outstructs.println("#ifndef STRUCTDEFS_H");
666     outstructs.println("#define STRUCTDEFS_H");
667     outstructs.println("#include \"classdefs.h\"");
668     outstructs.println("#ifndef INTPTR");
669     outstructs.println("#ifdef BIT64");
670     outstructs.println("#define INTPTR long");
671     outstructs.println("#else");
672     outstructs.println("#define INTPTR int");
673     outstructs.println("#endif");
674     outstructs.println("#endif");
675     if( state.MLP || state.OOOJAVA ) {
676       outstructs.println("#include \"mlp_runtime.h\"");
677       outstructs.println("#include \"psemaphore.h\"");
678     }
679
680     /* Output #defines that the runtime uses to determine type
681      * numbers for various objects it needs */
682     outstructs.println("#define MAXCOUNT "+maxcount);
683     if (state.DSM||state.SINGLETM) {
684       LocalityBinding lbrun=new LocalityBinding(typeutil.getRun(), false);
685       if (state.DSM) {
686         lbrun.setGlobalThis(LocalityAnalysis.GLOBAL);
687       }
688       else if (state.SINGLETM) {
689         lbrun.setGlobalThis(LocalityAnalysis.NORMAL);
690       }
691       outstructs.println("#define RUNMETHOD "+virtualcalls.getLocalityNumber(lbrun));
692     }
693
694     if (state.DSMTASK) {
695       LocalityBinding lbexecute = new LocalityBinding(typeutil.getExecute(), false);
696       if(state.DSM)
697         lbexecute.setGlobalThis(LocalityAnalysis.GLOBAL);
698       else if( state.SINGLETM)
699         lbexecute.setGlobalThis(LocalityAnalysis.NORMAL);
700       outstructs.println("#define EXECUTEMETHOD " + virtualcalls.getLocalityNumber(lbexecute));
701     }
702
703     outstructs.println("#define STRINGARRAYTYPE "+
704                        (state.getArrayNumber(
705                           (new TypeDescriptor(typeutil.getClass(TypeUtil.StringClass))).makeArray(state))+state.numClasses()));
706
707     outstructs.println("#define OBJECTARRAYTYPE "+
708                        (state.getArrayNumber(
709                           (new TypeDescriptor(typeutil.getClass(TypeUtil.ObjectClass))).makeArray(state))+state.numClasses()));
710
711
712     outstructs.println("#define STRINGTYPE "+typeutil.getClass(TypeUtil.StringClass).getId());
713     outstructs.println("#define CHARARRAYTYPE "+
714                        (state.getArrayNumber((new TypeDescriptor(TypeDescriptor.CHAR)).makeArray(state))+state.numClasses()));
715
716     outstructs.println("#define BYTEARRAYTYPE "+
717                        (state.getArrayNumber((new TypeDescriptor(TypeDescriptor.BYTE)).makeArray(state))+state.numClasses()));
718
719     outstructs.println("#define BYTEARRAYARRAYTYPE "+
720                        (state.getArrayNumber((new TypeDescriptor(TypeDescriptor.BYTE)).makeArray(state).makeArray(state))+state.numClasses()));
721
722     outstructs.println("#define NUMCLASSES "+state.numClasses());
723     int totalClassSize = state.numClasses() + state.numArrays();
724     outstructs.println("#define TOTALNUMCLASSANDARRAY "+ totalClassSize);
725     if (state.TASK) {
726       outstructs.println("#define STARTUPTYPE "+typeutil.getClass(TypeUtil.StartupClass).getId());
727       outstructs.println("#define TAGTYPE "+typeutil.getClass(TypeUtil.TagClass).getId());
728       outstructs.println("#define TAGARRAYTYPE "+
729                          (state.getArrayNumber(new TypeDescriptor(typeutil.getClass(TypeUtil.TagClass)).makeArray(state))+state.numClasses()));
730     }
731   }
732
733   protected void outputClassDeclarations(PrintWriter outclassdefs) {
734     if (state.THREAD||state.DSM||state.SINGLETM)
735       outclassdefs.println("#include <pthread.h>");
736     outclassdefs.println("#ifndef INTPTR");
737     outclassdefs.println("#ifdef BIT64");
738     outclassdefs.println("#define INTPTR long");
739     outclassdefs.println("#else");
740     outclassdefs.println("#define INTPTR int");
741     outclassdefs.println("#endif");
742     outclassdefs.println("#endif");
743     if(state.OPTIONAL)
744       outclassdefs.println("#include \"optionalstruct.h\"");
745     outclassdefs.println("struct "+arraytype+";");
746     /* Start by declaring all structs */
747     Iterator it=state.getClassSymbolTable().getDescriptorsIterator();
748     while(it.hasNext()) {
749       ClassDescriptor cn=(ClassDescriptor)it.next();
750       outclassdefs.println("struct "+cn.getSafeSymbol()+";");
751     }
752     outclassdefs.println("");
753     //Print out definition for array type
754     outclassdefs.println("struct "+arraytype+" {");
755     outclassdefs.println("  int type;");
756     if(state.MLP || state.OOOJAVA ){
757       outclassdefs.println("  int oid;");
758       outclassdefs.println("  int allocsite;");
759     }
760     if (state.EVENTMONITOR) {
761       outclassdefs.println("  int objuid;");
762     }
763     if (state.THREAD) {
764       outclassdefs.println("  pthread_t tid;");
765       outclassdefs.println("  void * lockentry;");
766       outclassdefs.println("  int lockcount;");
767     }
768     if (state.TASK) {
769       outclassdefs.println("  int flag;");
770       if(!state.MULTICORE) {
771         outclassdefs.println("  void * flagptr;");
772       } else {
773         outclassdefs.println("  int version;");
774         outclassdefs.println("  int * lock;");  // lock entry for this obj
775         outclassdefs.println("  int mutex;");  
776         outclassdefs.println("  int lockcount;");
777         if(state.MULTICOREGC) {
778           outclassdefs.println("  int marked;");
779         }
780       }
781       if(state.OPTIONAL) {
782         outclassdefs.println("  int numfses;");
783         outclassdefs.println("  int * fses;");
784       }
785     }
786     printClassStruct(typeutil.getClass(TypeUtil.ObjectClass), outclassdefs);
787
788     if (state.STMARRAY) {
789       outclassdefs.println("  int lowindex;");
790       outclassdefs.println("  int highindex;");
791     }
792     if (state.ARRAYPAD)
793       outclassdefs.println("  int paddingforarray;");
794     if (state.DUALVIEW) {
795       outclassdefs.println("  int arrayversion;");
796     }
797
798     outclassdefs.println("  int ___length___;");
799     outclassdefs.println("};\n");
800     outclassdefs.println("extern int classsize[];");
801     outclassdefs.println("extern int hasflags[];");
802     outclassdefs.println("extern unsigned INTPTR * pointerarray[];");
803     outclassdefs.println("extern int supertypes[];");
804   }
805
806   /** Prints out definitions for generic task structures */
807
808   private void outputTaskTypes(PrintWriter outtask) {
809     outtask.println("#ifndef _TASK_H");
810     outtask.println("#define _TASK_H");
811     outtask.println("struct parameterdescriptor {");
812     outtask.println("int type;");
813     outtask.println("int numberterms;");
814     outtask.println("int *intarray;");
815     outtask.println("void * queue;");
816     outtask.println("int numbertags;");
817     outtask.println("int *tagarray;");
818     outtask.println("};");
819
820     outtask.println("struct taskdescriptor {");
821     outtask.println("void * taskptr;");
822     outtask.println("int numParameters;");
823     outtask.println("  int numTotal;");
824     outtask.println("struct parameterdescriptor **descriptorarray;");
825     outtask.println("char * name;");
826     outtask.println("};");
827     outtask.println("extern struct taskdescriptor * taskarray[];");
828     outtask.println("extern numtasks;");
829     outtask.println("#endif");
830   }
831
832
833   private void buildRepairStructs(PrintWriter outrepairstructs) {
834     Iterator classit=state.getClassSymbolTable().getDescriptorsIterator();
835     while(classit.hasNext()) {
836       ClassDescriptor cn=(ClassDescriptor)classit.next();
837       outrepairstructs.println("structure "+cn.getSymbol()+" {");
838       outrepairstructs.println("  int __type__;");
839       if (state.TASK) {
840         outrepairstructs.println("  int __flag__;");
841         if(!state.MULTICORE) {
842           outrepairstructs.println("  int __flagptr__;");
843         }
844       }
845       printRepairStruct(cn, outrepairstructs);
846       outrepairstructs.println("}\n");
847     }
848
849     for(int i=0; i<state.numArrays(); i++) {
850       TypeDescriptor tdarray=arraytable[i];
851       TypeDescriptor tdelement=tdarray.dereference();
852       outrepairstructs.println("structure "+arraytype+"_"+state.getArrayNumber(tdarray)+" {");
853       outrepairstructs.println("  int __type__;");
854       printRepairStruct(typeutil.getClass(TypeUtil.ObjectClass), outrepairstructs);
855       outrepairstructs.println("  int length;");
856       /*
857          // Need to add support to repair tool for this
858          if (tdelement.isClass()||tdelement.isArray())
859           outrepairstructs.println("  "+tdelement.getRepairSymbol()+" * elem[this.length];");
860          else
861           outrepairstructs.println("  "+tdelement.getRepairSymbol()+" elem[this.length];");
862        */
863       outrepairstructs.println("}\n");
864     }
865   }
866
867   private void printRepairStruct(ClassDescriptor cn, PrintWriter output) {
868     ClassDescriptor sp=cn.getSuperDesc();
869     if (sp!=null)
870       printRepairStruct(sp, output);
871
872     Vector fields=(Vector)fieldorder.get(cn);
873
874     for(int i=0; i<fields.size(); i++) {
875       FieldDescriptor fd=(FieldDescriptor)fields.get(i);
876       if (fd.getType().isArray()) {
877         output.println("  "+arraytype+"_"+ state.getArrayNumber(fd.getType()) +" * "+fd.getSymbol()+";");
878       } else if (fd.getType().isClass())
879         output.println("  "+fd.getType().getRepairSymbol()+" * "+fd.getSymbol()+";");
880       else if (fd.getType().isFloat())
881         output.println("  int "+fd.getSymbol()+"; /* really float */");
882       else
883         output.println("  "+fd.getType().getRepairSymbol()+" "+fd.getSymbol()+";");
884     }
885   }
886
887   /** This method outputs TaskDescriptor information */
888   private void generateTaskDescriptor(PrintWriter output, FlatMethod fm, TaskDescriptor task) {
889     for (int i=0; i<task.numParameters(); i++) {
890       VarDescriptor param_var=task.getParameter(i);
891       TypeDescriptor param_type=task.getParamType(i);
892       FlagExpressionNode param_flag=task.getFlag(param_var);
893       TagExpressionList param_tag=task.getTag(param_var);
894
895       int dnfterms;
896       if (param_flag==null) {
897         output.println("int parameterdnf_"+i+"_"+task.getSafeSymbol()+"[]={");
898         output.println("0x0, 0x0 };");
899         dnfterms=1;
900       } else {
901         DNFFlag dflag=param_flag.getDNF();
902         dnfterms=dflag.size();
903
904         Hashtable flags=(Hashtable)flagorder.get(param_type.getClassDesc());
905         output.println("int parameterdnf_"+i+"_"+task.getSafeSymbol()+"[]={");
906         for(int j=0; j<dflag.size(); j++) {
907           if (j!=0)
908             output.println(",");
909           Vector term=dflag.get(j);
910           int andmask=0;
911           int checkmask=0;
912           for(int k=0; k<term.size(); k++) {
913             DNFFlagAtom dfa=(DNFFlagAtom)term.get(k);
914             FlagDescriptor fd=dfa.getFlag();
915             boolean negated=dfa.getNegated();
916             int flagid=1<<((Integer)flags.get(fd)).intValue();
917             andmask|=flagid;
918             if (!negated)
919               checkmask|=flagid;
920           }
921           output.print("0x"+Integer.toHexString(andmask)+", 0x"+Integer.toHexString(checkmask));
922         }
923         output.println("};");
924       }
925
926       output.println("int parametertag_"+i+"_"+task.getSafeSymbol()+"[]={");
927       //BUG...added next line to fix, test with any task program
928       if (param_tag!=null)
929         for(int j=0; j<param_tag.numTags(); j++) {
930           if (j!=0)
931             output.println(",");
932           /* for each tag we need */
933           /* which slot it is */
934           /* what type it is */
935           TagVarDescriptor tvd=(TagVarDescriptor)task.getParameterTable().get(param_tag.getName(j));
936           TempDescriptor tmp=param_tag.getTemp(j);
937           int slot=fm.getTagInt(tmp);
938           output.println(slot+", "+state.getTagId(tvd.getTag()));
939         }
940       output.println("};");
941
942       output.println("struct parameterdescriptor parameter_"+i+"_"+task.getSafeSymbol()+"={");
943       output.println("/* type */"+param_type.getClassDesc().getId()+",");
944       output.println("/* number of DNF terms */"+dnfterms+",");
945       output.println("parameterdnf_"+i+"_"+task.getSafeSymbol()+",");
946       output.println("0,");
947       //BUG, added next line to fix and else statement...test
948       //with any task program
949       if (param_tag!=null)
950         output.println("/* number of tags */"+param_tag.numTags()+",");
951       else
952         output.println("/* number of tags */ 0,");
953       output.println("parametertag_"+i+"_"+task.getSafeSymbol());
954       output.println("};");
955     }
956
957
958     output.println("struct parameterdescriptor * parameterdescriptors_"+task.getSafeSymbol()+"[] = {");
959     for (int i=0; i<task.numParameters(); i++) {
960       if (i!=0)
961         output.println(",");
962       output.print("&parameter_"+i+"_"+task.getSafeSymbol());
963     }
964     output.println("};");
965
966     output.println("struct taskdescriptor task_"+task.getSafeSymbol()+"={");
967     output.println("&"+task.getSafeSymbol()+",");
968     output.println("/* number of parameters */" +task.numParameters() + ",");
969     int numtotal=task.numParameters()+fm.numTags();
970     output.println("/* number total parameters */" +numtotal + ",");
971     output.println("parameterdescriptors_"+task.getSafeSymbol()+",");
972     output.println("\""+task.getSymbol()+"\"");
973     output.println("};");
974   }
975
976
977   /** The buildVirtualTables method outputs the virtual dispatch
978    * tables for methods. */
979
980   protected void buildVirtualTables(PrintWriter outvirtual) {
981     Iterator classit=state.getClassSymbolTable().getDescriptorsIterator();
982     while(classit.hasNext()) {
983       ClassDescriptor cd=(ClassDescriptor)classit.next();
984       if (virtualcalls.getMethodCount(cd)>maxcount)
985         maxcount=virtualcalls.getMethodCount(cd);
986     }
987     MethodDescriptor[][] virtualtable=null;
988     LocalityBinding[][] lbvirtualtable=null;
989     if (state.DSM||state.SINGLETM)
990       lbvirtualtable=new LocalityBinding[state.numClasses()+state.numArrays()][maxcount];
991     else
992       virtualtable=new MethodDescriptor[state.numClasses()+state.numArrays()][maxcount];
993
994     /* Fill in virtual table */
995     classit=state.getClassSymbolTable().getDescriptorsIterator();
996     while(classit.hasNext()) {
997       ClassDescriptor cd=(ClassDescriptor)classit.next();
998       if (state.DSM||state.SINGLETM)
999         fillinRow(cd, lbvirtualtable, cd.getId());
1000       else
1001         fillinRow(cd, virtualtable, cd.getId());
1002     }
1003
1004     ClassDescriptor objectcd=typeutil.getClass(TypeUtil.ObjectClass);
1005     Iterator arrayit=state.getArrayIterator();
1006     while(arrayit.hasNext()) {
1007       TypeDescriptor td=(TypeDescriptor)arrayit.next();
1008       int id=state.getArrayNumber(td);
1009       if (state.DSM||state.SINGLETM)
1010         fillinRow(objectcd, lbvirtualtable, id+state.numClasses());
1011       else
1012         fillinRow(objectcd, virtualtable, id+state.numClasses());
1013     }
1014
1015     outvirtual.print("void * virtualtable[]={");
1016     boolean needcomma=false;
1017     for(int i=0; i<state.numClasses()+state.numArrays(); i++) {
1018       for(int j=0; j<maxcount; j++) {
1019         if (needcomma)
1020           outvirtual.print(", ");
1021         if ((state.DSM||state.SINGLETM)&&lbvirtualtable[i][j]!=null) {
1022           LocalityBinding lb=lbvirtualtable[i][j];
1023           MethodDescriptor md=lb.getMethod();
1024           outvirtual.print("& "+md.getClassDesc().getSafeSymbol()+lb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor());
1025         } else if (!(state.DSM||state.SINGLETM)&&virtualtable[i][j]!=null) {
1026           MethodDescriptor md=virtualtable[i][j];
1027           outvirtual.print("& "+md.getClassDesc().getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor());
1028         } else {
1029           outvirtual.print("0");
1030         }
1031         needcomma=true;
1032       }
1033       outvirtual.println("");
1034     }
1035     outvirtual.println("};");
1036     outvirtual.close();
1037   }
1038
1039   private void fillinRow(ClassDescriptor cd, MethodDescriptor[][] virtualtable, int rownum) {
1040     /* Get inherited methods */
1041     if (cd.getSuperDesc()!=null)
1042       fillinRow(cd.getSuperDesc(), virtualtable, rownum);
1043     /* Override them with our methods */
1044     for(Iterator it=cd.getMethods(); it.hasNext();) {
1045       MethodDescriptor md=(MethodDescriptor)it.next();
1046       if (md.isStatic()||md.getReturnType()==null)
1047         continue;
1048       int methodnum=virtualcalls.getMethodNumber(md);
1049       virtualtable[rownum][methodnum]=md;
1050     }
1051   }
1052
1053   private void fillinRow(ClassDescriptor cd, LocalityBinding[][] virtualtable, int rownum) {
1054     /* Get inherited methods */
1055     if (cd.getSuperDesc()!=null)
1056       fillinRow(cd.getSuperDesc(), virtualtable, rownum);
1057     /* Override them with our methods */
1058     if (locality.getClassBindings(cd)!=null)
1059       for(Iterator<LocalityBinding> lbit=locality.getClassBindings(cd).iterator(); lbit.hasNext();) {
1060         LocalityBinding lb=lbit.next();
1061         MethodDescriptor md=lb.getMethod();
1062         //Is the method static or a constructor
1063         if (md.isStatic()||md.getReturnType()==null)
1064           continue;
1065         int methodnum=virtualcalls.getLocalityNumber(lb);
1066         virtualtable[rownum][methodnum]=lb;
1067       }
1068   }
1069
1070   /** Generate array that contains the sizes of class objects.  The
1071    * object allocation functions in the runtime use this
1072    * information. */
1073
1074   private void generateSizeArray(PrintWriter outclassdefs) {
1075     outclassdefs.print("extern struct prefetchCountStats * evalPrefetch;\n");
1076     outclassdefs.print("#ifdef TRANSSTATS \n");
1077     outclassdefs.print("extern int numTransAbort;\n");
1078     outclassdefs.print("extern int numTransCommit;\n");
1079     outclassdefs.print("extern int nSoftAbort;\n");
1080     if (state.DSM) {
1081       outclassdefs.print("extern int nchashSearch;\n");
1082       outclassdefs.print("extern int nmhashSearch;\n");
1083       outclassdefs.print("extern int nprehashSearch;\n");
1084       outclassdefs.print("extern int ndirtyCacheObj;\n");
1085       outclassdefs.print("extern int nRemoteSend;\n");
1086       outclassdefs.print("extern int sendRemoteReq;\n");
1087       outclassdefs.print("extern int getResponse;\n");
1088       outclassdefs.print("extern int bytesSent;\n");
1089       outclassdefs.print("extern int bytesRecv;\n");
1090       outclassdefs.print("extern int totalObjSize;\n");
1091       outclassdefs.print("extern void handle();\n");
1092     } else if (state.SINGLETM) {
1093       outclassdefs.println("extern int nSoftAbortAbort;");
1094       outclassdefs.println("extern int nSoftAbortCommit;");
1095       outclassdefs.println("#ifdef STMSTATS\n");
1096       outclassdefs.println("extern objtypestat_t typesCausingAbort[];");
1097       outclassdefs.println("#endif\n");
1098     }
1099     outclassdefs.print("#endif\n");
1100
1101     outclassdefs.print("int numprefetchsites = " + pa.prefetchsiteid + ";\n");
1102     if(this.state.MLP || state.OOOJAVA ){
1103         outclassdefs.print("extern __thread int oid;\n");
1104         outclassdefs.print("extern int numWorkers;\n");
1105     }
1106
1107     Iterator it=state.getClassSymbolTable().getDescriptorsIterator();
1108     cdarray=new ClassDescriptor[state.numClasses()];
1109     cdarray[0] = null;
1110     while(it.hasNext()) {
1111       ClassDescriptor cd=(ClassDescriptor)it.next();
1112       cdarray[cd.getId()]=cd;
1113     }
1114
1115     arraytable=new TypeDescriptor[state.numArrays()];
1116
1117     Iterator arrayit=state.getArrayIterator();
1118     while(arrayit.hasNext()) {
1119       TypeDescriptor td=(TypeDescriptor)arrayit.next();
1120       int id=state.getArrayNumber(td);
1121       arraytable[id]=td;
1122     }
1123
1124
1125
1126     /* Print out types */
1127     outclassdefs.println("/* ");
1128     for(int i=0; i<state.numClasses(); i++) {
1129       ClassDescriptor cd=cdarray[i];
1130       if(cd == null) {
1131         outclassdefs.println("NULL " + i);
1132       } else {
1133         outclassdefs.println(cd +"  "+i);
1134       }
1135     }
1136
1137     for(int i=0; i<state.numArrays(); i++) {
1138       TypeDescriptor arraytd=arraytable[i];
1139       outclassdefs.println(arraytd.toPrettyString() +"  "+(i+state.numClasses()));
1140     }
1141
1142     outclassdefs.println("*/");
1143
1144
1145     outclassdefs.print("int classsize[]={");
1146
1147     boolean needcomma=false;
1148     for(int i=0; i<state.numClasses(); i++) {
1149       if (needcomma)
1150         outclassdefs.print(", ");
1151       if(i>0) {
1152         outclassdefs.print("sizeof(struct "+cdarray[i].getSafeSymbol()+")");
1153       } else {
1154         outclassdefs.print("0");
1155       }
1156       needcomma=true;
1157     }
1158
1159
1160     for(int i=0; i<state.numArrays(); i++) {
1161       if (needcomma)
1162         outclassdefs.print(", ");
1163       TypeDescriptor tdelement=arraytable[i].dereference();
1164       if (tdelement.isArray()||tdelement.isClass())
1165         outclassdefs.print("sizeof(void *)");
1166       else
1167         outclassdefs.print("sizeof("+tdelement.getSafeSymbol()+")");
1168       needcomma=true;
1169     }
1170
1171     outclassdefs.println("};");
1172
1173     ClassDescriptor objectclass=typeutil.getClass(TypeUtil.ObjectClass);
1174     needcomma=false;
1175     outclassdefs.print("int typearray[]={");
1176     for(int i=0; i<state.numClasses(); i++) {
1177       ClassDescriptor cd=cdarray[i];
1178       ClassDescriptor supercd=i>0?cd.getSuperDesc():null;
1179       if (needcomma)
1180         outclassdefs.print(", ");
1181       if (supercd==null)
1182         outclassdefs.print("-1");
1183       else
1184         outclassdefs.print(supercd.getId());
1185       needcomma=true;
1186     }
1187
1188     for(int i=0; i<state.numArrays(); i++) {
1189       TypeDescriptor arraytd=arraytable[i];
1190       ClassDescriptor arraycd=arraytd.getClassDesc();
1191       if (arraycd==null) {
1192         if (needcomma)
1193           outclassdefs.print(", ");
1194         outclassdefs.print(objectclass.getId());
1195         needcomma=true;
1196         continue;
1197       }
1198       ClassDescriptor cd=arraycd.getSuperDesc();
1199       int type=-1;
1200       while(cd!=null) {
1201         TypeDescriptor supertd=new TypeDescriptor(cd);
1202         supertd.setArrayCount(arraytd.getArrayCount());
1203         type=state.getArrayNumber(supertd);
1204         if (type!=-1) {
1205           type+=state.numClasses();
1206           break;
1207         }
1208         cd=cd.getSuperDesc();
1209       }
1210       if (needcomma)
1211         outclassdefs.print(", ");
1212       outclassdefs.print(type);
1213       needcomma=true;
1214     }
1215
1216     outclassdefs.println("};");
1217
1218     needcomma=false;
1219
1220
1221     outclassdefs.print("int typearray2[]={");
1222     for(int i=0; i<state.numArrays(); i++) {
1223       TypeDescriptor arraytd=arraytable[i];
1224       ClassDescriptor arraycd=arraytd.getClassDesc();
1225       if (arraycd==null) {
1226         if (needcomma)
1227           outclassdefs.print(", ");
1228         outclassdefs.print("-1");
1229         needcomma=true;
1230         continue;
1231       }
1232       ClassDescriptor cd=arraycd.getSuperDesc();
1233       int level=arraytd.getArrayCount()-1;
1234       int type=-1;
1235       for(; level>0; level--) {
1236         TypeDescriptor supertd=new TypeDescriptor(objectclass);
1237         supertd.setArrayCount(level);
1238         type=state.getArrayNumber(supertd);
1239         if (type!=-1) {
1240           type+=state.numClasses();
1241           break;
1242         }
1243       }
1244       if (needcomma)
1245         outclassdefs.print(", ");
1246       outclassdefs.print(type);
1247       needcomma=true;
1248     }
1249
1250     outclassdefs.println("};");
1251   }
1252
1253   /** Constructs params and temp objects for each method or task.
1254    * These objects tell the compiler which temps need to be
1255    * allocated.  */
1256
1257   protected void generateTempStructs(FlatMethod fm, LocalityBinding lb) {
1258     MethodDescriptor md=fm.getMethod();
1259     TaskDescriptor task=fm.getTask();
1260     Set<TempDescriptor> saveset=lb!=null ? locality.getTempSet(lb) : null;
1261     ParamsObject objectparams=md!=null ? new ParamsObject(md,tag++) : new ParamsObject(task, tag++);
1262     if (lb!=null) {
1263       paramstable.put(lb, objectparams);
1264       backuptable.put(lb, new Hashtable<TempDescriptor, TempDescriptor>());
1265     } else if (md!=null)
1266       paramstable.put(md, objectparams);
1267     else
1268       paramstable.put(task, objectparams);
1269
1270     for(int i=0; i<fm.numParameters(); i++) {
1271       TempDescriptor temp=fm.getParameter(i);
1272       TypeDescriptor type=temp.getType();
1273       if (type.isPtr()&&((GENERATEPRECISEGC) || (this.state.MULTICOREGC)))
1274         objectparams.addPtr(temp);
1275       else
1276         objectparams.addPrim(temp);
1277       if(lb!=null&&saveset.contains(temp)) {
1278         backuptable.get(lb).put(temp, temp.createNew());
1279       }
1280     }
1281
1282     for(int i=0; i<fm.numTags(); i++) {
1283       TempDescriptor temp=fm.getTag(i);
1284       if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC))
1285         objectparams.addPtr(temp);
1286       else
1287         objectparams.addPrim(temp);
1288     }
1289
1290     TempObject objecttemps=md!=null ? new TempObject(objectparams,md,tag++) : new TempObject(objectparams, task, tag++);
1291     if (lb!=null)
1292       tempstable.put(lb, objecttemps);
1293     else if (md!=null)
1294       tempstable.put(md, objecttemps);
1295     else
1296       tempstable.put(task, objecttemps);
1297
1298     for(Iterator nodeit=fm.getNodeSet().iterator(); nodeit.hasNext();) {
1299       FlatNode fn=(FlatNode)nodeit.next();
1300       TempDescriptor[] writes=fn.writesTemps();
1301       for(int i=0; i<writes.length; i++) {
1302         TempDescriptor temp=writes[i];
1303         TypeDescriptor type=temp.getType();
1304         if (type.isPtr()&&((GENERATEPRECISEGC) || (this.state.MULTICOREGC)))
1305           objecttemps.addPtr(temp);
1306         else
1307           objecttemps.addPrim(temp);
1308         if(lb!=null&&saveset.contains(temp)&&
1309            !backuptable.get(lb).containsKey(temp))
1310           backuptable.get(lb).put(temp, temp.createNew());
1311       }
1312     }
1313
1314     /* Create backup temps */
1315     if (lb!=null) {
1316       for(Iterator<TempDescriptor> tmpit=backuptable.get(lb).values().iterator(); tmpit.hasNext();) {
1317         TempDescriptor tmp=tmpit.next();
1318         TypeDescriptor type=tmp.getType();
1319         if (type.isPtr()&&((GENERATEPRECISEGC) || (this.state.MULTICOREGC)))
1320           objecttemps.addPtr(tmp);
1321         else
1322           objecttemps.addPrim(tmp);
1323       }
1324       /* Create temp to hold revert table */
1325       if (state.DSM&&(lb.getHasAtomic()||lb.isAtomic())) {
1326         TempDescriptor reverttmp=new TempDescriptor("revertlist", typeutil.getClass(TypeUtil.ObjectClass));
1327         if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC))
1328           objecttemps.addPtr(reverttmp);
1329         else
1330           objecttemps.addPrim(reverttmp);
1331         reverttable.put(lb, reverttmp);
1332       }
1333     }
1334   }
1335
1336   /** This method outputs the following information about classes
1337    * and arrays:
1338    * (1) For classes, what are the locations of pointers.
1339    * (2) For arrays, does the array contain pointers or primitives.
1340    * (3) For classes, does the class contain flags.
1341    */
1342
1343   private void generateLayoutStructs(PrintWriter output) {
1344     Iterator it=state.getClassSymbolTable().getDescriptorsIterator();
1345     while(it.hasNext()) {
1346       ClassDescriptor cn=(ClassDescriptor)it.next();
1347       output.println("unsigned INTPTR "+cn.getSafeSymbol()+"_pointers[]={");
1348       Iterator allit=cn.getFieldTable().getAllDescriptorsIterator();
1349       int count=0;
1350       while(allit.hasNext()) {
1351         FieldDescriptor fd=(FieldDescriptor)allit.next();
1352         TypeDescriptor type=fd.getType();
1353         if (state.DSM&&fd.isGlobal())         //Don't GC the global objects for now
1354           continue;
1355         if (type.isPtr())
1356           count++;
1357       }
1358       output.print(count);
1359       allit=cn.getFieldTable().getAllDescriptorsIterator();
1360       while(allit.hasNext()) {
1361         FieldDescriptor fd=(FieldDescriptor)allit.next();
1362         TypeDescriptor type=fd.getType();
1363         if (state.DSM&&fd.isGlobal())         //Don't GC the global objects for now
1364           continue;
1365         if (type.isPtr()) {
1366           output.println(",");
1367           output.print("((unsigned INTPTR)&(((struct "+cn.getSafeSymbol() +" *)0)->"+fd.getSafeSymbol()+"))");
1368         }
1369       }
1370       output.println("};");
1371     }
1372     output.println("unsigned INTPTR * pointerarray[]={");
1373     boolean needcomma=false;
1374     for(int i=0; i<state.numClasses(); i++) {
1375       ClassDescriptor cn=cdarray[i];
1376       if (needcomma)
1377         output.println(",");
1378       needcomma=true;
1379       if(cn != null) {
1380         output.print(cn.getSafeSymbol()+"_pointers");
1381       } else {
1382         output.print("NULL");
1383       }
1384     }
1385
1386     for(int i=0; i<state.numArrays(); i++) {
1387       if (needcomma)
1388         output.println(", ");
1389       TypeDescriptor tdelement=arraytable[i].dereference();
1390       if (tdelement.isArray()||tdelement.isClass())
1391         output.print("((unsigned INTPTR *)1)");
1392       else
1393         output.print("0");
1394       needcomma=true;
1395     }
1396
1397     output.println("};");
1398     needcomma=false;
1399     output.println("int hasflags[]={");
1400     for(int i=0; i<state.numClasses(); i++) {
1401       ClassDescriptor cn=cdarray[i];
1402       if (needcomma)
1403         output.println(", ");
1404       needcomma=true;
1405       if ((cn != null) && (cn.hasFlags()))
1406         output.print("1");
1407       else
1408         output.print("0");
1409     }
1410     output.println("};");
1411   }
1412
1413   /** Print out table to give us supertypes */
1414   private void generateSuperTypeTable(PrintWriter output) {
1415     output.println("int supertypes[]={");
1416     boolean needcomma=false;
1417     for(int i=0; i<state.numClasses(); i++) {
1418       ClassDescriptor cn=cdarray[i];
1419       if (needcomma)
1420         output.println(",");
1421       needcomma=true;
1422       if ((cn != null) && (cn.getSuperDesc()!=null)) {
1423         ClassDescriptor cdsuper=cn.getSuperDesc();
1424         output.print(cdsuper.getId());
1425       } else
1426         output.print("-1");
1427     }
1428     output.println("};");
1429   }
1430
1431   /** Force consistent field ordering between inherited classes. */
1432
1433   private void printClassStruct(ClassDescriptor cn, PrintWriter classdefout) {
1434
1435     ClassDescriptor sp=cn.getSuperDesc();
1436     if (sp!=null)
1437       printClassStruct(sp, classdefout);
1438
1439     if (!fieldorder.containsKey(cn)) {
1440       Vector fields=new Vector();
1441       fieldorder.put(cn,fields);
1442       Vector fieldvec=cn.getFieldVec();
1443       for(int i=0;i<fieldvec.size();i++) {
1444         FieldDescriptor fd=(FieldDescriptor)fieldvec.get(i);
1445         if ((sp==null||!sp.getFieldTable().contains(fd.getSymbol())))
1446           fields.add(fd);
1447       }
1448     }
1449     Vector fields=(Vector)fieldorder.get(cn);
1450
1451     for(int i=0; i<fields.size(); i++) {
1452       FieldDescriptor fd=(FieldDescriptor)fields.get(i);
1453       if (fd.getType().isClass()||fd.getType().isArray())
1454         classdefout.println("  struct "+fd.getType().getSafeSymbol()+" * "+fd.getSafeSymbol()+";");
1455       else
1456         classdefout.println("  "+fd.getType().getSafeSymbol()+" "+fd.getSafeSymbol()+";");
1457     }
1458   }
1459
1460
1461   /* Map flags to integers consistently between inherited
1462    * classes. */
1463
1464   protected void mapFlags(ClassDescriptor cn) {
1465     ClassDescriptor sp=cn.getSuperDesc();
1466     if (sp!=null)
1467       mapFlags(sp);
1468     int max=0;
1469     if (!flagorder.containsKey(cn)) {
1470       Hashtable flags=new Hashtable();
1471       flagorder.put(cn,flags);
1472       if (sp!=null) {
1473         Hashtable superflags=(Hashtable)flagorder.get(sp);
1474         Iterator superflagit=superflags.keySet().iterator();
1475         while(superflagit.hasNext()) {
1476           FlagDescriptor fd=(FlagDescriptor)superflagit.next();
1477           Integer number=(Integer)superflags.get(fd);
1478           flags.put(fd, number);
1479           if ((number.intValue()+1)>max)
1480             max=number.intValue()+1;
1481         }
1482       }
1483
1484       Iterator flagit=cn.getFlags();
1485       while(flagit.hasNext()) {
1486         FlagDescriptor fd=(FlagDescriptor)flagit.next();
1487         if (sp==null||!sp.getFlagTable().contains(fd.getSymbol()))
1488           flags.put(fd, new Integer(max++));
1489       }
1490     }
1491   }
1492
1493
1494   /** This function outputs (1) structures that parameters are
1495    * passed in (when PRECISE GC is enabled) and (2) function
1496    * prototypes for the methods */
1497
1498   protected void generateCallStructs(ClassDescriptor cn, PrintWriter classdefout, PrintWriter output, PrintWriter headersout) {
1499     /* Output class structure */
1500     classdefout.println("struct "+cn.getSafeSymbol()+" {");
1501     classdefout.println("  int type;");
1502     if(state.MLP || state.OOOJAVA){
1503       classdefout.println("  int oid;");
1504       classdefout.println("  int allocsite;");
1505     }
1506     if (state.EVENTMONITOR) {
1507       classdefout.println("  int objuid;");
1508     }
1509     if (state.THREAD) {
1510       classdefout.println("  pthread_t tid;");
1511       classdefout.println("  void * lockentry;");
1512       classdefout.println("  int lockcount;");
1513     }
1514
1515     if (state.TASK) {
1516       classdefout.println("  int flag;");
1517       if((!state.MULTICORE) || (cn.getSymbol().equals("TagDescriptor"))) {
1518         classdefout.println("  void * flagptr;");
1519       } else if (state.MULTICORE) {
1520         classdefout.println("  int version;");
1521     classdefout.println("  int * lock;");  // lock entry for this obj
1522     classdefout.println("  int mutex;");  
1523     classdefout.println("  int lockcount;");
1524     if(state.MULTICOREGC) {
1525       classdefout.println("  int marked;");
1526     }
1527       }
1528       if (state.OPTIONAL) {
1529         classdefout.println("  int numfses;");
1530         classdefout.println("  int * fses;");
1531       }
1532     }
1533     printClassStruct(cn, classdefout);
1534     classdefout.println("};\n");
1535
1536     if (state.DSM||state.SINGLETM) {
1537       /* Cycle through LocalityBindings */
1538       HashSet<MethodDescriptor> nativemethods=new HashSet<MethodDescriptor>();
1539       Set<LocalityBinding> lbset=locality.getClassBindings(cn);
1540       if (lbset!=null) {
1541         for(Iterator<LocalityBinding> lbit=lbset.iterator(); lbit.hasNext();) {
1542           LocalityBinding lb=lbit.next();
1543           MethodDescriptor md=lb.getMethod();
1544           if (md.getModifiers().isNative()) {
1545             //make sure we only print a native method once
1546             if (nativemethods.contains(md)) {
1547               FlatMethod fm=state.getMethodFlat(md);
1548               generateTempStructs(fm, lb);
1549               continue;
1550             } else
1551               nativemethods.add(md);
1552           }
1553           generateMethod(cn, md, lb, headersout, output);
1554         }
1555       }
1556       for(Iterator methodit=cn.getMethods(); methodit.hasNext();) {
1557         MethodDescriptor md=(MethodDescriptor)methodit.next();
1558         if (md.getModifiers().isNative()&&!nativemethods.contains(md)) {
1559           //Need to build param structure for library code
1560           FlatMethod fm=state.getMethodFlat(md);
1561           generateTempStructs(fm, null);
1562           generateMethodParam(cn, md, null, output);
1563         }
1564       }
1565
1566     } else
1567       for(Iterator methodit=cn.getMethods(); methodit.hasNext();) {
1568         MethodDescriptor md=(MethodDescriptor)methodit.next();
1569         generateMethod(cn, md, null, headersout, output);
1570       }
1571   }
1572
1573   private void generateMethodParam(ClassDescriptor cn, MethodDescriptor md, LocalityBinding lb, PrintWriter output) {
1574     /* Output parameter structure */
1575     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
1576       ParamsObject objectparams=(ParamsObject) paramstable.get(lb!=null ? lb : md);
1577       if ((state.DSM||state.SINGLETM)&&lb!=null)
1578         output.println("struct "+cn.getSafeSymbol()+lb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params {");
1579       else
1580         output.println("struct "+cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params {");
1581       output.println("  int size;");
1582       output.println("  void * next;");      
1583       for(int i=0; i<objectparams.numPointers(); i++) {
1584         TempDescriptor temp=objectparams.getPointer(i);
1585         output.println("  struct "+temp.getType().getSafeSymbol()+" * "+temp.getSafeSymbol()+";");
1586       }
1587       output.println("};\n");
1588     }
1589   }
1590
1591   private void generateMethod(ClassDescriptor cn, MethodDescriptor md, LocalityBinding lb, PrintWriter headersout, PrintWriter output) {
1592     FlatMethod fm=state.getMethodFlat(md);
1593     generateTempStructs(fm, lb);
1594
1595     ParamsObject objectparams=(ParamsObject) paramstable.get(lb!=null ? lb : md);
1596     TempObject objecttemps=(TempObject) tempstable.get(lb!=null ? lb : md);
1597
1598     generateMethodParam(cn, md, lb, output);
1599
1600     /* Output temp structure */
1601     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
1602       if (state.DSM||state.SINGLETM)
1603         output.println("struct "+cn.getSafeSymbol()+lb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_locals {");
1604       else
1605         output.println("struct "+cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_locals {");
1606       output.println("  int size;");
1607       output.println("  void * next;");
1608       for(int i=0; i<objecttemps.numPointers(); i++) {
1609         TempDescriptor temp=objecttemps.getPointer(i);
1610         if (temp.getType().isNull())
1611           output.println("  void * "+temp.getSafeSymbol()+";");
1612         else
1613           output.println("  struct "+temp.getType().getSafeSymbol()+" * "+temp.getSafeSymbol()+";");
1614       }
1615       output.println("};\n");
1616     }
1617
1618     /********* Output method declaration ***********/
1619     if (state.DSM||state.SINGLETM) {
1620       headersout.println("#define D"+cn.getSafeSymbol()+lb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+" 1");
1621     } else {
1622       headersout.println("#define D"+cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+" 1");
1623     }
1624     /* First the return type */
1625     if (md.getReturnType()!=null) {
1626       if (md.getReturnType().isClass()||md.getReturnType().isArray())
1627         headersout.print("struct " + md.getReturnType().getSafeSymbol()+" * ");
1628       else
1629         headersout.print(md.getReturnType().getSafeSymbol()+" ");
1630     } else
1631       //catch the constructor case
1632       headersout.print("void ");
1633
1634     /* Next the method name */
1635     if (state.DSM||state.SINGLETM) {
1636       headersout.print(cn.getSafeSymbol()+lb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"(");
1637     } else {
1638       headersout.print(cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"(");
1639     }
1640     boolean printcomma=false;
1641     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
1642       if (state.DSM||state.SINGLETM) {
1643         headersout.print("struct "+cn.getSafeSymbol()+lb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params * "+paramsprefix);
1644       } else
1645         headersout.print("struct "+cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params * "+paramsprefix);
1646       printcomma=true;
1647     }
1648
1649     /*  Output parameter list*/
1650     for(int i=0; i<objectparams.numPrimitives(); i++) {
1651       TempDescriptor temp=objectparams.getPrimitive(i);
1652       if (printcomma)
1653         headersout.print(", ");
1654       printcomma=true;
1655       if (temp.getType().isClass()||temp.getType().isArray())
1656         headersout.print("struct " + temp.getType().getSafeSymbol()+" * "+temp.getSafeSymbol());
1657       else
1658         headersout.print(temp.getType().getSafeSymbol()+" "+temp.getSafeSymbol());
1659     }
1660     headersout.println(");\n");
1661   }
1662
1663
1664   /** This function outputs (1) structures that parameters are
1665    * passed in (when PRECISE GC is enabled) and (2) function
1666    * prototypes for the tasks */
1667
1668   private void generateTaskStructs(PrintWriter output, PrintWriter headersout) {
1669     /* Cycle through tasks */
1670     Iterator taskit=state.getTaskSymbolTable().getDescriptorsIterator();
1671
1672     while(taskit.hasNext()) {
1673       /* Classify parameters */
1674       TaskDescriptor task=(TaskDescriptor)taskit.next();
1675       FlatMethod fm=state.getMethodFlat(task);
1676       generateTempStructs(fm, null);
1677
1678       ParamsObject objectparams=(ParamsObject) paramstable.get(task);
1679       TempObject objecttemps=(TempObject) tempstable.get(task);
1680
1681       /* Output parameter structure */
1682       if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
1683         output.println("struct "+task.getSafeSymbol()+"_params {");
1684         output.println("  int size;");
1685         output.println("  void * next;");
1686         for(int i=0; i<objectparams.numPointers(); i++) {
1687           TempDescriptor temp=objectparams.getPointer(i);
1688           output.println("  struct "+temp.getType().getSafeSymbol()+" * "+temp.getSafeSymbol()+";");
1689         }
1690
1691         output.println("};\n");
1692         if ((objectparams.numPointers()+fm.numTags())>maxtaskparams) {
1693           maxtaskparams=objectparams.numPointers()+fm.numTags();
1694         }
1695       }
1696
1697       /* Output temp structure */
1698       if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
1699         output.println("struct "+task.getSafeSymbol()+"_locals {");
1700         output.println("  int size;");
1701         output.println("  void * next;");
1702         for(int i=0; i<objecttemps.numPointers(); i++) {
1703           TempDescriptor temp=objecttemps.getPointer(i);
1704           if (temp.getType().isNull())
1705             output.println("  void * "+temp.getSafeSymbol()+";");
1706           else if(temp.getType().isTag())
1707             output.println("  struct "+
1708                            (new TypeDescriptor(typeutil.getClass(TypeUtil.TagClass))).getSafeSymbol()+" * "+temp.getSafeSymbol()+";");
1709           else
1710             output.println("  struct "+temp.getType().getSafeSymbol()+" * "+temp.getSafeSymbol()+";");
1711         }
1712         output.println("};\n");
1713       }
1714
1715       /* Output task declaration */
1716       headersout.print("void " + task.getSafeSymbol()+"(");
1717
1718       boolean printcomma=false;
1719       if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
1720         headersout.print("struct "+task.getSafeSymbol()+"_params * "+paramsprefix);
1721       } else
1722         headersout.print("void * parameterarray[]");
1723       headersout.println(");\n");
1724     }
1725   }
1726
1727   /***** Generate code for FlatMethod fm. *****/
1728
1729   Hashtable<FlatAtomicEnterNode, AtomicRecord> atomicmethodmap;
1730   static int atomicmethodcount=0;
1731
1732
1733   BranchAnalysis branchanalysis;
1734   private void generateFlatMethod(FlatMethod fm, LocalityBinding lb, PrintWriter output) {
1735     if (State.PRINTFLAT)
1736       System.out.println(fm.printMethod());
1737     MethodDescriptor md=fm.getMethod();
1738     TaskDescriptor task=fm.getTask();
1739     ClassDescriptor cn=md!=null ? md.getClassDesc() : null;
1740     ParamsObject objectparams=(ParamsObject)paramstable.get(lb!=null ? lb : md!=null ? md : task);
1741
1742     HashSet<AtomicRecord> arset=null;
1743     branchanalysis=null;
1744
1745     if (state.DELAYCOMP&&!lb.isAtomic()&&lb.getHasAtomic()) {
1746       //create map
1747       if (atomicmethodmap==null)
1748         atomicmethodmap=new Hashtable<FlatAtomicEnterNode, AtomicRecord>();
1749
1750       //fix these so we get right strings for local variables
1751       localsprefixaddr=localsprefix;
1752       localsprefixderef=localsprefix+"->";
1753       arset=new HashSet<AtomicRecord>();
1754
1755       //build branchanalysis
1756       branchanalysis=new BranchAnalysis(locality, lb, delaycomp.getNotReady(lb), delaycomp.livecode(lb), state);
1757       
1758       //Generate commit methods here
1759       for(Iterator<FlatNode> fnit=fm.getNodeSet().iterator();fnit.hasNext();) {
1760         FlatNode fn=fnit.next();
1761         if (fn.kind()==FKind.FlatAtomicEnterNode&&
1762             locality.getAtomic(lb).get(fn.getPrev(0)).intValue()==0&&
1763             delaycomp.needsFission(lb, (FlatAtomicEnterNode) fn)) {
1764           //We have an atomic enter
1765           FlatAtomicEnterNode faen=(FlatAtomicEnterNode) fn;
1766           Set<FlatNode> exitset=faen.getExits();
1767           //generate header
1768           String methodname=md.getSymbol()+(atomicmethodcount++);
1769           AtomicRecord ar=new AtomicRecord();
1770           ar.name=methodname;
1771           arset.add(ar);
1772
1773           atomicmethodmap.put(faen, ar);
1774
1775           //build data structure declaration
1776           output.println("struct atomicprimitives_"+methodname+" {");
1777
1778           Set<FlatNode> recordset=delaycomp.livecode(lb);
1779           Set<TempDescriptor> liveinto=delaycomp.liveinto(lb, faen, recordset);
1780           Set<TempDescriptor> liveout=delaycomp.liveout(lb, faen);
1781           Set<TempDescriptor> liveoutvirtualread=delaycomp.liveoutvirtualread(lb, faen);
1782           ar.livein=liveinto;
1783           ar.reallivein=new HashSet(liveinto);
1784           ar.liveout=liveout;
1785           ar.liveoutvirtualread=liveoutvirtualread;
1786
1787
1788           for(Iterator<TempDescriptor> it=liveinto.iterator(); it.hasNext();) {
1789             TempDescriptor tmp=it.next();
1790             //remove the pointers
1791             if (tmp.getType().isPtr()) {
1792               it.remove();
1793             } else {
1794               //let's print it here
1795               output.println(tmp.getType().getSafeSymbol()+" "+tmp.getSafeSymbol()+";");
1796             }
1797           }
1798           for(Iterator<TempDescriptor> it=liveout.iterator(); it.hasNext();) {
1799             TempDescriptor tmp=it.next();
1800             //remove the pointers
1801             if (tmp.getType().isPtr()) {
1802               it.remove();
1803             } else if (!liveinto.contains(tmp)) {
1804               //let's print it here
1805               output.println(tmp.getType().getSafeSymbol()+" "+tmp.getSafeSymbol()+";");
1806             }
1807           }
1808           output.println("};");
1809
1810           //print out method name
1811           output.println("void "+methodname+"(struct "+ cn.getSafeSymbol()+lb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params * "+paramsprefix+", struct "+ cn.getSafeSymbol()+lb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_locals *"+localsprefix+", struct atomicprimitives_"+methodname+" * primitives) {");
1812           //build code for commit method
1813           
1814           //first define local primitives
1815           Set<TempDescriptor> alltemps=delaycomp.alltemps(lb, faen, recordset);
1816           for(Iterator<TempDescriptor> tmpit=alltemps.iterator();tmpit.hasNext();) {
1817             TempDescriptor tmp=tmpit.next();
1818             if (!tmp.getType().isPtr()) {
1819               if (liveinto.contains(tmp)||liveoutvirtualread.contains(tmp)) {
1820                 //read from live into set
1821                 output.println(tmp.getType().getSafeSymbol()+" "+tmp.getSafeSymbol()+"=primitives->"+tmp.getSafeSymbol()+";");
1822               } else {
1823                 //just define
1824                 output.println(tmp.getType().getSafeSymbol()+" "+tmp.getSafeSymbol()+";");
1825               }
1826             }
1827           }
1828           //turn off write barrier generation
1829           wb.turnoff();
1830           state.SINGLETM=false;
1831           generateCode(faen, fm, lb, exitset, output, false);
1832           state.SINGLETM=true;
1833           //turn on write barrier generation
1834           wb.turnon();
1835           output.println("}\n\n");
1836         }
1837       }
1838     }
1839     //redefine these back to normal
1840
1841     localsprefixaddr="&"+localsprefix;
1842     localsprefixderef=localsprefix+".";
1843
1844     generateHeader(fm, lb, md!=null ? md : task,output);
1845     TempObject objecttemp=(TempObject) tempstable.get(lb!=null ? lb : md!=null ? md : task);
1846
1847     if (state.DELAYCOMP&&!lb.isAtomic()&&lb.getHasAtomic()) {
1848       for(Iterator<AtomicRecord> arit=arset.iterator();arit.hasNext();) {
1849         AtomicRecord ar=arit.next();
1850         output.println("struct atomicprimitives_"+ar.name+" primitives_"+ar.name+";");
1851       }
1852     }
1853
1854     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
1855       if (md!=null&&(state.DSM||state.SINGLETM))
1856         output.print("   struct "+cn.getSafeSymbol()+lb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_locals "+localsprefix+"={");
1857       else if (md!=null&&!(state.DSM||state.SINGLETM))
1858         output.print("   struct "+cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_locals "+localsprefix+"={");
1859       else
1860         output.print("   struct "+task.getSafeSymbol()+"_locals "+localsprefix+"={");
1861       output.print(objecttemp.numPointers()+",");
1862       output.print(paramsprefix);
1863       for(int j=0; j<objecttemp.numPointers(); j++)
1864         output.print(", NULL");
1865       output.println("};");
1866     }
1867
1868     for(int i=0; i<objecttemp.numPrimitives(); i++) {
1869       TempDescriptor td=objecttemp.getPrimitive(i);
1870       TypeDescriptor type=td.getType();
1871       if (type.isNull())
1872         output.println("   void * "+td.getSafeSymbol()+";");
1873       else if (type.isClass()||type.isArray())
1874         output.println("   struct "+type.getSafeSymbol()+" * "+td.getSafeSymbol()+";");
1875       else
1876         output.println("   "+type.getSafeSymbol()+" "+td.getSafeSymbol()+";");
1877     }
1878
1879
1880     if( state.MLP || state.OOOJAVA ) {      
1881       if( fm.getNext(0) instanceof FlatSESEEnterNode ) {
1882         FlatSESEEnterNode callerSESEplaceholder = (FlatSESEEnterNode) fm.getNext( 0 );
1883         if( (state.MLP && callerSESEplaceholder != mlpa.getMainSESE()) ||  
1884             (state.OOOJAVA && callerSESEplaceholder != oooa.getMainSESE())
1885         ) {
1886           // declare variables for naming static SESE's
1887           output.println("   /* static SESE names */");
1888           Iterator<SESEandAgePair> pItr = callerSESEplaceholder.getNeededStaticNames().iterator();
1889           while( pItr.hasNext() ) {
1890             SESEandAgePair pair = pItr.next();
1891             output.println("   void* "+pair+";");
1892           }
1893
1894           // declare variables for tracking dynamic sources
1895           output.println("   /* dynamic variable sources */");
1896           Iterator<TempDescriptor> dynSrcItr = callerSESEplaceholder.getDynamicVarSet().iterator();
1897           while( dynSrcItr.hasNext() ) {
1898             TempDescriptor dynSrcVar = dynSrcItr.next();
1899             output.println("   SESEcommon*  "+dynSrcVar+"_srcSESE = NULL;");
1900             output.println("   INTPTR       "+dynSrcVar+"_srcOffset;");
1901           }    
1902         }
1903       }
1904       
1905       // set up related allocation sites's waiting queues
1906       // eom
1907       if(state.MLP){
1908         ConflictGraph graph = null;
1909         graph = mlpa.getConflictGraphResults().get(fm);
1910         if (graph != null && graph.hasConflictEdge()) {
1911           output.println("   /* set up waiting queues */");
1912           output.println("   int numMemoryQueue=0;");
1913           output.println("   int memoryQueueItemID=0;");
1914           HashSet<SESELock> lockSet = mlpa.getConflictGraphLockMap().get(
1915               graph);
1916           System.out.println("#lockSet="+lockSet.hashCode());
1917           System.out.println("lockset="+lockSet);
1918           for (Iterator iterator = lockSet.iterator(); iterator.hasNext();) {
1919             SESELock seseLock = (SESELock) iterator.next();
1920             System.out.println("id="+seseLock.getID());
1921             System.out.println("#="+seseLock);
1922           }
1923           System.out.println("size="+lockSet.size());
1924           if (lockSet.size() > 0) {
1925             output.println("   numMemoryQueue=" + lockSet.size() + ";");
1926             output.println("   runningSESE->numMemoryQueue=numMemoryQueue;");
1927             output.println("   runningSESE->memoryQueueArray=mlpCreateMemoryQueueArray(numMemoryQueue);");
1928             output.println();
1929           }
1930         }
1931       }else{
1932         FlatSESEEnterNode callerSESEplaceholder = (FlatSESEEnterNode) fm.getNext( 0 );
1933         if(callerSESEplaceholder!= oooa.getMainSESE()){
1934           Analysis.OoOJava.ConflictGraph graph = oooa.getConflictGraph(callerSESEplaceholder);       
1935           if (graph != null && graph.hasConflictEdge()) {          
1936             output.println("   // set up waiting queues ");
1937             output.println("   int numMemoryQueue=0;");
1938             output.println("   int memoryQueueItemID=0;");
1939             Set<Analysis.OoOJava.SESELock> lockSet = oooa.getLockMappings(graph);
1940             System.out.println("#lockSet="+lockSet.hashCode());
1941             System.out.println("lockset="+lockSet);
1942             for (Iterator iterator = lockSet.iterator(); iterator.hasNext();) {
1943               Analysis.OoOJava.SESELock seseLock = (Analysis.OoOJava.SESELock) iterator.next();
1944               System.out.println("id="+seseLock.getID());
1945               System.out.println("#="+seseLock);
1946             }
1947             System.out.println("size="+lockSet.size());
1948             if (lockSet.size() > 0) {
1949               output.println("   numMemoryQueue=" + lockSet.size() + ";");
1950               output.println("   runningSESE->numMemoryQueue=numMemoryQueue;");
1951               output.println("   runningSESE->memoryQueueArray=mlpCreateMemoryQueueArray(numMemoryQueue);");
1952               output.println();
1953             }
1954           }
1955         }
1956       }
1957         
1958     }
1959
1960
1961     /* Check to see if we need to do a GC if this is a
1962      * multi-threaded program...*/
1963
1964     if (((state.MLP||state.OOOJAVA||state.THREAD||state.DSM||state.SINGLETM)&&GENERATEPRECISEGC) 
1965         || this.state.MULTICOREGC) {
1966       //Don't bother if we aren't in recursive methods...The loops case will catch it
1967       if (callgraph.getAllMethods(md).contains(md)) {
1968         if (state.DSM&&lb.isAtomic())
1969           output.println("if (needtocollect) checkcollect2("+localsprefixaddr+");");
1970         else if (this.state.MULTICOREGC) {
1971           output.println("if(gcflag) gc("+localsprefixaddr+");");
1972         } else {
1973           output.println("if (unlikely(needtocollect)) checkcollect("+localsprefixaddr+");");
1974         }
1975       }
1976     }
1977
1978     generateCode(fm.getNext(0), fm, lb, null, output, true);
1979
1980     output.println("}\n\n");
1981   }
1982
1983
1984   protected void initializeSESE( FlatSESEEnterNode fsen ) {
1985
1986     FlatMethod       fm = fsen.getfmEnclosing();
1987     MethodDescriptor md = fm.getMethod();
1988     ClassDescriptor  cn = md.getClassDesc();
1989     
1990         
1991     // Creates bogus method descriptor to index into tables
1992     Modifiers modBogus = new Modifiers();
1993     MethodDescriptor mdBogus = 
1994       new MethodDescriptor( modBogus, 
1995                             new TypeDescriptor( TypeDescriptor.VOID ), 
1996                             "sese_"+fsen.getPrettyIdentifier()+fsen.getIdentifier()
1997                             );
1998     
1999     mdBogus.setClassDesc( fsen.getcdEnclosing() );
2000     FlatMethod fmBogus = new FlatMethod( mdBogus, null );
2001     fsen.setfmBogus( fmBogus );
2002     fsen.setmdBogus( mdBogus );
2003
2004     Set<TempDescriptor> inSetAndOutSet = new HashSet<TempDescriptor>();
2005     inSetAndOutSet.addAll( fsen.getInVarSet() );
2006     inSetAndOutSet.addAll( fsen.getOutVarSet() );
2007
2008     // Build paramsobj for bogus method descriptor
2009     ParamsObject objectparams = new ParamsObject( mdBogus, tag++ );
2010     paramstable.put( mdBogus, objectparams );
2011     
2012     Iterator<TempDescriptor> itr = inSetAndOutSet.iterator();
2013     while( itr.hasNext() ) {
2014       TempDescriptor temp = itr.next();
2015       TypeDescriptor type = temp.getType();
2016       if( type.isPtr() ) {
2017         objectparams.addPtr( temp );
2018       } else {
2019         objectparams.addPrim( temp );
2020       }
2021     }
2022         
2023     // Build normal temp object for bogus method descriptor
2024     TempObject objecttemps = new TempObject( objectparams, mdBogus, tag++ );
2025     tempstable.put( mdBogus, objecttemps );
2026
2027     for( Iterator nodeit = fsen.getNodeSet().iterator(); nodeit.hasNext(); ) {
2028       FlatNode         fn     = (FlatNode)nodeit.next();
2029       TempDescriptor[] writes = fn.writesTemps();
2030
2031       for( int i = 0; i < writes.length; i++ ) {
2032         TempDescriptor temp = writes[i];
2033         TypeDescriptor type = temp.getType();
2034
2035         if( type.isPtr() ) {
2036           objecttemps.addPtr( temp );
2037         } else {
2038           objecttemps.addPrim( temp );
2039         }
2040       }
2041     }
2042   }
2043
2044   // used when generating the specific SESE record struct
2045   // to remember the FIRST field name of sese records 
2046   // that the current SESE depends on--we need to know the
2047   // offset to the first one for garbage collection
2048   protected void addingDepRecField( FlatSESEEnterNode fsen,
2049                                     String            field ) {
2050     if( fsen.getFirstDepRecField() == null ) {
2051       fsen.setFirstDepRecField( field );
2052     }
2053     fsen.incNumDepRecs();
2054   }
2055
2056   protected void generateMethodSESE(FlatSESEEnterNode fsen,
2057                                     LocalityBinding lb,
2058                                     PrintWriter outputStructs,
2059                                     PrintWriter outputMethHead,
2060                                     PrintWriter outputMethods
2061                                     ) {
2062
2063     ParamsObject objectparams = (ParamsObject) paramstable.get( fsen.getmdBogus() );                
2064     TempObject   objecttemps  = (TempObject)   tempstable .get( fsen.getmdBogus() );
2065     
2066     // generate locals structure
2067     outputStructs.println("struct "+
2068                           fsen.getcdEnclosing().getSafeSymbol()+
2069                           fsen.getmdBogus().getSafeSymbol()+"_"+
2070                           fsen.getmdBogus().getSafeMethodDescriptor()+
2071                           "_locals {");
2072     outputStructs.println("  int size;");
2073     outputStructs.println("  void * next;");
2074     for(int i=0; i<objecttemps.numPointers(); i++) {
2075       TempDescriptor temp=objecttemps.getPointer(i);
2076
2077       if (temp.getType().isNull())
2078         outputStructs.println("  void * "+temp.getSafeSymbol()+";");
2079       else
2080         outputStructs.println("  struct "+
2081                               temp.getType().getSafeSymbol()+" * "+
2082                               temp.getSafeSymbol()+";");
2083     }
2084     outputStructs.println("};\n");
2085
2086     
2087     // divide in-set and out-set into objects and primitives to prep
2088     // for the record generation just below
2089     Set<TempDescriptor> inSetAndOutSet = new HashSet<TempDescriptor>();
2090     inSetAndOutSet.addAll( fsen.getInVarSet() );
2091     inSetAndOutSet.addAll( fsen.getOutVarSet() );
2092
2093     Set<TempDescriptor> inSetAndOutSetObjs  = new HashSet<TempDescriptor>();
2094     Set<TempDescriptor> inSetAndOutSetPrims = new HashSet<TempDescriptor>();
2095
2096     Iterator<TempDescriptor> itr = inSetAndOutSet.iterator();
2097     while( itr.hasNext() ) {
2098       TempDescriptor temp = itr.next();
2099       TypeDescriptor type = temp.getType();
2100       if( type.isPtr() ) {
2101         inSetAndOutSetObjs.add( temp );
2102       } else {
2103         inSetAndOutSetPrims.add( temp );
2104       }
2105     }
2106
2107
2108     // generate the SESE record structure
2109     outputStructs.println(fsen.getSESErecordName()+" {");
2110     
2111     // data common to any SESE, and it must be placed first so
2112     // a module that doesn't know what kind of SESE record this
2113     // is can cast the pointer to a common struct
2114     outputStructs.println("  SESEcommon common;");
2115
2116     // then garbage list stuff
2117     outputStructs.println("  /* next is in-set and out-set objects that look like a garbage list */");
2118     outputStructs.println("  int size;");
2119     outputStructs.println("  void * next;");
2120
2121     // I think that the set of TempDescriptors inSetAndOutSetObjs
2122     // calculated above should match the pointer object params
2123     // used in the following code, but let's just leave the working
2124     // implementation unless there is actually a problem...
2125     for(int i=0; i<objectparams.numPointers(); i++) {
2126       TempDescriptor temp=objectparams.getPointer(i);
2127       if (temp.getType().isNull())
2128         outputStructs.println("  void * "+temp.getSafeSymbol()+
2129                               ";  /* in-or-out-set obj in gl */");
2130       else
2131         outputStructs.println("  struct "+temp.getType().getSafeSymbol()+" * "+
2132                               temp.getSafeSymbol()+"; /* in-or-out-set obj in gl */");
2133     }
2134     
2135     outputStructs.println("  /* next is primitives for in-set and out-set and dynamic tracking */");
2136
2137     Iterator<TempDescriptor> itrPrims = inSetAndOutSetPrims.iterator();
2138     while( itrPrims.hasNext() ) {
2139       TempDescriptor temp = itrPrims.next();
2140       TypeDescriptor type = temp.getType();
2141       if(type.isPrimitive()){
2142           outputStructs.println("  "+temp.getType().getSafeSymbol()+" "+temp.getSafeSymbol()+"; /* in-set or out-set primitive */");
2143       }      
2144     }
2145     
2146     // note that the sese record pointer will be added below, just primitive part of tracking here
2147     Iterator<TempDescriptor> itrDynInVars = fsen.getDynamicInVarSet().iterator();
2148     while( itrDynInVars.hasNext() ) {
2149       TempDescriptor dynInVar = itrDynInVars.next();
2150       outputStructs.println("  INTPTR "+dynInVar+"_srcOffset; /* dynamic tracking primitive */");
2151     }  
2152     
2153     
2154     outputStructs.println("  /* everything after this should be pointers to an SESE record */" );
2155
2156     // other half of info for dynamic tracking, the SESE record pointer
2157     itrDynInVars = fsen.getDynamicInVarSet().iterator();
2158     while( itrDynInVars.hasNext() ) {
2159       TempDescriptor dynInVar = itrDynInVars.next();
2160       String depRecField = dynInVar+"_srcSESE";
2161       outputStructs.println("  SESEcommon* "+depRecField+";");
2162       addingDepRecField( fsen, depRecField );
2163     }  
2164     
2165     // statically known sese sources are record pointers, too
2166     Iterator<SESEandAgePair> itrStaticInVarSrcs = fsen.getStaticInVarSrcs().iterator();
2167     while( itrStaticInVarSrcs.hasNext() ) {
2168       SESEandAgePair srcPair = itrStaticInVarSrcs.next();
2169       outputStructs.println("  "+srcPair.getSESE().getSESErecordName()+"* "+srcPair+";");
2170       addingDepRecField( fsen, srcPair.toString() );
2171     }    
2172     
2173     if( fsen.getFirstDepRecField() != null ) {
2174       outputStructs.println("  /* compiler believes first dependent SESE record field above is: "+
2175                             fsen.getFirstDepRecField()+" */" );
2176     }
2177
2178     outputStructs.println("};\n");
2179
2180     
2181     // write method declaration to header file
2182     outputMethHead.print("void ");
2183     outputMethHead.print(fsen.getSESEmethodName()+"(");
2184     outputMethHead.print(fsen.getSESErecordName()+"* "+paramsprefix);
2185     outputMethHead.println(");\n");
2186
2187
2188     generateFlatMethodSESE( fsen.getfmBogus(), 
2189                             fsen.getcdEnclosing(), 
2190                             fsen, 
2191                             fsen.getFlatExit(), 
2192                             outputMethods );
2193   }
2194
2195   private void generateFlatMethodSESE(FlatMethod fm, 
2196                                       ClassDescriptor cn, 
2197                                       FlatSESEEnterNode fsen, 
2198                                       FlatSESEExitNode  seseExit, 
2199                                       PrintWriter output
2200                                       ) {
2201
2202     MethodDescriptor md=fm.getMethod();
2203
2204     output.print("void ");
2205     output.print(fsen.getSESEmethodName()+"(");
2206     output.print(fsen.getSESErecordName()+"* "+paramsprefix);
2207     output.println("){\n");
2208
2209
2210     TempObject objecttemp=(TempObject) tempstable.get(md);
2211
2212     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
2213       output.print("   struct "+cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_locals "+localsprefix+"={");
2214       output.print(objecttemp.numPointers()+",");
2215       output.print("&(((SESEcommon*)(___params___))[1])");
2216       for(int j=0; j<objecttemp.numPointers(); j++)
2217         output.print(", NULL");
2218       output.println("};");
2219     }
2220
2221     output.println("   /* regular local primitives */");
2222     for(int i=0; i<objecttemp.numPrimitives(); i++) {
2223       TempDescriptor td=objecttemp.getPrimitive(i);
2224       TypeDescriptor type=td.getType();
2225       if (type.isNull())
2226         output.println("   void * "+td.getSafeSymbol()+";");
2227       else if (type.isClass()||type.isArray())
2228         output.println("   struct "+type.getSafeSymbol()+" * "+td.getSafeSymbol()+";");
2229       else
2230         output.println("   "+type.getSafeSymbol()+" "+td.getSafeSymbol()+";");
2231     }
2232
2233
2234     // declare variables for naming static SESE's
2235     output.println("   /* static SESE names */");
2236     Iterator<SESEandAgePair> pItr = fsen.getNeededStaticNames().iterator();
2237     while( pItr.hasNext() ) {
2238       SESEandAgePair pair = pItr.next();
2239       output.println("   SESEcommon* "+pair+" = NULL;");
2240     }
2241
2242     // declare variables for tracking dynamic sources
2243     output.println("   /* dynamic variable sources */");
2244     Iterator<TempDescriptor> dynSrcItr = fsen.getDynamicVarSet().iterator();
2245     while( dynSrcItr.hasNext() ) {
2246       TempDescriptor dynSrcVar = dynSrcItr.next();
2247       output.println("   SESEcommon*  "+dynSrcVar+"_srcSESE = NULL;");
2248       output.println("   INTPTR       "+dynSrcVar+"_srcOffset;");
2249     }    
2250
2251     // declare local temps for in-set primitives, and if it is
2252     // a ready-source variable, get the value from the record
2253     output.println("   /* local temps for in-set primitives */");
2254     Iterator<TempDescriptor> itrInSet = fsen.getInVarSet().iterator();
2255     while( itrInSet.hasNext() ) {
2256       TempDescriptor temp = itrInSet.next();
2257       TypeDescriptor type = temp.getType();
2258       if( !type.isPtr() ) {
2259         if( fsen.getReadyInVarSet().contains( temp ) ) {
2260           output.println("   "+type+" "+temp+" = "+paramsprefix+"->"+temp+";");
2261         } else {
2262           output.println("   "+type+" "+temp+";");
2263         }
2264       }
2265     }    
2266
2267     // declare local temps for out-set primitives if its not already
2268     // in the in-set, and it's value will get written so no problem
2269     output.println("   /* local temp for out-set prim, not already in the in-set */");
2270     Iterator<TempDescriptor> itrOutSet = fsen.getOutVarSet().iterator();
2271     while( itrOutSet.hasNext() ) {
2272       TempDescriptor temp = itrOutSet.next();
2273       TypeDescriptor type = temp.getType();
2274       if( !type.isPtr() && !fsen.getInVarSet().contains( temp ) ) {
2275         output.println("   "+type+" "+temp+";");       
2276       }
2277     }    
2278
2279
2280     // initialize thread-local var to a the task's record, which is fused
2281     // with the param list
2282     output.println("   ");
2283     output.println("   /* code of this task's body should use this to access the running task record */");
2284     output.println("   runningSESE = &(___params___->common);");
2285     output.println("   ");
2286     
2287     // setup memory queue
2288     // eom
2289     if(state.OOOJAVA){
2290     output.println("   // set up memory queues ");
2291         output.println("   int numMemoryQueue=0;");
2292         output.println("   int memoryQueueItemID=0;");
2293         Analysis.OoOJava.ConflictGraph graph = oooa.getConflictGraph(fsen);
2294         if (graph != null && graph.hasConflictEdge()) {
2295                 output.println("   {");
2296                 Set<Analysis.OoOJava.SESELock> lockSet = oooa.getLockMappings(graph);
2297                 System.out.println("#lockSet="+lockSet);
2298                 if (lockSet.size() > 0) {
2299                         output.println("   numMemoryQueue=" + lockSet.size() + ";");
2300                         output.println("   runningSESE->numMemoryQueue=numMemoryQueue;");
2301                         output.println("   runningSESE->memoryQueueArray=mlpCreateMemoryQueueArray(numMemoryQueue);");
2302                         output.println();
2303                 }
2304                 output.println("   }");
2305         }
2306     }else{
2307       output.println("   // set up memory queues ");
2308       output.println("   int numMemoryQueue=0;");
2309       output.println("   int memoryQueueItemID=0;");
2310       ConflictGraph graph = null;
2311       graph = mlpa.getConflictGraphResults().get(fsen);
2312       if (graph != null && graph.hasConflictEdge()) {
2313         output.println("   {");
2314         HashSet<SESELock> lockSet = mlpa.getConflictGraphLockMap().get(
2315             graph);
2316         System.out.println("#lockSet="+lockSet);
2317
2318         if (lockSet.size() > 0) {
2319           output.println("   numMemoryQueue=" + lockSet.size() + "; ");
2320           output.println("   runningSESE->numMemoryQueue=numMemoryQueue;");
2321           output.println("   runningSESE->memoryQueueArray=mlpCreateMemoryQueueArray(numMemoryQueue);");
2322           output.println();
2323         }
2324         output.println("   }");
2325       }
2326        
2327     }
2328
2329
2330     // set up a task's mem pool to recycle the allocation of children tasks
2331     // don't bother if the task never has children (a leaf task)
2332     output.println( "#ifndef OOO_DISABLE_TASKMEMPOOL" );
2333     if( !fsen.getIsLeafSESE() ) {
2334       output.println("   runningSESE->taskRecordMemPool = poolcreate( "+
2335                      maxTaskRecSizeStr+" );");
2336     } else {
2337       // make it clear we purposefully did not initialize this
2338       output.println("   runningSESE->taskRecordMemPool = (MemPool*)0x1;");
2339     }
2340     output.println( "#endif // OOO_DISABLE_TASKMEMPOOL" );
2341
2342
2343     // copy in-set into place, ready vars were already 
2344     // copied when the SESE was issued
2345     Iterator<TempDescriptor> tempItr;
2346
2347     // static vars are from a known SESE
2348     output.println("   // copy variables from static sources");
2349     tempItr = fsen.getStaticInVarSet().iterator();
2350     while( tempItr.hasNext() ) {
2351       TempDescriptor temp = tempItr.next();
2352       VariableSourceToken vst = fsen.getStaticInVarSrc( temp );
2353       SESEandAgePair srcPair = new SESEandAgePair( vst.getSESE(), vst.getAge() );
2354       output.println("   "+generateTemp( fsen.getfmBogus(), temp, null )+
2355                      " = "+paramsprefix+"->"+srcPair+"->"+vst.getAddrVar()+";");
2356     }
2357     
2358     output.println("   // decrement references to static sources");
2359     for( Iterator<SESEandAgePair> pairItr = fsen.getStaticInVarSrcs().iterator();
2360          pairItr.hasNext();
2361          ) {
2362       SESEandAgePair srcPair = pairItr.next();
2363       output.println("#ifndef OOO_DISABLE_TASKMEMPOOL" );
2364       output.println("   {");
2365       output.println("     SESEcommon* src = &("+paramsprefix+"->"+srcPair+"->common);");
2366       output.println("     RELEASE_REFERENCE_TO( src );");
2367       output.println("   }");
2368       output.println("#endif // OOO_DISABLE_TASKMEMPOOL" );
2369     }
2370
2371
2372     // dynamic vars come from an SESE and src
2373     output.println("     // copy variables from dynamic sources");
2374     tempItr = fsen.getDynamicInVarSet().iterator();
2375     while( tempItr.hasNext() ) {
2376       TempDescriptor temp = tempItr.next();
2377       TypeDescriptor type = temp.getType();
2378       
2379       // go grab it from the SESE source
2380       output.println("   if( "+paramsprefix+"->"+temp+"_srcSESE != NULL ) {");
2381
2382       String typeStr;
2383       if( type.isNull() ) {
2384         typeStr = "void*";
2385       } else if( type.isClass() || type.isArray() ) {
2386         typeStr = "struct "+type.getSafeSymbol()+"*";
2387       } else {
2388         typeStr = type.getSafeSymbol();
2389       }
2390       
2391       output.println("     "+generateTemp( fsen.getfmBogus(), temp, null )+
2392                      " = *(("+typeStr+"*) ("+
2393                      paramsprefix+"->"+temp+"_srcSESE + "+
2394                      paramsprefix+"->"+temp+"_srcOffset));");
2395
2396       output.println("#ifndef OOO_DISABLE_TASKMEMPOOL" );
2397       output.println("     SESEcommon* src = "+paramsprefix+"->"+temp+"_srcSESE;");
2398       output.println("     RELEASE_REFERENCE_TO( src );");
2399       output.println("#endif // OOO_DISABLE_TASKMEMPOOL" );
2400
2401       // or if the source was our parent, its already in our record to grab
2402       output.println("   } else {");
2403       output.println("     "+generateTemp( fsen.getfmBogus(), temp, null )+
2404                            " = "+paramsprefix+"->"+temp+";");
2405       output.println("   }");
2406     }
2407
2408     // Check to see if we need to do a GC if this is a
2409     // multi-threaded program...    
2410     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
2411         output.println("if (unlikely(needtocollect)) checkcollect("+localsprefixaddr+");");
2412       //Don't bother if we aren't in recursive methods...The loops case will catch it
2413 //      if (callgraph.getAllMethods(md).contains(md)) {
2414 //        if(this.state.MULTICOREGC) {
2415 //          output.println("if(gcflag) gc("+localsprefixaddr+");");
2416 //        } else {
2417 //        output.println("if (unlikely(needtocollect)) checkcollect("+localsprefixaddr+");");
2418 //      }
2419 //      }
2420     }    
2421
2422     if( state.COREPROF ) {
2423       output.println("#ifdef CP_EVENTID_TASKEXECUTE");
2424       output.println("   CP_LOGEVENT( CP_EVENTID_TASKEXECUTE, CP_EVENTTYPE_BEGIN );");
2425       output.println("#endif");
2426     }
2427
2428     HashSet<FlatNode> exitset=new HashSet<FlatNode>();
2429     exitset.add(seseExit);    
2430     generateCode(fsen.getNext(0), fm, null, exitset, output, true);
2431     output.println("}\n\n");
2432     
2433   }
2434
2435
2436   // when a new mlp thread is created for an issued SESE, it is started
2437   // by running this method which blocks on a cond variable until
2438   // it is allowed to transition to execute.  Then a case statement
2439   // allows it to invoke the method with the proper SESE body, and after
2440   // exiting the SESE method, executes proper SESE exit code before the
2441   // thread can be destroyed
2442   private void generateSESEinvocationMethod(PrintWriter outmethodheader,
2443                                             PrintWriter outmethod
2444                                             ) {
2445
2446     outmethodheader.println("void* invokeSESEmethod( void* seseRecord );");
2447     outmethod.println(      "void* invokeSESEmethod( void* seseRecord ) {");
2448     outmethod.println(      "  int status;");
2449     outmethod.println(      "  char errmsg[128];");
2450
2451     // generate a case for each SESE class that can be invoked
2452     outmethod.println(      "  switch( *((int*)seseRecord) ) {");
2453     outmethod.println(      "    ");
2454     Iterator<FlatSESEEnterNode> seseit;
2455     if(state.MLP){
2456       seseit=mlpa.getAllSESEs().iterator();
2457     }else{
2458       seseit=oooa.getAllSESEs().iterator();
2459     }
2460     while(seseit.hasNext()){
2461       FlatSESEEnterNode fsen = seseit.next();
2462
2463       outmethod.println(    "    /* "+fsen.getPrettyIdentifier()+" */");
2464       outmethod.println(    "    case "+fsen.getIdentifier()+":");
2465       outmethod.println(    "      "+fsen.getSESEmethodName()+"( seseRecord );");  
2466       
2467       if( (state.MLP && fsen.equals( mlpa.getMainSESE() )) || 
2468           (state.OOOJAVA && fsen.equals( oooa.getMainSESE() ))
2469       ) {
2470         outmethod.println(  "      /* work scheduler works forever, explicitly exit */");
2471         outmethod.println(  "      CP_EXIT();");
2472         outmethod.println(  "      CP_DUMP();");        
2473         outmethod.println(  "      workScheduleExit();");
2474         outmethod.println(  "      exit( 0 );");
2475       }
2476
2477       outmethod.println(    "      break;");
2478       outmethod.println(    "");
2479     }
2480
2481     // default case should never be taken, error out
2482     outmethod.println(      "    default:");
2483     outmethod.println(      "      printf(\"Error: unknown SESE class ID in invoke method.\\n\");");
2484     outmethod.println(      "      exit(-30);");
2485     outmethod.println(      "      break;");
2486     outmethod.println(      "  }");
2487     outmethod.println(      "  return NULL;");
2488     outmethod.println(      "}\n\n");
2489   }
2490
2491
2492   protected void generateCode(FlatNode first,
2493                               FlatMethod fm,
2494                               LocalityBinding lb,
2495                               Set<FlatNode> stopset,
2496                               PrintWriter output, boolean firstpass) {
2497
2498     /* Assign labels to FlatNode's if necessary.*/
2499
2500     Hashtable<FlatNode, Integer> nodetolabel;
2501
2502     if (state.DELAYCOMP&&!firstpass)
2503       nodetolabel=dcassignLabels(first, stopset);      
2504     else
2505       nodetolabel=assignLabels(first, stopset);      
2506     
2507     Set<FlatNode> storeset=null;
2508     HashSet<FlatNode> genset=null;
2509     HashSet<FlatNode> refset=null;
2510     Set<FlatNode> unionset=null;
2511
2512     if (state.DELAYCOMP&&!lb.isAtomic()&&lb.getHasAtomic()) {
2513       storeset=delaycomp.livecode(lb);
2514       genset=new HashSet<FlatNode>();
2515       if (state.STMARRAY&&!state.DUALVIEW) {
2516         refset=new HashSet<FlatNode>();
2517         refset.addAll(delaycomp.getDeref(lb));
2518         refset.removeAll(delaycomp.getCannotDelay(lb));
2519         refset.removeAll(delaycomp.getOther(lb));
2520       }
2521       if (firstpass) {
2522         genset.addAll(delaycomp.getCannotDelay(lb));
2523         genset.addAll(delaycomp.getOther(lb));
2524       } else {
2525         genset.addAll(delaycomp.getNotReady(lb));
2526         if (state.STMARRAY&&!state.DUALVIEW) {
2527           genset.removeAll(refset);
2528         }
2529       }
2530       unionset=new HashSet<FlatNode>();
2531       unionset.addAll(storeset);
2532       unionset.addAll(genset);
2533       if (state.STMARRAY&&!state.DUALVIEW)
2534         unionset.addAll(refset);
2535     }
2536     
2537     /* Do the actual code generation */
2538     FlatNode current_node=null;
2539     HashSet tovisit=new HashSet();
2540     HashSet visited=new HashSet();
2541     if (!firstpass)
2542       tovisit.add(first.getNext(0));
2543     else
2544       tovisit.add(first);
2545     while(current_node!=null||!tovisit.isEmpty()) {
2546       if (current_node==null) {
2547         current_node=(FlatNode)tovisit.iterator().next();
2548         tovisit.remove(current_node);
2549       } else if (tovisit.contains(current_node)) {
2550         tovisit.remove(current_node);
2551       }
2552       visited.add(current_node);
2553       if (nodetolabel.containsKey(current_node)) {
2554         output.println("L"+nodetolabel.get(current_node)+":");
2555       }
2556       if (state.INSTRUCTIONFAILURE) {
2557         if (state.THREAD||state.DSM||state.SINGLETM) {
2558           output.println("if ((++instructioncount)>failurecount) {instructioncount=0;injectinstructionfailure();}");
2559         } else
2560           output.println("if ((--instructioncount)==0) injectinstructionfailure();");
2561       }
2562       if (current_node.numNext()==0||stopset!=null&&stopset.contains(current_node)) {
2563         output.print("   ");
2564         if (!state.DELAYCOMP||firstpass) {
2565           generateFlatNode(fm, lb, current_node, output);
2566         } else {
2567           //store primitive variables in out set
2568           AtomicRecord ar=atomicmethodmap.get((FlatAtomicEnterNode)first);
2569           Set<TempDescriptor> liveout=ar.liveout;
2570           for(Iterator<TempDescriptor> tmpit=liveout.iterator();tmpit.hasNext();) {
2571             TempDescriptor tmp=tmpit.next();
2572             output.println("primitives->"+tmp.getSafeSymbol()+"="+tmp.getSafeSymbol()+";");
2573           }
2574         }
2575         if ((state.MLP || state.OOOJAVA) && stopset!=null) {
2576           assert first.getPrev( 0 ) instanceof FlatSESEEnterNode;
2577           assert current_node       instanceof FlatSESEExitNode;
2578           FlatSESEEnterNode fsen = (FlatSESEEnterNode) first.getPrev( 0 );
2579           FlatSESEExitNode  fsxn = (FlatSESEExitNode)  current_node;
2580           assert fsen.getFlatExit().equals( fsxn );
2581           assert fsxn.getFlatEnter().equals( fsen );
2582         }
2583         if (current_node.kind()!=FKind.FlatReturnNode) {
2584           output.println("   return;");
2585         }
2586         current_node=null;
2587       } else if(current_node.numNext()==1) {
2588         FlatNode nextnode;
2589         if ((state.MLP|| state.OOOJAVA) && 
2590             current_node.kind()==FKind.FlatSESEEnterNode && 
2591             !((FlatSESEEnterNode)current_node).getIsCallerSESEplaceholder()
2592            ) {
2593           FlatSESEEnterNode fsen = (FlatSESEEnterNode)current_node;
2594           generateFlatNode(fm, lb, current_node, output);
2595           nextnode=fsen.getFlatExit().getNext(0);
2596         } else if (state.DELAYCOMP) {
2597           boolean specialprimitive=false;
2598           //skip literals...no need to add extra overhead
2599           if (storeset!=null&&storeset.contains(current_node)&&current_node.kind()==FKind.FlatLiteralNode) {
2600             TypeDescriptor typedesc=((FlatLiteralNode)current_node).getType();
2601             if (!typedesc.isClass()&&!typedesc.isArray()) {
2602               specialprimitive=true;
2603             }
2604           }
2605
2606           if (genset==null||genset.contains(current_node)||specialprimitive)
2607             generateFlatNode(fm, lb, current_node, output);
2608           if (state.STMARRAY&&!state.DUALVIEW&&refset!=null&&refset.contains(current_node)) {
2609             //need to acquire lock
2610             handleArrayDeref(fm, lb, current_node, output, firstpass);
2611           }
2612           if (storeset!=null&&storeset.contains(current_node)&&!specialprimitive) {
2613             TempDescriptor wrtmp=current_node.writesTemps()[0];
2614             if (firstpass) {
2615               //need to store value written by previous node
2616               if (wrtmp.getType().isPtr()) {
2617                 //only lock the objects that may actually need locking
2618                 if (recorddc.getNeedTrans(lb, current_node)&&
2619                     (!state.STMARRAY||state.DUALVIEW||!wrtmp.getType().isArray()||
2620                      wrtmp.getType().getSymbol().equals(TypeUtil.ObjectClass))) {
2621                   output.println("STOREPTR("+generateTemp(fm, wrtmp,lb)+");/* "+current_node.nodeid+" */");
2622                 } else {
2623                   output.println("STOREPTRNOLOCK("+generateTemp(fm, wrtmp,lb)+");/* "+current_node.nodeid+" */");
2624                 }
2625               } else {
2626                 output.println("STORE"+wrtmp.getType().getSafeDescriptor()+"("+generateTemp(fm, wrtmp, lb)+");/* "+current_node.nodeid+" */");
2627               }
2628             } else {
2629               //need to read value read by previous node
2630               if (wrtmp.getType().isPtr()) {
2631                 output.println("RESTOREPTR("+generateTemp(fm, wrtmp,lb)+");/* "+current_node.nodeid+" */");
2632               } else {
2633                 output.println("RESTORE"+wrtmp.getType().getSafeDescriptor()+"("+generateTemp(fm, wrtmp, lb)+"); /* "+current_node.nodeid+" */");               
2634               }
2635             }
2636           }
2637           nextnode=current_node.getNext(0);
2638         } else {
2639           output.print("   ");
2640           generateFlatNode(fm, lb, current_node, output);
2641           nextnode=current_node.getNext(0);
2642         }
2643         if (visited.contains(nextnode)) {
2644           output.println("goto L"+nodetolabel.get(nextnode)+";");
2645           current_node=null;
2646         } else 
2647           current_node=nextnode;
2648       } else if (current_node.numNext()==2) {
2649         /* Branch */
2650         if (state.DELAYCOMP) {
2651           boolean computeside=false;
2652           if (firstpass) {
2653             //need to record which way it should go
2654             if (genset==null||genset.contains(current_node)) {
2655               if (storeset!=null&&storeset.contains(current_node)) {
2656                 //need to store which way branch goes
2657                 generateStoreFlatCondBranch(fm, lb, (FlatCondBranch)current_node, "L"+nodetolabel.get(current_node.getNext(1)), output);
2658               } else
2659                 generateFlatCondBranch(fm, lb, (FlatCondBranch)current_node, "L"+nodetolabel.get(current_node.getNext(1)), output);
2660             } else {
2661               //which side to execute
2662               computeside=true;
2663             }
2664           } else {
2665             if (genset.contains(current_node)) {
2666               generateFlatCondBranch(fm, lb, (FlatCondBranch)current_node, "L"+nodetolabel.get(current_node.getNext(1)), output);             
2667             } else if (storeset.contains(current_node)) {
2668               //need to do branch
2669               branchanalysis.generateGroupCode(current_node, output, nodetolabel);
2670             } else {
2671               //which side to execute
2672               computeside=true;
2673             }
2674           }
2675           if (computeside) {
2676             Set<FlatNode> leftset=DelayComputation.getNext(current_node, 0, unionset, lb,locality, true);
2677             int branch=0;
2678             if (leftset.size()==0)
2679               branch=1;
2680             if (visited.contains(current_node.getNext(branch))) {
2681               //already visited -- build jump
2682               output.println("goto L"+nodetolabel.get(current_node.getNext(branch))+";");
2683               current_node=null;
2684             } else {
2685               current_node=current_node.getNext(branch);
2686             }
2687           } else {
2688             if (!visited.contains(current_node.getNext(1)))
2689               tovisit.add(current_node.getNext(1));
2690             if (visited.contains(current_node.getNext(0))) {
2691               output.println("goto L"+nodetolabel.get(current_node.getNext(0))+";");
2692               current_node=null;
2693             } else 
2694               current_node=current_node.getNext(0);
2695           }
2696         } else {
2697           output.print("   ");  
2698           generateFlatCondBranch(fm, lb, (FlatCondBranch)current_node, "L"+nodetolabel.get(current_node.getNext(1)), output);
2699           if (!visited.contains(current_node.getNext(1)))
2700             tovisit.add(current_node.getNext(1));
2701           if (visited.contains(current_node.getNext(0))) {
2702             output.println("goto L"+nodetolabel.get(current_node.getNext(0))+";");
2703             current_node=null;
2704           } else 
2705             current_node=current_node.getNext(0);
2706         }
2707       } else throw new Error();
2708     }
2709   }
2710
2711   protected void handleArrayDeref(FlatMethod fm, LocalityBinding lb, FlatNode fn, PrintWriter output, boolean firstpass) {
2712     if (fn.kind()==FKind.FlatSetElementNode) {
2713       FlatSetElementNode fsen=(FlatSetElementNode) fn;
2714       String dst=generateTemp(fm, fsen.getDst(), lb);
2715       String src=generateTemp(fm, fsen.getSrc(), lb);
2716       String index=generateTemp(fm, fsen.getIndex(), lb);      
2717       TypeDescriptor elementtype=fsen.getDst().getType().dereference();
2718       String type="";
2719       if (elementtype.isArray()||elementtype.isClass())
2720         type="void *";
2721       else
2722         type=elementtype.getSafeSymbol()+" ";
2723       if (firstpass) {
2724         output.println("STOREARRAY("+dst+","+index+","+type+")");
2725       } else {
2726         output.println("{");
2727         output.println("  struct ArrayObject *array;");
2728         output.println("  int index;");
2729         output.println("  RESTOREARRAY(array,index);");
2730         output.println("  (("+type+"*)(((char *)&array->___length___)+sizeof(int)))[index]="+src+";");
2731         output.println("}");
2732       }
2733     } else if (fn.kind()==FKind.FlatElementNode) {
2734       FlatElementNode fen=(FlatElementNode) fn;
2735       String src=generateTemp(fm, fen.getSrc(), lb);
2736       String index=generateTemp(fm, fen.getIndex(), lb);
2737       TypeDescriptor elementtype=fen.getSrc().getType().dereference();
2738       String dst=generateTemp(fm, fen.getDst(), lb);
2739       String type="";
2740       if (elementtype.isArray()||elementtype.isClass())
2741         type="void *";
2742       else
2743         type=elementtype.getSafeSymbol()+" ";
2744       if (firstpass) {
2745         output.println("STOREARRAY("+src+","+index+","+type+")");
2746       } else {
2747         output.println("{");
2748         output.println("  struct ArrayObject *array;");
2749         output.println("  int index;");
2750         output.println("  RESTOREARRAY(array,index);");
2751         output.println("  "+dst+"=(("+type+"*)(((char *)&array->___length___)+sizeof(int)))[index];");
2752         output.println("}");
2753       }
2754     }
2755   }
2756   /** Special label assignment for delaycomputation */
2757   protected Hashtable<FlatNode, Integer> dcassignLabels(FlatNode first, Set<FlatNode> lastset) {
2758     HashSet tovisit=new HashSet();
2759     HashSet visited=new HashSet();
2760     int labelindex=0;
2761     Hashtable<FlatNode, Integer> nodetolabel=new Hashtable<FlatNode, Integer>();
2762
2763     //Label targets of branches
2764     Set<FlatNode> targets=branchanalysis.getTargets();
2765     for(Iterator<FlatNode> it=targets.iterator();it.hasNext();) {
2766       nodetolabel.put(it.next(), new Integer(labelindex++));
2767     }
2768
2769
2770     tovisit.add(first);
2771     /*Assign labels first.  A node needs a label if the previous
2772      * node has two exits or this node is a join point. */
2773
2774     while(!tovisit.isEmpty()) {
2775       FlatNode fn=(FlatNode)tovisit.iterator().next();
2776       tovisit.remove(fn);
2777       visited.add(fn);
2778
2779
2780       if(lastset!=null&&lastset.contains(fn)) {
2781         // if last is not null and matches, don't go 
2782         // any further for assigning labels
2783         continue;
2784       }
2785
2786       for(int i=0; i<fn.numNext(); i++) {
2787         FlatNode nn=fn.getNext(i);
2788
2789         if(i>0) {
2790           //1) Edge >1 of node
2791           nodetolabel.put(nn,new Integer(labelindex++));
2792         }
2793         if (!visited.contains(nn)&&!tovisit.contains(nn)) {
2794           tovisit.add(nn);
2795         } else {
2796           //2) Join point
2797           nodetolabel.put(nn,new Integer(labelindex++));
2798         }
2799       }
2800     }
2801     return nodetolabel;
2802
2803   }
2804
2805   protected Hashtable<FlatNode, Integer> assignLabels(FlatNode first) {
2806     return assignLabels(first, null);
2807   }
2808
2809   protected Hashtable<FlatNode, Integer> assignLabels(FlatNode first, Set<FlatNode> lastset) {
2810     HashSet tovisit=new HashSet();
2811     HashSet visited=new HashSet();
2812     int labelindex=0;
2813     Hashtable<FlatNode, Integer> nodetolabel=new Hashtable<FlatNode, Integer>();
2814     tovisit.add(first);
2815
2816     /*Assign labels first.  A node needs a label if the previous
2817      * node has two exits or this node is a join point. */
2818
2819     while(!tovisit.isEmpty()) {
2820       FlatNode fn=(FlatNode)tovisit.iterator().next();
2821       tovisit.remove(fn);
2822       visited.add(fn);
2823
2824
2825       if(lastset!=null&&lastset.contains(fn)) {
2826         // if last is not null and matches, don't go 
2827         // any further for assigning labels
2828         continue;
2829       }
2830
2831       for(int i=0; i<fn.numNext(); i++) {
2832         FlatNode nn=fn.getNext(i);
2833
2834         if(i>0) {
2835           //1) Edge >1 of node
2836           nodetolabel.put(nn,new Integer(labelindex++));
2837         }
2838         if (!visited.contains(nn)&&!tovisit.contains(nn)) {
2839           tovisit.add(nn);
2840         } else {
2841           //2) Join point
2842           nodetolabel.put(nn,new Integer(labelindex++));
2843         }
2844       }
2845     }
2846     return nodetolabel;
2847   }
2848
2849
2850   /** Generate text string that corresponds to the TempDescriptor td. */
2851   protected String generateTemp(FlatMethod fm, TempDescriptor td, LocalityBinding lb) {
2852     MethodDescriptor md=fm.getMethod();
2853     TaskDescriptor task=fm.getTask();
2854     TempObject objecttemps=(TempObject) tempstable.get(lb!=null ? lb : md!=null ? md : task);
2855
2856     if (objecttemps.isLocalPrim(td)||objecttemps.isParamPrim(td)) {
2857       return td.getSafeSymbol();
2858     }
2859
2860     if (objecttemps.isLocalPtr(td)) {
2861       return localsprefixderef+td.getSafeSymbol();
2862     }
2863
2864     if (objecttemps.isParamPtr(td)) {
2865       return paramsprefix+"->"+td.getSafeSymbol();
2866     }
2867
2868     throw new Error();
2869   }
2870
2871   protected void generateFlatNode(FlatMethod fm, LocalityBinding lb, FlatNode fn, PrintWriter output) {
2872
2873     // insert pre-node actions from the code plan
2874     if( state.MLP|| state.OOOJAVA ) {
2875       
2876       CodePlan cp;
2877       if(state.MLP){
2878         cp = mlpa.getCodePlan( fn );
2879       }else{
2880         cp = oooa.getCodePlan(fn);
2881       }
2882
2883       if( cp != null ) {
2884         
2885         FlatSESEEnterNode currentSESE = cp.getCurrentSESE();
2886         
2887         // for each sese and age pair that this parent statement
2888         // must stall on, take that child's stall semaphore, the
2889         // copying of values comes after the statement
2890         Iterator<VariableSourceToken> vstItr = cp.getStallTokens().iterator();
2891         while( vstItr.hasNext() ) {
2892           VariableSourceToken vst = vstItr.next();
2893
2894           SESEandAgePair pair = new SESEandAgePair( vst.getSESE(), vst.getAge() );
2895
2896           output.println("   {");
2897           output.println("     "+pair.getSESE().getSESErecordName()+"* child = ("+
2898                          pair.getSESE().getSESErecordName()+"*) "+pair+";");
2899
2900           output.println("     SESEcommon* common = (SESEcommon*) "+pair+";");
2901           if( state.COREPROF ) {
2902             output.println("#ifdef CP_EVENTID_TASKSTALLVAR");
2903             output.println("     CP_LOGEVENT( CP_EVENTID_TASKSTALLVAR, CP_EVENTTYPE_BEGIN );");
2904             output.println("#endif");
2905           }
2906           output.println("     pthread_mutex_lock( &(common->lock) );");
2907           output.println("     while( common->doneExecuting == FALSE ) {");
2908           output.println("       pthread_cond_wait( &(common->doneCond), &(common->lock) );");
2909           output.println("     }");
2910           output.println("     pthread_mutex_unlock( &(common->lock) );");
2911
2912           // copy things we might have stalled for                
2913           Iterator<TempDescriptor> tdItr = cp.getCopySet( vst ).iterator();
2914           while( tdItr.hasNext() ) {
2915             TempDescriptor td = tdItr.next();
2916             FlatMethod fmContext;
2917             if( currentSESE.getIsCallerSESEplaceholder() ) {
2918               fmContext = currentSESE.getfmEnclosing();
2919             } else {
2920               fmContext = currentSESE.getfmBogus();
2921             }
2922             output.println("       "+generateTemp( fmContext, td, null )+
2923                            " = child->"+vst.getAddrVar().getSafeSymbol()+";");
2924           }
2925           if( state.COREPROF ) {
2926             output.println("#ifdef CP_EVENTID_TASKSTALLVAR");
2927             output.println("     CP_LOGEVENT( CP_EVENTID_TASKSTALLVAR, CP_EVENTTYPE_END );");
2928             output.println("#endif");
2929           }
2930           output.println("   }");
2931         }
2932   
2933         // for each variable with a dynamic source, stall just for that variable
2934         Iterator<TempDescriptor> dynItr = cp.getDynamicStallSet().iterator();
2935         while( dynItr.hasNext() ) {
2936           TempDescriptor dynVar = dynItr.next();
2937
2938           // only stall if the dynamic source is not yourself, denoted by src==NULL
2939           // otherwise the dynamic write nodes will have the local var up-to-date
2940           output.println("   {");
2941           output.println("     if( "+dynVar+"_srcSESE != NULL ) {");
2942           output.println("       SESEcommon* common = (SESEcommon*) "+dynVar+"_srcSESE;");
2943           if( state.COREPROF ) {
2944             output.println("#ifdef CP_EVENTID_TASKSTALLVAR");
2945             output.println("       CP_LOGEVENT( CP_EVENTID_TASKSTALLVAR, CP_EVENTTYPE_BEGIN );");
2946             output.println("#endif");
2947           }
2948           output.println("       psem_take( &(common->stallSem) );");
2949
2950           FlatMethod fmContext;
2951           if( currentSESE.getIsCallerSESEplaceholder() ) {
2952             fmContext = currentSESE.getfmEnclosing();
2953           } else {
2954             fmContext = currentSESE.getfmBogus();
2955           }
2956           
2957           TypeDescriptor type=dynVar.getType();
2958           String typeStr;
2959           if( type.isNull() ) {
2960             typeStr = "void*";
2961           } else if( type.isClass() || type.isArray() ) {
2962             typeStr = "struct "+type.getSafeSymbol()+"*";
2963           } else {
2964             typeStr = type.getSafeSymbol();
2965           }
2966       
2967           output.println("       "+generateTemp( fmContext, dynVar, null )+
2968                          " = *(("+typeStr+"*) ("+
2969                          dynVar+"_srcSESE + "+dynVar+"_srcOffset));");
2970           if( state.COREPROF ) {
2971             output.println("#ifdef CP_EVENTID_TASKSTALLVAR");
2972             output.println("       CP_LOGEVENT( CP_EVENTID_TASKSTALLVAR, CP_EVENTTYPE_END );");
2973             output.println("#endif");
2974           }
2975           output.println("     }");
2976           output.println("   }");
2977         }
2978
2979         // for each assignment of a variable to rhs that has a dynamic source,
2980         // copy the dynamic sources
2981         Iterator dynAssignItr = cp.getDynAssigns().entrySet().iterator();
2982         while( dynAssignItr.hasNext() ) {
2983           Map.Entry      me  = (Map.Entry)      dynAssignItr.next();
2984           TempDescriptor lhs = (TempDescriptor) me.getKey();
2985           TempDescriptor rhs = (TempDescriptor) me.getValue();
2986
2987           output.println("   {");
2988           output.println("   SESEcommon* oldSrc = "+lhs+"_srcSESE;");
2989           
2990           output.println("   "+lhs+"_srcSESE   = "+rhs+"_srcSESE;");
2991           output.println("   "+lhs+"_srcOffset = "+rhs+"_srcOffset;");
2992
2993           // no matter what we did above, track reference count of whatever
2994           // this variable pointed to, do release last in case we're just
2995           // copying the same value in because 1->2->1 is safe but ref count
2996           // 1->0->1 has a window where it looks like it should be free'd
2997           output.println("#ifndef OOO_DISABLE_TASKMEMPOOL" );
2998           output.println("     if( "+rhs+"_srcSESE != NULL ) {");
2999           output.println("       ADD_REFERENCE_TO( "+rhs+"_srcSESE );");
3000           output.println("     }");
3001           output.println("     if( oldSrc != NULL ) {");
3002           output.println("       RELEASE_REFERENCE_TO( oldSrc );");
3003           output.println("     }");
3004           output.println("   }");
3005           output.println("#endif // OOO_DISABLE_TASKMEMPOOL" );
3006         }
3007
3008         // for each lhs that is dynamic from a non-dynamic source, set the
3009         // dynamic source vars to the current SESE
3010         dynItr = cp.getDynAssignCurr().iterator();
3011         while( dynItr.hasNext() ) {
3012           TempDescriptor dynVar = dynItr.next();          
3013           assert currentSESE.getDynamicVarSet().contains( dynVar );
3014
3015           // first release a reference to current record
3016           output.println("#ifndef OOO_DISABLE_TASKMEMPOOL" );
3017           output.println("   if( "+dynVar+"_srcSESE != NULL ) {");
3018           output.println("     RELEASE_REFERENCE_TO( oldSrc );");
3019           output.println("   }");
3020           output.println("#endif // OOO_DISABLE_TASKMEMPOOL" );
3021
3022           output.println("   "+dynVar+"_srcSESE = NULL;");
3023         }
3024         
3025         // eom
3026         // handling stall site
3027         if (state.OOOJAVA) {
3028           Analysis.OoOJava.ConflictGraph graph = oooa.getConflictGraph(currentSESE);
3029           if(graph!=null){
3030             Set<Analysis.OoOJava.SESELock> seseLockSet = oooa.getLockMappings(graph);
3031             Set<Analysis.OoOJava.WaitingElement> waitingElementSet =
3032               graph.getStallSiteWaitingElementSet(fn, seseLockSet);
3033             
3034             if(waitingElementSet.size()>0){
3035               output.println("// stall on parent's stall sites ");
3036               output.println("   {");
3037               output.println("     REntry* rentry;");
3038           
3039               for (Iterator iterator = waitingElementSet.iterator(); iterator.hasNext();) {
3040                 Analysis.OoOJava.WaitingElement waitingElement = (Analysis.OoOJava.WaitingElement) iterator.next();
3041                 
3042                 if(state.RCR && rcr != null){
3043                   Analysis.OoOJava.ConflictGraph conflictGraph = graph;
3044                   Hashtable<Taint, Set<Effect>> conflicts;
3045                   ReachGraph rg = oooa.getDisjointAnalysis().getReachGraph(currentSESE.getmdEnclosing());
3046                   if(rcr.cSideDebug) {
3047                     rg.writeGraph("RCR_RG_STALLSITE_DEBUG");
3048                   }
3049                   if((conflictGraph != null) && 
3050                       (conflicts = graph.getConflictEffectSet(fn)) != null &&
3051                       (rg != null)){
3052                     rcr.addToTraverseToDoList(fn, waitingElement.getTempDesc(), rg, conflicts);
3053                    }
3054                 }
3055                
3056                 if( waitingElement.getStatus() >= ConflictNode.COARSE ){
3057                   output.println("     rentry=mlpCreateREntry("+ waitingElement.getStatus()+ ", runningSESE);");
3058                 }else{
3059                   output.println("     rentry=mlpCreateFineREntry("+ waitingElement.getStatus()+ ", runningSESE,  (void*)&" +generateTemp(fm,waitingElement.getTempDesc(),lb)+ ");");
3060                 }         
3061                 output.println("     psem_init( &(rentry->parentStallSem) );");
3062                 output.println("     rentry->queue=runningSESE->memoryQueueArray["+ waitingElement.getQueueID()+ "];");
3063                 output.println("     if(ADDRENTRY(runningSESE->memoryQueueArray["+ waitingElement.getQueueID()
3064                            + "],rentry)==NOTREADY){");
3065                 if( state.COREPROF ) {
3066                   output.println("#ifdef CP_EVENTID_TASKSTALLMEM");
3067                   output.println("        CP_LOGEVENT( CP_EVENTID_TASKSTALLMEM, CP_EVENTTYPE_BEGIN );");
3068                   output.println("#endif");
3069                 }
3070                 output.println("        psem_take( &(rentry->parentStallSem) );");
3071                 if( state.COREPROF ) {
3072                   output.println("#ifdef CP_EVENTID_TASKSTALLMEM");
3073                   output.println("        CP_LOGEVENT( CP_EVENTID_TASKSTALLMEM, CP_EVENTTYPE_END );");
3074                   output.println("#endif");
3075                 }
3076                 output.println("     }  ");
3077                 
3078                 if(state.RCR && rcr != null) {
3079                   output.println("   "+rcr.getTraverserInvocation(waitingElement.getTempDesc(), 
3080                       generateTemp(fm, waitingElement.getTempDesc(), null), fn));
3081                 }
3082               }
3083               output.println("   }");
3084             }
3085           }
3086         }else{
3087           ParentChildConflictsMap conflictsMap = mlpa.getConflictsResults().get(fn);
3088           if (conflictsMap != null) {
3089             Set<Long> allocSet = conflictsMap.getAllocationSiteIDSetofStallSite();
3090             if (allocSet.size() > 0) {
3091               FlatNode enclosingFlatNode=null;
3092               if( currentSESE.getIsCallerSESEplaceholder() && currentSESE.getParent()==null){
3093                 enclosingFlatNode=currentSESE.getfmEnclosing();
3094               }else{
3095                 enclosingFlatNode=currentSESE;
3096               }                                         
3097               ConflictGraph graph=mlpa.getConflictGraphResults().get(enclosingFlatNode);
3098               HashSet<SESELock> seseLockSet=mlpa.getConflictGraphLockMap().get(graph);
3099               Set<WaitingElement> waitingElementSet=graph.getStallSiteWaitingElementSet(conflictsMap, seseLockSet);
3100                         
3101               if(waitingElementSet.size()>0){
3102                 output.println("// stall on parent's stall sites ");
3103                 output.println("   {");
3104                 output.println("     REntry* rentry;");
3105                                 
3106                 for (Iterator iterator = waitingElementSet.iterator(); iterator.hasNext();) {
3107                   WaitingElement waitingElement = (WaitingElement) iterator.next();
3108                                         
3109                   if( waitingElement.getStatus() >= ConflictNode.COARSE ){
3110                     // HERE! a parent might conflict with a child
3111                     output.println("     rentry=mlpCreateREntry("+ waitingElement.getStatus()+ ", runningSESE);");
3112                   }else{
3113                     output.println("     rentry=mlpCreateFineREntry("+ waitingElement.getStatus()+ ", runningSESE,  (void*)&___locals___."+ waitingElement.getDynID() + ");");
3114                   }                                     
3115                   output.println("     psem_init( &(rentry->parentStallSem) );");
3116                   output.println("     rentry->queue=runningSESE->memoryQueueArray["+ waitingElement.getQueueID()+ "];");
3117                   output
3118                     .println("     if(ADDRENTRY(runningSESE->memoryQueueArray["+ waitingElement.getQueueID()
3119                              + "],rentry)==NOTREADY){");
3120                   if( state.COREPROF ) {
3121                     output.println("#ifdef CP_EVENTID_TASKSTALLMEM");
3122                     output.println("        CP_LOGEVENT( CP_EVENTID_TASKSTALLMEM, CP_EVENTTYPE_BEGIN );");
3123                     output.println("#endif");
3124                   }
3125                   output.println("        psem_take( &(rentry->parentStallSem) );");
3126                   if( state.COREPROF ) {
3127                     output.println("#ifdef CP_EVENTID_TASKSTALLMEM");
3128                     output.println("        CP_LOGEVENT( CP_EVENTID_TASKSTALLMEM, CP_EVENTTYPE_END );");
3129                     output.println("#endif");
3130                   }
3131                   output.println("     }  ");
3132                 }
3133                 output.println("   }");
3134               }
3135             }
3136           }     
3137         }
3138       }
3139     }
3140
3141     switch(fn.kind()) {
3142     case FKind.FlatAtomicEnterNode:
3143       generateFlatAtomicEnterNode(fm, lb, (FlatAtomicEnterNode) fn, output);
3144       break;
3145
3146     case FKind.FlatAtomicExitNode:
3147       generateFlatAtomicExitNode(fm, lb, (FlatAtomicExitNode) fn, output);
3148       break;
3149
3150     case FKind.FlatInstanceOfNode:
3151       generateFlatInstanceOfNode(fm, lb, (FlatInstanceOfNode)fn, output);
3152       break;
3153
3154     case FKind.FlatSESEEnterNode:
3155       generateFlatSESEEnterNode(fm, lb, (FlatSESEEnterNode)fn, output);
3156       break;
3157
3158     case FKind.FlatSESEExitNode:
3159       generateFlatSESEExitNode(fm, lb, (FlatSESEExitNode)fn, output);
3160       break;
3161       
3162     case FKind.FlatWriteDynamicVarNode:
3163       generateFlatWriteDynamicVarNode(fm, lb, (FlatWriteDynamicVarNode)fn, output);
3164       break;
3165
3166     case FKind.FlatGlobalConvNode:
3167       generateFlatGlobalConvNode(fm, lb, (FlatGlobalConvNode) fn, output);
3168       break;
3169
3170     case FKind.FlatTagDeclaration:
3171       generateFlatTagDeclaration(fm, lb, (FlatTagDeclaration) fn,output);
3172       break;
3173
3174     case FKind.FlatCall:
3175       generateFlatCall(fm, lb, (FlatCall) fn,output);
3176       break;
3177
3178     case FKind.FlatFieldNode:
3179       generateFlatFieldNode(fm, lb, (FlatFieldNode) fn,output);
3180       break;
3181
3182     case FKind.FlatElementNode:
3183       generateFlatElementNode(fm, lb, (FlatElementNode) fn,output);
3184       break;
3185
3186     case FKind.FlatSetElementNode:
3187       generateFlatSetElementNode(fm, lb, (FlatSetElementNode) fn,output);
3188       break;
3189
3190     case FKind.FlatSetFieldNode:
3191       generateFlatSetFieldNode(fm, lb, (FlatSetFieldNode) fn,output);
3192       break;
3193
3194     case FKind.FlatNew:
3195       generateFlatNew(fm, lb, (FlatNew) fn,output);
3196       break;
3197
3198     case FKind.FlatOpNode:
3199       generateFlatOpNode(fm, lb, (FlatOpNode) fn,output);
3200       break;
3201
3202     case FKind.FlatCastNode:
3203       generateFlatCastNode(fm, lb, (FlatCastNode) fn,output);
3204       break;
3205
3206     case FKind.FlatLiteralNode:
3207       generateFlatLiteralNode(fm, lb, (FlatLiteralNode) fn,output);
3208       break;
3209
3210     case FKind.FlatReturnNode:
3211       generateFlatReturnNode(fm, lb, (FlatReturnNode) fn,output);
3212       break;
3213
3214     case FKind.FlatNop:
3215       output.println("/* nop */");
3216       break;
3217
3218     case FKind.FlatExit:
3219       output.println("/* exit */");
3220       break;
3221
3222     case FKind.FlatBackEdge:
3223       if (state.SINGLETM&&state.SANDBOX&&(locality.getAtomic(lb).get(fn).intValue()>0)) {
3224         output.println("if (unlikely((--transaction_check_counter)<=0)) checkObjects();");
3225       }
3226       if(state.DSM&&state.SANDBOX&&(locality.getAtomic(lb).get(fn).intValue()>0)) {
3227         output.println("if (unlikely((--transaction_check_counter)<=0)) checkObjects();");
3228       }
3229       if (((state.MLP|| state.OOOJAVA||state.THREAD||state.DSM||state.SINGLETM)&&GENERATEPRECISEGC)
3230           || (this.state.MULTICOREGC)) {
3231         if(state.DSM&&locality.getAtomic(lb).get(fn).intValue()>0) {
3232           output.println("if (needtocollect) checkcollect2("+localsprefixaddr+");");
3233         } else if(this.state.MULTICOREGC) {
3234           output.println("if (gcflag) gc("+localsprefixaddr+");");
3235         } else {
3236           output.println("if (unlikely(needtocollect)) checkcollect("+localsprefixaddr+");");
3237         }
3238       } else
3239         output.println("/* nop */");
3240       break;
3241
3242     case FKind.FlatCheckNode:
3243       generateFlatCheckNode(fm, lb, (FlatCheckNode) fn, output);
3244       break;
3245
3246     case FKind.FlatFlagActionNode:
3247       generateFlatFlagActionNode(fm, lb, (FlatFlagActionNode) fn, output);
3248       break;
3249
3250     case FKind.FlatPrefetchNode:
3251       generateFlatPrefetchNode(fm,lb, (FlatPrefetchNode) fn, output);
3252       break;
3253
3254     case FKind.FlatOffsetNode:
3255       generateFlatOffsetNode(fm, lb, (FlatOffsetNode)fn, output);
3256       break;
3257
3258     default:
3259       throw new Error();
3260     }
3261
3262     // insert post-node actions from the code-plan
3263     /*
3264     if( state.MLP) {
3265       CodePlan cp = mlpa.getCodePlan( fn );
3266
3267       if( cp != null ) {     
3268       }
3269     }
3270     */
3271   }
3272
3273   public void generateFlatOffsetNode(FlatMethod fm, LocalityBinding lb, FlatOffsetNode fofn, PrintWriter output) {
3274     output.println("/* FlatOffsetNode */");
3275     FieldDescriptor fd=fofn.getField();
3276     output.println(generateTemp(fm, fofn.getDst(),lb)+ " = (short)(int) (&((struct "+fofn.getClassType().getSafeSymbol() +" *)0)->"+ fd.getSafeSymbol()+");");
3277     output.println("/* offset */");
3278   }
3279
3280   public void generateFlatPrefetchNode(FlatMethod fm, LocalityBinding lb, FlatPrefetchNode fpn, PrintWriter output) {
3281     if (state.PREFETCH) {
3282       Vector oids = new Vector();
3283       Vector fieldoffset = new Vector();
3284       Vector endoffset = new Vector();
3285       int tuplecount = 0;        //Keeps track of number of prefetch tuples that need to be generated
3286       for(Iterator it = fpn.hspp.iterator(); it.hasNext();) {
3287         PrefetchPair pp = (PrefetchPair) it.next();
3288         Integer statusbase = locality.getNodePreTempInfo(lb,fpn).get(pp.base);
3289         /* Find prefetches that can generate oid */
3290         if(statusbase == LocalityAnalysis.GLOBAL) {
3291           generateTransCode(fm, lb, pp, oids, fieldoffset, endoffset, tuplecount, locality.getAtomic(lb).get(fpn).intValue()>0, false);
3292           tuplecount++;
3293         } else if (statusbase == LocalityAnalysis.LOCAL) {
3294           generateTransCode(fm,lb,pp,oids,fieldoffset,endoffset,tuplecount,false,true);
3295         } else {
3296           continue;
3297         }
3298       }
3299       if (tuplecount==0)
3300         return;
3301       System.out.println("Adding prefetch "+fpn+ " to method:" +fm);
3302       output.println("{");
3303       output.println("/* prefetch */");
3304       output.println("/* prefetchid_" + fpn.siteid + " */");
3305       output.println("void * prefptr;");
3306       output.println("int tmpindex;");
3307
3308       output.println("if((evalPrefetch["+fpn.siteid+"].operMode) || (evalPrefetch["+fpn.siteid+"].retrycount <= 0)) {");
3309       /*Create C code for oid array */
3310       output.print("   unsigned int oidarray_[] = {");
3311       boolean needcomma=false;
3312       for (Iterator it = oids.iterator(); it.hasNext();) {
3313         if (needcomma)
3314           output.print(", ");
3315         output.print(it.next());
3316         needcomma=true;
3317       }
3318       output.println("};");
3319
3320       /*Create C code for endoffset values */
3321       output.print("   unsigned short endoffsetarry_[] = {");
3322       needcomma=false;
3323       for (Iterator it = endoffset.iterator(); it.hasNext();) {
3324         if (needcomma)
3325           output.print(", ");
3326         output.print(it.next());
3327         needcomma=true;
3328       }
3329       output.println("};");
3330
3331       /*Create C code for Field Offset Values */
3332       output.print("   short fieldarry_[] = {");
3333       needcomma=false;
3334       for (Iterator it = fieldoffset.iterator(); it.hasNext();) {
3335         if (needcomma)
3336           output.print(", ");
3337         output.print(it.next());
3338         needcomma=true;
3339       }
3340       output.println("};");
3341       /* make the prefetch call to Runtime */
3342       output.println("   if(!evalPrefetch["+fpn.siteid+"].operMode) {");
3343       output.println("     evalPrefetch["+fpn.siteid+"].retrycount = RETRYINTERVAL;");
3344       output.println("   }");
3345       output.println("   prefetch("+fpn.siteid+" ,"+tuplecount+", oidarray_, endoffsetarry_, fieldarry_);");
3346       output.println(" } else {");
3347       output.println("   evalPrefetch["+fpn.siteid+"].retrycount--;");
3348       output.println(" }");
3349       output.println("}");
3350     }
3351   }
3352
3353   public void generateTransCode(FlatMethod fm, LocalityBinding lb,PrefetchPair pp, Vector oids, Vector fieldoffset, Vector endoffset, int tuplecount, boolean inside, boolean localbase) {
3354     short offsetcount = 0;
3355     int breakindex=0;
3356     if (inside) {
3357       breakindex=1;
3358     } else if (localbase) {
3359       for(; breakindex<pp.desc.size(); breakindex++) {
3360         Descriptor desc=pp.getDescAt(breakindex);
3361         if (desc instanceof FieldDescriptor) {
3362           FieldDescriptor fd=(FieldDescriptor)desc;
3363           if (fd.isGlobal()) {
3364             break;
3365           }
3366         }
3367       }
3368       breakindex++;
3369     }
3370
3371     if (breakindex>pp.desc.size())     //all local
3372       return;
3373
3374     TypeDescriptor lasttype=pp.base.getType();
3375     String basestr=generateTemp(fm, pp.base, lb);
3376     String teststr="";
3377     boolean maybenull=fm.getMethod().isStatic()||
3378                        !pp.base.equals(fm.getParameter(0));
3379
3380     for(int i=0; i<breakindex; i++) {
3381       String indexcheck="";
3382
3383       Descriptor desc=pp.getDescAt(i);
3384       if (desc instanceof FieldDescriptor) {
3385         FieldDescriptor fd=(FieldDescriptor)desc;
3386         if (maybenull) {
3387           if (!teststr.equals(""))
3388             teststr+="&&";
3389           teststr+="((prefptr="+basestr+")!=NULL)";
3390           basestr="((struct "+lasttype.getSafeSymbol()+" *)prefptr)->"+fd.getSafeSymbol();
3391         } else {
3392           basestr=basestr+"->"+fd.getSafeSymbol();
3393           maybenull=true;
3394         }
3395         lasttype=fd.getType();
3396       } else {
3397         IndexDescriptor id=(IndexDescriptor)desc;
3398         indexcheck="((tmpindex=";
3399         for(int j=0; j<id.tddesc.size(); j++) {
3400           indexcheck+=generateTemp(fm, id.getTempDescAt(j), lb)+"+";
3401         }
3402         indexcheck+=id.offset+")>=0)&(tmpindex<((struct ArrayObject *)prefptr)->___length___)";
3403
3404         if (!teststr.equals(""))
3405           teststr+="&&";
3406         teststr+="((prefptr="+basestr+")!= NULL) &&"+indexcheck;
3407         basestr="((void **)(((char *) &(((struct ArrayObject *)prefptr)->___length___))+sizeof(int)))[tmpindex]";
3408         maybenull=true;
3409         lasttype=lasttype.dereference();
3410       }
3411     }
3412
3413     String oid;
3414     if (teststr.equals("")) {
3415       oid="((unsigned int)"+basestr+")";
3416     } else {
3417       oid="((unsigned int)(("+teststr+")?"+basestr+":NULL))";
3418     }
3419     oids.add(oid);
3420
3421     for(int i = breakindex; i < pp.desc.size(); i++) {
3422       String newfieldoffset;
3423       Object desc = pp.getDescAt(i);
3424       if(desc instanceof FieldDescriptor) {
3425         FieldDescriptor fd=(FieldDescriptor)desc;
3426         newfieldoffset = new String("(unsigned int)(&(((struct "+ lasttype.getSafeSymbol()+" *)0)->"+ fd.getSafeSymbol()+ "))");
3427         lasttype=fd.getType();
3428       } else {
3429         newfieldoffset = "";
3430         IndexDescriptor id=(IndexDescriptor)desc;
3431         for(int j = 0; j < id.tddesc.size(); j++) {
3432           newfieldoffset += generateTemp(fm, id.getTempDescAt(j), lb) + "+";
3433         }
3434         newfieldoffset += id.offset.toString();
3435         lasttype=lasttype.dereference();
3436       }
3437       fieldoffset.add(newfieldoffset);
3438     }
3439
3440     int base=(tuplecount>0) ? ((Short)endoffset.get(tuplecount-1)).intValue() : 0;
3441     base+=pp.desc.size()-breakindex;
3442     endoffset.add(new Short((short)base));
3443   }
3444
3445
3446
3447   public void generateFlatGlobalConvNode(FlatMethod fm, LocalityBinding lb, FlatGlobalConvNode fgcn, PrintWriter output) {
3448     if (lb!=fgcn.getLocality())
3449       return;
3450     /* Have to generate flat globalconv */
3451     if (fgcn.getMakePtr()) {
3452       if (state.DSM) {
3453         //DEBUG: output.println("TRANSREAD("+generateTemp(fm, fgcn.getSrc(),lb)+", (unsigned int) "+generateTemp(fm, fgcn.getSrc(),lb)+",\" "+fm+":"+fgcn+"\");");
3454            output.println("TRANSREAD("+generateTemp(fm, fgcn.getSrc(),lb)+", (unsigned int) "+generateTemp(fm, fgcn.getSrc(),lb)+");");
3455       } else {
3456         if ((dc==null)||!state.READSET&&dc.getNeedTrans(lb, fgcn)||state.READSET&&dc.getNeedWriteTrans(lb, fgcn)) {
3457           //need to do translation
3458           output.println("TRANSREAD("+generateTemp(fm, fgcn.getSrc(),lb)+", "+generateTemp(fm, fgcn.getSrc(),lb)+", (void *)("+localsprefixaddr+"));");
3459         } else if (state.READSET&&dc.getNeedTrans(lb, fgcn)) {
3460           if (state.HYBRID&&delaycomp.getConv(lb).contains(fgcn)) {
3461             output.println("TRANSREADRDFISSION("+generateTemp(fm, fgcn.getSrc(),lb)+", "+generateTemp(fm, fgcn.getSrc(),lb)+");");
3462           } else
3463             output.println("TRANSREADRD("+generateTemp(fm, fgcn.getSrc(),lb)+", "+generateTemp(fm, fgcn.getSrc(),lb)+");");
3464         }
3465       }
3466     } else {
3467       /* Need to convert to OID */
3468       if ((dc==null)||dc.getNeedSrcTrans(lb,fgcn)) {
3469         if (fgcn.doConvert()||(delaycomp!=null&&delaycomp.needsFission(lb, fgcn.getAtomicEnter())&&atomicmethodmap.get(fgcn.getAtomicEnter()).reallivein.contains(fgcn.getSrc()))) {
3470           output.println(generateTemp(fm, fgcn.getSrc(),lb)+"=(void *)COMPOID("+generateTemp(fm, fgcn.getSrc(),lb)+");");
3471         } else {
3472           output.println(generateTemp(fm, fgcn.getSrc(),lb)+"=NULL;");
3473         }
3474       }
3475     }
3476   }
3477
3478   public void generateFlatInstanceOfNode(FlatMethod fm,  LocalityBinding lb, FlatInstanceOfNode fion, PrintWriter output) {
3479     int type;
3480     if (fion.getType().isArray()) {
3481       type=state.getArrayNumber(fion.getType())+state.numClasses();
3482     } else {
3483       type=fion.getType().getClassDesc().getId();
3484     }
3485
3486     if (fion.getType().getSymbol().equals(TypeUtil.ObjectClass))
3487       output.println(generateTemp(fm, fion.getDst(), lb)+"=1;");
3488     else
3489       output.println(generateTemp(fm, fion.getDst(), lb)+"=instanceof("+generateTemp(fm,fion.getSrc(),lb)+","+type+");");
3490   }
3491
3492   int sandboxcounter=0;
3493   public void generateFlatAtomicEnterNode(FlatMethod fm,  LocalityBinding lb, FlatAtomicEnterNode faen, PrintWriter output) {
3494     /* Check to see if we need to generate code for this atomic */
3495     if (locality==null) {
3496       if (GENERATEPRECISEGC) {
3497         output.println("if (pthread_mutex_trylock(&atomiclock)!=0) {");
3498         output.println("stopforgc((struct garbagelist *) &___locals___);");
3499         output.println("pthread_mutex_lock(&atomiclock);");
3500         output.println("restartaftergc();");
3501         output.println("}");
3502       } else {
3503         output.println("pthread_mutex_lock(&atomiclock);");
3504       }
3505       return;
3506     }
3507
3508     if (locality.getAtomic(lb).get(faen.getPrev(0)).intValue()>0)
3509       return;
3510
3511
3512     if (state.SANDBOX) {
3513       outsandbox.println("int atomiccounter"+sandboxcounter+"=LOW_CHECK_FREQUENCY;");
3514       output.println("counter_reset_pointer=&atomiccounter"+sandboxcounter+";");
3515     }
3516
3517     if (state.DELAYCOMP&&delaycomp.needsFission(lb, faen)) {
3518       AtomicRecord ar=atomicmethodmap.get(faen);
3519       //copy in
3520       for(Iterator<TempDescriptor> tmpit=ar.livein.iterator();tmpit.hasNext();) {
3521         TempDescriptor tmp=tmpit.next();
3522         output.println("primitives_"+ar.name+"."+tmp.getSafeSymbol()+"="+tmp.getSafeSymbol()+";");
3523       }
3524
3525       //copy outs that depend on path
3526       for(Iterator<TempDescriptor> tmpit=ar.liveoutvirtualread.iterator();tmpit.hasNext();) {
3527         TempDescriptor tmp=tmpit.next();
3528         if (!ar.livein.contains(tmp))
3529           output.println("primitives_"+ar.name+"."+tmp.getSafeSymbol()+"="+tmp.getSafeSymbol()+";");
3530       }
3531     }
3532
3533     /* Backup the temps. */
3534     for(Iterator<TempDescriptor> tmpit=locality.getTemps(lb).get(faen).iterator(); tmpit.hasNext();) {
3535       TempDescriptor tmp=tmpit.next();
3536       output.println(generateTemp(fm, backuptable.get(lb).get(tmp),lb)+"="+generateTemp(fm,tmp,lb)+";");
3537     }
3538
3539     output.println("goto transstart"+faen.getIdentifier()+";");
3540
3541     /******* Print code to retry aborted transaction *******/
3542     output.println("transretry"+faen.getIdentifier()+":");
3543
3544     /* Restore temps */
3545     for(Iterator<TempDescriptor> tmpit=locality.getTemps(lb).get(faen).iterator(); tmpit.hasNext();) {
3546       TempDescriptor tmp=tmpit.next();
3547       output.println(generateTemp(fm, tmp,lb)+"="+generateTemp(fm,backuptable.get(lb).get(tmp),lb)+";");
3548     }
3549
3550     if (state.DSM) {
3551       /********* Need to revert local object store ********/
3552       String revertptr=generateTemp(fm, reverttable.get(lb),lb);
3553
3554       output.println("while ("+revertptr+") {");
3555       output.println("struct ___Object___ * tmpptr;");
3556       output.println("tmpptr="+revertptr+"->"+nextobjstr+";");
3557       output.println("REVERT_OBJ("+revertptr+");");
3558       output.println(revertptr+"=tmpptr;");
3559       output.println("}");
3560     }
3561     /******* Tell the runtime to start the transaction *******/
3562
3563     output.println("transstart"+faen.getIdentifier()+":");
3564     if (state.SANDBOX) {
3565       output.println("transaction_check_counter=*counter_reset_pointer;");
3566       sandboxcounter++;
3567     }
3568     output.println("transStart();");
3569
3570     if (state.ABORTREADERS||state.SANDBOX) {
3571       if (state.SANDBOX)
3572         output.println("abortenabled=1;");
3573       output.println("if (_setjmp(aborttrans)) {");
3574       output.println("  goto transretry"+faen.getIdentifier()+"; }");
3575     }
3576   }
3577
3578   public void generateFlatAtomicExitNode(FlatMethod fm,  LocalityBinding lb, FlatAtomicExitNode faen, PrintWriter output) {
3579     /* Check to see if we need to generate code for this atomic */
3580     if (locality==null) {
3581       output.println("pthread_mutex_unlock(&atomiclock);");
3582       return;
3583     }
3584     if (locality.getAtomic(lb).get(faen).intValue()>0)
3585       return;
3586     //store the revert list before we lose the transaction object
3587     
3588     if (state.DSM) {
3589       String revertptr=generateTemp(fm, reverttable.get(lb),lb);
3590       output.println(revertptr+"=revertlist;");
3591       output.println("if (transCommit()) {");
3592       output.println("if (unlikely(needtocollect)) checkcollect("+localsprefixaddr+");");
3593       output.println("goto transretry"+faen.getAtomicEnter().getIdentifier()+";");
3594       output.println("} else {");
3595       /* Need to commit local object store */
3596       output.println("while ("+revertptr+") {");
3597       output.println("struct ___Object___ * tmpptr;");
3598       output.println("tmpptr="+revertptr+"->"+nextobjstr+";");
3599       output.println("COMMIT_OBJ("+revertptr+");");
3600       output.println(revertptr+"=tmpptr;");
3601       output.println("}");
3602       output.println("}");
3603       return;
3604     }
3605
3606     if (!state.DELAYCOMP) {
3607       //Normal STM stuff
3608       output.println("if (transCommit()) {");
3609       /* Transaction aborts if it returns true */
3610       output.println("if (unlikely(needtocollect)) checkcollect("+localsprefixaddr+");");
3611       output.println("goto transretry"+faen.getAtomicEnter().getIdentifier()+";");
3612       output.println("}");
3613     } else {
3614       if (delaycomp.optimizeTrans(lb, faen.getAtomicEnter())&&(!state.STMARRAY||state.DUALVIEW))  {
3615         AtomicRecord ar=atomicmethodmap.get(faen.getAtomicEnter());
3616         output.println("LIGHTWEIGHTCOMMIT("+ar.name+", &primitives_"+ar.name+", &"+localsprefix+", "+paramsprefix+", transretry"+faen.getAtomicEnter().getIdentifier()+");");
3617         //copy out
3618         for(Iterator<TempDescriptor> tmpit=ar.liveout.iterator();tmpit.hasNext();) {
3619           TempDescriptor tmp=tmpit.next();
3620           output.println(tmp.getSafeSymbol()+"=primitives_"+ar.name+"."+tmp.getSafeSymbol()+";");
3621         }
3622       } else if (delaycomp.needsFission(lb, faen.getAtomicEnter())) {
3623         AtomicRecord ar=atomicmethodmap.get(faen.getAtomicEnter());
3624         //do call
3625         output.println("if (transCommit((void (*)(void *, void *, void *))&"+ar.name+", &primitives_"+ar.name+", &"+localsprefix+", "+paramsprefix+")) {");
3626         output.println("if (unlikely(needtocollect)) checkcollect("+localsprefixaddr+");");
3627         output.println("goto transretry"+faen.getAtomicEnter().getIdentifier()+";");
3628         output.println("}");
3629         //copy out
3630         output.println("else {");
3631         for(Iterator<TempDescriptor> tmpit=ar.liveout.iterator();tmpit.hasNext();) {
3632           TempDescriptor tmp=tmpit.next();
3633           output.println(tmp.getSafeSymbol()+"=primitives_"+ar.name+"."+tmp.getSafeSymbol()+";");
3634         }
3635         output.println("}");
3636       } else {
3637         output.println("if (transCommit(NULL, NULL, NULL, NULL)) {");
3638         output.println("if (unlikely(needtocollect)) checkcollect("+localsprefixaddr+");");
3639         output.println("goto transretry"+faen.getAtomicEnter().getIdentifier()+";");
3640         output.println("}");
3641       }
3642     }
3643   }
3644
3645   public void generateFlatSESEEnterNode( FlatMethod fm,  
3646                                          LocalityBinding lb, 
3647                                          FlatSESEEnterNode fsen, 
3648                                          PrintWriter output 
3649                                        ) {
3650     // if MLP flag is off, okay that SESE nodes are in IR graph, 
3651     // just skip over them and code generates exactly the same
3652     if( !(state.MLP || state.OOOJAVA) ) {
3653       return;
3654     }    
3655     // there may be an SESE in an unreachable method, skip over
3656     if( (state.MLP && !mlpa.getAllSESEs().contains( fsen )) ||
3657         (state.OOOJAVA && !oooa.getAllSESEs().contains(fsen))
3658     ) {
3659       return;
3660     }
3661
3662     // also, if we have encountered a placeholder, just skip it
3663     if( fsen.getIsCallerSESEplaceholder() ) {
3664       return;
3665     }
3666
3667     output.println("   {");
3668
3669     if( state.COREPROF ) {
3670       output.println("#ifdef CP_EVENTID_TASKDISPATCH");
3671       output.println("     CP_LOGEVENT( CP_EVENTID_TASKDISPATCH, CP_EVENTTYPE_BEGIN );");
3672       output.println("#endif");
3673     }
3674     
3675     // before doing anything, lock your own record and increment the running children
3676     if( (state.MLP     && fsen != mlpa.getMainSESE()) || 
3677         (state.OOOJAVA && fsen != oooa.getMainSESE())
3678     ) {      
3679       output.println("     atomic_inc(&(runningSESE->numRunningChildren));");
3680     }
3681
3682     // allocate the space for this record
3683     output.println( "#ifndef OOO_DISABLE_TASKMEMPOOL" );
3684     if( (state.MLP     && fsen != mlpa.getMainSESE()) || 
3685         (state.OOOJAVA && fsen != oooa.getMainSESE())
3686         ) {
3687       output.println("     "+
3688                      fsen.getSESErecordName()+"* seseToIssue = ("+
3689                      fsen.getSESErecordName()+"*) poolalloc( runningSESE->taskRecordMemPool );");
3690     } else {
3691       output.println("     "+
3692                      fsen.getSESErecordName()+"* seseToIssue = ("+
3693                      fsen.getSESErecordName()+"*) mlpAllocSESErecord( sizeof( "+
3694                      fsen.getSESErecordName()+" ) );");
3695     }
3696     output.println( "#else // OOO_DISABLE_TASKMEMPOOL" );
3697       output.println("     "+
3698                      fsen.getSESErecordName()+"* seseToIssue = ("+
3699                      fsen.getSESErecordName()+"*) mlpAllocSESErecord( sizeof( "+
3700                      fsen.getSESErecordName()+" ) );");
3701     output.println( "#endif // OOO_DISABLE_TASKMEMPOOL" );
3702
3703
3704     // set up the SESE in-set and out-set objects, which look
3705     // like a garbage list
3706     output.println("     struct garbagelist * gl= (struct garbagelist *)&(((SESEcommon*)(seseToIssue))[1]);");
3707     output.println("     gl->size="+calculateSizeOfSESEParamList(fsen)+";");
3708     output.println("     gl->next = NULL;");
3709
3710     // there are pointers to SESE records the newly-issued SESE
3711     // will use to get values it depends on them for--how many
3712     // are there, and what is the offset from the total SESE
3713     // record to the first dependent record pointer?
3714     output.println("     seseToIssue->common.numDependentSESErecords="+
3715                    fsen.getNumDepRecs()+";");
3716     
3717     // we only need this (and it will only compile) when the number of dependent
3718     // SESE records is non-zero
3719     if( fsen.getFirstDepRecField() != null ) {
3720       output.println("     seseToIssue->common.offsetToDepSESErecords=(INTPTR)sizeof("+
3721                      fsen.getSESErecordName()+") - (INTPTR)&((("+
3722                      fsen.getSESErecordName()+"*)0)->"+fsen.getFirstDepRecField()+");"
3723                      );
3724     }
3725     
3726     // fill in common data
3727     output.println("     int localCount=0;");
3728     output.println("     seseToIssue->common.classID = "+fsen.getIdentifier()+";");
3729     output.println("     psem_init( &(seseToIssue->common.stallSem) );");
3730
3731     output.println("     seseToIssue->common.forwardList = createQueue();");
3732     output.println("     seseToIssue->common.unresolvedDependencies = 10000;");
3733     output.println("     pthread_cond_init( &(seseToIssue->common.doneCond), NULL );");
3734     output.println("     seseToIssue->common.doneExecuting = FALSE;");    
3735     output.println("     pthread_cond_init( &(seseToIssue->common.runningChildrenCond), NULL );");
3736     output.println("     seseToIssue->common.numRunningChildren = 0;");
3737     output.println("     seseToIssue->common.parent = runningSESE;");
3738     // start with refCount = 2, one being the count that the child itself
3739     // will decrement when it retires, to say it is done using its own
3740     // record, and the other count is for the parent that will remember
3741     // the static name of this new child below
3742     output.println("     seseToIssue->common.refCount = 2;");
3743
3744     // all READY in-vars should be copied now and be done with it
3745     Iterator<TempDescriptor> tempItr = fsen.getReadyInVarSet().iterator();
3746     while( tempItr.hasNext() ) {
3747       TempDescriptor temp = tempItr.next();
3748
3749       // when we are issuing the main SESE or an SESE with placeholder
3750       // caller SESE as parent, generate temp child child's eclosing method,
3751       // otherwise use the parent's enclosing method as the context
3752       boolean useParentContext = false;
3753
3754       if( (state.MLP && fsen != mlpa.getMainSESE()) || 
3755           (state.OOOJAVA && fsen != oooa.getMainSESE())     
3756       ) {
3757         assert fsen.getParent() != null;
3758         if( !fsen.getParent().getIsCallerSESEplaceholder() ) {
3759           useParentContext = true;
3760         }
3761       }
3762
3763       if( useParentContext ) {
3764         output.println("     seseToIssue->"+temp+" = "+
3765                        generateTemp( fsen.getParent().getfmBogus(), temp, null )+";");   
3766       } else {
3767         output.println("     seseToIssue->"+temp+" = "+
3768                        generateTemp( fsen.getfmEnclosing(), temp, null )+";");
3769       }
3770     }
3771     
3772     // before potentially adding this SESE to other forwarding lists,
3773     // create it's lock
3774     output.println("     pthread_mutex_init( &(seseToIssue->common.lock), NULL );");
3775   
3776     if( (state.MLP && fsen != mlpa.getMainSESE()) ||
3777         (state.OOOJAVA && fsen != oooa.getMainSESE())    
3778     ) {
3779       // count up outstanding dependencies, static first, then dynamic
3780       Iterator<SESEandAgePair> staticSrcsItr = fsen.getStaticInVarSrcs().iterator();
3781       while( staticSrcsItr.hasNext() ) {
3782         SESEandAgePair srcPair = staticSrcsItr.next();
3783         output.println("     {");
3784         output.println("       SESEcommon* src = (SESEcommon*)"+srcPair+";");
3785         //eomgc
3786         if(GENERATEPRECISEGC){
3787                 output.println("       stopforgc((struct garbagelist *)&___locals___);");
3788         }
3789         output.println("       pthread_mutex_lock( &(src->lock) );");
3790         if(GENERATEPRECISEGC){
3791                 output.println("       restartaftergc();");
3792         }
3793         output.println("       if( !isEmpty( src->forwardList ) &&");
3794         output.println("           seseToIssue == peekItem( src->forwardList ) ) {");
3795         output.println("         printf( \"This shouldnt already be here\\n\");");
3796         output.println("         exit( -1 );");
3797         output.println("       }");
3798         output.println("       if( !src->doneExecuting ) {");
3799         output.println("         addNewItem( src->forwardList, seseToIssue );");
3800         output.println("         ++(localCount);");
3801         output.println("       }");
3802         output.println("       ADD_REFERENCE_TO( src );");
3803         output.println("       pthread_mutex_unlock( &(src->lock) );");
3804         output.println("     }");
3805
3806         // whether or not it is an outstanding dependency, make sure
3807         // to pass the static name to the child's record
3808         output.println("     seseToIssue->"+srcPair+" = "+
3809                        "("+srcPair.getSESE().getSESErecordName()+"*)"+
3810                        srcPair+";");
3811       }
3812       
3813       // dynamic sources might already be accounted for in the static list,
3814       // so only add them to forwarding lists if they're not already there
3815       Iterator<TempDescriptor> dynVarsItr = fsen.getDynamicInVarSet().iterator();
3816       while( dynVarsItr.hasNext() ) {
3817         TempDescriptor dynInVar = dynVarsItr.next();
3818         output.println("     {");
3819         output.println("       SESEcommon* src = (SESEcommon*)"+dynInVar+"_srcSESE;");
3820
3821         // the dynamic source is NULL if it comes from your own space--you can't pass
3822         // the address off to the new child, because you're not done executing and
3823         // might change the variable, so copy it right now
3824         output.println("       if( src != NULL ) {");
3825         //eomgc
3826         if(GENERATEPRECISEGC){
3827                 output.println("         stopforgc((struct garbagelist *)&___locals___);");
3828         }
3829         output.println("         pthread_mutex_lock( &(src->lock) );");
3830         if(GENERATEPRECISEGC){
3831                 output.println("         restartaftergc();");
3832         }
3833         output.println("         if( isEmpty( src->forwardList ) ||");
3834         output.println("             seseToIssue != peekItem( src->forwardList ) ) {");
3835         output.println("           if( !src->doneExecuting ) {");
3836         output.println("             addNewItem( src->forwardList, seseToIssue );");
3837         output.println("             ++(localCount);");
3838         output.println("           }");
3839         output.println("         }");
3840         output.println("         ADD_REFERENCE_TO( src );");
3841         output.println("         pthread_mutex_unlock( &(src->lock) );");       
3842         output.println("         seseToIssue->"+dynInVar+"_srcOffset = "+dynInVar+"_srcOffset;");
3843         output.println("       } else {");
3844
3845         boolean useParentContext = false;
3846         if( (state.MLP && fsen != mlpa.getMainSESE()) || 
3847             (state.OOOJAVA && fsen != oooa.getMainSESE())       
3848         ) {
3849           assert fsen.getParent() != null;
3850           if( !fsen.getParent().getIsCallerSESEplaceholder() ) {
3851             useParentContext = true;
3852           }
3853         }       
3854         if( useParentContext ) {
3855           output.println("         seseToIssue->"+dynInVar+" = "+
3856                          generateTemp( fsen.getParent().getfmBogus(), dynInVar, null )+";");
3857         } else {
3858           output.println("         seseToIssue->"+dynInVar+" = "+
3859                          generateTemp( fsen.getfmEnclosing(), dynInVar, null )+";");
3860         }
3861         
3862         output.println("       }");
3863         output.println("     }");
3864         
3865         // even if the value is already copied, make sure your NULL source
3866         // gets passed so child knows it already has the dynamic value
3867         output.println("     seseToIssue->"+dynInVar+"_srcSESE = "+dynInVar+"_srcSESE;");
3868       }
3869
3870       
3871       // maintain pointers for finding dynamic SESE 
3872       // instances from static names      
3873       SESEandAgePair pairNewest = new SESEandAgePair( fsen, 0 );
3874       SESEandAgePair pairOldest = new SESEandAgePair( fsen, fsen.getOldestAgeToTrack() );
3875       if(  fsen.getParent() != null && 
3876            fsen.getParent().getNeededStaticNames().contains( pairNewest ) 
3877         ) {       
3878
3879         for( int i = fsen.getOldestAgeToTrack(); i > 0; --i ) {
3880           SESEandAgePair pair1 = new SESEandAgePair( fsen, i   );
3881           SESEandAgePair pair2 = new SESEandAgePair( fsen, i-1 );
3882           output.println("     "+pair1+" = "+pair2+";");
3883         }      
3884         output.println("     "+pairNewest+" = &(seseToIssue->common);");
3885       }
3886       // no need to add a reference to whatever is the newest record, because
3887       // we initialized seseToIssue->refCount to *2*
3888       // but release a reference to whatever was the oldest BEFORE the shift
3889       output.println("#ifndef OOO_DISABLE_TASKMEMPOOL" );
3890       output.println("     if( "+pairOldest+" != NULL ) {");
3891       output.println("       RELEASE_REFERENCE_TO( "+pairOldest+" );");
3892       output.println("     }");
3893       output.println("#endif // OOO_DISABLE_TASKMEMPOOL" );
3894
3895       
3896
3897
3898       ////////////////
3899       // count up memory conflict dependencies,
3900       // eom
3901       if(state.OOOJAVA){
3902
3903         //output.println("       seseToIssue->common.numMemoryQueue=0;");
3904         //output.println("       seseToIssue->common.rentryIdx=0;");
3905         //output.println("       seseToIssue->common.unresolvedRentryIdx=0;");
3906         //output.println("       seseToIssue->common.memoryQueueArray=NULL;");
3907
3908         FlatSESEEnterNode parent = fsen.getParent();
3909         Analysis.OoOJava.ConflictGraph graph = oooa.getConflictGraph(parent);
3910         if (graph != null && graph.hasConflictEdge()) {
3911           Set<Analysis.OoOJava.SESELock> seseLockSet = oooa.getLockMappings(graph);
3912           output.println();
3913           output.println("     //add memory queue element");
3914           Analysis.OoOJava.SESEWaitingQueue seseWaitingQueue=
3915             graph.getWaitingElementSetBySESEID(fsen.getIdentifier(), seseLockSet);
3916           if(seseWaitingQueue.getWaitingElementSize()>0){
3917             output.println("     {");
3918             output.println("       REntry* rentry=NULL;");
3919             output.println("       INTPTR* pointer=NULL;");
3920             output.println("       seseToIssue->common.rentryIdx=0;");
3921             
3922             Set<Integer> queueIDSet=seseWaitingQueue.getQueueIDSet();
3923             for (Iterator iterator = queueIDSet.iterator(); iterator
3924                    .hasNext();) {
3925               Integer key = (Integer) iterator.next();
3926               int queueID=key.intValue();
3927               Set<Analysis.OoOJava.WaitingElement> waitingQueueSet =  
3928                 seseWaitingQueue.getWaitingElementSet(queueID);
3929               int enqueueType=seseWaitingQueue.getType(queueID);
3930               if(enqueueType==SESEWaitingQueue.EXCEPTION){
3931                 output.println("       INITIALIZEBUF(runningSESE->memoryQueueArray["
3932                                + queueID+ "]);");
3933               }
3934               for (Iterator iterator2 = waitingQueueSet.iterator(); iterator2.hasNext();) {
3935                 Analysis.OoOJava.WaitingElement waitingElement 
3936                   = (Analysis.OoOJava.WaitingElement) iterator2.next();
3937                 if (waitingElement.getStatus() >= ConflictNode.COARSE) {
3938                   output.println("       rentry=mlpCreateREntry("
3939                                  + waitingElement.getStatus()
3940                                  + ", &(seseToIssue->common));");
3941                 } else {
3942                   TempDescriptor td = waitingElement.getTempDesc();
3943                   // decide whether waiting element is dynamic or static
3944                   if (fsen.getDynamicInVarSet().contains(td)) {
3945                     // dynamic in-var case
3946                     output.println("       pointer=seseToIssue->"
3947                                    + waitingElement.getDynID()
3948                                    + "_srcSESE+seseToIssue->"
3949                                    + waitingElement.getDynID()
3950                                    + "_srcOffset;");
3951                     output.println("       rentry=mlpCreateFineREntry("
3952                                    + waitingElement.getStatus()
3953                                    + ", &(seseToIssue->common),  pointer );");
3954                   } else if (fsen.getStaticInVarSet().contains(td)) {
3955                     // static in-var case
3956                     VariableSourceToken vst = fsen.getStaticInVarSrc(td);
3957                     if (vst != null) {
3958   
3959                       String srcId = "SESE_"
3960                         + vst.getSESE()
3961                         .getPrettyIdentifier()
3962                         + vst.getSESE().getIdentifier()
3963                         + "_" + vst.getAge();
3964                       output.println("       pointer=(void*)&seseToIssue->"
3965                                      + srcId
3966                                      + "->"
3967                                      + waitingElement
3968                                      .getDynID()
3969                                      + ";");
3970                       output.println("       rentry=mlpCreateFineREntry("
3971                                      + waitingElement.getStatus()
3972                                      + ", &(seseToIssue->common),  pointer );");
3973                     }
3974                   } else {
3975                     output.println("       rentry=mlpCreateFineREntry("
3976                                    + waitingElement.getStatus()
3977                                    + ", &(seseToIssue->common),  (void*)&seseToIssue->"
3978                                    + waitingElement.getDynID()
3979                                    + ");");
3980                   }
3981                 }
3982                 output.println("       rentry->queue=runningSESE->memoryQueueArray["
3983                                + waitingElement.getQueueID()
3984                                + "];");
3985                 
3986                 if(enqueueType==SESEWaitingQueue.NORMAL){
3987                   output.println("       seseToIssue->common.rentryArray[seseToIssue->common.rentryIdx++]=rentry;");
3988                   output.println("       if(ADDRENTRY(runningSESE->memoryQueueArray["
3989                                  + waitingElement.getQueueID()
3990                                  + "],rentry)==NOTREADY){");
3991                   output.println("          ++(localCount);");
3992                   output.println("       }");
3993                   
3994                   // Trying to execute the dynamic coarse grain conflict strategy...
3995                   if(state.RCR && rcr != null) {
3996                     boolean useParentContext = false;
3997
3998                     if( (state.MLP &&fsen != mlpa.getMainSESE()) || 
3999                         (state.OOOJAVA &&fsen != oooa.getMainSESE())) {
4000                       assert fsen.getParent() != null;
4001                       if( !fsen.getParent().getIsCallerSESEplaceholder() ) {
4002                         useParentContext = true;
4003                       }
4004                     }
4005                     
4006                     for (TempDescriptor invar : fsen.getInVarsForDynamicCoarseConflictResolution()) {                      
4007                       String varString;
4008                       if( useParentContext ) {
4009                         varString = generateTemp( fsen.getParent().getfmBogus(), invar, null );
4010                       } else {
4011                         varString = generateTemp( fsen.getfmEnclosing(),         invar, null );
4012                       }
4013                       output.println("       "+rcr.getTraverserInvocation(invar, varString, fsen));
4014                     }
4015                   }
4016                 }else{
4017                   output
4018                     .println("       ADDRENTRYTOBUF(runningSESE->memoryQueueArray["
4019                              + waitingElement.getQueueID()
4020                              + "],rentry);");
4021                 }
4022               }
4023               if(enqueueType!=SESEWaitingQueue.NORMAL){
4024                 output.println("       localCount+=RESOLVEBUF(runningSESE->memoryQueueArray["
4025                                + queueID+ "],&seseToIssue->common);");
4026               }       
4027             }
4028             output.println("     }");
4029           }
4030           output.println();
4031         }
4032         
4033       }else{
4034         ConflictGraph graph = null;
4035         FlatSESEEnterNode parent = fsen.getParent();
4036         if (parent != null) {
4037           if (parent.isCallerSESEplaceholder) {
4038             graph = mlpa.getConflictGraphResults().get(parent.getfmEnclosing());
4039           } else {
4040             graph = mlpa.getConflictGraphResults().get(parent);
4041           }
4042         }
4043         if (graph != null && graph.hasConflictEdge()) {
4044           HashSet<SESELock> seseLockSet = mlpa.getConflictGraphLockMap()
4045             .get(graph);
4046           output.println();
4047           output.println("     //add memory queue element");
4048           SESEWaitingQueue seseWaitingQueue=graph.getWaitingElementSetBySESEID(fsen.getIdentifier(),
4049                                                                                seseLockSet);
4050           if(seseWaitingQueue.getWaitingElementSize()>0){
4051             output.println("     {");
4052             output.println("     REntry* rentry=NULL;");
4053             output.println("     INTPTR* pointer=NULL;");
4054             output.println("     seseToIssue->common.rentryIdx=0;");
4055                                         
4056             Set<Integer> queueIDSet=seseWaitingQueue.getQueueIDSet();
4057             for (Iterator iterator = queueIDSet.iterator(); iterator
4058                    .hasNext();) {
4059               Integer key = (Integer) iterator.next();
4060               int queueID=key.intValue();
4061               Set<WaitingElement> waitingQueueSet =  seseWaitingQueue.getWaitingElementSet(queueID);
4062               int enqueueType=seseWaitingQueue.getType(queueID);
4063               if(enqueueType==SESEWaitingQueue.EXCEPTION){
4064                 output.println("     INITIALIZEBUF(runningSESE->memoryQueueArray["
4065                                + queueID+ "]);");
4066               }
4067               for (Iterator iterator2 = waitingQueueSet.iterator(); iterator2
4068                      .hasNext();) {
4069                 WaitingElement waitingElement = (WaitingElement) iterator2
4070                   .next();
4071                 if (waitingElement.getStatus() >= ConflictNode.COARSE) {
4072                   output.println("     rentry=mlpCreateREntry("
4073                                  + waitingElement.getStatus()
4074                                  + ", &(seseToIssue->common));");
4075                 } else {
4076                   TempDescriptor td = waitingElement
4077                     .getTempDesc();
4078                   // decide whether waiting element is dynamic or
4079                   // static
4080                   if (fsen.getDynamicInVarSet().contains(td)) {
4081                     // dynamic in-var case
4082                     output.println("     pointer=seseToIssue->"
4083                                    + waitingElement.getDynID()
4084                                    + "_srcSESE+seseToIssue->"
4085                                    + waitingElement.getDynID()
4086                                    + "_srcOffset;");
4087                     output
4088                       .println("     rentry=mlpCreateFineREntry("
4089                                + waitingElement
4090                                .getStatus()
4091                                + ", &(seseToIssue->common),  pointer );");
4092                   } else if (fsen.getStaticInVarSet()
4093                              .contains(td)) {
4094                     // static in-var case
4095                     VariableSourceToken vst = fsen
4096                       .getStaticInVarSrc(td);
4097                     if (vst != null) {
4098   
4099                       String srcId = "SESE_"
4100                         + vst.getSESE()
4101                         .getPrettyIdentifier()
4102                         + vst.getSESE().getIdentifier()
4103                         + "_" + vst.getAge();
4104                       output
4105                         .println("     pointer=(void*)&seseToIssue->"
4106                                  + srcId
4107                                  + "->"
4108                                  + waitingElement
4109                                  .getDynID()
4110                                  + ";");
4111                       output
4112                         .println("     rentry=mlpCreateFineREntry("
4113                                  + waitingElement
4114                                  .getStatus()
4115                                  + ", &(seseToIssue->common),  pointer );");
4116   
4117                     }
4118                   } else {
4119                     output
4120                       .println("     rentry=mlpCreateFineREntry("
4121                                + waitingElement
4122                                .getStatus()
4123                                + ", &(seseToIssue->common),  (void*)&seseToIssue->"
4124                                + waitingElement.getDynID()
4125                                + ");");
4126                   }
4127                 }
4128                 output
4129                   .println("     rentry->queue=runningSESE->memoryQueueArray["
4130                            + waitingElement.getQueueID()
4131                            + "];");
4132                                                         
4133                 if(enqueueType==SESEWaitingQueue.NORMAL){
4134                   output
4135                     .println("     seseToIssue->common.rentryArray[seseToIssue->common.rentryIdx++]=rentry;");
4136                   output
4137                     .println("     if(ADDRENTRY(runningSESE->memoryQueueArray["
4138                              + waitingElement.getQueueID()
4139                              + "],rentry)==NOTREADY){");
4140                   output.println("        ++(localCount);");
4141                   output.println("     } ");
4142                 }else{
4143                   output
4144                     .println("     ADDRENTRYTOBUF(runningSESE->memoryQueueArray["
4145                              + waitingElement.getQueueID()
4146                              + "],rentry);");
4147                 }
4148               }
4149               if(enqueueType!=SESEWaitingQueue.NORMAL){
4150                 output.println("     localCount+=RESOLVEBUF(runningSESE->memoryQueueArray["
4151                                + queueID+ "],&seseToIssue->common);");
4152               }                         
4153             }
4154             output.println("     }");
4155           }
4156           output.println();
4157         }
4158       }
4159       ////////////////
4160     }
4161     
4162     // release this SESE for siblings to update its dependencies or,
4163     // eventually, for it to mark itself finished
4164     //    output.println("     pthread_mutex_unlock( &(seseToIssue->common.lock) );");
4165     
4166     // if there were no outstanding dependencies, issue here
4167     output.println("     if(  atomic_sub_and_test(10000-localCount,&(seseToIssue->common.unresolvedDependencies) ) ) {");
4168     output.println("       workScheduleSubmit( (void*)seseToIssue );");
4169     output.println("     }");
4170     /*
4171     output.println("     if( seseToIssue->common.unresolvedDependencies == 0 ) {");
4172     output.println("       workScheduleSubmit( (void*)seseToIssue );");
4173     output.println("     }");
4174     */
4175     // release this SESE for siblings to update its dependencies or,
4176     // eventually, for it to mark itself finished
4177 //    output.println("     pthread_mutex_unlock( &(seseToIssue->common.lock) );");
4178
4179     if( state.COREPROF ) {
4180       output.println("#ifdef CP_EVENTID_TASKDISPATCH");
4181       output.println("     CP_LOGEVENT( CP_EVENTID_TASKDISPATCH, CP_EVENTTYPE_END );");
4182       output.println("#endif");
4183     }
4184
4185     output.println("   }");
4186     
4187   }
4188
4189   public void generateFlatSESEExitNode( FlatMethod fm,  
4190                                         LocalityBinding lb, 
4191                                         FlatSESEExitNode fsexn, 
4192                                         PrintWriter output
4193                                       ) {
4194
4195     // if MLP flag is off, okay that SESE nodes are in IR graph, 
4196     // just skip over them and code generates exactly the same 
4197     if( ! (state.MLP || state.OOOJAVA) ) {
4198       return;
4199     }
4200
4201     // get the enter node for this exit that has meta data embedded
4202     FlatSESEEnterNode fsen = fsexn.getFlatEnter();
4203
4204     // there may be an SESE in an unreachable method, skip over
4205     if( (state.MLP && !mlpa.getAllSESEs().contains( fsen ))  ||
4206         (state.OOOJAVA && !oooa.getAllSESEs().contains( fsen ))
4207     ) {
4208       return;
4209     }
4210
4211     // also, if we have encountered a placeholder, just jump it
4212     if( fsen.getIsCallerSESEplaceholder() ) {
4213       return;
4214     }
4215     
4216     if( state.COREPROF ) {
4217       output.println("#ifdef CP_EVENTID_TASKEXECUTE");
4218       output.println("   CP_LOGEVENT( CP_EVENTID_TASKEXECUTE, CP_EVENTTYPE_END );");
4219       output.println("#endif");
4220     }
4221
4222     output.println("   /* SESE exiting */");
4223
4224     if( state.COREPROF ) {
4225       output.println("#ifdef CP_EVENTID_TASKRETIRE");
4226       output.println("   CP_LOGEVENT( CP_EVENTID_TASKRETIRE, CP_EVENTTYPE_BEGIN );");
4227       output.println("#endif");
4228     }
4229     
4230     String com = paramsprefix+"->common";
4231
4232     // this SESE cannot be done until all of its children are done
4233     // so grab your own lock with the condition variable for watching
4234     // that the number of your running children is greater than zero    
4235     if (GENERATEPRECISEGC){
4236         output.println("   stopforgc((struct garbagelist *)&___locals___);");
4237     }
4238     output.println("   pthread_mutex_lock( &("+com+".lock) );");
4239     if (GENERATEPRECISEGC){
4240         output.println("   restartaftergc();");
4241     }
4242     output.println("   while( "+com+".numRunningChildren > 0 ) {");
4243     if (GENERATEPRECISEGC){
4244 //      output.println("   stopforgc((struct garbagelist *)&(((SESEcommon*)(___params___))[1]));");
4245         output.println("   stopforgc((struct garbagelist *)&___locals___);");
4246     }
4247     output.println("     pthread_cond_wait( &("+com+".runningChildrenCond), &("+com+".lock) );");
4248     if (GENERATEPRECISEGC){
4249         output.println("   restartaftergc();");
4250     }
4251     output.println("   }");
4252
4253
4254     // copy out-set from local temps into the sese record
4255     Iterator<TempDescriptor> itr = fsen.getOutVarSet().iterator();
4256     while( itr.hasNext() ) {
4257       TempDescriptor temp = itr.next();
4258
4259       // only have to do this for primitives non-arrays
4260       if( !(
4261             temp.getType().isPrimitive() && !temp.getType().isArray()
4262            )
4263         ) {
4264         continue;
4265       }
4266
4267       // have to determine the context enclosing this sese
4268       boolean useParentContext = false;
4269
4270       if( (state.MLP &&fsen != mlpa.getMainSESE()) || 
4271           (state.OOOJAVA &&fsen != oooa.getMainSESE())
4272       ) {
4273         assert fsen.getParent() != null;
4274         if( !fsen.getParent().getIsCallerSESEplaceholder() ) {
4275           useParentContext = true;
4276         }
4277       }
4278
4279       String from;
4280       if( useParentContext ) {
4281         from = generateTemp( fsen.getParent().getfmBogus(), temp, null );
4282       } else {
4283         from = generateTemp( fsen.getfmEnclosing(),         temp, null );
4284       }
4285
4286       output.println("   "+paramsprefix+
4287                      "->"+temp.getSafeSymbol()+
4288                      " = "+from+";");
4289     }    
4290     
4291     // mark yourself done, your SESE data is now read-only
4292     output.println("   "+com+".doneExecuting = TRUE;");
4293     output.println("   pthread_cond_signal( &("+com+".doneCond) );");
4294     output.println("   pthread_mutex_unlock( &("+com+".lock) );");
4295
4296     // decrement dependency count for all SESE's on your forwarding list
4297     output.println("   while( !isEmpty( "+com+".forwardList ) ) {");
4298     output.println("     SESEcommon* consumer = (SESEcommon*) getItem( "+com+".forwardList );");
4299     
4300    
4301     output.println("     if(consumer->rentryIdx>0){");
4302     output.println("        // resolved null pointer");
4303     output.println("        int idx;");
4304     output.println("        for(idx=0;idx<consumer->rentryIdx;idx++){");
4305     output.println("           resolvePointer(consumer->rentryArray[idx]);");
4306     output.println("        }");
4307     output.println("     }");
4308     
4309     
4310 //    output.println("     pthread_mutex_lock( &(consumer->lock) );");
4311 //  output.println("     --(consumer->unresolvedDependencies);");
4312 //    output.println("     if( consumer->unresolvedDependencies == 0 ) {");
4313     output.println("     if( atomic_sub_and_test(1, &(consumer->unresolvedDependencies)) ){");
4314     output.println("       workScheduleSubmit( (void*)consumer );");
4315     output.println("     }");
4316 //    output.println("     pthread_mutex_unlock( &(consumer->lock) );");
4317     output.println("   }");
4318     
4319     
4320     // eom
4321     // clean up its lock element from waiting queue, and decrement dependency count for next SESE block
4322     if( (state.MLP && fsen != mlpa.getMainSESE()) ||
4323         (state.OOOJAVA && fsen != oooa.getMainSESE())
4324     ) {
4325         
4326                 output.println();
4327                 output.println("   /* check memory dependency*/");
4328                 output.println("  {");                  
4329                 output.println("      int idx;");
4330                 output.println("      for(idx=0;idx<___params___->common.rentryIdx;idx++){");
4331                 output.println("           REntry* re=___params___->common.rentryArray[idx];");
4332                 output.println("           RETIRERENTRY(re->queue,re);");
4333                 output.println("      }");
4334                 output.println("   }");
4335                 
4336     }
4337     
4338     // if parent is stalling on you, let them know you're done
4339     if( (state.MLP && fsexn.getFlatEnter() != mlpa.getMainSESE()) || 
4340         (state.OOOJAVA &&  fsexn.getFlatEnter() != oooa.getMainSESE())    
4341     ) {
4342       output.println("   psem_give( &("+paramsprefix+"->common.stallSem) );");
4343     }
4344
4345     // last of all, decrement your parent's number of running children    
4346     output.println("   if( "+paramsprefix+"->common.parent != NULL ) {");
4347     output.println("     if (atomic_sub_and_test(1, &"+paramsprefix+"->common.parent->numRunningChildren)) {");
4348     if (GENERATEPRECISEGC){
4349         output.println("   stopforgc((struct garbagelist *)&___locals___);");
4350     }
4351     output.println("       pthread_mutex_lock( &("+paramsprefix+"->common.parent->lock) );");
4352     if (GENERATEPRECISEGC){
4353         output.println("   restartaftergc();");
4354     }
4355     output.println("       pthread_cond_signal( &("+paramsprefix+"->common.parent->runningChildrenCond) );");
4356     output.println("       pthread_mutex_unlock( &("+paramsprefix+"->common.parent->lock) );");
4357     output.println("     }");
4358     output.println("   }");
4359
4360     // a task has variables to track static/dynamic instances
4361     // that serve as sources, release the parent's ref of each
4362     // non-null var of these types
4363     output.println("   // releasing static SESEs");
4364     output.println("#ifndef OOO_DISABLE_TASKMEMPOOL" );
4365     Iterator<SESEandAgePair> pItr = fsen.getNeededStaticNames().iterator();
4366     while( pItr.hasNext() ) {
4367       SESEandAgePair pair = pItr.next();
4368       output.println("   if( "+pair+" != NULL ) {");
4369       output.println("     RELEASE_REFERENCE_TO( "+pair+" );");
4370       output.println("   }");
4371     }
4372     output.println("   // releasing dynamic variable sources");
4373     Iterator<TempDescriptor> dynSrcItr = fsen.getDynamicVarSet().iterator();
4374     while( dynSrcItr.hasNext() ) {
4375       TempDescriptor dynSrcVar = dynSrcItr.next();
4376       output.println("   if( "+dynSrcVar+"_srcSESE != NULL ) {");
4377       output.println("     RELEASE_REFERENCE_TO( "+dynSrcVar+"_srcSESE );");
4378       output.println("   }");
4379     }    
4380     // destroy this task's mempool if it is not a leaf task
4381     if( !fsen.getIsLeafSESE() ) {
4382       output.println("     pooldestroy( runningSESE->taskRecordMemPool );");
4383     }
4384     output.println("#endif // OOO_DISABLE_TASKMEMPOOL" );
4385
4386
4387     // if this is not the Main sese (which has no parent) then return
4388     // THIS task's record to the PARENT'S task record pool, and only if
4389     // the reference count is now zero
4390     if( (state.MLP     && fsen != mlpa.getMainSESE()) || 
4391         (state.OOOJAVA && fsen != oooa.getMainSESE())
4392         ) {
4393       output.println("#ifndef OOO_DISABLE_TASKMEMPOOL" );
4394       output.println("   RELEASE_REFERENCE_TO( runningSESE );");
4395       output.println("#endif // OOO_DISABLE_TASKMEMPOOL" );
4396     } else {
4397       // the main task has no parent, just free its record
4398       output.println("   mlpFreeSESErecord( runningSESE );");
4399     }
4400     
4401     // as this thread is wrapping up the task, make sure the thread-local var
4402     // for the currently running task record references an invalid task
4403     output.println("   runningSESE = (SESEcommon*) 0x1;");
4404
4405     if( state.COREPROF ) {
4406       output.println("#ifdef CP_EVENTID_TASKRETIRE");
4407       output.println("   CP_LOGEVENT( CP_EVENTID_TASKRETIRE, CP_EVENTTYPE_END );");
4408       output.println("#endif");
4409     }
4410   }
4411  
4412   public void generateFlatWriteDynamicVarNode( FlatMethod fm,  
4413                                                LocalityBinding lb, 
4414                                                FlatWriteDynamicVarNode fwdvn,
4415                                                PrintWriter output
4416                                              ) {
4417     if( !(state.MLP || state.OOOJAVA) ) {
4418       // should node should not be in an IR graph if the
4419       // MLP flag is not set
4420       throw new Error("Unexpected presence of FlatWriteDynamicVarNode");
4421     }
4422         
4423     Hashtable<TempDescriptor, VSTWrapper> writeDynamic = fwdvn.getVar2src();
4424
4425     assert writeDynamic != null;
4426
4427     Iterator wdItr = writeDynamic.entrySet().iterator();
4428     while( wdItr.hasNext() ) {
4429       Map.Entry           me     = (Map.Entry)      wdItr.next();
4430       TempDescriptor      refVar = (TempDescriptor) me.getKey();
4431       VSTWrapper          vstW   = (VSTWrapper)     me.getValue();
4432       VariableSourceToken vst    =                  vstW.vst;
4433
4434       output.println("     {");
4435       output.println("       SESEcommon* oldSrc = "+refVar+"_srcSESE;");
4436
4437       if( vst == null ) {
4438         // if there is no given source, this variable is ready so
4439         // mark src pointer NULL to signify that the var is up-to-date
4440         output.println("       "+refVar+"_srcSESE = NULL;");
4441       } else {
4442         // otherwise we track where it will come from
4443         SESEandAgePair instance = new SESEandAgePair( vst.getSESE(), vst.getAge() );
4444         output.println("       "+refVar+"_srcSESE = "+instance+";");    
4445         output.println("       "+refVar+"_srcOffset = (INTPTR) &((("+
4446                        vst.getSESE().getSESErecordName()+"*)0)->"+vst.getAddrVar()+");");
4447       }
4448
4449       // no matter what we did above, track reference count of whatever
4450       // this variable pointed to, do release last in case we're just
4451       // copying the same value in because 1->2->1 is safe but ref count
4452       // 1->0->1 has a window where it looks like it should be free'd
4453       output.println("#ifndef OOO_DISABLE_TASKMEMPOOL" );
4454       output.println("       if( "+refVar+"_srcSESE != NULL ) {");
4455       output.println("         ADD_REFERENCE_TO( "+refVar+"_srcSESE );");
4456       output.println("       }");
4457       output.println("       if( oldSrc != NULL ) {");
4458       output.println("         RELEASE_REFERENCE_TO( oldSrc );");
4459       output.println("       }");
4460       output.println("#endif // OOO_DISABLE_TASKMEMPOOL" );
4461
4462       output.println("     }");
4463     }   
4464   }
4465
4466   
4467   private void generateFlatCheckNode(FlatMethod fm,  LocalityBinding lb, FlatCheckNode fcn, PrintWriter output) {
4468     if (state.CONSCHECK) {
4469       String specname=fcn.getSpec();
4470       String varname="repairstate___";
4471       output.println("{");
4472       output.println("struct "+specname+"_state * "+varname+"=allocate"+specname+"_state();");
4473
4474       TempDescriptor[] temps=fcn.getTemps();
4475       String[] vars=fcn.getVars();
4476       for(int i=0; i<temps.length; i++) {
4477         output.println(varname+"->"+vars[i]+"=(unsigned int)"+generateTemp(fm, temps[i],lb)+";");
4478       }
4479
4480       output.println("if (doanalysis"+specname+"("+varname+")) {");
4481       output.println("free"+specname+"_state("+varname+");");
4482       output.println("} else {");
4483       output.println("/* Bad invariant */");
4484       output.println("free"+specname+"_state("+varname+");");
4485       output.println("abort_task();");
4486       output.println("}");
4487       output.println("}");
4488     }
4489   }
4490
4491   private void generateFlatCall(FlatMethod fm, LocalityBinding lb, FlatCall fc, PrintWriter output) {
4492
4493     MethodDescriptor md=fc.getMethod();
4494     ParamsObject objectparams=(ParamsObject)paramstable.get(lb!=null ? locality.getBinding(lb, fc) : md);
4495     ClassDescriptor cn=md.getClassDesc();
4496     output.println("{");
4497     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
4498       if (lb!=null) {
4499         LocalityBinding fclb=locality.getBinding(lb, fc);
4500         output.print("       struct "+cn.getSafeSymbol()+fclb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params __parameterlist__={");
4501       } else
4502         output.print("       struct "+cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params __parameterlist__={");
4503       output.print(objectparams.numPointers());
4504       output.print(", "+localsprefixaddr);
4505       if (md.getThis()!=null) {
4506         output.print(", ");
4507         output.print("(struct "+md.getThis().getType().getSafeSymbol() +" *)"+ generateTemp(fm,fc.getThis(),lb));
4508       }
4509       if (fc.getThis()!=null&&md.getThis()==null) {
4510         System.out.println("WARNING!!!!!!!!!!!!");
4511         System.out.println("Source code calls static method "+md+" on an object in "+fm.getMethod()+"!");
4512       }
4513
4514
4515       for(int i=0; i<fc.numArgs(); i++) {
4516         Descriptor var=md.getParameter(i);
4517         TempDescriptor paramtemp=(TempDescriptor)temptovar.get(var);
4518         if (objectparams.isParamPtr(paramtemp)) {
4519           TempDescriptor targ=fc.getArg(i);
4520           output.print(", ");
4521           TypeDescriptor td=md.getParamType(i);
4522           if (td.isTag())
4523             output.print("(struct "+(new TypeDescriptor(typeutil.getClass(TypeUtil.TagClass))).getSafeSymbol()  +" *)"+generateTemp(fm, targ,lb));
4524           else
4525             output.print("(struct "+md.getParamType(i).getSafeSymbol()  +" *)"+generateTemp(fm, targ,lb));
4526         }
4527       }
4528       output.println("};");
4529     }
4530     output.print("       ");
4531
4532
4533     if (fc.getReturnTemp()!=null)
4534       output.print(generateTemp(fm,fc.getReturnTemp(),lb)+"=");
4535
4536     /* Do we need to do virtual dispatch? */
4537     if (md.isStatic()||md.getReturnType()==null||singleCall(fc.getThis().getType().getClassDesc(),md)) {
4538       //no
4539       if (lb!=null) {
4540         LocalityBinding fclb=locality.getBinding(lb, fc);
4541         output.print(cn.getSafeSymbol()+fclb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor());
4542       } else {
4543         output.print(cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor());
4544       }
4545     } else {
4546       //yes
4547       output.print("((");
4548       if (md.getReturnType().isClass()||md.getReturnType().isArray())
4549         output.print("struct " + md.getReturnType().getSafeSymbol()+" * ");
4550       else
4551         output.print(md.getReturnType().getSafeSymbol()+" ");
4552       output.print("(*)(");
4553
4554       boolean printcomma=false;
4555       if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
4556         if (lb!=null) {
4557           LocalityBinding fclb=locality.getBinding(lb, fc);
4558           output.print("struct "+cn.getSafeSymbol()+fclb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params * ");
4559         } else
4560           output.print("struct "+cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params * ");
4561         printcomma=true;
4562       }
4563
4564       for(int i=0; i<objectparams.numPrimitives(); i++) {
4565         TempDescriptor temp=objectparams.getPrimitive(i);
4566         if (printcomma)
4567           output.print(", ");
4568         printcomma=true;
4569         if (temp.getType().isClass()||temp.getType().isArray())
4570           output.print("struct " + temp.getType().getSafeSymbol()+" * ");
4571         else
4572           output.print(temp.getType().getSafeSymbol());
4573       }
4574
4575
4576       if (lb!=null) {
4577         LocalityBinding fclb=locality.getBinding(lb, fc);
4578         output.print("))virtualtable["+generateTemp(fm,fc.getThis(),lb)+"->type*"+maxcount+"+"+virtualcalls.getLocalityNumber(fclb)+"])");
4579       } else
4580         output.print("))virtualtable["+generateTemp(fm,fc.getThis(),lb)+"->type*"+maxcount+"+"+virtualcalls.getMethodNumber(md)+"])");
4581     }
4582
4583     output.print("(");
4584     boolean needcomma=false;
4585     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
4586       output.print("&__parameterlist__");
4587       needcomma=true;
4588     }
4589
4590     if (!GENERATEPRECISEGC && !this.state.MULTICOREGC) {
4591       if (fc.getThis()!=null) {
4592         TypeDescriptor ptd=md.getThis().getType();
4593         if (needcomma)
4594           output.print(",");
4595         if (ptd.isClass()&&!ptd.isArray())
4596           output.print("(struct "+ptd.getSafeSymbol()+" *) ");
4597         output.print(generateTemp(fm,fc.getThis(),lb));
4598         needcomma=true;
4599       }
4600     }
4601
4602     for(int i=0; i<fc.numArgs(); i++) {
4603       Descriptor var=md.getParameter(i);
4604       TempDescriptor paramtemp=(TempDescriptor)temptovar.get(var);
4605       if (objectparams.isParamPrim(paramtemp)) {
4606         TempDescriptor targ=fc.getArg(i);
4607         if (needcomma)
4608           output.print(", ");
4609
4610         TypeDescriptor ptd=md.getParamType(i);
4611         if (ptd.isClass()&&!ptd.isArray())
4612           output.print("(struct "+ptd.getSafeSymbol()+" *) ");
4613         output.print(generateTemp(fm, targ,lb));
4614         needcomma=true;
4615       }
4616     }
4617     output.println(");");
4618     output.println("   }");
4619   }
4620
4621   private boolean singleCall(ClassDescriptor thiscd, MethodDescriptor md) {
4622     Set subclasses=typeutil.getSubClasses(thiscd);
4623     if (subclasses==null)
4624       return true;
4625     for(Iterator classit=subclasses.iterator(); classit.hasNext();) {
4626       ClassDescriptor cd=(ClassDescriptor)classit.next();
4627       Set possiblematches=cd.getMethodTable().getSetFromSameScope(md.getSymbol());
4628       for(Iterator matchit=possiblematches.iterator(); matchit.hasNext();) {
4629         MethodDescriptor matchmd=(MethodDescriptor)matchit.next();
4630         if (md.matches(matchmd))
4631           return false;
4632       }
4633     }
4634     return true;
4635   }
4636
4637   private void generateFlatFieldNode(FlatMethod fm, LocalityBinding lb, FlatFieldNode ffn, PrintWriter output) {
4638     if (state.SINGLETM) {
4639       //single machine transactional memory case
4640       String field=ffn.getField().getSafeSymbol();
4641       String src=generateTemp(fm, ffn.getSrc(),lb);
4642       String dst=generateTemp(fm, ffn.getDst(),lb);
4643
4644       output.println(dst+"="+ src +"->"+field+ ";");
4645       if (ffn.getField().getType().isPtr()&&locality.getAtomic(lb).get(ffn).intValue()>0&&
4646           locality.getNodePreTempInfo(lb, ffn).get(ffn.getSrc())!=LocalityAnalysis.SCRATCH) {
4647         if ((dc==null)||(!state.READSET&&dc.getNeedTrans(lb, ffn))||
4648             (state.READSET&&dc.getNeedWriteTrans(lb, ffn))) {
4649           output.println("TRANSREAD("+dst+", "+dst+", (void *) (" + localsprefixaddr + "));");
4650         } else if (state.READSET&&dc.getNeedTrans(lb, ffn)) {
4651           if (state.HYBRID&&delaycomp.getConv(lb).contains(ffn)) {
4652             output.println("TRANSREADRDFISSION("+dst+", "+dst+");");
4653           } else
4654             output.println("TRANSREADRD("+dst+", "+dst+");");
4655         }
4656       }
4657     } else if (state.DSM) {
4658       Integer status=locality.getNodePreTempInfo(lb,ffn).get(ffn.getSrc());
4659       if (status==LocalityAnalysis.GLOBAL) {
4660         String field=ffn.getField().getSafeSymbol();
4661         String src=generateTemp(fm, ffn.getSrc(),lb);
4662         String dst=generateTemp(fm, ffn.getDst(),lb);
4663
4664         if (ffn.getField().getType().isPtr()) {
4665
4666           //TODO: Uncomment this when we have runtime support
4667           //if (ffn.getSrc()==ffn.getDst()) {
4668           //output.println("{");
4669           //output.println("void * temp="+src+";");
4670           //output.println("if (temp&0x1) {");
4671           //output.println("temp=(void *) transRead(trans, (unsigned int) temp);");
4672           //output.println(src+"->"+field+"="+temp+";");
4673           //output.println("}");
4674           //output.println(dst+"=temp;");
4675           //output.println("}");
4676           //} else {
4677           output.println(dst+"="+ src +"->"+field+ ";");
4678           //output.println("if ("+dst+"&0x1) {");
4679           //DEBUG: output.println("TRANSREAD("+dst+", (unsigned int) "+dst+",\""+fm+":"+ffn+"\");");
4680       output.println("TRANSREAD("+dst+", (unsigned int) "+dst+");");
4681           //output.println(src+"->"+field+"="+src+"->"+field+";");
4682           //output.println("}");
4683           //}
4684         } else {
4685           output.println(dst+"="+ src+"->"+field+";");
4686         }
4687       } else if (status==LocalityAnalysis.LOCAL) {
4688         if (ffn.getField().getType().isPtr()&&
4689             ffn.getField().isGlobal()) {
4690           String field=ffn.getField().getSafeSymbol();
4691           String src=generateTemp(fm, ffn.getSrc(),lb);
4692           String dst=generateTemp(fm, ffn.getDst(),lb);
4693           output.println(dst+"="+ src +"->"+field+ ";");
4694           if (locality.getAtomic(lb).get(ffn).intValue()>0)
4695             //DEBUG: output.println("TRANSREAD("+dst+", (unsigned int) "+dst+",\""+fm+":"+ffn+"\");");
4696             output.println("TRANSREAD("+dst+", (unsigned int) "+dst+");");
4697         } else
4698           output.println(generateTemp(fm, ffn.getDst(),lb)+"="+ generateTemp(fm,ffn.getSrc(),lb)+"->"+ ffn.getField().getSafeSymbol()+";");
4699       } else if (status==LocalityAnalysis.EITHER) {
4700         //Code is reading from a null pointer
4701         output.println("if ("+generateTemp(fm, ffn.getSrc(),lb)+") {");
4702         output.println("#ifndef RAW");
4703         output.println("printf(\"BIG ERROR\\n\");exit(-1);}");
4704         output.println("#endif");
4705         //This should throw a suitable null pointer error
4706         output.println(generateTemp(fm, ffn.getDst(),lb)+"="+ generateTemp(fm,ffn.getSrc(),lb)+"->"+ ffn.getField().getSafeSymbol()+";");
4707       } else
4708         throw new Error("Read from non-global/non-local in:"+lb.getExplanation());
4709     } else{
4710 // DEBUG        if(!ffn.getDst().getType().isPrimitive()){
4711 // DEBUG                output.println("within((void*)"+generateTemp(fm,ffn.getSrc(),lb)+"->"+ ffn.getField().getSafeSymbol()+");");
4712 // DEBUG        }      
4713       output.println(generateTemp(fm, ffn.getDst(),lb)+"="+ generateTemp(fm,ffn.getSrc(),lb)+"->"+ ffn.getField().getSafeSymbol()+";");
4714     }
4715   }
4716
4717
4718   private void generateFlatSetFieldNode(FlatMethod fm, LocalityBinding lb, FlatSetFieldNode fsfn, PrintWriter output) {
4719     if (fsfn.getField().getSymbol().equals("length")&&fsfn.getDst().getType().isArray())
4720       throw new Error("Can't set array length");
4721     if (state.SINGLETM && locality.getAtomic(lb).get(fsfn).intValue()>0) {
4722       //Single Machine Transaction Case
4723       boolean srcptr=fsfn.getSrc().getType().isPtr();
4724       String src=generateTemp(fm,fsfn.getSrc(),lb);
4725       String dst=generateTemp(fm,fsfn.getDst(),lb);
4726       output.println("//"+srcptr+" "+fsfn.getSrc().getType().isNull());
4727       if (srcptr&&!fsfn.getSrc().getType().isNull()) {
4728         output.println("{");
4729         if ((dc==null)||dc.getNeedSrcTrans(lb, fsfn)&&
4730             locality.getNodePreTempInfo(lb, fsfn).get(fsfn.getSrc())!=LocalityAnalysis.SCRATCH) {
4731           output.println("INTPTR srcoid=("+src+"!=NULL?((INTPTR)"+src+"->"+oidstr+"):0);");
4732         } else {
4733           output.println("INTPTR srcoid=(INTPTR)"+src+";");
4734         }
4735       }
4736       if (wb.needBarrier(fsfn)&&
4737           locality.getNodePreTempInfo(lb, fsfn).get(fsfn.getDst())!=LocalityAnalysis.SCRATCH) {
4738         if (state.EVENTMONITOR) {
4739           output.println("if ("+dst+"->___objstatus___&DIRTY) EVLOGEVENTOBJ(EV_WRITE,"+dst+"->objuid)");
4740         }
4741         output.println("*((unsigned int *)&("+dst+"->___objstatus___))|=DIRTY;");
4742       }
4743       if (srcptr&!fsfn.getSrc().getType().isNull()) {
4744         output.println("*((unsigned INTPTR *)&("+dst+"->"+ fsfn.getField().getSafeSymbol()+"))=srcoid;");
4745         output.println("}");
4746       } else {
4747         output.println(dst+"->"+ fsfn.getField().getSafeSymbol()+"="+ src+";");
4748       }
4749     } else if (state.DSM && locality.getAtomic(lb).get(fsfn).intValue()>0) {
4750       Integer statussrc=locality.getNodePreTempInfo(lb,fsfn).get(fsfn.getSrc());
4751       Integer statusdst=locality.getNodeTempInfo(lb).get(fsfn).get(fsfn.getDst());
4752       boolean srcglobal=statussrc==LocalityAnalysis.GLOBAL;
4753
4754       String src=generateTemp(fm,fsfn.getSrc(),lb);
4755       String dst=generateTemp(fm,fsfn.getDst(),lb);
4756       if (srcglobal) {
4757         output.println("{");
4758         output.println("INTPTR srcoid=("+src+"!=NULL?((INTPTR)"+src+"->"+oidstr+"):0);");
4759       }
4760       if (statusdst.equals(LocalityAnalysis.GLOBAL)) {
4761         String glbdst=dst;
4762         //mark it dirty
4763         if (wb.needBarrier(fsfn))
4764           output.println("*((unsigned int *)&("+dst+"->___localcopy___))|=DIRTY;");
4765         if (srcglobal) {
4766           output.println("*((unsigned INTPTR *)&("+glbdst+"->"+ fsfn.getField().getSafeSymbol()+"))=srcoid;");
4767         } else
4768           output.println(glbdst+"->"+ fsfn.getField().getSafeSymbol()+"="+ src+";");
4769       } else if (statusdst.equals(LocalityAnalysis.LOCAL)) {
4770         /** Check if we need to copy */
4771         output.println("if(!"+dst+"->"+localcopystr+") {");
4772         /* Link object into list */
4773         String revertptr=generateTemp(fm, reverttable.get(lb),lb);
4774         output.println(revertptr+"=revertlist;");
4775         if (GENERATEPRECISEGC || this.state.MULTICOREGC)
4776           output.println("COPY_OBJ((struct garbagelist *)"+localsprefixaddr+",(struct ___Object___ *)"+dst+");");
4777         else
4778           output.println("COPY_OBJ("+dst+");");
4779         output.println(dst+"->"+nextobjstr+"="+revertptr+";");
4780         output.println("revertlist=(struct ___Object___ *)"+dst+";");
4781         output.println("}");
4782         if (srcglobal)
4783           output.println(dst+"->"+ fsfn.getField().getSafeSymbol()+"=(void *) srcoid;");
4784         else
4785           output.println(dst+"->"+ fsfn.getField().getSafeSymbol()+"="+ src+";");
4786       } else if (statusdst.equals(LocalityAnalysis.EITHER)) {
4787         //writing to a null...bad
4788         output.println("if ("+dst+") {");
4789         output.println("printf(\"BIG ERROR 2\\n\");exit(-1);}");
4790         if (srcglobal)
4791           output.println(dst+"->"+ fsfn.getField().getSafeSymbol()+"=(void *) srcoid;");
4792         else
4793           output.println(dst+"->"+ fsfn.getField().getSafeSymbol()+"="+ src+";");
4794       }
4795       if (srcglobal) {
4796         output.println("}");
4797       }
4798     } else {
4799       if (state.FASTCHECK) {
4800         String dst=generateTemp(fm, fsfn.getDst(),lb);
4801         output.println("if(!"+dst+"->"+localcopystr+") {");
4802         /* Link object into list */
4803         if (GENERATEPRECISEGC || this.state.MULTICOREGC)
4804           output.println("COPY_OBJ((struct garbagelist *)"+localsprefixaddr+",(struct ___Object___ *)"+dst+");");
4805         else
4806           output.println("COPY_OBJ("+dst+");");
4807         output.println(dst+"->"+nextobjstr+"="+fcrevert+";");
4808         output.println(fcrevert+"=(struct ___Object___ *)"+dst+";");
4809         output.println("}");
4810       }
4811       
4812 // DEBUG        if(!fsfn.getField().getType().isPrimitive()){
4813 // DEBUG                output.println("within((void*)"+generateTemp(fm,fsfn.getSrc(),lb)+");");
4814 // DEBUG   }   
4815       output.println(generateTemp(fm, fsfn.getDst(),lb)+"->"+ fsfn.getField().getSafeSymbol()+"="+ generateTemp(fm,fsfn.getSrc(),lb)+";");
4816     }
4817   }
4818
4819   private void generateFlatElementNode(FlatMethod fm, LocalityBinding lb, FlatElementNode fen, PrintWriter output) {
4820     TypeDescriptor elementtype=fen.getSrc().getType().dereference();
4821     String type="";
4822
4823     if (elementtype.isArray()||elementtype.isClass())
4824       type="void *";
4825     else
4826       type=elementtype.getSafeSymbol()+" ";
4827
4828     if (this.state.ARRAYBOUNDARYCHECK && fen.needsBoundsCheck()) {
4829       output.println("if (unlikely(((unsigned int)"+generateTemp(fm, fen.getIndex(),lb)+") >= "+generateTemp(fm,fen.getSrc(),lb) + "->___length___))");
4830       output.println("failedboundschk();");
4831     }
4832     if (state.SINGLETM) {
4833       //Single machine transaction case
4834       String dst=generateTemp(fm, fen.getDst(),lb);
4835       if ((!state.STMARRAY)||(!wb.needBarrier(fen))||locality.getNodePreTempInfo(lb, fen).get(fen.getSrc())==LocalityAnalysis.SCRATCH||locality.getAtomic(lb).get(fen).intValue()==0||(state.READSET&&!dc.getNeedGet(lb, fen))) {
4836         output.println(dst +"=(("+ type+"*)(((char *) &("+ generateTemp(fm,fen.getSrc(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fen.getIndex(),lb)+"];");
4837       } else {
4838         output.println("STMGETARRAY("+dst+", "+ generateTemp(fm,fen.getSrc(),lb)+", "+generateTemp(fm, fen.getIndex(),lb)+", "+type+");");
4839       }
4840
4841       if (elementtype.isPtr()&&locality.getAtomic(lb).get(fen).intValue()>0&&
4842           locality.getNodePreTempInfo(lb, fen).get(fen.getSrc())!=LocalityAnalysis.SCRATCH) {
4843         if ((dc==null)||!state.READSET&&dc.getNeedTrans(lb, fen)||state.READSET&&dc.getNeedWriteTrans(lb, fen)) {
4844           output.println("TRANSREAD("+dst+", "+dst+", (void *)(" + localsprefixaddr+"));");
4845         } else if (state.READSET&&dc.getNeedTrans(lb, fen)) {
4846           if (state.HYBRID&&delaycomp.getConv(lb).contains(fen)) {
4847             output.println("TRANSREADRDFISSION("+dst+", "+dst+");");
4848           } else
4849             output.println("TRANSREADRD("+dst+", "+dst+");");
4850         }
4851       }
4852     } else if (state.DSM) {
4853       Integer status=locality.getNodePreTempInfo(lb,fen).get(fen.getSrc());
4854       if (status==LocalityAnalysis.GLOBAL) {
4855         String dst=generateTemp(fm, fen.getDst(),lb);
4856         if (elementtype.isPtr()) {
4857           output.println(dst +"=(("+ type+"*)(((char *) &("+ generateTemp(fm,fen.getSrc(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fen.getIndex(),lb)+"];");
4858           //DEBUG: output.println("TRANSREAD("+dst+", "+dst+",\""+fm+":"+fen+"\");");
4859           output.println("TRANSREAD("+dst+", "+dst+");");
4860         } else {
4861           output.println(dst +"=(("+ type+"*)(((char *) &("+ generateTemp(fm,fen.getSrc(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fen.getIndex(),lb)+"];");
4862         }
4863       } else if (status==LocalityAnalysis.LOCAL) {
4864         output.println(generateTemp(fm, fen.getDst(),lb)+"=(("+ type+"*)(((char *) &("+ generateTemp(fm,fen.getSrc(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fen.getIndex(),lb)+"];");
4865       } else if (status==LocalityAnalysis.EITHER) {
4866         //Code is reading from a null pointer
4867         output.println("if ("+generateTemp(fm, fen.getSrc(),lb)+") {");
4868         output.println("#ifndef RAW");
4869         output.println("printf(\"BIG ERROR\\n\");exit(-1);}");
4870         output.println("#endif");
4871         //This should throw a suitable null pointer error
4872         output.println(generateTemp(fm, fen.getDst(),lb)+"=(("+ type+"*)(((char *) &("+ generateTemp(fm,fen.getSrc(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fen.getIndex(),lb)+"];");
4873       } else
4874         throw new Error("Read from non-global/non-local in:"+lb.getExplanation());
4875     } else {
4876 // DEBUG output.println("within((void*)"+generateTemp(fm,fen.getSrc(),lb)+");");
4877         output.println(generateTemp(fm, fen.getDst(),lb)+"=(("+ type+"*)(((char *) &("+ generateTemp(fm,fen.getSrc(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fen.getIndex(),lb)+"];");
4878     }
4879   }
4880
4881   private void generateFlatSetElementNode(FlatMethod fm, LocalityBinding lb, FlatSetElementNode fsen, PrintWriter output) {
4882     //TODO: need dynamic check to make sure this assignment is actually legal
4883     //Because Object[] could actually be something more specific...ie. Integer[]
4884
4885     TypeDescriptor elementtype=fsen.getDst().getType().dereference();
4886     String type="";
4887
4888     if (elementtype.isArray()||elementtype.isClass())
4889       type="void *";
4890     else
4891       type=elementtype.getSafeSymbol()+" ";
4892
4893     if (this.state.ARRAYBOUNDARYCHECK && fsen.needsBoundsCheck()) {
4894       output.println("if (unlikely(((unsigned int)"+generateTemp(fm, fsen.getIndex(),lb)+") >= "+generateTemp(fm,fsen.getDst(),lb) + "->___length___))");
4895       output.println("failedboundschk();");
4896     }
4897
4898     if (state.SINGLETM && locality.getAtomic(lb).get(fsen).intValue()>0) {
4899       //Transaction set element case
4900       if (wb.needBarrier(fsen)&&
4901           locality.getNodePreTempInfo(lb, fsen).get(fsen.getDst())!=LocalityAnalysis.SCRATCH) {
4902         output.println("*((unsigned int *)&("+generateTemp(fm,fsen.getDst(),lb)+"->___objstatus___))|=DIRTY;");
4903       }
4904       if (fsen.getSrc().getType().isPtr()&&!fsen.getSrc().getType().isNull()) {
4905         output.println("{");
4906         String src=generateTemp(fm, fsen.getSrc(), lb);
4907         if ((dc==null)||dc.getNeedSrcTrans(lb, fsen)&&
4908             locality.getNodePreTempInfo(lb, fsen).get(fsen.getSrc())!=LocalityAnalysis.SCRATCH) {
4909           output.println("INTPTR srcoid=("+src+"!=NULL?((INTPTR)"+src+"->"+oidstr+"):0);");
4910         } else {
4911           output.println("INTPTR srcoid=(INTPTR)"+src+";");
4912         }
4913         if (state.STMARRAY&&locality.getNodePreTempInfo(lb, fsen).get(fsen.getDst())!=LocalityAnalysis.SCRATCH&&wb.needBarrier(fsen)&&locality.getAtomic(lb).get(fsen).intValue()>0) {
4914           output.println("STMSETARRAY("+generateTemp(fm, fsen.getDst(),lb)+", "+generateTemp(fm, fsen.getIndex(),lb)+", srcoid, INTPTR);");
4915         } else {
4916           output.println("((INTPTR*)(((char *) &("+ generateTemp(fm,fsen.getDst(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fsen.getIndex(),lb)+"]=srcoid;");
4917         }
4918         output.println("}");
4919       } else {
4920         if (state.STMARRAY&&locality.getNodePreTempInfo(lb, fsen).get(fsen.getDst())!=LocalityAnalysis.SCRATCH&&wb.needBarrier(fsen)&&locality.getAtomic(lb).get(fsen).intValue()>0) {
4921           output.println("STMSETARRAY("+generateTemp(fm, fsen.getDst(),lb)+", "+generateTemp(fm, fsen.getIndex(),lb)+", "+ generateTemp(fm, fsen.getSrc(), lb) +", "+type+");");
4922         } else {
4923           output.println("(("+type +"*)(((char *) &("+ generateTemp(fm,fsen.getDst(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fsen.getIndex(),lb)+"]="+generateTemp(fm,fsen.getSrc(),lb)+";");
4924         }
4925       }
4926     } else if (state.DSM && locality.getAtomic(lb).get(fsen).intValue()>0) {
4927       Integer statussrc=locality.getNodePreTempInfo(lb,fsen).get(fsen.getSrc());
4928       Integer statusdst=locality.getNodePreTempInfo(lb,fsen).get(fsen.getDst());
4929       boolean srcglobal=statussrc==LocalityAnalysis.GLOBAL;
4930       boolean dstglobal=statusdst==LocalityAnalysis.GLOBAL;
4931       boolean dstlocal=(statusdst==LocalityAnalysis.LOCAL)||(statusdst==LocalityAnalysis.EITHER);
4932       
4933       if (dstglobal) {
4934         if (wb.needBarrier(fsen))
4935           output.println("*((unsigned int *)&("+generateTemp(fm,fsen.getDst(),lb)+"->___localcopy___))|=DIRTY;");
4936       } else if (dstlocal) {
4937         /** Check if we need to copy */
4938         String dst=generateTemp(fm, fsen.getDst(),lb);
4939         output.println("if(!"+dst+"->"+localcopystr+") {");
4940         /* Link object into list */
4941         String revertptr=generateTemp(fm, reverttable.get(lb),lb);
4942         output.println(revertptr+"=revertlist;");
4943         if ((GENERATEPRECISEGC) || this.state.MULTICOREGC)
4944         output.println("COPY_OBJ((struct garbagelist *)"+localsprefixaddr+",(struct ___Object___ *)"+dst+");");
4945         else
4946           output.println("COPY_OBJ("+dst+");");
4947         output.println(dst+"->"+nextobjstr+"="+revertptr+";");
4948         output.println("revertlist=(struct ___Object___ *)"+dst+";");
4949         output.println("}");
4950       } else {
4951         System.out.println("Node: "+fsen);
4952         System.out.println(lb);
4953         System.out.println("statusdst="+statusdst);
4954         System.out.println(fm.printMethod());
4955         throw new Error("Unknown array type");
4956       }
4957       if (srcglobal) {
4958         output.println("{");
4959         String src=generateTemp(fm, fsen.getSrc(), lb);
4960         output.println("INTPTR srcoid=("+src+"!=NULL?((INTPTR)"+src+"->"+oidstr+"):0);");
4961         output.println("((INTPTR*)(((char *) &("+ generateTemp(fm,fsen.getDst(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fsen.getIndex(),lb)+"]=srcoid;");
4962         output.println("}");
4963       } else {
4964         output.println("(("+type +"*)(((char *) &("+ generateTemp(fm,fsen.getDst(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fsen.getIndex(),lb)+"]="+generateTemp(fm,fsen.getSrc(),lb)+";");
4965       }
4966     } else {
4967       if (state.FASTCHECK) {
4968         String dst=generateTemp(fm, fsen.getDst(),lb);
4969         output.println("if(!"+dst+"->"+localcopystr+") {");
4970         /* Link object into list */
4971         if (GENERATEPRECISEGC || this.state.MULTICOREGC)
4972           output.println("COPY_OBJ((struct garbagelist *)"+localsprefixaddr+",(struct ___Object___ *)"+dst+");");
4973         else
4974           output.println("COPY_OBJ("+dst+");");
4975         output.println(dst+"->"+nextobjstr+"="+fcrevert+";");
4976         output.println(fcrevert+"=(struct ___Object___ *)"+dst+";");
4977         output.println("}");
4978       }
4979 // DEBUG      output.println("within((void*)"+generateTemp(fm,fsen.getDst(),lb)+");");
4980       output.println("(("+type +"*)(((char *) &("+ generateTemp(fm,fsen.getDst(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fsen.getIndex(),lb)+"]="+generateTemp(fm,fsen.getSrc(),lb)+";");
4981     }
4982   }
4983
4984   protected void generateFlatNew(FlatMethod fm, LocalityBinding lb, FlatNew fn, PrintWriter output) {
4985     if (state.DSM && locality.getAtomic(lb).get(fn).intValue()>0&&!fn.isGlobal()) {
4986       //Stash pointer in case of GC
4987       String revertptr=generateTemp(fm, reverttable.get(lb),lb);
4988       output.println(revertptr+"=revertlist;");
4989     }
4990     if (state.SINGLETM) {
4991       if (fn.getType().isArray()) {
4992         int arrayid=state.getArrayNumber(fn.getType())+state.numClasses();
4993         if (locality.getAtomic(lb).get(fn).intValue()>0) {
4994           //inside transaction
4995           output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newarraytrans("+localsprefixaddr+", "+arrayid+", "+generateTemp(fm, fn.getSize(),lb)+");");
4996         } else {
4997           //outside transaction
4998           output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newarray("+localsprefixaddr+", "+arrayid+", "+generateTemp(fm, fn.getSize(),lb)+");");
4999         }
5000       } else {
5001         if (locality.getAtomic(lb).get(fn).intValue()>0) {
5002           //inside transaction
5003           output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newtrans("+localsprefixaddr+", "+fn.getType().getClassDesc().getId()+");");
5004         } else {
5005           //outside transaction
5006           output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_new("+localsprefixaddr+", "+fn.getType().getClassDesc().getId()+");");
5007         }
5008       }
5009     } else if (fn.getType().isArray()) {
5010       int arrayid=state.getArrayNumber(fn.getType())+state.numClasses();
5011       if (fn.isGlobal()&&(state.DSM||state.SINGLETM)) {
5012         output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newarrayglobal("+arrayid+", "+generateTemp(fm, fn.getSize(),lb)+");");
5013       } else if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
5014           if(this.state.MLP || state.OOOJAVA){
5015             output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newarray_mlp("+localsprefixaddr+", "+arrayid+", "+generateTemp(fm, fn.getSize(),lb)+", oid, "+oooa.getDisjointAnalysis().getAllocationSiteFromFlatNew(fn).getUniqueAllocSiteID()+");");
5016         output.println("    oid += numWorkers;");
5017           }else{
5018     output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newarray("+localsprefixaddr+", "+arrayid+", "+generateTemp(fm, fn.getSize(),lb)+");");                      
5019           }
5020       } else {
5021         output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newarray("+arrayid+", "+generateTemp(fm, fn.getSize(),lb)+");");
5022       }
5023     } else {
5024       if (fn.isGlobal()&&(state.DSM||state.SINGLETM)) {
5025         output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newglobal("+fn.getType().getClassDesc().getId()+");");
5026       } else if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
5027           if (this.state.MLP || state.OOOJAVA){
5028         output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_new_mlp("+localsprefixaddr+", "+fn.getType().getClassDesc().getId()+", oid, "+oooa.getDisjointAnalysis().getAllocationSiteFromFlatNew(fn).getUniqueAllocSiteID()+");");
5029         output.println("    oid += numWorkers;");
5030           } else {
5031     output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_new("+localsprefixaddr+", "+fn.getType().getClassDesc().getId()+");");                      
5032           }
5033       } else {
5034         output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_new("+fn.getType().getClassDesc().getId()+");");
5035       }
5036     }
5037     if (state.DSM && locality.getAtomic(lb).get(fn).intValue()>0&&!fn.isGlobal()) {
5038       String revertptr=generateTemp(fm, reverttable.get(lb),lb);
5039       String dst=generateTemp(fm,fn.getDst(),lb);
5040       output.println(dst+"->___localcopy___=(struct ___Object___*)1;");
5041       output.println(dst+"->"+nextobjstr+"="+revertptr+";");
5042       output.println("revertlist=(struct ___Object___ *)"+dst+";");
5043     }
5044     if (state.FASTCHECK) {
5045       String dst=generateTemp(fm,fn.getDst(),lb);
5046       output.println(dst+"->___localcopy___=(struct ___Object___*)1;");
5047       output.println(dst+"->"+nextobjstr+"="+fcrevert+";");
5048       output.println(fcrevert+"=(struct ___Object___ *)"+dst+";");
5049     }
5050   }
5051
5052   private void generateFlatTagDeclaration(FlatMethod fm, LocalityBinding lb, FlatTagDeclaration fn, PrintWriter output) {
5053     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
5054       output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_tag("+localsprefixaddr+", "+state.getTagId(fn.getType())+");");
5055     } else {
5056       output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_tag("+state.getTagId(fn.getType())+");");
5057     }
5058   }
5059
5060   private void generateFlatOpNode(FlatMethod fm, LocalityBinding lb, FlatOpNode fon, PrintWriter output) {
5061     if (fon.getRight()!=null) {
5062       if (fon.getOp().getOp()==Operation.URIGHTSHIFT) {
5063         if (fon.getLeft().getType().isLong())
5064           output.println(generateTemp(fm, fon.getDest(),lb)+" = ((unsigned long long)"+generateTemp(fm, fon.getLeft(),lb)+")>>"+generateTemp(fm,fon.getRight(),lb)+";");
5065         else
5066           output.println(generateTemp(fm, fon.getDest(),lb)+" = ((unsigned int)"+generateTemp(fm, fon.getLeft(),lb)+")>>"+generateTemp(fm,fon.getRight(),lb)+";");
5067
5068       } else if (dc!=null) {
5069         output.print(generateTemp(fm, fon.getDest(),lb)+" = (");
5070         if (fon.getLeft().getType().isPtr()&&(fon.getOp().getOp()==Operation.EQUAL||fon.getOp().getOp()==Operation.NOTEQUAL))
5071             output.print("(void *)");
5072         if (dc.getNeedLeftSrcTrans(lb, fon))
5073           output.print("("+generateTemp(fm, fon.getLeft(),lb)+"!=NULL?"+generateTemp(fm, fon.getLeft(),lb)+"->"+oidstr+":NULL)");
5074         else
5075           output.print(generateTemp(fm, fon.getLeft(),lb));
5076         output.print(")"+fon.getOp().toString()+"(");
5077         if (fon.getRight().getType().isPtr()&&(fon.getOp().getOp()==Operation.EQUAL||fon.getOp().getOp()==Operation.NOTEQUAL))
5078             output.print("(void *)");
5079         if (dc.getNeedRightSrcTrans(lb, fon))
5080           output.println("("+generateTemp(fm, fon.getRight(),lb)+"!=NULL?"+generateTemp(fm, fon.getRight(),lb)+"->"+oidstr+":NULL));");
5081         else
5082           output.println(generateTemp(fm,fon.getRight(),lb)+");");
5083       } else
5084         output.println(generateTemp(fm, fon.getDest(),lb)+" = "+generateTemp(fm, fon.getLeft(),lb)+fon.getOp().toString()+generateTemp(fm,fon.getRight(),lb)+";");
5085     } else if (fon.getOp().getOp()==Operation.ASSIGN)
5086       output.println(generateTemp(fm, fon.getDest(),lb)+" = "+generateTemp(fm, fon.getLeft(),lb)+";");
5087     else if (fon.getOp().getOp()==Operation.UNARYPLUS)
5088       output.println(generateTemp(fm, fon.getDest(),lb)+" = "+generateTemp(fm, fon.getLeft(),lb)+";");
5089     else if (fon.getOp().getOp()==Operation.UNARYMINUS)
5090       output.println(generateTemp(fm, fon.getDest(),lb)+" = -"+generateTemp(fm, fon.getLeft(),lb)+";");
5091     else if (fon.getOp().getOp()==Operation.LOGIC_NOT)
5092       output.println(generateTemp(fm, fon.getDest(),lb)+" = !"+generateTemp(fm, fon.getLeft(),lb)+";");
5093     else if (fon.getOp().getOp()==Operation.COMP)
5094       output.println(generateTemp(fm, fon.getDest(),lb)+" = ~"+generateTemp(fm, fon.getLeft(),lb)+";");
5095     else if (fon.getOp().getOp()==Operation.ISAVAILABLE) {
5096       output.println(generateTemp(fm, fon.getDest(),lb)+" = "+generateTemp(fm, fon.getLeft(),lb)+"->fses==NULL;");
5097     } else
5098       output.println(generateTemp(fm, fon.getDest(),lb)+fon.getOp().toString()+generateTemp(fm, fon.getLeft(),lb)+";");
5099   }
5100
5101   private void generateFlatCastNode(FlatMethod fm, LocalityBinding lb, FlatCastNode fcn, PrintWriter output) {
5102     /* TODO: Do type check here */
5103     if (fcn.getType().isArray()) {
5104       output.println(generateTemp(fm,fcn.getDst(),lb)+"=(struct ArrayObject *)"+generateTemp(fm,fcn.getSrc(),lb)+";");
5105     } else if (fcn.getType().isClass())
5106       output.println(generateTemp(fm,fcn.getDst(),lb)+"=(struct "+fcn.getType().getSafeSymbol()+" *)"+generateTemp(fm,fcn.getSrc(),lb)+";");
5107     else
5108       output.println(generateTemp(fm,fcn.getDst(),lb)+"=("+fcn.getType().getSafeSymbol()+")"+generateTemp(fm,fcn.getSrc(),lb)+";");
5109   }
5110
5111   private void generateFlatLiteralNode(FlatMethod fm, LocalityBinding lb, FlatLiteralNode fln, PrintWriter output) {
5112     if (fln.getValue()==null)
5113       output.println(generateTemp(fm, fln.getDst(),lb)+"=0;");
5114     else if (fln.getType().getSymbol().equals(TypeUtil.StringClass)) {
5115       if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
5116         if (state.DSM && locality.getAtomic(lb).get(fln).intValue()>0) {
5117           //Stash pointer in case of GC
5118           String revertptr=generateTemp(fm, reverttable.get(lb),lb);
5119           output.println(revertptr+"=revertlist;");
5120         }
5121         output.println(generateTemp(fm, fln.getDst(),lb)+"=NewString("+localsprefixaddr+", \""+FlatLiteralNode.escapeString((String)fln.getValue())+"\","+((String)fln.getValue()).length()+");");
5122         if (state.DSM && locality.getAtomic(lb).get(fln).intValue()>0) {
5123           //Stash pointer in case of GC
5124           String revertptr=generateTemp(fm, reverttable.get(lb),lb);
5125           output.println("revertlist="+revertptr+";");
5126         }
5127       } else {
5128         output.println(generateTemp(fm, fln.getDst(),lb)+"=NewString(\""+FlatLiteralNode.escapeString((String)fln.getValue())+"\","+((String)fln.getValue()).length()+");");
5129       }
5130     } else if (fln.getType().isBoolean()) {
5131       if (((Boolean)fln.getValue()).booleanValue())
5132         output.println(generateTemp(fm, fln.getDst(),lb)+"=1;");
5133       else
5134         output.println(generateTemp(fm, fln.getDst(),lb)+"=0;");
5135     } else if (fln.getType().isChar()) {
5136       String st=FlatLiteralNode.escapeString(fln.getValue().toString());
5137       output.println(generateTemp(fm, fln.getDst(),lb)+"='"+st+"';");
5138     } else if (fln.getType().isLong()) {
5139       output.println(generateTemp(fm, fln.getDst(),lb)+"="+fln.getValue()+"LL;");
5140     } else
5141       output.println(generateTemp(fm, fln.getDst(),lb)+"="+fln.getValue()+";");
5142   }
5143
5144   protected void generateFlatReturnNode(FlatMethod fm, LocalityBinding lb, FlatReturnNode frn, PrintWriter output) {
5145     if (frn.getReturnTemp()!=null) {
5146       if (frn.getReturnTemp().getType().isPtr())
5147         output.println("return (struct "+fm.getMethod().getReturnType().getSafeSymbol()+"*)"+generateTemp(fm, frn.getReturnTemp(), lb)+";");
5148       else
5149         output.println("return "+generateTemp(fm, frn.getReturnTemp(), lb)+";");
5150     } else {
5151       output.println("return;");
5152     }
5153   }
5154
5155   protected void generateStoreFlatCondBranch(FlatMethod fm, LocalityBinding lb, FlatCondBranch fcb, String label, PrintWriter output) {
5156     int left=-1;
5157     int right=-1;
5158     //only record if this group has more than one exit
5159     if (branchanalysis.numJumps(fcb)>1) {
5160       left=branchanalysis.jumpValue(fcb, 0);
5161       right=branchanalysis.jumpValue(fcb, 1);
5162     }
5163     output.println("if (!"+generateTemp(fm, fcb.getTest(),lb)+") {");
5164     if (right!=-1)
5165       output.println("STOREBRANCH("+right+");");
5166     output.println("goto "+label+";");
5167     output.println("}");
5168     if (left!=-1)
5169       output.println("STOREBRANCH("+left+");");
5170   }
5171
5172   protected void generateFlatCondBranch(FlatMethod fm, LocalityBinding lb, FlatCondBranch fcb, String label, PrintWriter output) {
5173     output.println("if (!"+generateTemp(fm, fcb.getTest(),lb)+") goto "+label+";");
5174   }
5175
5176   /** This method generates header information for the method or
5177    * task referenced by the Descriptor des. */
5178   private void generateHeader(FlatMethod fm, LocalityBinding lb, Descriptor des, PrintWriter output) {
5179     generateHeader(fm, lb, des, output, false);
5180   }
5181
5182   private void generateHeader(FlatMethod fm, LocalityBinding lb, Descriptor des, PrintWriter output, boolean addSESErecord) {
5183     /* Print header */
5184     ParamsObject objectparams=(ParamsObject)paramstable.get(lb!=null ? lb : des);
5185     MethodDescriptor md=null;
5186     TaskDescriptor task=null;
5187     if (des instanceof MethodDescriptor)
5188       md=(MethodDescriptor) des;
5189     else
5190       task=(TaskDescriptor) des;
5191
5192     ClassDescriptor cn=md!=null ? md.getClassDesc() : null;
5193
5194     if (md!=null&&md.getReturnType()!=null) {
5195       if (md.getReturnType().isClass()||md.getReturnType().isArray())
5196         output.print("struct " + md.getReturnType().getSafeSymbol()+" * ");
5197       else
5198         output.print(md.getReturnType().getSafeSymbol()+" ");
5199     } else
5200       //catch the constructor case
5201       output.print("void ");
5202     if (md!=null) {
5203       if (state.DSM||state.SINGLETM) {
5204         output.print(cn.getSafeSymbol()+lb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"(");
5205       } else
5206         output.print(cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"(");
5207     } else
5208       output.print(task.getSafeSymbol()+"(");
5209     
5210     boolean printcomma=false;
5211     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
5212       if (md!=null) {
5213         if (state.DSM||state.SINGLETM) {
5214           output.print("struct "+cn.getSafeSymbol()+lb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params * "+paramsprefix);
5215         } else
5216           output.print("struct "+cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params * "+paramsprefix);
5217       } else
5218         output.print("struct "+task.getSafeSymbol()+"_params * "+paramsprefix);
5219       printcomma=true;
5220     }
5221
5222     if (md!=null) {
5223       /* Method */
5224       for(int i=0; i<objectparams.numPrimitives(); i++) {
5225         TempDescriptor temp=objectparams.getPrimitive(i);
5226         if (printcomma)
5227           output.print(", ");
5228         printcomma=true;
5229         if (temp.getType().isClass()||temp.getType().isArray())
5230           output.print("struct "+temp.getType().getSafeSymbol()+" * "+temp.getSafeSymbol());
5231         else
5232           output.print(temp.getType().getSafeSymbol()+" "+temp.getSafeSymbol());
5233       }
5234       output.println(") {");
5235     } else if (!GENERATEPRECISEGC && !this.state.MULTICOREGC) {
5236       /* Imprecise Task */
5237       output.println("void * parameterarray[]) {");
5238       /* Unpack variables */
5239       for(int i=0; i<objectparams.numPrimitives(); i++) {
5240         TempDescriptor temp=objectparams.getPrimitive(i);
5241         output.println("struct "+temp.getType().getSafeSymbol()+" * "+temp.getSafeSymbol()+"=parameterarray["+i+"];");
5242       }
5243       for(int i=0; i<fm.numTags(); i++) {
5244         TempDescriptor temp=fm.getTag(i);
5245         int offset=i+objectparams.numPrimitives();
5246         output.println("struct ___TagDescriptor___ * "+temp.getSafeSymbol()+"=parameterarray["+offset+"];");
5247       }
5248
5249       if ((objectparams.numPrimitives()+fm.numTags())>maxtaskparams)
5250         maxtaskparams=objectparams.numPrimitives()+fm.numTags();
5251     } else output.println(") {");
5252   }
5253
5254   public void generateFlatFlagActionNode(FlatMethod fm, LocalityBinding lb, FlatFlagActionNode ffan, PrintWriter output) {
5255     output.println("/* FlatFlagActionNode */");
5256
5257
5258     /* Process tag changes */
5259     Relation tagsettable=new Relation();
5260     Relation tagcleartable=new Relation();
5261
5262     Iterator tagsit=ffan.getTempTagPairs();
5263     while (tagsit.hasNext()) {
5264       TempTagPair ttp=(TempTagPair) tagsit.next();
5265       TempDescriptor objtmp=ttp.getTemp();
5266       TagDescriptor tag=ttp.getTag();
5267       TempDescriptor tagtmp=ttp.getTagTemp();
5268       boolean tagstatus=ffan.getTagChange(ttp);
5269       if (tagstatus) {
5270         tagsettable.put(objtmp, tagtmp);
5271       } else {
5272         tagcleartable.put(objtmp, tagtmp);
5273       }
5274     }
5275
5276
5277     Hashtable flagandtable=new Hashtable();
5278     Hashtable flagortable=new Hashtable();
5279
5280     /* Process flag changes */
5281     Iterator flagsit=ffan.getTempFlagPairs();
5282     while(flagsit.hasNext()) {
5283       TempFlagPair tfp=(TempFlagPair)flagsit.next();
5284       TempDescriptor temp=tfp.getTemp();
5285       Hashtable flagtable=(Hashtable)flagorder.get(temp.getType().getClassDesc());
5286       FlagDescriptor flag=tfp.getFlag();
5287       if (flag==null) {
5288         //Newly allocate objects that don't set any flags case
5289         if (flagortable.containsKey(temp)) {
5290           throw new Error();
5291         }
5292         int mask=0;
5293         flagortable.put(temp,new Integer(mask));
5294       } else {
5295         int flagid=1<<((Integer)flagtable.get(flag)).intValue();
5296         boolean flagstatus=ffan.getFlagChange(tfp);
5297         if (flagstatus) {
5298           int mask=0;
5299           if (flagortable.containsKey(temp)) {
5300             mask=((Integer)flagortable.get(temp)).intValue();
5301           }
5302           mask|=flagid;
5303           flagortable.put(temp,new Integer(mask));
5304         } else {
5305           int mask=0xFFFFFFFF;
5306           if (flagandtable.containsKey(temp)) {
5307             mask=((Integer)flagandtable.get(temp)).intValue();
5308           }
5309           mask&=(0xFFFFFFFF^flagid);
5310           flagandtable.put(temp,new Integer(mask));
5311         }
5312       }
5313     }
5314
5315
5316     HashSet flagtagset=new HashSet();
5317     flagtagset.addAll(flagortable.keySet());
5318     flagtagset.addAll(flagandtable.keySet());
5319     flagtagset.addAll(tagsettable.keySet());
5320     flagtagset.addAll(tagcleartable.keySet());
5321
5322     Iterator ftit=flagtagset.iterator();
5323     while(ftit.hasNext()) {
5324       TempDescriptor temp=(TempDescriptor)ftit.next();
5325
5326
5327       Set tagtmps=tagcleartable.get(temp);
5328       if (tagtmps!=null) {
5329         Iterator tagit=tagtmps.iterator();
5330         while(tagit.hasNext()) {
5331           TempDescriptor tagtmp=(TempDescriptor)tagit.next();
5332           if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC))
5333             output.println("tagclear("+localsprefixaddr+", (struct ___Object___ *)"+generateTemp(fm, temp,lb)+", "+generateTemp(fm,tagtmp,lb)+");");
5334           else
5335             output.println("tagclear((struct ___Object___ *)"+generateTemp(fm, temp,lb)+", "+generateTemp(fm,tagtmp,lb)+");");
5336         }
5337       }
5338
5339       tagtmps=tagsettable.get(temp);
5340       if (tagtmps!=null) {
5341         Iterator tagit=tagtmps.iterator();
5342         while(tagit.hasNext()) {
5343           TempDescriptor tagtmp=(TempDescriptor)tagit.next();
5344           if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC))
5345             output.println("tagset("+localsprefixaddr+", (struct ___Object___ *)"+generateTemp(fm, temp,lb)+", "+generateTemp(fm,tagtmp,lb)+");");
5346           else
5347             output.println("tagset((struct ___Object___ *)"+generateTemp(fm, temp, lb)+", "+generateTemp(fm,tagtmp, lb)+");");
5348         }
5349       }
5350
5351       int ormask=0;
5352       int andmask=0xFFFFFFF;
5353
5354       if (flagortable.containsKey(temp))
5355         ormask=((Integer)flagortable.get(temp)).intValue();
5356       if (flagandtable.containsKey(temp))
5357         andmask=((Integer)flagandtable.get(temp)).intValue();
5358       generateFlagOrAnd(ffan, fm, lb, temp, output, ormask, andmask);
5359       generateObjectDistribute(ffan, fm, lb, temp, output);
5360     }
5361   }
5362
5363   protected void generateFlagOrAnd(FlatFlagActionNode ffan, FlatMethod fm, LocalityBinding lb, TempDescriptor temp,
5364                                    PrintWriter output, int ormask, int andmask) {
5365     if (ffan.getTaskType()==FlatFlagActionNode.NEWOBJECT) {
5366       output.println("flagorandinit("+generateTemp(fm, temp, lb)+", 0x"+Integer.toHexString(ormask)+", 0x"+Integer.toHexString(andmask)+");");
5367     } else {
5368       output.println("flagorand("+generateTemp(fm, temp, lb)+", 0x"+Integer.toHexString(ormask)+", 0x"+Integer.toHexString(andmask)+");");
5369     }
5370   }
5371
5372   protected void generateObjectDistribute(FlatFlagActionNode ffan, FlatMethod fm, LocalityBinding lb, TempDescriptor temp, PrintWriter output) {
5373     output.println("enqueueObject("+generateTemp(fm, temp, lb)+");");
5374   }
5375
5376   void generateOptionalHeader(PrintWriter headers) {
5377
5378     //GENERATE HEADERS
5379     headers.println("#include \"task.h\"\n\n");
5380     headers.println("#ifndef _OPTIONAL_STRUCT_");
5381     headers.println("#define _OPTIONAL_STRUCT_");
5382
5383     //STRUCT PREDICATEMEMBER
5384     headers.println("struct predicatemember{");
5385     headers.println("int type;");
5386     headers.println("int numdnfterms;");
5387     headers.println("int * flags;");
5388     headers.println("int numtags;");
5389     headers.println("int * tags;\n};\n\n");
5390
5391     //STRUCT OPTIONALTASKDESCRIPTOR
5392     headers.println("struct optionaltaskdescriptor{");
5393     headers.println("struct taskdescriptor * task;");
5394     headers.println("int index;");
5395     headers.println("int numenterflags;");
5396     headers.println("int * enterflags;");
5397     headers.println("int numpredicatemembers;");
5398     headers.println("struct predicatemember ** predicatememberarray;");
5399     headers.println("};\n\n");
5400
5401     //STRUCT TASKFAILURE
5402     headers.println("struct taskfailure {");
5403     headers.println("struct taskdescriptor * task;");
5404     headers.println("int index;");
5405     headers.println("int numoptionaltaskdescriptors;");
5406     headers.println("struct optionaltaskdescriptor ** optionaltaskdescriptorarray;\n};\n\n");
5407
5408     //STRUCT FSANALYSISWRAPPER
5409     headers.println("struct fsanalysiswrapper{");
5410     headers.println("int  flags;");
5411     headers.println("int numtags;");
5412     headers.println("int * tags;");
5413     headers.println("int numtaskfailures;");
5414     headers.println("struct taskfailure ** taskfailurearray;");
5415     headers.println("int numoptionaltaskdescriptors;");
5416     headers.println("struct optionaltaskdescriptor ** optionaltaskdescriptorarray;\n};\n\n");
5417
5418     //STRUCT CLASSANALYSISWRAPPER
5419     headers.println("struct classanalysiswrapper{");
5420     headers.println("int type;");
5421     headers.println("int numotd;");
5422     headers.println("struct optionaltaskdescriptor ** otdarray;");
5423     headers.println("int numfsanalysiswrappers;");
5424     headers.println("struct fsanalysiswrapper ** fsanalysiswrapperarray;\n};");
5425
5426     headers.println("extern struct classanalysiswrapper * classanalysiswrapperarray[];");
5427
5428     Iterator taskit=state.getTaskSymbolTable().getDescriptorsIterator();
5429     while(taskit.hasNext()) {
5430       TaskDescriptor td=(TaskDescriptor)taskit.next();
5431       headers.println("extern struct taskdescriptor task_"+td.getSafeSymbol()+";");
5432     }
5433
5434   }
5435
5436   //CHECK OVER THIS -- THERE COULD BE SOME ERRORS HERE
5437   int generateOptionalPredicate(Predicate predicate, OptionalTaskDescriptor otd, ClassDescriptor cdtemp, PrintWriter output) {
5438     int predicateindex = 0;
5439     //iterate through the classes concerned by the predicate
5440     Set c_vard = predicate.vardescriptors;
5441     Hashtable<TempDescriptor, Integer> slotnumber=new Hashtable<TempDescriptor, Integer>();
5442     int current_slot=0;
5443
5444     for(Iterator vard_it = c_vard.iterator(); vard_it.hasNext();) {
5445       VarDescriptor vard = (VarDescriptor)vard_it.next();
5446       TypeDescriptor typed = vard.getType();
5447
5448       //generate for flags
5449       HashSet fen_hashset = predicate.flags.get(vard.getSymbol());
5450       output.println("int predicateflags_"+predicateindex+"_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+"[]={");
5451       int numberterms=0;
5452       if (fen_hashset!=null) {
5453         for (Iterator fen_it = fen_hashset.iterator(); fen_it.hasNext();) {
5454           FlagExpressionNode fen = (FlagExpressionNode)fen_it.next();
5455           if (fen!=null) {
5456             DNFFlag dflag=fen.getDNF();
5457             numberterms+=dflag.size();
5458
5459             Hashtable flags=(Hashtable)flagorder.get(typed.getClassDesc());
5460
5461             for(int j=0; j<dflag.size(); j++) {
5462               if (j!=0)
5463                 output.println(",");
5464               Vector term=dflag.get(j);
5465               int andmask=0;
5466               int checkmask=0;
5467               for(int k=0; k<term.size(); k++) {
5468                 DNFFlagAtom dfa=(DNFFlagAtom)term.get(k);
5469                 FlagDescriptor fd=dfa.getFlag();
5470                 boolean negated=dfa.getNegated();
5471                 int flagid=1<<((Integer)flags.get(fd)).intValue();
5472                 andmask|=flagid;
5473                 if (!negated)
5474                   checkmask|=flagid;
5475               }
5476               output.print("/*andmask*/0x"+Integer.toHexString(andmask)+", /*checkmask*/0x"+Integer.toHexString(checkmask));
5477             }
5478           }
5479         }
5480       }
5481       output.println("};\n");
5482
5483       //generate for tags
5484       TagExpressionList tagel = predicate.tags.get(vard.getSymbol());
5485       output.println("int predicatetags_"+predicateindex+"_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+"[]={");
5486       int numtags = 0;
5487       if (tagel!=null) {
5488         for(int j=0; j<tagel.numTags(); j++) {
5489           if (j!=0)
5490             output.println(",");
5491           TempDescriptor tmp=tagel.getTemp(j);
5492           if (!slotnumber.containsKey(tmp)) {
5493             Integer slotint=new Integer(current_slot++);
5494             slotnumber.put(tmp,slotint);
5495           }
5496           int slot=slotnumber.get(tmp).intValue();
5497           output.println("/* slot */"+ slot+", /*tagid*/"+state.getTagId(tmp.getTag()));
5498         }
5499         numtags = tagel.numTags();
5500       }
5501       output.println("};");
5502
5503       //store the result into a predicatemember struct
5504       output.println("struct predicatemember predicatemember_"+predicateindex+"_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+"={");
5505       output.println("/*type*/"+typed.getClassDesc().getId()+",");
5506       output.println("/* number of dnf terms */"+numberterms+",");
5507       output.println("predicateflags_"+predicateindex+"_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+",");
5508       output.println("/* number of tag */"+numtags+",");
5509       output.println("predicatetags_"+predicateindex+"_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+",");
5510       output.println("};\n");
5511       predicateindex++;
5512     }
5513
5514
5515     //generate an array that stores the entire predicate
5516     output.println("struct predicatemember * predicatememberarray_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+"[]={");
5517     for( int j = 0; j<predicateindex; j++) {
5518       if( j != predicateindex-1) output.println("&predicatemember_"+j+"_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+",");
5519       else output.println("&predicatemember_"+j+"_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol());
5520     }
5521     output.println("};\n");
5522     return predicateindex;
5523   }
5524
5525
5526   void generateOptionalArrays(PrintWriter output, PrintWriter headers, Hashtable<ClassDescriptor, Hashtable<FlagState, Set<OptionalTaskDescriptor>>> safeexecution, Hashtable optionaltaskdescriptors) {
5527     generateOptionalHeader(headers);
5528     //GENERATE STRUCTS
5529     output.println("#include \"optionalstruct.h\"\n\n");
5530     output.println("#include \"stdlib.h\"\n");
5531
5532     HashSet processedcd = new HashSet();
5533     int maxotd=0;
5534     Enumeration e = safeexecution.keys();
5535     while (e.hasMoreElements()) {
5536       int numotd=0;
5537       //get the class
5538       ClassDescriptor cdtemp=(ClassDescriptor)e.nextElement();
5539       Hashtable flaginfo=(Hashtable)flagorder.get(cdtemp);       //will be used several times
5540
5541       //Generate the struct of optionals
5542       Collection c_otd = ((Hashtable)optionaltaskdescriptors.get(cdtemp)).values();
5543       numotd = c_otd.size();
5544       if(maxotd<numotd) maxotd = numotd;
5545       if( !c_otd.isEmpty() ) {
5546         for(Iterator otd_it = c_otd.iterator(); otd_it.hasNext();) {
5547           OptionalTaskDescriptor otd = (OptionalTaskDescriptor)otd_it.next();
5548
5549           //generate the int arrays for the predicate
5550           Predicate predicate = otd.predicate;
5551           int predicateindex = generateOptionalPredicate(predicate, otd, cdtemp, output);
5552           TreeSet<Integer> fsset=new TreeSet<Integer>();
5553           //iterate through possible FSes corresponding to
5554           //the state when entering
5555
5556           for(Iterator fses = otd.enterflagstates.iterator(); fses.hasNext();) {
5557             FlagState fs = (FlagState)fses.next();
5558             int flagid=0;
5559             for(Iterator flags = fs.getFlags(); flags.hasNext();) {
5560               FlagDescriptor flagd = (FlagDescriptor)flags.next();
5561               int id=1<<((Integer)flaginfo.get(flagd)).intValue();
5562               flagid|=id;
5563             }
5564             fsset.add(new Integer(flagid));
5565             //tag information not needed because tag
5566             //changes are not tolerated.
5567           }
5568
5569           output.println("int enterflag_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+"[]={");
5570           boolean needcomma=false;
5571           for(Iterator<Integer> it=fsset.iterator(); it.hasNext();) {
5572             if(needcomma)
5573               output.print(", ");
5574             output.println(it.next());
5575           }
5576
5577           output.println("};\n");
5578
5579
5580           //generate optionaltaskdescriptor that actually
5581           //includes exit fses, predicate and the task
5582           //concerned
5583           output.println("struct optionaltaskdescriptor optionaltaskdescriptor_"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+"={");
5584           output.println("&task_"+otd.td.getSafeSymbol()+",");
5585           output.println("/*index*/"+otd.getIndex()+",");
5586           output.println("/*number of enter flags*/"+fsset.size()+",");
5587           output.println("enterflag_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+",");
5588           output.println("/*number of members */"+predicateindex+",");
5589           output.println("predicatememberarray_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+",");
5590           output.println("};\n");
5591         }
5592       } else
5593         continue;
5594       // if there are no optionals, there is no need to build the rest of the struct
5595
5596       output.println("struct optionaltaskdescriptor * otdarray"+cdtemp.getSafeSymbol()+"[]={");
5597       c_otd = ((Hashtable)optionaltaskdescriptors.get(cdtemp)).values();
5598       if( !c_otd.isEmpty() ) {
5599         boolean needcomma=false;
5600         for(Iterator otd_it = c_otd.iterator(); otd_it.hasNext();) {
5601           OptionalTaskDescriptor otd = (OptionalTaskDescriptor)otd_it.next();
5602           if(needcomma)
5603             output.println(",");
5604           needcomma=true;
5605           output.println("&optionaltaskdescriptor_"+otd.getuid()+"_"+cdtemp.getSafeSymbol());
5606         }
5607       }
5608       output.println("};\n");
5609
5610       //get all the possible flagstates reachable by an object
5611       Hashtable hashtbtemp = safeexecution.get(cdtemp);
5612       int fscounter = 0;
5613       TreeSet fsts=new TreeSet(new FlagComparator(flaginfo));
5614       fsts.addAll(hashtbtemp.keySet());
5615       for(Iterator fsit=fsts.iterator(); fsit.hasNext();) {
5616         FlagState fs = (FlagState)fsit.next();
5617         fscounter++;
5618
5619         //get the set of OptionalTaskDescriptors corresponding
5620         HashSet<OptionalTaskDescriptor> availabletasks = (HashSet<OptionalTaskDescriptor>)hashtbtemp.get(fs);
5621         //iterate through the OptionalTaskDescriptors and
5622         //store the pointers to the optionals struct (see on
5623         //top) into an array
5624
5625         output.println("struct optionaltaskdescriptor * optionaltaskdescriptorarray_FS"+fscounter+"_"+cdtemp.getSafeSymbol()+"[] = {");
5626         for(Iterator<OptionalTaskDescriptor> mos = ordertd(availabletasks).iterator(); mos.hasNext();) {
5627           OptionalTaskDescriptor mm = mos.next();
5628           if(!mos.hasNext())
5629             output.println("&optionaltaskdescriptor_"+mm.getuid()+"_"+cdtemp.getSafeSymbol());
5630           else
5631             output.println("&optionaltaskdescriptor_"+mm.getuid()+"_"+cdtemp.getSafeSymbol()+",");
5632         }
5633
5634         output.println("};\n");
5635
5636         //process flag information (what the flag after failure is) so we know what optionaltaskdescriptors to choose.
5637
5638         int flagid=0;
5639         for(Iterator flags = fs.getFlags(); flags.hasNext();) {
5640           FlagDescriptor flagd = (FlagDescriptor)flags.next();
5641           int id=1<<((Integer)flaginfo.get(flagd)).intValue();
5642           flagid|=id;
5643         }
5644
5645         //process tag information
5646
5647         int tagcounter = 0;
5648         boolean first = true;
5649         Enumeration tag_enum = fs.getTags();
5650         output.println("int tags_FS"+fscounter+"_"+cdtemp.getSafeSymbol()+"[]={");
5651         while(tag_enum.hasMoreElements()) {
5652           tagcounter++;
5653           TagDescriptor tagd = (TagDescriptor)tag_enum.nextElement();
5654           if(first==true)
5655             first = false;
5656           else
5657             output.println(", ");
5658           output.println("/*tagid*/"+state.getTagId(tagd));
5659         }
5660         output.println("};");
5661
5662         Set<TaskIndex> tiset=sa.getTaskIndex(fs);
5663         for(Iterator<TaskIndex> itti=tiset.iterator(); itti.hasNext();) {
5664           TaskIndex ti=itti.next();
5665           if (ti.isRuntime())
5666             continue;
5667
5668           Set<OptionalTaskDescriptor> otdset=sa.getOptions(fs, ti);
5669
5670           output.print("struct optionaltaskdescriptor * optionaltaskfailure_FS"+fscounter+"_"+ti.getTask().getSafeSymbol()+"_"+ti.getIndex()+"_array[] = {");
5671           boolean needcomma=false;
5672           for(Iterator<OptionalTaskDescriptor> otdit=ordertd(otdset).iterator(); otdit.hasNext();) {
5673             OptionalTaskDescriptor otd=otdit.next();
5674             if(needcomma)
5675               output.print(", ");
5676             needcomma=true;
5677             output.println("&optionaltaskdescriptor_"+otd.getuid()+"_"+cdtemp.getSafeSymbol());
5678           }
5679           output.println("};");
5680
5681           output.print("struct taskfailure taskfailure_FS"+fscounter+"_"+ti.getTask().getSafeSymbol()+"_"+ti.getIndex()+" = {");
5682           output.print("&task_"+ti.getTask().getSafeSymbol()+", ");
5683           output.print(ti.getIndex()+", ");
5684           output.print(otdset.size()+", ");
5685           output.print("optionaltaskfailure_FS"+fscounter+"_"+ti.getTask().getSafeSymbol()+"_"+ti.getIndex()+"_array");
5686           output.println("};");
5687         }
5688
5689         tiset=sa.getTaskIndex(fs);
5690         boolean needcomma=false;
5691         int runtimeti=0;
5692         output.println("struct taskfailure * taskfailurearray"+fscounter+"_"+cdtemp.getSafeSymbol()+"[]={");
5693         for(Iterator<TaskIndex> itti=tiset.iterator(); itti.hasNext();) {
5694           TaskIndex ti=itti.next();
5695           if (ti.isRuntime()) {
5696             runtimeti++;
5697             continue;
5698           }
5699           if (needcomma)
5700             output.print(", ");
5701           needcomma=true;
5702           output.print("&taskfailure_FS"+fscounter+"_"+ti.getTask().getSafeSymbol()+"_"+ti.getIndex());
5703         }
5704         output.println("};\n");
5705
5706         //Store the result in fsanalysiswrapper
5707
5708         output.println("struct fsanalysiswrapper fsanalysiswrapper_FS"+fscounter+"_"+cdtemp.getSafeSymbol()+"={");
5709         output.println("/*flag*/"+flagid+",");
5710         output.println("/* number of tags*/"+tagcounter+",");
5711         output.println("tags_FS"+fscounter+"_"+cdtemp.getSafeSymbol()+",");
5712         output.println("/* numtask failures */"+(tiset.size()-runtimeti)+",");
5713         output.println("taskfailurearray"+fscounter+"_"+cdtemp.getSafeSymbol()+",");
5714         output.println("/* number of optionaltaskdescriptors */"+availabletasks.size()+",");
5715         output.println("optionaltaskdescriptorarray_FS"+fscounter+"_"+cdtemp.getSafeSymbol());
5716         output.println("};\n");
5717
5718       }
5719
5720       //Build the array of fsanalysiswrappers
5721       output.println("struct fsanalysiswrapper * fsanalysiswrapperarray_"+cdtemp.getSafeSymbol()+"[] = {");
5722       boolean needcomma=false;
5723       for(int i = 0; i<fscounter; i++) {
5724         if (needcomma) output.print(",");
5725         output.println("&fsanalysiswrapper_FS"+(i+1)+"_"+cdtemp.getSafeSymbol());
5726         needcomma=true;
5727       }
5728       output.println("};");
5729
5730       //Build the classanalysiswrapper referring to the previous array
5731       output.println("struct classanalysiswrapper classanalysiswrapper_"+cdtemp.getSafeSymbol()+"={");
5732       output.println("/*type*/"+cdtemp.getId()+",");
5733       output.println("/*numotd*/"+numotd+",");
5734       output.println("otdarray"+cdtemp.getSafeSymbol()+",");
5735       output.println("/* number of fsanalysiswrappers */"+fscounter+",");
5736       output.println("fsanalysiswrapperarray_"+cdtemp.getSafeSymbol()+"};\n");
5737       processedcd.add(cdtemp);
5738     }
5739
5740     //build an array containing every classes for which code has been build
5741     output.println("struct classanalysiswrapper * classanalysiswrapperarray[]={");
5742     for(int i=0; i<state.numClasses(); i++) {
5743       ClassDescriptor cn=cdarray[i];
5744       if (i>0)
5745         output.print(", ");
5746       if ((cn != null) && (processedcd.contains(cn)))
5747         output.print("&classanalysiswrapper_"+cn.getSafeSymbol());
5748       else
5749         output.print("NULL");
5750     }
5751     output.println("};");
5752
5753     output.println("#define MAXOTD "+maxotd);
5754     headers.println("#endif");
5755   }
5756
5757   public List<OptionalTaskDescriptor> ordertd(Set<OptionalTaskDescriptor> otdset) {
5758     Relation r=new Relation();
5759     for(Iterator<OptionalTaskDescriptor>otdit=otdset.iterator(); otdit.hasNext();) {
5760       OptionalTaskDescriptor otd=otdit.next();
5761       TaskIndex ti=new TaskIndex(otd.td, otd.getIndex());
5762       r.put(ti, otd);
5763     }
5764
5765     LinkedList<OptionalTaskDescriptor> l=new LinkedList<OptionalTaskDescriptor>();
5766     for(Iterator it=r.keySet().iterator(); it.hasNext();) {
5767       Set s=r.get(it.next());
5768       for(Iterator it2=s.iterator(); it2.hasNext();) {
5769         OptionalTaskDescriptor otd=(OptionalTaskDescriptor)it2.next();
5770         l.add(otd);
5771       }
5772     }
5773
5774     return l;
5775   }
5776
5777   protected void outputTransCode(PrintWriter output) {
5778   }
5779   
5780   private int calculateSizeOfSESEParamList(FlatSESEEnterNode fsen){
5781           
5782           Set<TempDescriptor> tdSet=new HashSet<TempDescriptor>();
5783           
5784           for (Iterator iterator = fsen.getInVarSet().iterator(); iterator.hasNext();) {
5785                 TempDescriptor tempDescriptor = (TempDescriptor) iterator.next();
5786                 if(!tempDescriptor.getType().isPrimitive() || tempDescriptor.getType().isArray()){
5787                         tdSet.add(tempDescriptor);
5788                 }       
5789           }
5790           
5791           for (Iterator iterator = fsen.getOutVarSet().iterator(); iterator.hasNext();) {
5792                         TempDescriptor tempDescriptor = (TempDescriptor) iterator.next();
5793                         if(!tempDescriptor.getType().isPrimitive() || tempDescriptor.getType().isArray()){
5794                                 tdSet.add(tempDescriptor);
5795                         }       
5796           }       
5797                   
5798           return tdSet.size();
5799   }
5800   
5801   private String calculateSizeOfSESEParamSize(FlatSESEEnterNode fsen){
5802     HashMap <String,Integer> map=new HashMap();
5803     HashSet <TempDescriptor> processed=new HashSet<TempDescriptor>();
5804     String rtr="";
5805           
5806     // space for all in and out set primitives
5807     Set<TempDescriptor> inSetAndOutSet = new HashSet<TempDescriptor>();
5808     inSetAndOutSet.addAll( fsen.getInVarSet() );
5809     inSetAndOutSet.addAll( fsen.getOutVarSet() );
5810             
5811     Set<TempDescriptor> inSetAndOutSetPrims = new HashSet<TempDescriptor>();
5812
5813     Iterator<TempDescriptor> itr = inSetAndOutSet.iterator();
5814     while( itr.hasNext() ) {
5815       TempDescriptor temp = itr.next();
5816       TypeDescriptor type = temp.getType();
5817       if( !type.isPtr() ) {
5818         inSetAndOutSetPrims.add( temp );
5819       }
5820     }
5821             
5822     Iterator<TempDescriptor> itrPrims = inSetAndOutSetPrims.iterator();
5823     while( itrPrims.hasNext() ) {
5824       TempDescriptor temp = itrPrims.next();
5825       TypeDescriptor type = temp.getType();
5826       if(type.isPrimitive()){
5827         Integer count=map.get(type.getSymbol());
5828         if(count==null){
5829           count=new Integer(1);
5830           map.put(type.getSymbol(), count);
5831         }else{
5832           map.put(type.getSymbol(), new Integer(count.intValue()+1));
5833         }
5834       }      
5835     }
5836           
5837     Set<String> keySet=map.keySet();
5838     for (Iterator iterator = keySet.iterator(); iterator.hasNext();) {
5839       String key = (String) iterator.next();
5840       rtr+="+sizeof("+key+")*"+map.get(key);
5841     }
5842     return  rtr;
5843   }
5844
5845 }
5846
5847
5848
5849
5850
5851