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