change: more aggressively re-initialize fields of rcrRecords.
[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()) {
2184           // static 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 =
3295                     (Analysis.OoOJava.WaitingElement) iterator.next();
3296                 if (waitingElement.getStatus() >= ConflictNode.COARSE) {
3297                   if (state.RCR) {
3298                     output.println("     rentry=mlpCreateREntry(runningSESE->memoryQueueArray["
3299                         + waitingElement.getQueueID() + "]," + waitingElement.getStatus()
3300                         + ", runningSESE, 1LL);");
3301                   } else {
3302                     output.println("     rentry=mlpCreateREntry(runningSESE->memoryQueueArray["
3303                         + waitingElement.getQueueID() + "]," + waitingElement.getStatus()
3304                         + ", runningSESE);");
3305                   }
3306                 } else {
3307                   output.println("     rentry=mlpCreateFineREntry(runningSESE->memoryQueueArray["
3308                       + waitingElement.getQueueID() + "]," + waitingElement.getStatus()
3309                       + ", runningSESE,  (void*)&"
3310                       + generateTemp(fm, waitingElement.getTempDesc(), lb) + ");");
3311                 }
3312                 output.println("     rentry->parentStallSem=&runningSESEstallSem;");
3313                 output.println("     psem_reset( &runningSESEstallSem);");
3314                 output.println("     rentry->tag=runningSESEstallSem.tag;");
3315                 output.println("     rentry->queue=runningSESE->memoryQueueArray["
3316                     + waitingElement.getQueueID() + "];");
3317                 output.println("     if(ADDRENTRY(runningSESE->memoryQueueArray["
3318                     + waitingElement.getQueueID() + "],rentry)==NOTREADY){");
3319                 if (state.COREPROF) {
3320                   output.println("#ifdef CP_EVENTID_TASKSTALLMEM");
3321                   output
3322                       .println("        CP_LOGEVENT( CP_EVENTID_TASKSTALLMEM, CP_EVENTTYPE_BEGIN );");
3323                   output.println("#endif");
3324                 }
3325                 if (state.RCR) {
3326                   // no need to enqueue parent effect if coarse grained conflict
3327                   // clears us
3328
3329                   output.println("       while(stallrecord.common.rcrstatus) BARRIER();");
3330                   // was the code above actually meant to look like this?
3331                   // output.println("       while(stallrecord.common.rcrstatus) {");
3332                   // output.println("         BARRIER();");
3333                   // output.println("         sched_yield();");
3334                   // output.println("       }");
3335
3336                   output.println("       stallrecord.common.parentsStallSem=&runningSESEstallSem;");
3337                   output.println("       stallrecord.tag=rentry->tag;");
3338                   output.println("       stallrecord.___obj___=(struct ___Object___ *)"
3339                       + generateTemp(fm, waitingElement.getTempDesc(), null) + ";");
3340                   output.println("       stallrecord.common.classID=-"
3341                       + rcr.getTraverserID(waitingElement.getTempDesc(), fn) + ";");
3342                   // mark the record used..so we won't use it again until it is
3343                   // free
3344                   // clear rcrRecord
3345                   output.println("       stallrecord.rcrRecords[0].index=0;");
3346                   output.println("       stallrecord.rcrRecords[0].flag=0;");
3347                   output.println("       stallrecord.rcrRecords[0].next=NULL;");
3348                   output.println("       stallrecord.common.rcrstatus=1;");
3349                   output.println("       enqueueTR(TRqueue, (void *)&stallrecord);");
3350                 }
3351
3352                 output
3353                     .println("       psem_take( &runningSESEstallSem, (struct garbagelist *)&___locals___ );");
3354
3355                 if (state.RCR) {
3356                   output.println("       stallrecord.common.rcrstatus=0;");
3357                 }
3358
3359                 if (state.COREPROF) {
3360                   output.println("#ifdef CP_EVENTID_TASKSTALLMEM");
3361                   output
3362                       .println("        CP_LOGEVENT( CP_EVENTID_TASKSTALLMEM, CP_EVENTTYPE_END );");
3363                   output.println("#endif");
3364                 }
3365                 output.println("     }  ");
3366               }
3367               output.println("   }");
3368             }
3369           }
3370         }else{
3371           ParentChildConflictsMap conflictsMap = mlpa.getConflictsResults().get(fn);
3372           if (conflictsMap != null) {
3373             Set<Long> allocSet = conflictsMap.getAllocationSiteIDSetofStallSite();
3374             if (allocSet.size() > 0) {
3375               FlatNode enclosingFlatNode=null;
3376               if( currentSESE.getIsCallerSESEplaceholder() && currentSESE.getParent()==null){
3377                 enclosingFlatNode=currentSESE.getfmEnclosing();
3378               }else{
3379                 enclosingFlatNode=currentSESE;
3380               }                                         
3381               ConflictGraph graph=mlpa.getConflictGraphResults().get(enclosingFlatNode);
3382               HashSet<SESELock> seseLockSet=mlpa.getConflictGraphLockMap().get(graph);
3383               Set<WaitingElement> waitingElementSet=graph.getStallSiteWaitingElementSet(conflictsMap, seseLockSet);
3384                         
3385               if(waitingElementSet.size()>0){
3386                 output.println("// stall on parent's stall sites ");
3387                 output.println("   {");
3388                 output.println("     REntry* rentry;");
3389                                 
3390                 for (Iterator iterator = waitingElementSet.iterator(); iterator.hasNext();) {
3391                   WaitingElement waitingElement = (WaitingElement) iterator.next();
3392                                         
3393                   if( waitingElement.getStatus() >= ConflictNode.COARSE ){
3394                     // HERE! a parent might conflict with a child
3395                     output.println("     rentry=mlpCreateREntry(runningSESE->memoryQueueArray["+ waitingElement.getQueueID()+ "],"+ waitingElement.getStatus()+ ", runningSESE);");
3396                   } else {
3397                     output.println("     rentry=mlpCreateFineREntry(runningSESE->memoryQueueArray["+ waitingElement.getQueueID()+ "],"+ waitingElement.getStatus()+ ", runningSESE,  (void*)&___locals___."+ waitingElement.getDynID() + ");");
3398                   }                                     
3399                   output.println("     rentry->parentStallSem=&runningSESEstallSem;");
3400                   output.println("     psem_reset( &runningSESEstallSem);");
3401                   output.println("     rentry->tag=runningSESEstallSem.tag;");
3402                   output.println("     rentry->queue=runningSESE->memoryQueueArray["+ waitingElement.getQueueID()+ "];");
3403                   output.println("     if(ADDRENTRY(runningSESE->memoryQueueArray["+ waitingElement.getQueueID()+"],rentry)==NOTREADY) {");
3404                   if( state.COREPROF ) {
3405                     output.println("#ifdef CP_EVENTID_TASKSTALLMEM");
3406                     output.println("        CP_LOGEVENT( CP_EVENTID_TASKSTALLMEM, CP_EVENTTYPE_BEGIN );");
3407                     output.println("#endif");
3408                   }
3409                   output.println("        psem_take( &runningSESEstallSem, (struct garbagelist *)&___locals___ );");
3410                   if( state.COREPROF ) {
3411                     output.println("#ifdef CP_EVENTID_TASKSTALLMEM");
3412                     output.println("        CP_LOGEVENT( CP_EVENTID_TASKSTALLMEM, CP_EVENTTYPE_END );");
3413                     output.println("#endif");
3414                   }
3415                   output.println("     }  ");
3416                 }
3417                 output.println("   }");
3418               }
3419             }
3420           }     
3421         }
3422       }
3423     }
3424
3425     switch(fn.kind()) {
3426     case FKind.FlatAtomicEnterNode:
3427       generateFlatAtomicEnterNode(fm, lb, (FlatAtomicEnterNode) fn, output);
3428       break;
3429
3430     case FKind.FlatAtomicExitNode:
3431       generateFlatAtomicExitNode(fm, lb, (FlatAtomicExitNode) fn, output);
3432       break;
3433
3434     case FKind.FlatInstanceOfNode:
3435       generateFlatInstanceOfNode(fm, lb, (FlatInstanceOfNode)fn, output);
3436       break;
3437
3438     case FKind.FlatSESEEnterNode:
3439       generateFlatSESEEnterNode(fm, lb, (FlatSESEEnterNode)fn, output);
3440       break;
3441
3442     case FKind.FlatSESEExitNode:
3443       generateFlatSESEExitNode(fm, lb, (FlatSESEExitNode)fn, output);
3444       break;
3445       
3446     case FKind.FlatWriteDynamicVarNode:
3447       generateFlatWriteDynamicVarNode(fm, lb, (FlatWriteDynamicVarNode)fn, output);
3448       break;
3449
3450     case FKind.FlatGlobalConvNode:
3451       generateFlatGlobalConvNode(fm, lb, (FlatGlobalConvNode) fn, output);
3452       break;
3453
3454     case FKind.FlatTagDeclaration:
3455       generateFlatTagDeclaration(fm, lb, (FlatTagDeclaration) fn,output);
3456       break;
3457
3458     case FKind.FlatCall:
3459       generateFlatCall(fm, lb, (FlatCall) fn,output);
3460       break;
3461
3462     case FKind.FlatFieldNode:
3463       generateFlatFieldNode(fm, lb, (FlatFieldNode) fn,output);
3464       break;
3465
3466     case FKind.FlatElementNode:
3467       generateFlatElementNode(fm, lb, (FlatElementNode) fn,output);
3468       break;
3469
3470     case FKind.FlatSetElementNode:
3471       generateFlatSetElementNode(fm, lb, (FlatSetElementNode) fn,output);
3472       break;
3473
3474     case FKind.FlatSetFieldNode:
3475       generateFlatSetFieldNode(fm, lb, (FlatSetFieldNode) fn,output);
3476       break;
3477
3478     case FKind.FlatNew:
3479       generateFlatNew(fm, lb, (FlatNew) fn,output);
3480       break;
3481
3482     case FKind.FlatOpNode:
3483       generateFlatOpNode(fm, lb, (FlatOpNode) fn,output);
3484       break;
3485
3486     case FKind.FlatCastNode:
3487       generateFlatCastNode(fm, lb, (FlatCastNode) fn,output);
3488       break;
3489
3490     case FKind.FlatLiteralNode:
3491       generateFlatLiteralNode(fm, lb, (FlatLiteralNode) fn,output);
3492       break;
3493
3494     case FKind.FlatReturnNode:
3495       generateFlatReturnNode(fm, lb, (FlatReturnNode) fn,output);
3496       break;
3497
3498     case FKind.FlatNop:
3499       output.println("/* nop */");
3500       break;
3501
3502     case FKind.FlatGenReachNode:
3503       // this node is just for generating a reach graph
3504       // in disjointness analysis at a particular program point
3505       break;
3506
3507     case FKind.FlatExit:
3508       output.println("/* exit */");
3509       break;
3510
3511     case FKind.FlatBackEdge:
3512       if (state.SINGLETM&&state.SANDBOX&&(locality.getAtomic(lb).get(fn).intValue()>0)) {
3513         output.println("if (unlikely((--transaction_check_counter)<=0)) checkObjects();");
3514       }
3515       if(state.DSM&&state.SANDBOX&&(locality.getAtomic(lb).get(fn).intValue()>0)) {
3516         output.println("if (unlikely((--transaction_check_counter)<=0)) checkObjects();");
3517       }
3518       if (((state.MLP|| state.OOOJAVA||state.THREAD||state.DSM||state.SINGLETM)&&GENERATEPRECISEGC)
3519           || (this.state.MULTICOREGC)) {
3520         if(state.DSM&&locality.getAtomic(lb).get(fn).intValue()>0) {
3521           output.println("if (needtocollect) checkcollect2("+localsprefixaddr+");");
3522         } else if(this.state.MULTICOREGC) {
3523           output.println("if (gcflag) gc("+localsprefixaddr+");");
3524         } else {
3525           output.println("if (unlikely(needtocollect)) checkcollect("+localsprefixaddr+");");
3526         }
3527       } else
3528         output.println("/* nop */");
3529       break;
3530
3531     case FKind.FlatCheckNode:
3532       generateFlatCheckNode(fm, lb, (FlatCheckNode) fn, output);
3533       break;
3534
3535     case FKind.FlatFlagActionNode:
3536       generateFlatFlagActionNode(fm, lb, (FlatFlagActionNode) fn, output);
3537       break;
3538
3539     case FKind.FlatPrefetchNode:
3540       generateFlatPrefetchNode(fm,lb, (FlatPrefetchNode) fn, output);
3541       break;
3542
3543     case FKind.FlatOffsetNode:
3544       generateFlatOffsetNode(fm, lb, (FlatOffsetNode)fn, output);
3545       break;
3546
3547     default:
3548       throw new Error();
3549     }
3550
3551     // insert post-node actions from the code-plan
3552     /*
3553     if( state.MLP) {
3554       CodePlan cp = mlpa.getCodePlan( fn );
3555
3556       if( cp != null ) {     
3557       }
3558     }
3559     */
3560   }
3561
3562   public void generateFlatOffsetNode(FlatMethod fm, LocalityBinding lb, FlatOffsetNode fofn, PrintWriter output) {
3563     output.println("/* FlatOffsetNode */");
3564     FieldDescriptor fd=fofn.getField();
3565     output.println(generateTemp(fm, fofn.getDst(),lb)+ " = (short)(int) (&((struct "+fofn.getClassType().getSafeSymbol() +" *)0)->"+ fd.getSafeSymbol()+");");
3566     output.println("/* offset */");
3567   }
3568
3569   public void generateFlatPrefetchNode(FlatMethod fm, LocalityBinding lb, FlatPrefetchNode fpn, PrintWriter output) {
3570     if (state.PREFETCH) {
3571       Vector oids = new Vector();
3572       Vector fieldoffset = new Vector();
3573       Vector endoffset = new Vector();
3574       int tuplecount = 0;        //Keeps track of number of prefetch tuples that need to be generated
3575       for(Iterator it = fpn.hspp.iterator(); it.hasNext();) {
3576         PrefetchPair pp = (PrefetchPair) it.next();
3577         Integer statusbase = locality.getNodePreTempInfo(lb,fpn).get(pp.base);
3578         /* Find prefetches that can generate oid */
3579         if(statusbase == LocalityAnalysis.GLOBAL) {
3580           generateTransCode(fm, lb, pp, oids, fieldoffset, endoffset, tuplecount, locality.getAtomic(lb).get(fpn).intValue()>0, false);
3581           tuplecount++;
3582         } else if (statusbase == LocalityAnalysis.LOCAL) {
3583           generateTransCode(fm,lb,pp,oids,fieldoffset,endoffset,tuplecount,false,true);
3584         } else {
3585           continue;
3586         }
3587       }
3588       if (tuplecount==0)
3589         return;
3590       System.out.println("Adding prefetch "+fpn+ " to method:" +fm);
3591       output.println("{");
3592       output.println("/* prefetch */");
3593       output.println("/* prefetchid_" + fpn.siteid + " */");
3594       output.println("void * prefptr;");
3595       output.println("int tmpindex;");
3596
3597       output.println("if((evalPrefetch["+fpn.siteid+"].operMode) || (evalPrefetch["+fpn.siteid+"].retrycount <= 0)) {");
3598       /*Create C code for oid array */
3599       output.print("   unsigned int oidarray_[] = {");
3600       boolean needcomma=false;
3601       for (Iterator it = oids.iterator(); it.hasNext();) {
3602         if (needcomma)
3603           output.print(", ");
3604         output.print(it.next());
3605         needcomma=true;
3606       }
3607       output.println("};");
3608
3609       /*Create C code for endoffset values */
3610       output.print("   unsigned short endoffsetarry_[] = {");
3611       needcomma=false;
3612       for (Iterator it = endoffset.iterator(); it.hasNext();) {
3613         if (needcomma)
3614           output.print(", ");
3615         output.print(it.next());
3616         needcomma=true;
3617       }
3618       output.println("};");
3619
3620       /*Create C code for Field Offset Values */
3621       output.print("   short fieldarry_[] = {");
3622       needcomma=false;
3623       for (Iterator it = fieldoffset.iterator(); it.hasNext();) {
3624         if (needcomma)
3625           output.print(", ");
3626         output.print(it.next());
3627         needcomma=true;
3628       }
3629       output.println("};");
3630       /* make the prefetch call to Runtime */
3631       output.println("   if(!evalPrefetch["+fpn.siteid+"].operMode) {");
3632       output.println("     evalPrefetch["+fpn.siteid+"].retrycount = RETRYINTERVAL;");
3633       output.println("   }");
3634       output.println("   prefetch("+fpn.siteid+" ,"+tuplecount+", oidarray_, endoffsetarry_, fieldarry_);");
3635       output.println(" } else {");
3636       output.println("   evalPrefetch["+fpn.siteid+"].retrycount--;");
3637       output.println(" }");
3638       output.println("}");
3639     }
3640   }
3641
3642   public void generateTransCode(FlatMethod fm, LocalityBinding lb,PrefetchPair pp, Vector oids, Vector fieldoffset, Vector endoffset, int tuplecount, boolean inside, boolean localbase) {
3643     short offsetcount = 0;
3644     int breakindex=0;
3645     if (inside) {
3646       breakindex=1;
3647     } else if (localbase) {
3648       for(; breakindex<pp.desc.size(); breakindex++) {
3649         Descriptor desc=pp.getDescAt(breakindex);
3650         if (desc instanceof FieldDescriptor) {
3651           FieldDescriptor fd=(FieldDescriptor)desc;
3652           if (fd.isGlobal()) {
3653             break;
3654           }
3655         }
3656       }
3657       breakindex++;
3658     }
3659
3660     if (breakindex>pp.desc.size())     //all local
3661       return;
3662
3663     TypeDescriptor lasttype=pp.base.getType();
3664     String basestr=generateTemp(fm, pp.base, lb);
3665     String teststr="";
3666     boolean maybenull=fm.getMethod().isStatic()||
3667                        !pp.base.equals(fm.getParameter(0));
3668
3669     for(int i=0; i<breakindex; i++) {
3670       String indexcheck="";
3671
3672       Descriptor desc=pp.getDescAt(i);
3673       if (desc instanceof FieldDescriptor) {
3674         FieldDescriptor fd=(FieldDescriptor)desc;
3675         if (maybenull) {
3676           if (!teststr.equals(""))
3677             teststr+="&&";
3678           teststr+="((prefptr="+basestr+")!=NULL)";
3679           basestr="((struct "+lasttype.getSafeSymbol()+" *)prefptr)->"+fd.getSafeSymbol();
3680         } else {
3681           basestr=basestr+"->"+fd.getSafeSymbol();
3682           maybenull=true;
3683         }
3684         lasttype=fd.getType();
3685       } else {
3686         IndexDescriptor id=(IndexDescriptor)desc;
3687         indexcheck="((tmpindex=";
3688         for(int j=0; j<id.tddesc.size(); j++) {
3689           indexcheck+=generateTemp(fm, id.getTempDescAt(j), lb)+"+";
3690         }
3691         indexcheck+=id.offset+")>=0)&(tmpindex<((struct ArrayObject *)prefptr)->___length___)";
3692
3693         if (!teststr.equals(""))
3694           teststr+="&&";
3695         teststr+="((prefptr="+basestr+")!= NULL) &&"+indexcheck;
3696         basestr="((void **)(((char *) &(((struct ArrayObject *)prefptr)->___length___))+sizeof(int)))[tmpindex]";
3697         maybenull=true;
3698         lasttype=lasttype.dereference();
3699       }
3700     }
3701
3702     String oid;
3703     if (teststr.equals("")) {
3704       oid="((unsigned int)"+basestr+")";
3705     } else {
3706       oid="((unsigned int)(("+teststr+")?"+basestr+":NULL))";
3707     }
3708     oids.add(oid);
3709
3710     for(int i = breakindex; i < pp.desc.size(); i++) {
3711       String newfieldoffset;
3712       Object desc = pp.getDescAt(i);
3713       if(desc instanceof FieldDescriptor) {
3714         FieldDescriptor fd=(FieldDescriptor)desc;
3715         newfieldoffset = new String("(unsigned int)(&(((struct "+ lasttype.getSafeSymbol()+" *)0)->"+ fd.getSafeSymbol()+ "))");
3716         lasttype=fd.getType();
3717       } else {
3718         newfieldoffset = "";
3719         IndexDescriptor id=(IndexDescriptor)desc;
3720         for(int j = 0; j < id.tddesc.size(); j++) {
3721           newfieldoffset += generateTemp(fm, id.getTempDescAt(j), lb) + "+";
3722         }
3723         newfieldoffset += id.offset.toString();
3724         lasttype=lasttype.dereference();
3725       }
3726       fieldoffset.add(newfieldoffset);
3727     }
3728
3729     int base=(tuplecount>0) ? ((Short)endoffset.get(tuplecount-1)).intValue() : 0;
3730     base+=pp.desc.size()-breakindex;
3731     endoffset.add(new Short((short)base));
3732   }
3733
3734
3735
3736   public void generateFlatGlobalConvNode(FlatMethod fm, LocalityBinding lb, FlatGlobalConvNode fgcn, PrintWriter output) {
3737     if (lb!=fgcn.getLocality())
3738       return;
3739     /* Have to generate flat globalconv */
3740     if (fgcn.getMakePtr()) {
3741       if (state.DSM) {
3742         //DEBUG: output.println("TRANSREAD("+generateTemp(fm, fgcn.getSrc(),lb)+", (unsigned int) "+generateTemp(fm, fgcn.getSrc(),lb)+",\" "+fm+":"+fgcn+"\");");
3743            output.println("TRANSREAD("+generateTemp(fm, fgcn.getSrc(),lb)+", (unsigned int) "+generateTemp(fm, fgcn.getSrc(),lb)+");");
3744       } else {
3745         if ((dc==null)||!state.READSET&&dc.getNeedTrans(lb, fgcn)||state.READSET&&dc.getNeedWriteTrans(lb, fgcn)) {
3746           //need to do translation
3747           output.println("TRANSREAD("+generateTemp(fm, fgcn.getSrc(),lb)+", "+generateTemp(fm, fgcn.getSrc(),lb)+", (void *)("+localsprefixaddr+"));");
3748         } else if (state.READSET&&dc.getNeedTrans(lb, fgcn)) {
3749           if (state.HYBRID&&delaycomp.getConv(lb).contains(fgcn)) {
3750             output.println("TRANSREADRDFISSION("+generateTemp(fm, fgcn.getSrc(),lb)+", "+generateTemp(fm, fgcn.getSrc(),lb)+");");
3751           } else
3752             output.println("TRANSREADRD("+generateTemp(fm, fgcn.getSrc(),lb)+", "+generateTemp(fm, fgcn.getSrc(),lb)+");");
3753         }
3754       }
3755     } else {
3756       /* Need to convert to OID */
3757       if ((dc==null)||dc.getNeedSrcTrans(lb,fgcn)) {
3758         if (fgcn.doConvert()||(delaycomp!=null&&delaycomp.needsFission(lb, fgcn.getAtomicEnter())&&atomicmethodmap.get(fgcn.getAtomicEnter()).reallivein.contains(fgcn.getSrc()))) {
3759           output.println(generateTemp(fm, fgcn.getSrc(),lb)+"=(void *)COMPOID("+generateTemp(fm, fgcn.getSrc(),lb)+");");
3760         } else {
3761           output.println(generateTemp(fm, fgcn.getSrc(),lb)+"=NULL;");
3762         }
3763       }
3764     }
3765   }
3766
3767   public void generateFlatInstanceOfNode(FlatMethod fm,  LocalityBinding lb, FlatInstanceOfNode fion, PrintWriter output) {
3768     int type;
3769     if (fion.getType().isArray()) {
3770       type=state.getArrayNumber(fion.getType())+state.numClasses();
3771     } else {
3772       type=fion.getType().getClassDesc().getId();
3773     }
3774
3775     if (fion.getType().getSymbol().equals(TypeUtil.ObjectClass))
3776       output.println(generateTemp(fm, fion.getDst(), lb)+"=1;");
3777     else
3778       output.println(generateTemp(fm, fion.getDst(), lb)+"=instanceof("+generateTemp(fm,fion.getSrc(),lb)+","+type+");");
3779   }
3780
3781   int sandboxcounter=0;
3782   public void generateFlatAtomicEnterNode(FlatMethod fm,  LocalityBinding lb, FlatAtomicEnterNode faen, PrintWriter output) {
3783     /* Check to see if we need to generate code for this atomic */
3784     if (locality==null) {
3785       if (GENERATEPRECISEGC) {
3786         output.println("if (pthread_mutex_trylock(&atomiclock)!=0) {");
3787         output.println("stopforgc((struct garbagelist *) &___locals___);");
3788         output.println("pthread_mutex_lock(&atomiclock);");
3789         output.println("restartaftergc();");
3790         output.println("}");
3791       } else {
3792         output.println("pthread_mutex_lock(&atomiclock);");
3793       }
3794       return;
3795     }
3796
3797     if (locality.getAtomic(lb).get(faen.getPrev(0)).intValue()>0)
3798       return;
3799
3800
3801     if (state.SANDBOX) {
3802       outsandbox.println("int atomiccounter"+sandboxcounter+"=LOW_CHECK_FREQUENCY;");
3803       output.println("counter_reset_pointer=&atomiccounter"+sandboxcounter+";");
3804     }
3805
3806     if (state.DELAYCOMP&&delaycomp.needsFission(lb, faen)) {
3807       AtomicRecord ar=atomicmethodmap.get(faen);
3808       //copy in
3809       for(Iterator<TempDescriptor> tmpit=ar.livein.iterator();tmpit.hasNext();) {
3810         TempDescriptor tmp=tmpit.next();
3811         output.println("primitives_"+ar.name+"."+tmp.getSafeSymbol()+"="+tmp.getSafeSymbol()+";");
3812       }
3813
3814       //copy outs that depend on path
3815       for(Iterator<TempDescriptor> tmpit=ar.liveoutvirtualread.iterator();tmpit.hasNext();) {
3816         TempDescriptor tmp=tmpit.next();
3817         if (!ar.livein.contains(tmp))
3818           output.println("primitives_"+ar.name+"."+tmp.getSafeSymbol()+"="+tmp.getSafeSymbol()+";");
3819       }
3820     }
3821
3822     /* Backup the temps. */
3823     for(Iterator<TempDescriptor> tmpit=locality.getTemps(lb).get(faen).iterator(); tmpit.hasNext();) {
3824       TempDescriptor tmp=tmpit.next();
3825       output.println(generateTemp(fm, backuptable.get(lb).get(tmp),lb)+"="+generateTemp(fm,tmp,lb)+";");
3826     }
3827
3828     output.println("goto transstart"+faen.getIdentifier()+";");
3829
3830     /******* Print code to retry aborted transaction *******/
3831     output.println("transretry"+faen.getIdentifier()+":");
3832
3833     /* Restore temps */
3834     for(Iterator<TempDescriptor> tmpit=locality.getTemps(lb).get(faen).iterator(); tmpit.hasNext();) {
3835       TempDescriptor tmp=tmpit.next();
3836       output.println(generateTemp(fm, tmp,lb)+"="+generateTemp(fm,backuptable.get(lb).get(tmp),lb)+";");
3837     }
3838
3839     if (state.DSM) {
3840       /********* Need to revert local object store ********/
3841       String revertptr=generateTemp(fm, reverttable.get(lb),lb);
3842
3843       output.println("while ("+revertptr+") {");
3844       output.println("struct ___Object___ * tmpptr;");
3845       output.println("tmpptr="+revertptr+"->"+nextobjstr+";");
3846       output.println("REVERT_OBJ("+revertptr+");");
3847       output.println(revertptr+"=tmpptr;");
3848       output.println("}");
3849     }
3850     /******* Tell the runtime to start the transaction *******/
3851
3852     output.println("transstart"+faen.getIdentifier()+":");
3853     if (state.SANDBOX) {
3854       output.println("transaction_check_counter=*counter_reset_pointer;");
3855       sandboxcounter++;
3856     }
3857     output.println("transStart();");
3858
3859     if (state.ABORTREADERS||state.SANDBOX) {
3860       if (state.SANDBOX)
3861         output.println("abortenabled=1;");
3862       output.println("if (_setjmp(aborttrans)) {");
3863       output.println("  goto transretry"+faen.getIdentifier()+"; }");
3864     }
3865   }
3866
3867   public void generateFlatAtomicExitNode(FlatMethod fm,  LocalityBinding lb, FlatAtomicExitNode faen, PrintWriter output) {
3868     /* Check to see if we need to generate code for this atomic */
3869     if (locality==null) {
3870       output.println("pthread_mutex_unlock(&atomiclock);");
3871       return;
3872     }
3873     if (locality.getAtomic(lb).get(faen).intValue()>0)
3874       return;
3875     //store the revert list before we lose the transaction object
3876     
3877     if (state.DSM) {
3878       String revertptr=generateTemp(fm, reverttable.get(lb),lb);
3879       output.println(revertptr+"=revertlist;");
3880       output.println("if (transCommit()) {");
3881       output.println("if (unlikely(needtocollect)) checkcollect("+localsprefixaddr+");");
3882       output.println("goto transretry"+faen.getAtomicEnter().getIdentifier()+";");
3883       output.println("} else {");
3884       /* Need to commit local object store */
3885       output.println("while ("+revertptr+") {");
3886       output.println("struct ___Object___ * tmpptr;");
3887       output.println("tmpptr="+revertptr+"->"+nextobjstr+";");
3888       output.println("COMMIT_OBJ("+revertptr+");");
3889       output.println(revertptr+"=tmpptr;");
3890       output.println("}");
3891       output.println("}");
3892       return;
3893     }
3894
3895     if (!state.DELAYCOMP) {
3896       //Normal STM stuff
3897       output.println("if (transCommit()) {");
3898       /* Transaction aborts if it returns true */
3899       output.println("if (unlikely(needtocollect)) checkcollect("+localsprefixaddr+");");
3900       output.println("goto transretry"+faen.getAtomicEnter().getIdentifier()+";");
3901       output.println("}");
3902     } else {
3903       if (delaycomp.optimizeTrans(lb, faen.getAtomicEnter())&&(!state.STMARRAY||state.DUALVIEW))  {
3904         AtomicRecord ar=atomicmethodmap.get(faen.getAtomicEnter());
3905         output.println("LIGHTWEIGHTCOMMIT("+ar.name+", &primitives_"+ar.name+", &"+localsprefix+", "+paramsprefix+", transretry"+faen.getAtomicEnter().getIdentifier()+");");
3906         //copy out
3907         for(Iterator<TempDescriptor> tmpit=ar.liveout.iterator();tmpit.hasNext();) {
3908           TempDescriptor tmp=tmpit.next();
3909           output.println(tmp.getSafeSymbol()+"=primitives_"+ar.name+"."+tmp.getSafeSymbol()+";");
3910         }
3911       } else if (delaycomp.needsFission(lb, faen.getAtomicEnter())) {
3912         AtomicRecord ar=atomicmethodmap.get(faen.getAtomicEnter());
3913         //do call
3914         output.println("if (transCommit((void (*)(void *, void *, void *))&"+ar.name+", &primitives_"+ar.name+", &"+localsprefix+", "+paramsprefix+")) {");
3915         output.println("if (unlikely(needtocollect)) checkcollect("+localsprefixaddr+");");
3916         output.println("goto transretry"+faen.getAtomicEnter().getIdentifier()+";");
3917         output.println("}");
3918         //copy out
3919         output.println("else {");
3920         for(Iterator<TempDescriptor> tmpit=ar.liveout.iterator();tmpit.hasNext();) {
3921           TempDescriptor tmp=tmpit.next();
3922           output.println(tmp.getSafeSymbol()+"=primitives_"+ar.name+"."+tmp.getSafeSymbol()+";");
3923         }
3924         output.println("}");
3925       } else {
3926         output.println("if (transCommit(NULL, NULL, NULL, NULL)) {");
3927         output.println("if (unlikely(needtocollect)) checkcollect("+localsprefixaddr+");");
3928         output.println("goto transretry"+faen.getAtomicEnter().getIdentifier()+";");
3929         output.println("}");
3930       }
3931     }
3932   }
3933
3934   public void generateFlatSESEEnterNode( FlatMethod fm,  
3935                                          LocalityBinding lb, 
3936                                          FlatSESEEnterNode fsen, 
3937                                          PrintWriter output) {
3938     // if MLP flag is off, okay that SESE nodes are in IR graph, 
3939     // just skip over them and code generates exactly the same
3940     if( !(state.MLP || state.OOOJAVA) ) {
3941       return;
3942     }    
3943     // there may be an SESE in an unreachable method, skip over
3944     if( (state.MLP && !mlpa.getAllSESEs().contains( fsen )) ||
3945         (state.OOOJAVA && !oooa.getAllSESEs().contains(fsen))
3946     ) {
3947       return;
3948     }
3949
3950     // also, if we have encountered a placeholder, just skip it
3951     if( fsen.getIsCallerSESEplaceholder() ) {
3952       return;
3953     }
3954
3955     output.println("   {");
3956
3957     if( state.COREPROF ) {
3958       output.println("#ifdef CP_EVENTID_TASKDISPATCH");
3959       output.println("     CP_LOGEVENT( CP_EVENTID_TASKDISPATCH, CP_EVENTTYPE_BEGIN );");
3960       output.println("#endif");
3961     }
3962
3963
3964     // before doing anything, lock your own record and increment the running children
3965     if( (state.MLP     && fsen != mlpa.getMainSESE()) || 
3966         (state.OOOJAVA && fsen != oooa.getMainSESE())
3967     ) {
3968         output.println("     childSESE++;");
3969     }
3970
3971     // allocate the space for this record
3972     output.println( "#ifndef OOO_DISABLE_TASKMEMPOOL" );
3973
3974     output.println( "#ifdef CP_EVENTID_POOLALLOC");
3975     output.println( "     CP_LOGEVENT( CP_EVENTID_POOLALLOC, CP_EVENTTYPE_BEGIN );");
3976     output.println( "#endif");
3977     if( (state.MLP     && fsen != mlpa.getMainSESE()) || 
3978         (state.OOOJAVA && fsen != oooa.getMainSESE())
3979         ) {
3980       output.println("     "+
3981                      fsen.getSESErecordName()+"* seseToIssue = ("+
3982                      fsen.getSESErecordName()+"*) poolalloc( runningSESE->taskRecordMemPool );");
3983       output.println("     CHECK_RECORD( seseToIssue );");
3984     } else {
3985       output.println("     "+
3986                      fsen.getSESErecordName()+"* seseToIssue = ("+
3987                      fsen.getSESErecordName()+"*) mlpAllocSESErecord( sizeof( "+
3988                      fsen.getSESErecordName()+" ) );");
3989     }
3990     output.println( "#ifdef CP_EVENTID_POOLALLOC");
3991     output.println( "     CP_LOGEVENT( CP_EVENTID_POOLALLOC, CP_EVENTTYPE_END );");
3992     output.println( "#endif");
3993
3994     output.println( "#else // OOO_DISABLE_TASKMEMPOOL" );
3995       output.println("     "+
3996                      fsen.getSESErecordName()+"* seseToIssue = ("+
3997                      fsen.getSESErecordName()+"*) mlpAllocSESErecord( sizeof( "+
3998                      fsen.getSESErecordName()+" ) );");
3999     output.println( "#endif // OOO_DISABLE_TASKMEMPOOL" );
4000
4001
4002     // set up the SESE in-set and out-set objects, which look
4003     // like a garbage list
4004     output.println("     struct garbagelist * gl= (struct garbagelist *)&(((SESEcommon*)(seseToIssue))[1]);");
4005     output.println("     gl->size="+calculateSizeOfSESEParamList(fsen)+";");
4006     output.println("     gl->next = NULL;");
4007     output.println("     seseToIssue->common.rentryIdx=0;");
4008
4009     if(state.RCR) {
4010       //flag the SESE status as 1...it will be reset
4011       output.println("     seseToIssue->common.rcrstatus=1;");
4012     }
4013
4014     // there are pointers to SESE records the newly-issued SESE
4015     // will use to get values it depends on them for--how many
4016     // are there, and what is the offset from the total SESE
4017     // record to the first dependent record pointer?
4018     output.println("     seseToIssue->common.numDependentSESErecords="+
4019                    fsen.getNumDepRecs()+";");
4020     
4021     // we only need this (and it will only compile) when the number of dependent
4022     // SESE records is non-zero
4023     if( fsen.getFirstDepRecField() != null ) {
4024       output.println("     seseToIssue->common.offsetToDepSESErecords=(INTPTR)sizeof("+
4025                      fsen.getSESErecordName()+") - (INTPTR)&((("+
4026                      fsen.getSESErecordName()+"*)0)->"+fsen.getFirstDepRecField()+");"
4027                      );
4028     }
4029     
4030     if (state.RCR&&fsen.getInVarsForDynamicCoarseConflictResolution().size()>0) {
4031       output.println("    seseToIssue->common.offsetToParamRecords=(INTPTR) & ((("+fsen.getSESErecordName()+"*)0)->rcrRecords);");
4032     }
4033
4034     // fill in common data
4035     output.println("     int localCount=0;");
4036     output.println("     seseToIssue->common.classID = "+fsen.getIdentifier()+";");
4037     output.println("     seseToIssue->common.unresolvedDependencies = 10000;");
4038     output.println("     seseToIssue->common.parentsStallSem = NULL;");
4039     output.println("     initQueue(&seseToIssue->common.forwardList);");
4040     output.println("     seseToIssue->common.doneExecuting = FALSE;");    
4041     output.println("     seseToIssue->common.numRunningChildren = 0;");
4042     output.println( "#ifdef OOO_DISABLE_TASKMEMPOOL" );
4043     output.println("     pthread_cond_init( &(seseToIssue->common.runningChildrenCond), NULL );");
4044     output.println("#endif");
4045     output.println("     seseToIssue->common.parent = runningSESE;");
4046     // start with refCount = 2, one being the count that the child itself
4047     // will decrement when it retires, to say it is done using its own
4048     // record, and the other count is for the parent that will remember
4049     // the static name of this new child below
4050     if( state.RCR ) {
4051       // if we're using RCR, ref count is 3 because the traverser has
4052       // a reference, too
4053       output.println("     seseToIssue->common.refCount = 3;");
4054     } else {
4055       output.println("     seseToIssue->common.refCount = 2;");
4056     }
4057
4058     // all READY in-vars should be copied now and be done with it
4059     Iterator<TempDescriptor> tempItr = fsen.getReadyInVarSet().iterator();
4060     while( tempItr.hasNext() ) {
4061       TempDescriptor temp = tempItr.next();
4062
4063       // when we are issuing the main SESE or an SESE with placeholder
4064       // caller SESE as parent, generate temp child child's eclosing method,
4065       // otherwise use the parent's enclosing method as the context
4066       boolean useParentContext = false;
4067
4068       if( (state.MLP && fsen != mlpa.getMainSESE()) || 
4069           (state.OOOJAVA && fsen != oooa.getMainSESE())     
4070       ) {
4071         assert fsen.getParent() != null;
4072         if( !fsen.getParent().getIsCallerSESEplaceholder() ) {
4073           useParentContext = true;
4074         }
4075       }
4076
4077       if( useParentContext ) {
4078         output.println("     seseToIssue->"+temp+" = "+
4079                        generateTemp( fsen.getParent().getfmBogus(), temp, null )+";");   
4080       } else {
4081         output.println("     seseToIssue->"+temp+" = "+
4082                        generateTemp( fsen.getfmEnclosing(), temp, null )+";");
4083       }
4084     }
4085     
4086     // before potentially adding this SESE to other forwarding lists,
4087     // create it's lock
4088     output.println( "#ifdef OOO_DISABLE_TASKMEMPOOL" );
4089     output.println("     pthread_mutex_init( &(seseToIssue->common.lock), NULL );");
4090     output.println("#endif");
4091   
4092     if( (state.MLP && fsen != mlpa.getMainSESE()) ||
4093         (state.OOOJAVA && fsen != oooa.getMainSESE())    
4094     ) {
4095       // count up outstanding dependencies, static first, then dynamic
4096       Iterator<SESEandAgePair> staticSrcsItr = fsen.getStaticInVarSrcs().iterator();
4097       while( staticSrcsItr.hasNext() ) {
4098         SESEandAgePair srcPair = staticSrcsItr.next();
4099         output.println("     {");
4100         output.println("       SESEcommon* src = (SESEcommon*)"+srcPair+";");
4101         output.println("       pthread_mutex_lock( &(src->lock) );");
4102         // FORWARD TODO
4103         output.println("       if( !src->doneExecuting ) {");
4104         output.println("         addNewItem( &src->forwardList, seseToIssue );");       
4105         output.println("         ++(localCount);");
4106         output.println("       }");
4107         output.println("#ifndef OOO_DISABLE_TASKMEMPOOL" );
4108         output.println("       ADD_REFERENCE_TO( src );");
4109         output.println("#endif" );
4110         output.println("       pthread_mutex_unlock( &(src->lock) );");
4111         output.println("     }");
4112
4113         // whether or not it is an outstanding dependency, make sure
4114         // to pass the static name to the child's record
4115         output.println("     seseToIssue->"+srcPair+" = "+
4116                        "("+srcPair.getSESE().getSESErecordName()+"*)"+
4117                        srcPair+";");
4118       }
4119       
4120       // dynamic sources might already be accounted for in the static list,
4121       // so only add them to forwarding lists if they're not already there
4122       Iterator<TempDescriptor> dynVarsItr = fsen.getDynamicInVarSet().iterator();
4123       while( dynVarsItr.hasNext() ) {
4124         TempDescriptor dynInVar = dynVarsItr.next();
4125         output.println("     {");
4126         output.println("       SESEcommon* src = (SESEcommon*)"+dynInVar+"_srcSESE;");
4127
4128         // the dynamic source is NULL if it comes from your own space--you can't pass
4129         // the address off to the new child, because you're not done executing and
4130         // might change the variable, so copy it right now
4131         output.println("       if( src != NULL ) {");
4132         output.println("         pthread_mutex_lock( &(src->lock) );");
4133
4134         // FORWARD TODO
4135
4136         output.println("         if( isEmpty( &src->forwardList ) ||");
4137         output.println("             seseToIssue != peekItem( &src->forwardList ) ) {");
4138         output.println("           if( !src->doneExecuting ) {");
4139         output.println("             addNewItem( &src->forwardList, seseToIssue );");
4140         output.println("             ++(localCount);");
4141         output.println("           }");
4142         output.println("         }");
4143         output.println("#ifndef OOO_DISABLE_TASKMEMPOOL" );
4144         output.println("         ADD_REFERENCE_TO( src );");
4145         output.println("#endif" );
4146         output.println("         pthread_mutex_unlock( &(src->lock) );");       
4147         output.println("         seseToIssue->"+dynInVar+"_srcOffset = "+dynInVar+"_srcOffset;");
4148         output.println("       } else {");
4149
4150         boolean useParentContext = false;
4151         if( (state.MLP && fsen != mlpa.getMainSESE()) || 
4152             (state.OOOJAVA && fsen != oooa.getMainSESE())       
4153         ) {
4154           assert fsen.getParent() != null;
4155           if( !fsen.getParent().getIsCallerSESEplaceholder() ) {
4156             useParentContext = true;
4157           }
4158         }       
4159         if( useParentContext ) {
4160           output.println("         seseToIssue->"+dynInVar+" = "+
4161                          generateTemp( fsen.getParent().getfmBogus(), dynInVar, null )+";");
4162         } else {
4163           output.println("         seseToIssue->"+dynInVar+" = "+
4164                          generateTemp( fsen.getfmEnclosing(), dynInVar, null )+";");
4165         }
4166         
4167         output.println("       }");
4168         output.println("     }");
4169         
4170         // even if the value is already copied, make sure your NULL source
4171         // gets passed so child knows it already has the dynamic value
4172         output.println("     seseToIssue->"+dynInVar+"_srcSESE = "+dynInVar+"_srcSESE;");
4173       }
4174
4175       
4176
4177
4178       // maintain pointers for finding dynamic SESE 
4179       // instances from static names      
4180       SESEandAgePair pairNewest = new SESEandAgePair( fsen, 0 );
4181       SESEandAgePair pairOldest = new SESEandAgePair( fsen, fsen.getOldestAgeToTrack() );
4182       if(  fsen.getParent() != null && 
4183            fsen.getParent().getNeededStaticNames().contains( pairNewest ) 
4184         ) {       
4185         output.println("     {");
4186         output.println("#ifndef OOO_DISABLE_TASKMEMPOOL" );
4187         output.println("       SESEcommon* oldest = "+pairOldest+";");
4188         output.println("#endif // OOO_DISABLE_TASKMEMPOOL" );
4189
4190         for( int i = fsen.getOldestAgeToTrack(); i > 0; --i ) {
4191           SESEandAgePair pair1 = new SESEandAgePair( fsen, i   );
4192           SESEandAgePair pair2 = new SESEandAgePair( fsen, i-1 );
4193           output.println("       "+pair1+" = "+pair2+";");
4194         }      
4195         output.println("       "+pairNewest+" = &(seseToIssue->common);");
4196
4197         // no need to add a reference to whatever is the newest record, because
4198         // we initialized seseToIssue->refCount to *2*
4199         // but release a reference to whatever was the oldest BEFORE the shift
4200         output.println("#ifndef OOO_DISABLE_TASKMEMPOOL" );
4201         output.println("       if( oldest != NULL ) {");
4202         output.println("         RELEASE_REFERENCE_TO( oldest );");
4203         output.println("       }");
4204         output.println("#endif // OOO_DISABLE_TASKMEMPOOL" );
4205         output.println("     }");
4206       }
4207
4208
4209
4210       if( state.COREPROF ) {
4211         output.println("#ifdef CP_EVENTID_PREPAREMEMQ");
4212         output.println("     CP_LOGEVENT( CP_EVENTID_PREPAREMEMQ, CP_EVENTTYPE_BEGIN );");
4213         output.println("#endif");
4214       }
4215
4216
4217       ////////////////
4218       // count up memory conflict dependencies,
4219       if(state.RCR) {
4220         dispatchMEMRC(fm, lb, fsen, output);
4221       } else if(state.OOOJAVA){
4222         FlatSESEEnterNode parent = fsen.getParent();
4223         Analysis.OoOJava.ConflictGraph graph = oooa.getConflictGraph(parent);
4224         if (graph != null && graph.hasConflictEdge()) {
4225           Set<Analysis.OoOJava.SESELock> seseLockSet = oooa.getLockMappings(graph);
4226           output.println();
4227           output.println("     //add memory queue element");
4228           Analysis.OoOJava.SESEWaitingQueue seseWaitingQueue=
4229             graph.getWaitingElementSetBySESEID(fsen.getIdentifier(), seseLockSet);
4230           if(seseWaitingQueue.getWaitingElementSize()>0) {
4231             output.println("     {");
4232             output.println("       REntry* rentry=NULL;");
4233             output.println("       INTPTR* pointer=NULL;");
4234             output.println("       seseToIssue->common.rentryIdx=0;");
4235
4236             Set<Integer> queueIDSet=seseWaitingQueue.getQueueIDSet();
4237             for (Iterator iterator = queueIDSet.iterator(); iterator.hasNext();) {
4238               Integer key = (Integer) iterator.next();
4239               int queueID=key.intValue();
4240               Set<Analysis.OoOJava.WaitingElement> waitingQueueSet =  
4241                 seseWaitingQueue.getWaitingElementSet(queueID);
4242               int enqueueType=seseWaitingQueue.getType(queueID);
4243               if(enqueueType==SESEWaitingQueue.EXCEPTION) {
4244                 output.println("       INITIALIZEBUF(runningSESE->memoryQueueArray[" + queueID+ "]);");
4245               }
4246               for (Iterator iterator2 = waitingQueueSet.iterator(); iterator2.hasNext();) {
4247                 Analysis.OoOJava.WaitingElement waitingElement 
4248                   = (Analysis.OoOJava.WaitingElement) iterator2.next();
4249                 if (waitingElement.getStatus() >= ConflictNode.COARSE) {
4250                   output.println("       rentry=mlpCreateREntry(runningSESE->memoryQueueArray["+ queueID+ "],"
4251                                  + waitingElement.getStatus()
4252                                  + ", &(seseToIssue->common));");
4253                 } else {
4254                   TempDescriptor td = waitingElement.getTempDesc();
4255                   // decide whether waiting element is dynamic or static
4256                   if (fsen.getDynamicInVarSet().contains(td)) {
4257                     // dynamic in-var case
4258                     output.println("       pointer=seseToIssue->"
4259                                    + waitingElement.getDynID()
4260                                    + "_srcSESE+seseToIssue->"
4261                                    + waitingElement.getDynID()
4262                                    + "_srcOffset;");
4263                     output.println("       rentry=mlpCreateFineREntry(runningSESE->memoryQueueArray["+ queueID+ "],"
4264                                    + waitingElement.getStatus()
4265                                    + ", &(seseToIssue->common),  pointer );");
4266                   } else if (fsen.getStaticInVarSet().contains(td)) {
4267                     // static in-var case
4268                     VariableSourceToken vst = fsen.getStaticInVarSrc(td);
4269                     if (vst != null) {
4270   
4271                       String srcId = "SESE_" + vst.getSESE().getPrettyIdentifier()
4272                         + vst.getSESE().getIdentifier()
4273                         + "_" + vst.getAge();
4274                       output.println("       pointer=(void*)&seseToIssue->"
4275                                      + srcId
4276                                      + "->"
4277                                      + waitingElement
4278                                      .getDynID()
4279                                      + ";");
4280                       output.println("       rentry=mlpCreateFineREntry(runningSESE->memoryQueueArray["+ queueID+ "],"
4281                                      + waitingElement.getStatus()
4282                                      + ", &(seseToIssue->common),  pointer );");
4283                     }
4284                   } else {
4285                     output.println("       rentry=mlpCreateFineREntry(runningSESE->memoryQueueArray["+ queueID+ "],"
4286                                    + waitingElement.getStatus()
4287                                    + ", &(seseToIssue->common), (void*)&seseToIssue->"
4288                                    + waitingElement.getDynID()
4289                                    + ");");
4290                   }
4291                 }
4292                 output.println("       rentry->queue=runningSESE->memoryQueueArray["
4293                                + waitingElement.getQueueID()
4294                                + "];");
4295                 
4296                 if(enqueueType==SESEWaitingQueue.NORMAL){
4297                   output.println("       seseToIssue->common.rentryArray[seseToIssue->common.rentryIdx++]=rentry;");
4298                   output.println("       if(ADDRENTRY(runningSESE->memoryQueueArray["
4299                                  + waitingElement.getQueueID()
4300                                  + "],rentry)==NOTREADY) {");
4301                   output.println("          localCount++;");
4302                   output.println("       }");
4303                 } else {
4304                   output.println("       ADDRENTRYTOBUF(runningSESE->memoryQueueArray[" + waitingElement.getQueueID() + "],rentry);");
4305                 }
4306               }
4307               if(enqueueType!=SESEWaitingQueue.NORMAL){
4308                 output.println("       localCount+=RESOLVEBUF(runningSESE->memoryQueueArray["
4309                                + queueID+ "],&seseToIssue->common);");
4310               }       
4311             }
4312             output.println("     }");
4313           }
4314           output.println();
4315         }
4316       } else {
4317         ConflictGraph graph = null;
4318         FlatSESEEnterNode parent = fsen.getParent();
4319         if (parent != null) {
4320           if (parent.isCallerSESEplaceholder) {
4321             graph = mlpa.getConflictGraphResults().get(parent.getfmEnclosing());
4322           } else {
4323             graph = mlpa.getConflictGraphResults().get(parent);
4324           }
4325         }
4326         if (graph != null && graph.hasConflictEdge()) {
4327           HashSet<SESELock> seseLockSet = mlpa.getConflictGraphLockMap()
4328             .get(graph);
4329           output.println();
4330           output.println("     //add memory queue element");
4331           SESEWaitingQueue seseWaitingQueue=graph.getWaitingElementSetBySESEID(fsen.getIdentifier(),
4332                                                                                seseLockSet);
4333           if(seseWaitingQueue.getWaitingElementSize()>0){
4334             output.println("     {");
4335             output.println("     REntry* rentry=NULL;");
4336             output.println("     INTPTR* pointer=NULL;");
4337             output.println("     seseToIssue->common.rentryIdx=0;");
4338
4339             Set<Integer> queueIDSet=seseWaitingQueue.getQueueIDSet();
4340             for (Iterator iterator = queueIDSet.iterator(); iterator
4341                    .hasNext();) {
4342               Integer key = (Integer) iterator.next();
4343               int queueID=key.intValue();
4344               Set<WaitingElement> waitingQueueSet =  seseWaitingQueue.getWaitingElementSet(queueID);
4345               int enqueueType=seseWaitingQueue.getType(queueID);
4346               if(enqueueType==SESEWaitingQueue.EXCEPTION){
4347                 output.println("     INITIALIZEBUF(runningSESE->memoryQueueArray["
4348                                + queueID+ "]);");
4349               }
4350               for (Iterator iterator2 = waitingQueueSet.iterator(); iterator2
4351                      .hasNext();) {
4352                 WaitingElement waitingElement = (WaitingElement) iterator2
4353                   .next();
4354                 if (waitingElement.getStatus() >= ConflictNode.COARSE) {
4355                   output.println("     rentry=mlpCreateREntry(runningSESE->memoryQueueArray["+ queueID+ "],"
4356                                  + waitingElement.getStatus()
4357                                  + ", &(seseToIssue->common));");
4358                 } else {
4359                   TempDescriptor td = waitingElement
4360                     .getTempDesc();
4361                   // decide whether waiting element is dynamic or
4362                   // static
4363                   if (fsen.getDynamicInVarSet().contains(td)) {
4364                     // dynamic in-var case
4365                     output.println("     pointer=seseToIssue->"
4366                                    + waitingElement.getDynID()
4367                                    + "_srcSESE+seseToIssue->"
4368                                    + waitingElement.getDynID()
4369                                    + "_srcOffset;");
4370                     output
4371                       .println("     rentry=mlpCreateFineREntry(runningSESE->memoryQueueArray["+ queueID+ "],"
4372                                + waitingElement
4373                                .getStatus()
4374                                + ", &(seseToIssue->common),  pointer );");
4375                   } else if (fsen.getStaticInVarSet()
4376                              .contains(td)) {
4377                     // static in-var case
4378                     VariableSourceToken vst = fsen
4379                       .getStaticInVarSrc(td);
4380                     if (vst != null) {
4381   
4382                       String srcId = "SESE_"
4383                         + vst.getSESE()
4384                         .getPrettyIdentifier()
4385                         + vst.getSESE().getIdentifier()
4386                         + "_" + vst.getAge();
4387                       output
4388                         .println("     pointer=(void*)&seseToIssue->"
4389                                  + srcId
4390                                  + "->"
4391                                  + waitingElement
4392                                  .getDynID()
4393                                  + ";");
4394                       output
4395                         .println("     rentry=mlpCreateFineREntry(runningSESE->memoryQueueArray["+ queueID+ "],"
4396                                  + waitingElement
4397                                  .getStatus()
4398                                  + ", &(seseToIssue->common),  pointer );");
4399   
4400                     }
4401                   } else {
4402                     output
4403                       .println("     rentry=mlpCreateFineREntry(runningSESE->memoryQueueArray["+ queueID+ "],"
4404                                + waitingElement
4405                                .getStatus()
4406                                + ", &(seseToIssue->common),  (void*)&seseToIssue->"
4407                                + waitingElement.getDynID()
4408                                + ");");
4409                   }
4410                 }
4411                 output
4412                   .println("     rentry->queue=runningSESE->memoryQueueArray["
4413                            + waitingElement.getQueueID()
4414                            + "];");
4415                                                         
4416                 if(enqueueType==SESEWaitingQueue.NORMAL){
4417                   output
4418                     .println("     seseToIssue->common.rentryArray[seseToIssue->common.rentryIdx++]=rentry;");
4419                   output
4420                     .println("     if(ADDRENTRY(runningSESE->memoryQueueArray["
4421                              + waitingElement.getQueueID()
4422                              + "],rentry)==NOTREADY){");
4423                   output.println("        ++(localCount);");
4424                   output.println("     } ");
4425                 }else{
4426                   output
4427                     .println("     ADDRENTRYTOBUF(runningSESE->memoryQueueArray["
4428                              + waitingElement.getQueueID()
4429                              + "],rentry);");
4430                 }
4431               }
4432               if(enqueueType!=SESEWaitingQueue.NORMAL){
4433                 output.println("     localCount+=RESOLVEBUF(runningSESE->memoryQueueArray["
4434                                + queueID+ "],&seseToIssue->common);");
4435               }
4436             }
4437             output.println("     }");
4438           }
4439           output.println();
4440         }
4441       }
4442     }
4443
4444     if( state.COREPROF ) {
4445       output.println("#ifdef CP_EVENTID_PREPAREMEMQ");
4446       output.println("     CP_LOGEVENT( CP_EVENTID_PREPAREMEMQ, CP_EVENTTYPE_END );");
4447       output.println("#endif");
4448     }
4449
4450     // Enqueue Task Record
4451     if (state.RCR) {
4452       output.println("    enqueueTR(TRqueue, (void *)seseToIssue);");
4453     }
4454
4455     // if there were no outstanding dependencies, issue here
4456     output.println("     if(  atomic_sub_and_test(10000-localCount,&(seseToIssue->common.unresolvedDependencies) ) ) {");
4457     output.println("       workScheduleSubmit( (void*)seseToIssue );");
4458     output.println("     }");
4459
4460     
4461
4462     if( state.COREPROF ) {
4463       output.println("#ifdef CP_EVENTID_TASKDISPATCH");
4464       output.println("     CP_LOGEVENT( CP_EVENTID_TASKDISPATCH, CP_EVENTTYPE_END );");
4465       output.println("#endif");
4466     }
4467
4468     output.println("   }");
4469     
4470   }
4471
4472   void dispatchMEMRC(FlatMethod fm,  LocalityBinding lb, FlatSESEEnterNode fsen, PrintWriter output) {
4473     FlatSESEEnterNode parent = fsen.getParent();
4474     Analysis.OoOJava.ConflictGraph graph = oooa.getConflictGraph(parent);
4475     if (graph != null && graph.hasConflictEdge()) {
4476       Set<Analysis.OoOJava.SESELock> seseLockSet = oooa.getLockMappings(graph);
4477       Analysis.OoOJava.SESEWaitingQueue seseWaitingQueue=graph.getWaitingElementSetBySESEID(fsen.getIdentifier(), seseLockSet);
4478       if(seseWaitingQueue.getWaitingElementSize()>0) {
4479         output.println("     {");
4480         output.println("       REntry* rentry=NULL;");
4481         output.println("       INTPTR* pointer=NULL;");
4482         output.println("       seseToIssue->common.rentryIdx=0;");
4483         Vector<TempDescriptor> invars=fsen.getInVarsForDynamicCoarseConflictResolution();
4484         System.out.println(fm.getMethod()+"["+invars+"]");
4485         
4486         Vector<Long> queuetovar=new Vector<Long>();
4487         
4488         for(int i=0;i<invars.size();i++) {
4489           TempDescriptor td=invars.get(i);
4490           Set<Analysis.OoOJava.WaitingElement> weset=seseWaitingQueue.getWaitingElementSet(td);
4491           int numqueues=weset.size();
4492           output.println("      seseToIssue->rcrRecords["+i+"].flag="+numqueues+";");
4493           output.println("      seseToIssue->rcrRecords["+i+"].index=0;");
4494           output.println("      seseToIssue->rcrRecords["+i+"].next=NULL;");
4495           output.println("      int dispCount"+i+"=0;");
4496
4497           for(Iterator<Analysis.OoOJava.WaitingElement> wtit=weset.iterator();wtit.hasNext();) {
4498             Analysis.OoOJava.WaitingElement waitingElement=wtit.next();
4499             int queueID=waitingElement.getQueueID();
4500             if (queueID>=queuetovar.size())
4501               queuetovar.setSize(queueID+1);
4502             Long l=queuetovar.get(queueID);
4503             long val=(l!=null)?l.longValue():0;
4504             val=val|(1<<i);
4505             queuetovar.set(queueID, new Long(val));
4506           }
4507         }
4508
4509         HashSet generatedqueueentry=new HashSet();
4510         for(int i=0;i<invars.size();i++) {
4511           TempDescriptor td=invars.get(i);
4512           Set<Analysis.OoOJava.WaitingElement> weset=seseWaitingQueue.getWaitingElementSet(td);
4513           int numqueues=weset.size();
4514           for(Iterator<Analysis.OoOJava.WaitingElement> wtit=weset.iterator();wtit.hasNext();) {
4515             Analysis.OoOJava.WaitingElement waitingElement=wtit.next();
4516             int queueID=waitingElement.getQueueID();
4517             if (generatedqueueentry.contains(queueID))
4518               continue;
4519             else 
4520               generatedqueueentry.add(queueID);
4521
4522             assert(waitingElement.getStatus()>=ConflictNode.COARSE);
4523             long mask=queuetovar.get(queueID);
4524             output.println("       rentry=mlpCreateREntry(runningSESE->memoryQueueArray["+ waitingElement.getQueueID()+ "]," + waitingElement.getStatus() + ", &(seseToIssue->common), "+mask+"LL);");
4525             output.println("       seseToIssue->common.rentryArray[seseToIssue->common.rentryIdx++]=rentry;");
4526             output.println("       rentry->queue=runningSESE->memoryQueueArray[" + waitingElement.getQueueID()+"];");
4527             
4528             output.println("       if(ADDRENTRY(runningSESE->memoryQueueArray["+ waitingElement.getQueueID()+ "],rentry)==READY) {");
4529             for(int j=0;mask!=0;j++) {
4530               if ((mask&1)==1)
4531                 output.println("          dispCount"+j+"++;");
4532               mask=mask>>1;
4533             }
4534             output.println("       }");
4535           }
4536
4537           if (fsen.getDynamicInVarSet().contains(td)) {
4538             // dynamic in-var case
4539             //output.println("       pointer=seseToIssue->" + waitingElement.getDynID()+ "_srcSESE+seseToIssue->"+ waitingElement.getDynID()+ "_srcOffset;");
4540             //output.println("       rentry=mlpCreateFineREntry("+ waitingElement.getStatus()+ ", &(seseToIssue->common),  pointer );");
4541           }
4542         }
4543         for(int i=0;i<invars.size();i++) {
4544           output.println("     if(!dispCount"+i+" || !atomic_sub_and_test(dispCount"+i+",&(seseToIssue->rcrRecords["+i+"].flag)))");
4545           output.println("       localCount++;");
4546         }
4547         output.println("    }");
4548       }
4549     }
4550   }
4551
4552   public void generateFlatSESEExitNode( FlatMethod fm,
4553                                         LocalityBinding lb,
4554                                         FlatSESEExitNode fsexn,
4555                                         PrintWriter output) {
4556
4557     // if MLP flag is off, okay that SESE nodes are in IR graph, 
4558     // just skip over them and code generates exactly the same 
4559     if( ! (state.MLP || state.OOOJAVA) ) {
4560       return;
4561     }
4562
4563     // get the enter node for this exit that has meta data embedded
4564     FlatSESEEnterNode fsen = fsexn.getFlatEnter();
4565
4566     // there may be an SESE in an unreachable method, skip over
4567     if( (state.MLP && !mlpa.getAllSESEs().contains( fsen ))  ||
4568         (state.OOOJAVA && !oooa.getAllSESEs().contains( fsen ))
4569     ) {
4570       return;
4571     }
4572
4573     // also, if we have encountered a placeholder, just jump it
4574     if( fsen.getIsCallerSESEplaceholder() ) {
4575       return;
4576     }
4577     
4578     if( state.COREPROF ) {
4579       output.println("#ifdef CP_EVENTID_TASKEXECUTE");
4580       output.println("   CP_LOGEVENT( CP_EVENTID_TASKEXECUTE, CP_EVENTTYPE_END );");
4581       output.println("#endif");
4582     }
4583
4584     output.println("   /* SESE exiting */");
4585
4586     if( state.COREPROF ) {
4587       output.println("#ifdef CP_EVENTID_TASKRETIRE");
4588       output.println("   CP_LOGEVENT( CP_EVENTID_TASKRETIRE, CP_EVENTTYPE_BEGIN );");
4589       output.println("#endif");
4590     }
4591     
4592
4593     // this SESE cannot be done until all of its children are done
4594     // so grab your own lock with the condition variable for watching
4595     // that the number of your running children is greater than zero    
4596     output.println("   atomic_add(childSESE, &runningSESE->numRunningChildren);");
4597     output.println("   pthread_mutex_lock( &(runningSESE->lock) );");
4598     output.println("   if( runningSESE->numRunningChildren > 0 ) {");
4599     output.println("     stopforgc( (struct garbagelist *)&___locals___ );");
4600     output.println("     do {");
4601     output.println("       pthread_cond_wait( &(runningSESE->runningChildrenCond), &(runningSESE->lock) );");
4602     output.println("     } while( runningSESE->numRunningChildren > 0 );");
4603     output.println("     restartaftergc();");
4604     output.println("   }");
4605
4606
4607     // copy out-set from local temps into the sese record
4608     Iterator<TempDescriptor> itr = fsen.getOutVarSet().iterator();
4609     while( itr.hasNext() ) {
4610       TempDescriptor temp = itr.next();
4611
4612       // only have to do this for primitives non-arrays
4613       if( !(
4614             temp.getType().isPrimitive() && !temp.getType().isArray()
4615            )
4616         ) {
4617         continue;
4618       }
4619
4620       // have to determine the context enclosing this sese
4621       boolean useParentContext = false;
4622
4623       if( (state.MLP &&fsen != mlpa.getMainSESE()) || 
4624           (state.OOOJAVA &&fsen != oooa.getMainSESE())
4625       ) {
4626         assert fsen.getParent() != null;
4627         if( !fsen.getParent().getIsCallerSESEplaceholder() ) {
4628           useParentContext = true;
4629         }
4630       }
4631
4632       String from;
4633       if( useParentContext ) {
4634         from = generateTemp( fsen.getParent().getfmBogus(), temp, null );
4635       } else {
4636         from = generateTemp( fsen.getfmEnclosing(),         temp, null );
4637       }
4638
4639       output.println("   "+paramsprefix+
4640                      "->"+temp.getSafeSymbol()+
4641                      " = "+from+";");
4642     }    
4643     
4644     // mark yourself done, your task data is now read-only
4645     output.println("   runningSESE->doneExecuting = TRUE;");
4646
4647     // if parent is stalling on you, let them know you're done
4648     if( (state.MLP && fsexn.getFlatEnter() != mlpa.getMainSESE()) || 
4649         (state.OOOJAVA &&  fsexn.getFlatEnter() != oooa.getMainSESE())    
4650     ) {
4651       output.println("   if( runningSESE->parentsStallSem != NULL ) {");
4652       output.println("     psem_give( runningSESE->parentsStallSem );");
4653       output.println("   }");
4654     }
4655
4656     output.println("   pthread_mutex_unlock( &(runningSESE->lock) );");
4657
4658     // decrement dependency count for all SESE's on your forwarding list
4659
4660     // FORWARD TODO
4661     output.println("   while( !isEmpty( &runningSESE->forwardList ) ) {");
4662     output.println("     SESEcommon* consumer = (SESEcommon*) getItem( &runningSESE->forwardList );");
4663     
4664    
4665     output.println("     if(consumer->rentryIdx>0){");
4666     output.println("        // resolved null pointer");
4667     output.println("        int idx;");
4668     output.println("        for(idx=0;idx<consumer->rentryIdx;idx++){");
4669     output.println("           resolvePointer(consumer->rentryArray[idx]);");
4670     output.println("        }");
4671     output.println("     }");
4672
4673     output.println("     if( atomic_sub_and_test( 1, &(consumer->unresolvedDependencies) ) ){");
4674     output.println("       workScheduleSubmit( (void*)consumer );");
4675     output.println("     }");
4676     output.println("   }");
4677     
4678     
4679     // clean up its lock element from waiting queue, and decrement dependency count for next SESE block
4680     if((state.MLP && fsen != mlpa.getMainSESE()) ||
4681        (state.OOOJAVA && fsen != oooa.getMainSESE())) {
4682       output.println();
4683       output.println("   /* check memory dependency*/");
4684       output.println("  {");
4685       output.println("      int idx;");
4686       output.println("      for(idx=0;idx<___params___->common.rentryIdx;idx++){");
4687       output.println("           REntry* re=___params___->common.rentryArray[idx];");
4688       output.println("           RETIRERENTRY(re->queue,re);");
4689       output.println("      }");
4690       output.println("   }");
4691     }
4692     
4693     Vector<TempDescriptor> inset=fsen.getInVarsForDynamicCoarseConflictResolution();
4694     if (state.RCR && inset.size() > 0) {
4695       /* Make sure the running SESE is finished */
4696       output.println("   if (unlikely(runningSESE->rcrstatus!=0)) {");
4697       output.println("     if(!CAS(&runningSESE->rcrstatus,1,0)) {");
4698       output.println("       while(runningSESE->rcrstatus) {");
4699       output.println("         BARRIER();");
4700       output.println("         sched_yield();");
4701       output.println("       }");
4702       output.println("     }");
4703       output.println("   }");
4704       output.println("{");
4705       output.println("  int idx,idx2;");
4706       if(inset.size()==1){
4707         output.println("  idx=0; {");
4708       } else {
4709         output.println("  for(idx=0;idx<" + inset.size() + ";idx++){");
4710       }
4711       output.println("    struct rcrRecord *rec=&" + paramsprefix + "->rcrRecords[idx];");
4712       output.println("    while(rec!=NULL) {");
4713       output.println("      for(idx2=0;idx2<rec->index;idx2++) {");
4714       output
4715           .println("        rcr_RETIREHASHTABLE(allHashStructures[0],&(___params___->common),rec->array[idx2], (BinItem_rcr *) rec->ptrarray[idx2]);");
4716       output.println("      }");// exit idx2 for loop
4717       output.println("      rec=rec->next;");
4718       output.println("    }");// exit rec while loop
4719       output.println("  }");// exit idx for loop
4720       output.println("}");
4721     }
4722
4723
4724     // a task has variables to track static/dynamic instances
4725     // that serve as sources, release the parent's ref of each
4726     // non-null var of these types
4727     output.println("   // releasing static SESEs");
4728     output.println("#ifndef OOO_DISABLE_TASKMEMPOOL" );
4729     Iterator<SESEandAgePair> pItr = fsen.getNeededStaticNames().iterator();
4730     while( pItr.hasNext() ) {
4731       SESEandAgePair pair = pItr.next();
4732       output.println("   if( "+pair+" != NULL ) {");
4733       output.println("     RELEASE_REFERENCE_TO( "+pair+" );");
4734       output.println("   }");
4735     }
4736     output.println("   // releasing dynamic variable sources");
4737     Iterator<TempDescriptor> dynSrcItr = fsen.getDynamicVarSet().iterator();
4738     while( dynSrcItr.hasNext() ) {
4739       TempDescriptor dynSrcVar = dynSrcItr.next();
4740       output.println("   if( "+dynSrcVar+"_srcSESE != NULL ) {");
4741       output.println("     RELEASE_REFERENCE_TO( "+dynSrcVar+"_srcSESE );");
4742       output.println("   }");
4743     }    
4744     // destroy this task's mempool if it is not a leaf task
4745     if( !fsen.getIsLeafSESE() ) {
4746       output.println("     pooldestroy( runningSESE->taskRecordMemPool );");
4747     }
4748     output.println("#endif // OOO_DISABLE_TASKMEMPOOL" );
4749
4750
4751     output.println("{");
4752     output.println("SESEcommon *myparent=runningSESE->parent;");
4753
4754     // if this is not the Main sese (which has no parent) then return
4755     // THIS task's record to the PARENT'S task record pool, and only if
4756     // the reference count is now zero
4757     if( (state.MLP     && fsen != mlpa.getMainSESE()) || 
4758         (state.OOOJAVA && fsen != oooa.getMainSESE())
4759         ) {
4760       output.println("#ifndef OOO_DISABLE_TASKMEMPOOL" );
4761       output.println("   RELEASE_REFERENCE_TO( runningSESE );");
4762       output.println("#endif // OOO_DISABLE_TASKMEMPOOL" );
4763     } else {
4764       // the main task has no parent, just free its record
4765       output.println("   mlpFreeSESErecord( runningSESE );");
4766     }
4767
4768
4769     // last of all, decrement your parent's number of running children    
4770     output.println("   if( myparent != NULL ) {");
4771     output.println("     if( atomic_sub_and_test( 1, &(myparent->numRunningChildren) ) ) {");
4772     output.println("       pthread_mutex_lock  ( &(myparent->lock) );");
4773     output.println("       pthread_cond_signal ( &(myparent->runningChildrenCond) );");
4774     output.println("       pthread_mutex_unlock( &(myparent->lock) );");
4775     output.println("     }");
4776     output.println("   }");
4777
4778     output.println("}");
4779     
4780     // as this thread is wrapping up the task, make sure the thread-local var
4781     // for the currently running task record references an invalid task
4782     output.println("   runningSESE = (SESEcommon*) 0x1;");
4783
4784     if( state.COREPROF ) {
4785       output.println("#ifdef CP_EVENTID_TASKRETIRE");
4786       output.println("   CP_LOGEVENT( CP_EVENTID_TASKRETIRE, CP_EVENTTYPE_END );");
4787       output.println("#endif");
4788     }
4789   }
4790  
4791   public void generateFlatWriteDynamicVarNode( FlatMethod fm,  
4792                                                LocalityBinding lb, 
4793                                                FlatWriteDynamicVarNode fwdvn,
4794                                                PrintWriter output
4795                                              ) {
4796     if( !(state.MLP || state.OOOJAVA) ) {
4797       // should node should not be in an IR graph if the
4798       // MLP flag is not set
4799       throw new Error("Unexpected presence of FlatWriteDynamicVarNode");
4800     }
4801         
4802     Hashtable<TempDescriptor, VSTWrapper> writeDynamic = fwdvn.getVar2src();
4803
4804     assert writeDynamic != null;
4805
4806     Iterator wdItr = writeDynamic.entrySet().iterator();
4807     while( wdItr.hasNext() ) {
4808       Map.Entry           me     = (Map.Entry)      wdItr.next();
4809       TempDescriptor      refVar = (TempDescriptor) me.getKey();
4810       VSTWrapper          vstW   = (VSTWrapper)     me.getValue();
4811       VariableSourceToken vst    =                  vstW.vst;
4812
4813       output.println("     {");
4814       output.println("       SESEcommon* oldSrc = "+refVar+"_srcSESE;");
4815
4816       if( vst == null ) {
4817         // if there is no given source, this variable is ready so
4818         // mark src pointer NULL to signify that the var is up-to-date
4819         output.println("       "+refVar+"_srcSESE = NULL;");
4820       } else {
4821         // otherwise we track where it will come from
4822         SESEandAgePair instance = new SESEandAgePair( vst.getSESE(), vst.getAge() );
4823         output.println("       "+refVar+"_srcSESE = "+instance+";");    
4824         output.println("       "+refVar+"_srcOffset = (INTPTR) &((("+
4825                        vst.getSESE().getSESErecordName()+"*)0)->"+vst.getAddrVar()+");");
4826       }
4827
4828       // no matter what we did above, track reference count of whatever
4829       // this variable pointed to, do release last in case we're just
4830       // copying the same value in because 1->2->1 is safe but ref count
4831       // 1->0->1 has a window where it looks like it should be free'd
4832       output.println("#ifndef OOO_DISABLE_TASKMEMPOOL" );
4833       output.println("       if( "+refVar+"_srcSESE != NULL ) {");
4834       output.println("         ADD_REFERENCE_TO( "+refVar+"_srcSESE );");
4835       output.println("       }");
4836       output.println("       if( oldSrc != NULL ) {");
4837       output.println("         RELEASE_REFERENCE_TO( oldSrc );");
4838       output.println("       }");
4839       output.println("#endif // OOO_DISABLE_TASKMEMPOOL" );
4840
4841       output.println("     }");
4842     }   
4843   }
4844
4845   
4846   private void generateFlatCheckNode(FlatMethod fm,  LocalityBinding lb, FlatCheckNode fcn, PrintWriter output) {
4847     if (state.CONSCHECK) {
4848       String specname=fcn.getSpec();
4849       String varname="repairstate___";
4850       output.println("{");
4851       output.println("struct "+specname+"_state * "+varname+"=allocate"+specname+"_state();");
4852
4853       TempDescriptor[] temps=fcn.getTemps();
4854       String[] vars=fcn.getVars();
4855       for(int i=0; i<temps.length; i++) {
4856         output.println(varname+"->"+vars[i]+"=(unsigned int)"+generateTemp(fm, temps[i],lb)+";");
4857       }
4858
4859       output.println("if (doanalysis"+specname+"("+varname+")) {");
4860       output.println("free"+specname+"_state("+varname+");");
4861       output.println("} else {");
4862       output.println("/* Bad invariant */");
4863       output.println("free"+specname+"_state("+varname+");");
4864       output.println("abort_task();");
4865       output.println("}");
4866       output.println("}");
4867     }
4868   }
4869
4870   private void generateFlatCall(FlatMethod fm, LocalityBinding lb, FlatCall fc, PrintWriter output) {
4871
4872     MethodDescriptor md=fc.getMethod();
4873     ParamsObject objectparams=(ParamsObject)paramstable.get(lb!=null ? locality.getBinding(lb, fc) : md);
4874     ClassDescriptor cn=md.getClassDesc();
4875     
4876     // if the called method is a static block or a static method or a constructor
4877     // need to check if it can be invoked inside some static block
4878     if(state.MGC) {
4879       // TODO add version for normal Java later
4880     if((md.isStatic() || md.isStaticBlock() || md.isConstructor()) && 
4881         ((fm.getMethod().isStaticBlock()) || (fm.getMethod().isInvokedByStatic()))) {
4882       if(!md.isInvokedByStatic()) {
4883         System.err.println("Error: a method that is invoked inside a static block is not tagged!");
4884       }
4885       // is a static block or is invoked in some static block
4886       ClassDescriptor cd = fm.getMethod().getClassDesc();
4887       if(cd == cn) {
4888         // the same class, do nothing
4889         // TODO may want to invoke static field initialization here
4890       } else {
4891         if((cn.getNumStaticFields() != 0) || (cn.getNumStaticBlocks() != 0)) {
4892           // need to check if the class' static fields have been initialized and/or
4893           // its static blocks have been executed
4894           output.println("#ifdef MGC_STATIC_INIT_CHECK");
4895           output.println("if(global_defs_p->" + cn.getSafeSymbol()+"static_block_exe_flag == 0) {");
4896           if(cn.getNumStaticFields() != 0) {
4897             // TODO add static field initialization here
4898           }
4899           if(cn.getNumStaticBlocks() != 0) {
4900             MethodDescriptor t_md = (MethodDescriptor)cn.getMethodTable().get("staticblocks");
4901             output.println("  "+cn.getSafeSymbol()+t_md.getSafeSymbol()+"_"+t_md.getSafeMethodDescriptor()+"();");
4902           } else {
4903             output.println("  global_defs_p->" + cn.getSafeSymbol()+"static_block_exe_flag = 1;");
4904           }
4905           output.println("}");
4906           output.println("#endif // MGC_STATIC_INIT_CHECK"); 
4907         }
4908       }
4909     }
4910     }
4911     
4912     output.println("{");
4913     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
4914       if (lb!=null) {
4915         LocalityBinding fclb=locality.getBinding(lb, fc);
4916         output.print("       struct "+cn.getSafeSymbol()+fclb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params __parameterlist__={");
4917       } else
4918         output.print("       struct "+cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params __parameterlist__={");
4919       output.print(objectparams.numPointers());
4920       output.print(", "+localsprefixaddr);
4921       if (md.getThis()!=null) {
4922         output.print(", ");
4923         output.print("(struct "+md.getThis().getType().getSafeSymbol() +" *)"+ generateTemp(fm,fc.getThis(),lb));
4924       }
4925       if (fc.getThis()!=null&&md.getThis()==null) {
4926         System.out.println("WARNING!!!!!!!!!!!!");
4927         System.out.println("Source code calls static method "+md+" on an object in "+fm.getMethod()+"!");
4928       }
4929
4930
4931       for(int i=0; i<fc.numArgs(); i++) {
4932         Descriptor var=md.getParameter(i);
4933         TempDescriptor paramtemp=(TempDescriptor)temptovar.get(var);
4934         if (objectparams.isParamPtr(paramtemp)) {
4935           TempDescriptor targ=fc.getArg(i);
4936           output.print(", ");
4937           TypeDescriptor td=md.getParamType(i);
4938           if (td.isTag())
4939             output.print("(struct "+(new TypeDescriptor(typeutil.getClass(TypeUtil.TagClass))).getSafeSymbol()  +" *)"+generateTemp(fm, targ,lb));
4940           else
4941             output.print("(struct "+md.getParamType(i).getSafeSymbol()  +" *)"+generateTemp(fm, targ,lb));
4942         }
4943       }
4944       output.println("};");
4945     }
4946     output.print("       ");
4947
4948
4949     if (fc.getReturnTemp()!=null)
4950       output.print(generateTemp(fm,fc.getReturnTemp(),lb)+"=");
4951
4952     /* Do we need to do virtual dispatch? */
4953     if (md.isStatic()||md.getReturnType()==null||singleCall(fc.getThis().getType().getClassDesc(),md)) {
4954       //no
4955       if (lb!=null) {
4956         LocalityBinding fclb=locality.getBinding(lb, fc);
4957         output.print(cn.getSafeSymbol()+fclb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor());
4958       } else {
4959         output.print(cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor());
4960       }
4961     } else {
4962       //yes
4963       output.print("((");
4964       if (md.getReturnType().isClass()||md.getReturnType().isArray())
4965         output.print("struct " + md.getReturnType().getSafeSymbol()+" * ");
4966       else
4967         output.print(md.getReturnType().getSafeSymbol()+" ");
4968       output.print("(*)(");
4969
4970       boolean printcomma=false;
4971       if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
4972         if (lb!=null) {
4973           LocalityBinding fclb=locality.getBinding(lb, fc);
4974           output.print("struct "+cn.getSafeSymbol()+fclb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params * ");
4975         } else
4976           output.print("struct "+cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params * ");
4977         printcomma=true;
4978       }
4979
4980       for(int i=0; i<objectparams.numPrimitives(); i++) {
4981         TempDescriptor temp=objectparams.getPrimitive(i);
4982         if (printcomma)
4983           output.print(", ");
4984         printcomma=true;
4985         if (temp.getType().isClass()||temp.getType().isArray())
4986           output.print("struct " + temp.getType().getSafeSymbol()+" * ");
4987         else
4988           output.print(temp.getType().getSafeSymbol());
4989       }
4990
4991
4992       if (lb!=null) {
4993         LocalityBinding fclb=locality.getBinding(lb, fc);
4994         output.print("))virtualtable["+generateTemp(fm,fc.getThis(),lb)+"->type*"+maxcount+"+"+virtualcalls.getLocalityNumber(fclb)+"])");
4995       } else
4996         output.print("))virtualtable["+generateTemp(fm,fc.getThis(),lb)+"->type*"+maxcount+"+"+virtualcalls.getMethodNumber(md)+"])");
4997     }
4998
4999     output.print("(");
5000     boolean needcomma=false;
5001     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
5002       output.print("&__parameterlist__");
5003       needcomma=true;
5004     }
5005
5006     if (!GENERATEPRECISEGC && !this.state.MULTICOREGC) {
5007       if (fc.getThis()!=null) {
5008         TypeDescriptor ptd=null;
5009     if(md.getThis() != null) {
5010       ptd = md.getThis().getType();
5011     } else {
5012       ptd = fc.getThis().getType();
5013     }
5014         if (needcomma)
5015           output.print(",");
5016         if (ptd.isClass()&&!ptd.isArray())
5017           output.print("(struct "+ptd.getSafeSymbol()+" *) ");
5018         output.print(generateTemp(fm,fc.getThis(),lb));
5019         needcomma=true;
5020       }
5021     }
5022
5023     for(int i=0; i<fc.numArgs(); i++) {
5024       Descriptor var=md.getParameter(i);
5025       TempDescriptor paramtemp=(TempDescriptor)temptovar.get(var);
5026       if (objectparams.isParamPrim(paramtemp)) {
5027         TempDescriptor targ=fc.getArg(i);
5028         if (needcomma)
5029           output.print(", ");
5030
5031         TypeDescriptor ptd=md.getParamType(i);
5032         if (ptd.isClass()&&!ptd.isArray())
5033           output.print("(struct "+ptd.getSafeSymbol()+" *) ");
5034         output.print(generateTemp(fm, targ,lb));
5035         needcomma=true;
5036       }
5037     }
5038     output.println(");");
5039     output.println("   }");
5040   }
5041
5042   private boolean singleCall(ClassDescriptor thiscd, MethodDescriptor md) {
5043     Set subclasses=typeutil.getSubClasses(thiscd);
5044     if (subclasses==null)
5045       return true;
5046     for(Iterator classit=subclasses.iterator(); classit.hasNext();) {
5047       ClassDescriptor cd=(ClassDescriptor)classit.next();
5048       Set possiblematches=cd.getMethodTable().getSetFromSameScope(md.getSymbol());
5049       for(Iterator matchit=possiblematches.iterator(); matchit.hasNext();) {
5050         MethodDescriptor matchmd=(MethodDescriptor)matchit.next();
5051         if (md.matches(matchmd))
5052           return false;
5053       }
5054     }
5055     return true;
5056   }
5057
5058   private void generateFlatFieldNode(FlatMethod fm, LocalityBinding lb, FlatFieldNode ffn, PrintWriter output) {
5059     if (state.SINGLETM) {
5060       //single machine transactional memory case
5061       String field=ffn.getField().getSafeSymbol();
5062       String src=generateTemp(fm, ffn.getSrc(),lb);
5063       String dst=generateTemp(fm, ffn.getDst(),lb);
5064
5065       output.println(dst+"="+ src +"->"+field+ ";");
5066       if (ffn.getField().getType().isPtr()&&locality.getAtomic(lb).get(ffn).intValue()>0&&
5067           locality.getNodePreTempInfo(lb, ffn).get(ffn.getSrc())!=LocalityAnalysis.SCRATCH) {
5068         if ((dc==null)||(!state.READSET&&dc.getNeedTrans(lb, ffn))||
5069             (state.READSET&&dc.getNeedWriteTrans(lb, ffn))) {
5070           output.println("TRANSREAD("+dst+", "+dst+", (void *) (" + localsprefixaddr + "));");
5071         } else if (state.READSET&&dc.getNeedTrans(lb, ffn)) {
5072           if (state.HYBRID&&delaycomp.getConv(lb).contains(ffn)) {
5073             output.println("TRANSREADRDFISSION("+dst+", "+dst+");");
5074           } else
5075             output.println("TRANSREADRD("+dst+", "+dst+");");
5076         }
5077       }
5078     } else if (state.DSM) {
5079       Integer status=locality.getNodePreTempInfo(lb,ffn).get(ffn.getSrc());
5080       if (status==LocalityAnalysis.GLOBAL) {
5081         String field=ffn.getField().getSafeSymbol();
5082         String src=generateTemp(fm, ffn.getSrc(),lb);
5083         String dst=generateTemp(fm, ffn.getDst(),lb);
5084
5085         if (ffn.getField().getType().isPtr()) {
5086
5087           //TODO: Uncomment this when we have runtime support
5088           //if (ffn.getSrc()==ffn.getDst()) {
5089           //output.println("{");
5090           //output.println("void * temp="+src+";");
5091           //output.println("if (temp&0x1) {");
5092           //output.println("temp=(void *) transRead(trans, (unsigned int) temp);");
5093           //output.println(src+"->"+field+"="+temp+";");
5094           //output.println("}");
5095           //output.println(dst+"=temp;");
5096           //output.println("}");
5097           //} else {
5098           output.println(dst+"="+ src +"->"+field+ ";");
5099           //output.println("if ("+dst+"&0x1) {");
5100           //DEBUG: output.println("TRANSREAD("+dst+", (unsigned int) "+dst+",\""+fm+":"+ffn+"\");");
5101       output.println("TRANSREAD("+dst+", (unsigned int) "+dst+");");
5102           //output.println(src+"->"+field+"="+src+"->"+field+";");
5103           //output.println("}");
5104           //}
5105         } else {
5106           output.println(dst+"="+ src+"->"+field+";");
5107         }
5108       } else if (status==LocalityAnalysis.LOCAL) {
5109         if (ffn.getField().getType().isPtr()&&
5110             ffn.getField().isGlobal()) {
5111           String field=ffn.getField().getSafeSymbol();
5112           String src=generateTemp(fm, ffn.getSrc(),lb);
5113           String dst=generateTemp(fm, ffn.getDst(),lb);
5114           output.println(dst+"="+ src +"->"+field+ ";");
5115           if (locality.getAtomic(lb).get(ffn).intValue()>0)
5116             //DEBUG: output.println("TRANSREAD("+dst+", (unsigned int) "+dst+",\""+fm+":"+ffn+"\");");
5117             output.println("TRANSREAD("+dst+", (unsigned int) "+dst+");");
5118         } else
5119           output.println(generateTemp(fm, ffn.getDst(),lb)+"="+ generateTemp(fm,ffn.getSrc(),lb)+"->"+ ffn.getField().getSafeSymbol()+";");
5120       } else if (status==LocalityAnalysis.EITHER) {
5121         //Code is reading from a null pointer
5122         output.println("if ("+generateTemp(fm, ffn.getSrc(),lb)+") {");
5123         output.println("#ifndef RAW");
5124         output.println("printf(\"BIG ERROR\\n\");exit(-1);}");
5125         output.println("#endif");
5126         //This should throw a suitable null pointer error
5127         output.println(generateTemp(fm, ffn.getDst(),lb)+"="+ generateTemp(fm,ffn.getSrc(),lb)+"->"+ ffn.getField().getSafeSymbol()+";");
5128       } else
5129         throw new Error("Read from non-global/non-local in:"+lb.getExplanation());
5130     } else{
5131 // DEBUG        if(!ffn.getDst().getType().isPrimitive()){
5132 // DEBUG                output.println("within((void*)"+generateTemp(fm,ffn.getSrc(),lb)+"->"+ ffn.getField().getSafeSymbol()+");");
5133 // DEBUG        } 
5134       if(state.MGC) {
5135         // TODO add version for normal Java later
5136       if(ffn.getField().isStatic()) {
5137         // static field
5138         if((fm.getMethod().isStaticBlock()) || (fm.getMethod().isInvokedByStatic())) {
5139           // is a static block or is invoked in some static block
5140           ClassDescriptor cd = fm.getMethod().getClassDesc();
5141           ClassDescriptor cn = ffn.getSrc().getType().getClassDesc();
5142           if(cd == cn) {
5143             // the same class, do nothing
5144             // TODO may want to invoke static field initialization here
5145           } else {
5146             if((cn.getNumStaticFields() != 0) || (cn.getNumStaticBlocks() != 0)) {
5147               // need to check if the class' static fields have been initialized and/or
5148               // its static blocks have been executed
5149               output.println("#ifdef MGC_STATIC_INIT_CHECK");
5150               output.println("if(global_defs_p->" + cn.getSafeSymbol()+"static_block_exe_flag == 0) {");
5151               if(cn.getNumStaticFields() != 0) {
5152                 // TODO add static field initialization here
5153               }
5154               if(cn.getNumStaticBlocks() != 0) {
5155                 MethodDescriptor t_md = (MethodDescriptor)cn.getMethodTable().get("staticblocks");
5156                 output.println("  "+cn.getSafeSymbol()+t_md.getSafeSymbol()+"_"+t_md.getSafeMethodDescriptor()+"();");
5157               } else {
5158                 output.println("  global_defs_p->" + cn.getSafeSymbol()+"static_block_exe_flag = 1;");
5159               }
5160               output.println("}");
5161               output.println("#endif // MGC_STATIC_INIT_CHECK"); 
5162             }
5163           }
5164         }
5165         // redirect to the global_defs_p structure
5166         if(ffn.getSrc().getType().isStatic()) {
5167           // reference to the static field with Class name
5168           output.println(generateTemp(fm, ffn.getDst(),lb)+"=global_defs_p->"+ ffn.getSrc().getType().getClassDesc().getSafeSymbol()+ffn.getField().getSafeSymbol()+";");
5169         } else {
5170           output.println(generateTemp(fm, ffn.getDst(),lb)+"=*"+ generateTemp(fm,ffn.getSrc(),lb)+"->"+ ffn.getField().getSafeSymbol()+";");
5171         }
5172         //output.println(generateTemp(fm, ffn.getDst(),lb)+"=global_defs_p->"+ffn.getSrc().getType().getClassDesc().getSafeSymbol()+"->"+ ffn.getField().getSafeSymbol()+";");
5173       } else {
5174         output.println(generateTemp(fm, ffn.getDst(),lb)+"="+ generateTemp(fm,ffn.getSrc(),lb)+"->"+ ffn.getField().getSafeSymbol()+";");
5175       } 
5176     } else {
5177         output.println(generateTemp(fm, ffn.getDst(),lb)+"="+ generateTemp(fm,ffn.getSrc(),lb)+"->"+ ffn.getField().getSafeSymbol()+";");
5178       }
5179     }
5180   }
5181
5182
5183   private void generateFlatSetFieldNode(FlatMethod fm, LocalityBinding lb, FlatSetFieldNode fsfn, PrintWriter output) {
5184     if (fsfn.getField().getSymbol().equals("length")&&fsfn.getDst().getType().isArray())
5185       throw new Error("Can't set array length");
5186     if (state.SINGLETM && locality.getAtomic(lb).get(fsfn).intValue()>0) {
5187       //Single Machine Transaction Case
5188       boolean srcptr=fsfn.getSrc().getType().isPtr();
5189       String src=generateTemp(fm,fsfn.getSrc(),lb);
5190       String dst=generateTemp(fm,fsfn.getDst(),lb);
5191       output.println("//"+srcptr+" "+fsfn.getSrc().getType().isNull());
5192       if (srcptr&&!fsfn.getSrc().getType().isNull()) {
5193         output.println("{");
5194         if ((dc==null)||dc.getNeedSrcTrans(lb, fsfn)&&
5195             locality.getNodePreTempInfo(lb, fsfn).get(fsfn.getSrc())!=LocalityAnalysis.SCRATCH) {
5196           output.println("INTPTR srcoid=("+src+"!=NULL?((INTPTR)"+src+"->"+oidstr+"):0);");
5197         } else {
5198           output.println("INTPTR srcoid=(INTPTR)"+src+";");
5199         }
5200       }
5201       if (wb.needBarrier(fsfn)&&
5202           locality.getNodePreTempInfo(lb, fsfn).get(fsfn.getDst())!=LocalityAnalysis.SCRATCH) {
5203         if (state.EVENTMONITOR) {
5204           output.println("if ("+dst+"->___objstatus___&DIRTY) EVLOGEVENTOBJ(EV_WRITE,"+dst+"->objuid)");
5205         }
5206         output.println("*((unsigned int *)&("+dst+"->___objstatus___))|=DIRTY;");
5207       }
5208       if (srcptr&!fsfn.getSrc().getType().isNull()) {
5209         output.println("*((unsigned INTPTR *)&("+dst+"->"+ fsfn.getField().getSafeSymbol()+"))=srcoid;");
5210         output.println("}");
5211       } else {
5212         output.println(dst+"->"+ fsfn.getField().getSafeSymbol()+"="+ src+";");
5213       }
5214     } else if (state.DSM && locality.getAtomic(lb).get(fsfn).intValue()>0) {
5215       Integer statussrc=locality.getNodePreTempInfo(lb,fsfn).get(fsfn.getSrc());
5216       Integer statusdst=locality.getNodeTempInfo(lb).get(fsfn).get(fsfn.getDst());
5217       boolean srcglobal=statussrc==LocalityAnalysis.GLOBAL;
5218
5219       String src=generateTemp(fm,fsfn.getSrc(),lb);
5220       String dst=generateTemp(fm,fsfn.getDst(),lb);
5221       if (srcglobal) {
5222         output.println("{");
5223         output.println("INTPTR srcoid=("+src+"!=NULL?((INTPTR)"+src+"->"+oidstr+"):0);");
5224       }
5225       if (statusdst.equals(LocalityAnalysis.GLOBAL)) {
5226         String glbdst=dst;
5227         //mark it dirty
5228         if (wb.needBarrier(fsfn))
5229           output.println("*((unsigned int *)&("+dst+"->___localcopy___))|=DIRTY;");
5230         if (srcglobal) {
5231           output.println("*((unsigned INTPTR *)&("+glbdst+"->"+ fsfn.getField().getSafeSymbol()+"))=srcoid;");
5232         } else
5233           output.println(glbdst+"->"+ fsfn.getField().getSafeSymbol()+"="+ src+";");
5234       } else if (statusdst.equals(LocalityAnalysis.LOCAL)) {
5235         /** Check if we need to copy */
5236         output.println("if(!"+dst+"->"+localcopystr+") {");
5237         /* Link object into list */
5238         String revertptr=generateTemp(fm, reverttable.get(lb),lb);
5239         output.println(revertptr+"=revertlist;");
5240         if (GENERATEPRECISEGC || this.state.MULTICOREGC)
5241           output.println("COPY_OBJ((struct garbagelist *)"+localsprefixaddr+",(struct ___Object___ *)"+dst+");");
5242         else
5243           output.println("COPY_OBJ("+dst+");");
5244         output.println(dst+"->"+nextobjstr+"="+revertptr+";");
5245         output.println("revertlist=(struct ___Object___ *)"+dst+";");
5246         output.println("}");
5247         if (srcglobal)
5248           output.println(dst+"->"+ fsfn.getField().getSafeSymbol()+"=(void *) srcoid;");
5249         else
5250           output.println(dst+"->"+ fsfn.getField().getSafeSymbol()+"="+ src+";");
5251       } else if (statusdst.equals(LocalityAnalysis.EITHER)) {
5252         //writing to a null...bad
5253         output.println("if ("+dst+") {");
5254         output.println("printf(\"BIG ERROR 2\\n\");exit(-1);}");
5255         if (srcglobal)
5256           output.println(dst+"->"+ fsfn.getField().getSafeSymbol()+"=(void *) srcoid;");
5257         else
5258           output.println(dst+"->"+ fsfn.getField().getSafeSymbol()+"="+ src+";");
5259       }
5260       if (srcglobal) {
5261         output.println("}");
5262       }
5263     } else {
5264       if (state.FASTCHECK) {
5265         String dst=generateTemp(fm, fsfn.getDst(),lb);
5266         output.println("if(!"+dst+"->"+localcopystr+") {");
5267         /* Link object into list */
5268         if (GENERATEPRECISEGC || this.state.MULTICOREGC)
5269           output.println("COPY_OBJ((struct garbagelist *)"+localsprefixaddr+",(struct ___Object___ *)"+dst+");");
5270         else
5271           output.println("COPY_OBJ("+dst+");");
5272         output.println(dst+"->"+nextobjstr+"="+fcrevert+";");
5273         output.println(fcrevert+"=(struct ___Object___ *)"+dst+";");
5274         output.println("}");
5275       }
5276       
5277 // DEBUG        if(!fsfn.getField().getType().isPrimitive()){
5278 // DEBUG                output.println("within((void*)"+generateTemp(fm,fsfn.getSrc(),lb)+");");
5279 // DEBUG   } 
5280       if(state.MGC) {
5281         // TODO add version for normal Java later
5282       if(fsfn.getField().isStatic()) {
5283         // static field
5284         if((fm.getMethod().isStaticBlock()) || (fm.getMethod().isInvokedByStatic())) {
5285           // is a static block or is invoked in some static block
5286           ClassDescriptor cd = fm.getMethod().getClassDesc();
5287           ClassDescriptor cn = fsfn.getDst().getType().getClassDesc();
5288           if(cd == cn) {
5289             // the same class, do nothing
5290             // TODO may want to invoke static field initialization here
5291           } else {
5292             if((cn.getNumStaticFields() != 0) || (cn.getNumStaticBlocks() != 0)) {
5293               // need to check if the class' static fields have been initialized and/or
5294               // its static blocks have been executed
5295               output.println("#ifdef MGC_STATIC_INIT_CHECK");
5296               output.println("if(global_defs_p->" + cn.getSafeSymbol()+"static_block_exe_flag == 0) {");
5297               if(cn.getNumStaticFields() != 0) {
5298                 // TODO add static field initialization here
5299               }
5300               if(cn.getNumStaticBlocks() != 0) {
5301                 MethodDescriptor t_md = (MethodDescriptor)cn.getMethodTable().get("staticblocks");
5302                 output.println("  "+cn.getSafeSymbol()+t_md.getSafeSymbol()+"_"+t_md.getSafeMethodDescriptor()+"();");
5303               } else {
5304                 output.println("  global_defs_p->" + cn.getSafeSymbol()+"static_block_exe_flag = 1;");
5305               }
5306               output.println("}");
5307               output.println("#endif // MGC_STATIC_INIT_CHECK"); 
5308             }
5309           }
5310         }
5311         // redirect to the global_defs_p structure
5312         if(fsfn.getDst().getType().isStatic()) {
5313           // reference to the static field with Class name
5314           output.println("global_defs_p->" + fsfn.getDst().getType().getClassDesc().getSafeSymbol() + fsfn.getField().getSafeSymbol()+"="+ generateTemp(fm,fsfn.getSrc(),lb)+";");
5315         } else {
5316           output.println("*"+generateTemp(fm, fsfn.getDst(),lb)+"->"+ fsfn.getField().getSafeSymbol()+"="+ generateTemp(fm,fsfn.getSrc(),lb)+";");
5317         }
5318       } else {
5319         output.println(generateTemp(fm, fsfn.getDst(),lb)+"->"+ fsfn.getField().getSafeSymbol()+"="+ generateTemp(fm,fsfn.getSrc(),lb)+";");
5320       } 
5321       } else {
5322         output.println(generateTemp(fm, fsfn.getDst(),lb)+"->"+ fsfn.getField().getSafeSymbol()+"="+ generateTemp(fm,fsfn.getSrc(),lb)+";");
5323       }
5324     }
5325   }
5326
5327   private void generateFlatElementNode(FlatMethod fm, LocalityBinding lb, FlatElementNode fen, PrintWriter output) {
5328     TypeDescriptor elementtype=fen.getSrc().getType().dereference();
5329     String type="";
5330
5331     if (elementtype.isArray()||elementtype.isClass())
5332       type="void *";
5333     else
5334       type=elementtype.getSafeSymbol()+" ";
5335
5336     if (this.state.ARRAYBOUNDARYCHECK && fen.needsBoundsCheck()) {
5337       output.println("if (unlikely(((unsigned int)"+generateTemp(fm, fen.getIndex(),lb)+") >= "+generateTemp(fm,fen.getSrc(),lb) + "->___length___))");
5338       output.println("failedboundschk();");
5339     }
5340     if (state.SINGLETM) {
5341       //Single machine transaction case
5342       String dst=generateTemp(fm, fen.getDst(),lb);
5343       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))) {
5344         output.println(dst +"=(("+ type+"*)(((char *) &("+ generateTemp(fm,fen.getSrc(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fen.getIndex(),lb)+"];");
5345       } else {
5346         output.println("STMGETARRAY("+dst+", "+ generateTemp(fm,fen.getSrc(),lb)+", "+generateTemp(fm, fen.getIndex(),lb)+", "+type+");");
5347       }
5348
5349       if (elementtype.isPtr()&&locality.getAtomic(lb).get(fen).intValue()>0&&
5350           locality.getNodePreTempInfo(lb, fen).get(fen.getSrc())!=LocalityAnalysis.SCRATCH) {
5351         if ((dc==null)||!state.READSET&&dc.getNeedTrans(lb, fen)||state.READSET&&dc.getNeedWriteTrans(lb, fen)) {
5352           output.println("TRANSREAD("+dst+", "+dst+", (void *)(" + localsprefixaddr+"));");
5353         } else if (state.READSET&&dc.getNeedTrans(lb, fen)) {
5354           if (state.HYBRID&&delaycomp.getConv(lb).contains(fen)) {
5355             output.println("TRANSREADRDFISSION("+dst+", "+dst+");");
5356           } else
5357             output.println("TRANSREADRD("+dst+", "+dst+");");
5358         }
5359       }
5360     } else if (state.DSM) {
5361       Integer status=locality.getNodePreTempInfo(lb,fen).get(fen.getSrc());
5362       if (status==LocalityAnalysis.GLOBAL) {
5363         String dst=generateTemp(fm, fen.getDst(),lb);
5364         if (elementtype.isPtr()) {
5365           output.println(dst +"=(("+ type+"*)(((char *) &("+ generateTemp(fm,fen.getSrc(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fen.getIndex(),lb)+"];");
5366           //DEBUG: output.println("TRANSREAD("+dst+", "+dst+",\""+fm+":"+fen+"\");");
5367           output.println("TRANSREAD("+dst+", "+dst+");");
5368         } else {
5369           output.println(dst +"=(("+ type+"*)(((char *) &("+ generateTemp(fm,fen.getSrc(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fen.getIndex(),lb)+"];");
5370         }
5371       } else if (status==LocalityAnalysis.LOCAL) {
5372         output.println(generateTemp(fm, fen.getDst(),lb)+"=(("+ type+"*)(((char *) &("+ generateTemp(fm,fen.getSrc(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fen.getIndex(),lb)+"];");
5373       } else if (status==LocalityAnalysis.EITHER) {
5374         //Code is reading from a null pointer
5375         output.println("if ("+generateTemp(fm, fen.getSrc(),lb)+") {");
5376         output.println("#ifndef RAW");
5377         output.println("printf(\"BIG ERROR\\n\");exit(-1);}");
5378         output.println("#endif");
5379         //This should throw a suitable null pointer error
5380         output.println(generateTemp(fm, fen.getDst(),lb)+"=(("+ type+"*)(((char *) &("+ generateTemp(fm,fen.getSrc(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fen.getIndex(),lb)+"];");
5381       } else
5382         throw new Error("Read from non-global/non-local in:"+lb.getExplanation());
5383     } else {
5384 // DEBUG output.println("within((void*)"+generateTemp(fm,fen.getSrc(),lb)+");");
5385         output.println(generateTemp(fm, fen.getDst(),lb)+"=(("+ type+"*)(((char *) &("+ generateTemp(fm,fen.getSrc(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fen.getIndex(),lb)+"];");
5386     }
5387   }
5388
5389   private void generateFlatSetElementNode(FlatMethod fm, LocalityBinding lb, FlatSetElementNode fsen, PrintWriter output) {
5390     //TODO: need dynamic check to make sure this assignment is actually legal
5391     //Because Object[] could actually be something more specific...ie. Integer[]
5392
5393     TypeDescriptor elementtype=fsen.getDst().getType().dereference();
5394     String type="";
5395
5396     if (elementtype.isArray()||elementtype.isClass())
5397       type="void *";
5398     else
5399       type=elementtype.getSafeSymbol()+" ";
5400
5401     if (this.state.ARRAYBOUNDARYCHECK && fsen.needsBoundsCheck()) {
5402       output.println("if (unlikely(((unsigned int)"+generateTemp(fm, fsen.getIndex(),lb)+") >= "+generateTemp(fm,fsen.getDst(),lb) + "->___length___))");
5403       output.println("failedboundschk();");
5404     }
5405
5406     if (state.SINGLETM && locality.getAtomic(lb).get(fsen).intValue()>0) {
5407       //Transaction set element case
5408       if (wb.needBarrier(fsen)&&
5409           locality.getNodePreTempInfo(lb, fsen).get(fsen.getDst())!=LocalityAnalysis.SCRATCH) {
5410         output.println("*((unsigned int *)&("+generateTemp(fm,fsen.getDst(),lb)+"->___objstatus___))|=DIRTY;");
5411       }
5412       if (fsen.getSrc().getType().isPtr()&&!fsen.getSrc().getType().isNull()) {
5413         output.println("{");
5414         String src=generateTemp(fm, fsen.getSrc(), lb);
5415         if ((dc==null)||dc.getNeedSrcTrans(lb, fsen)&&
5416             locality.getNodePreTempInfo(lb, fsen).get(fsen.getSrc())!=LocalityAnalysis.SCRATCH) {
5417           output.println("INTPTR srcoid=("+src+"!=NULL?((INTPTR)"+src+"->"+oidstr+"):0);");
5418         } else {
5419           output.println("INTPTR srcoid=(INTPTR)"+src+";");
5420         }
5421         if (state.STMARRAY&&locality.getNodePreTempInfo(lb, fsen).get(fsen.getDst())!=LocalityAnalysis.SCRATCH&&wb.needBarrier(fsen)&&locality.getAtomic(lb).get(fsen).intValue()>0) {
5422           output.println("STMSETARRAY("+generateTemp(fm, fsen.getDst(),lb)+", "+generateTemp(fm, fsen.getIndex(),lb)+", srcoid, INTPTR);");
5423         } else {
5424           output.println("((INTPTR*)(((char *) &("+ generateTemp(fm,fsen.getDst(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fsen.getIndex(),lb)+"]=srcoid;");
5425         }
5426         output.println("}");
5427       } else {
5428         if (state.STMARRAY&&locality.getNodePreTempInfo(lb, fsen).get(fsen.getDst())!=LocalityAnalysis.SCRATCH&&wb.needBarrier(fsen)&&locality.getAtomic(lb).get(fsen).intValue()>0) {
5429           output.println("STMSETARRAY("+generateTemp(fm, fsen.getDst(),lb)+", "+generateTemp(fm, fsen.getIndex(),lb)+", "+ generateTemp(fm, fsen.getSrc(), lb) +", "+type+");");
5430         } else {
5431           output.println("(("+type +"*)(((char *) &("+ generateTemp(fm,fsen.getDst(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fsen.getIndex(),lb)+"]="+generateTemp(fm,fsen.getSrc(),lb)+";");
5432         }
5433       }
5434     } else if (state.DSM && locality.getAtomic(lb).get(fsen).intValue()>0) {
5435       Integer statussrc=locality.getNodePreTempInfo(lb,fsen).get(fsen.getSrc());
5436       Integer statusdst=locality.getNodePreTempInfo(lb,fsen).get(fsen.getDst());
5437       boolean srcglobal=statussrc==LocalityAnalysis.GLOBAL;
5438       boolean dstglobal=statusdst==LocalityAnalysis.GLOBAL;
5439       boolean dstlocal=(statusdst==LocalityAnalysis.LOCAL)||(statusdst==LocalityAnalysis.EITHER);
5440       
5441       if (dstglobal) {
5442         if (wb.needBarrier(fsen))
5443           output.println("*((unsigned int *)&("+generateTemp(fm,fsen.getDst(),lb)+"->___localcopy___))|=DIRTY;");
5444       } else if (dstlocal) {
5445         /** Check if we need to copy */
5446         String dst=generateTemp(fm, fsen.getDst(),lb);
5447         output.println("if(!"+dst+"->"+localcopystr+") {");
5448         /* Link object into list */
5449         String revertptr=generateTemp(fm, reverttable.get(lb),lb);
5450         output.println(revertptr+"=revertlist;");
5451         if ((GENERATEPRECISEGC) || this.state.MULTICOREGC)
5452         output.println("COPY_OBJ((struct garbagelist *)"+localsprefixaddr+",(struct ___Object___ *)"+dst+");");
5453         else
5454           output.println("COPY_OBJ("+dst+");");
5455         output.println(dst+"->"+nextobjstr+"="+revertptr+";");
5456         output.println("revertlist=(struct ___Object___ *)"+dst+";");
5457         output.println("}");
5458       } else {
5459         System.out.println("Node: "+fsen);
5460         System.out.println(lb);
5461         System.out.println("statusdst="+statusdst);
5462         System.out.println(fm.printMethod());
5463         throw new Error("Unknown array type");
5464       }
5465       if (srcglobal) {
5466         output.println("{");
5467         String src=generateTemp(fm, fsen.getSrc(), lb);
5468         output.println("INTPTR srcoid=("+src+"!=NULL?((INTPTR)"+src+"->"+oidstr+"):0);");
5469         output.println("((INTPTR*)(((char *) &("+ generateTemp(fm,fsen.getDst(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fsen.getIndex(),lb)+"]=srcoid;");
5470         output.println("}");
5471       } else {
5472         output.println("(("+type +"*)(((char *) &("+ generateTemp(fm,fsen.getDst(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fsen.getIndex(),lb)+"]="+generateTemp(fm,fsen.getSrc(),lb)+";");
5473       }
5474     } else {
5475       if (state.FASTCHECK) {
5476         String dst=generateTemp(fm, fsen.getDst(),lb);
5477         output.println("if(!"+dst+"->"+localcopystr+") {");
5478         /* Link object into list */
5479         if (GENERATEPRECISEGC || this.state.MULTICOREGC)
5480           output.println("COPY_OBJ((struct garbagelist *)"+localsprefixaddr+",(struct ___Object___ *)"+dst+");");
5481         else
5482           output.println("COPY_OBJ("+dst+");");
5483         output.println(dst+"->"+nextobjstr+"="+fcrevert+";");
5484         output.println(fcrevert+"=(struct ___Object___ *)"+dst+";");
5485         output.println("}");
5486       }
5487 // DEBUG      output.println("within((void*)"+generateTemp(fm,fsen.getDst(),lb)+");");
5488       output.println("(("+type +"*)(((char *) &("+ generateTemp(fm,fsen.getDst(),lb)+"->___length___))+sizeof(int)))["+generateTemp(fm, fsen.getIndex(),lb)+"]="+generateTemp(fm,fsen.getSrc(),lb)+";");
5489     }
5490   }
5491
5492   protected void generateFlatNew(FlatMethod fm, LocalityBinding lb, FlatNew fn, PrintWriter output) {
5493     if (state.DSM && locality.getAtomic(lb).get(fn).intValue()>0&&!fn.isGlobal()) {
5494       //Stash pointer in case of GC
5495       String revertptr=generateTemp(fm, reverttable.get(lb),lb);
5496       output.println(revertptr+"=revertlist;");
5497     }
5498     if (state.SINGLETM) {
5499       if (fn.getType().isArray()) {
5500         int arrayid=state.getArrayNumber(fn.getType())+state.numClasses();
5501         if (locality.getAtomic(lb).get(fn).intValue()>0) {
5502           //inside transaction
5503           output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newarraytrans("+localsprefixaddr+", "+arrayid+", "+generateTemp(fm, fn.getSize(),lb)+");");
5504         } else {
5505           //outside transaction
5506           output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newarray("+localsprefixaddr+", "+arrayid+", "+generateTemp(fm, fn.getSize(),lb)+");");
5507         }
5508       } else {
5509         if (locality.getAtomic(lb).get(fn).intValue()>0) {
5510           //inside transaction
5511           output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newtrans("+localsprefixaddr+", "+fn.getType().getClassDesc().getId()+");");
5512         } else {
5513           //outside transaction
5514           output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_new("+localsprefixaddr+", "+fn.getType().getClassDesc().getId()+");");
5515         }
5516       }
5517     } else if (fn.getType().isArray()) {
5518       int arrayid=state.getArrayNumber(fn.getType())+state.numClasses();
5519       if (fn.isGlobal()&&(state.DSM||state.SINGLETM)) {
5520         output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newarrayglobal("+arrayid+", "+generateTemp(fm, fn.getSize(),lb)+");");
5521       } else if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
5522           if(this.state.MLP || state.OOOJAVA){
5523             output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newarray_mlp("+localsprefixaddr+", "+arrayid+", "+generateTemp(fm, fn.getSize(),lb)+", oid, "+oooa.getDisjointAnalysis().getAllocationSiteFromFlatNew(fn).getUniqueAllocSiteID()+");");
5524         output.println("    oid += numWorkSchedWorkers;");
5525           }else{
5526     output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newarray("+localsprefixaddr+", "+arrayid+", "+generateTemp(fm, fn.getSize(),lb)+");");                      
5527           }
5528       } else {
5529         output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newarray("+arrayid+", "+generateTemp(fm, fn.getSize(),lb)+");");
5530       }
5531     } else {
5532       if (fn.isGlobal()&&(state.DSM||state.SINGLETM)) {
5533         output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_newglobal("+fn.getType().getClassDesc().getId()+");");
5534       } else if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
5535           if (this.state.MLP || state.OOOJAVA){
5536         output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_new_mlp("+localsprefixaddr+", "+fn.getType().getClassDesc().getId()+", oid, "+oooa.getDisjointAnalysis().getAllocationSiteFromFlatNew(fn).getUniqueAllocSiteID()+");");
5537         output.println("    oid += numWorkSchedWorkers;");
5538           } else {
5539     output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_new("+localsprefixaddr+", "+fn.getType().getClassDesc().getId()+");");                      
5540           }
5541       } else {
5542         output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_new("+fn.getType().getClassDesc().getId()+");");
5543       }
5544     }
5545     if (state.DSM && locality.getAtomic(lb).get(fn).intValue()>0&&!fn.isGlobal()) {
5546       String revertptr=generateTemp(fm, reverttable.get(lb),lb);
5547       String dst=generateTemp(fm,fn.getDst(),lb);
5548       output.println(dst+"->___localcopy___=(struct ___Object___*)1;");
5549       output.println(dst+"->"+nextobjstr+"="+revertptr+";");
5550       output.println("revertlist=(struct ___Object___ *)"+dst+";");
5551     }
5552     if (state.FASTCHECK) {
5553       String dst=generateTemp(fm,fn.getDst(),lb);
5554       output.println(dst+"->___localcopy___=(struct ___Object___*)1;");
5555       output.println(dst+"->"+nextobjstr+"="+fcrevert+";");
5556       output.println(fcrevert+"=(struct ___Object___ *)"+dst+";");
5557     }
5558   }
5559
5560   private void generateFlatTagDeclaration(FlatMethod fm, LocalityBinding lb, FlatTagDeclaration fn, PrintWriter output) {
5561     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
5562       output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_tag("+localsprefixaddr+", "+state.getTagId(fn.getType())+");");
5563     } else {
5564       output.println(generateTemp(fm,fn.getDst(),lb)+"=allocate_tag("+state.getTagId(fn.getType())+");");
5565     }
5566   }
5567
5568   private void generateFlatOpNode(FlatMethod fm, LocalityBinding lb, FlatOpNode fon, PrintWriter output) {
5569     if (fon.getRight()!=null) {
5570       if (fon.getOp().getOp()==Operation.URIGHTSHIFT) {
5571         if (fon.getLeft().getType().isLong())
5572           output.println(generateTemp(fm, fon.getDest(),lb)+" = ((unsigned long long)"+generateTemp(fm, fon.getLeft(),lb)+")>>"+generateTemp(fm,fon.getRight(),lb)+";");
5573         else
5574           output.println(generateTemp(fm, fon.getDest(),lb)+" = ((unsigned int)"+generateTemp(fm, fon.getLeft(),lb)+")>>"+generateTemp(fm,fon.getRight(),lb)+";");
5575
5576       } else if (dc!=null) {
5577         output.print(generateTemp(fm, fon.getDest(),lb)+" = (");
5578         if (fon.getLeft().getType().isPtr()&&(fon.getOp().getOp()==Operation.EQUAL||fon.getOp().getOp()==Operation.NOTEQUAL))
5579             output.print("(void *)");
5580         if (dc.getNeedLeftSrcTrans(lb, fon))
5581           output.print("("+generateTemp(fm, fon.getLeft(),lb)+"!=NULL?"+generateTemp(fm, fon.getLeft(),lb)+"->"+oidstr+":NULL)");
5582         else
5583           output.print(generateTemp(fm, fon.getLeft(),lb));
5584         output.print(")"+fon.getOp().toString()+"(");
5585         if (fon.getRight().getType().isPtr()&&(fon.getOp().getOp()==Operation.EQUAL||fon.getOp().getOp()==Operation.NOTEQUAL))
5586             output.print("(void *)");
5587         if (dc.getNeedRightSrcTrans(lb, fon))
5588           output.println("("+generateTemp(fm, fon.getRight(),lb)+"!=NULL?"+generateTemp(fm, fon.getRight(),lb)+"->"+oidstr+":NULL));");
5589         else
5590           output.println(generateTemp(fm,fon.getRight(),lb)+");");
5591       } else
5592         output.println(generateTemp(fm, fon.getDest(),lb)+" = "+generateTemp(fm, fon.getLeft(),lb)+fon.getOp().toString()+generateTemp(fm,fon.getRight(),lb)+";");
5593     } else if (fon.getOp().getOp()==Operation.ASSIGN)
5594       output.println(generateTemp(fm, fon.getDest(),lb)+" = "+generateTemp(fm, fon.getLeft(),lb)+";");
5595     else if (fon.getOp().getOp()==Operation.UNARYPLUS)
5596       output.println(generateTemp(fm, fon.getDest(),lb)+" = "+generateTemp(fm, fon.getLeft(),lb)+";");
5597     else if (fon.getOp().getOp()==Operation.UNARYMINUS)
5598       output.println(generateTemp(fm, fon.getDest(),lb)+" = -"+generateTemp(fm, fon.getLeft(),lb)+";");
5599     else if (fon.getOp().getOp()==Operation.LOGIC_NOT)
5600       output.println(generateTemp(fm, fon.getDest(),lb)+" = !"+generateTemp(fm, fon.getLeft(),lb)+";");
5601     else if (fon.getOp().getOp()==Operation.COMP)
5602       output.println(generateTemp(fm, fon.getDest(),lb)+" = ~"+generateTemp(fm, fon.getLeft(),lb)+";");
5603     else if (fon.getOp().getOp()==Operation.ISAVAILABLE) {
5604       output.println(generateTemp(fm, fon.getDest(),lb)+" = "+generateTemp(fm, fon.getLeft(),lb)+"->fses==NULL;");
5605     } else
5606       output.println(generateTemp(fm, fon.getDest(),lb)+fon.getOp().toString()+generateTemp(fm, fon.getLeft(),lb)+";");
5607   }
5608
5609   private void generateFlatCastNode(FlatMethod fm, LocalityBinding lb, FlatCastNode fcn, PrintWriter output) {
5610     /* TODO: Do type check here */
5611     if (fcn.getType().isArray()) {
5612       output.println(generateTemp(fm,fcn.getDst(),lb)+"=(struct ArrayObject *)"+generateTemp(fm,fcn.getSrc(),lb)+";");
5613     } else if (fcn.getType().isClass())
5614       output.println(generateTemp(fm,fcn.getDst(),lb)+"=(struct "+fcn.getType().getSafeSymbol()+" *)"+generateTemp(fm,fcn.getSrc(),lb)+";");
5615     else
5616       output.println(generateTemp(fm,fcn.getDst(),lb)+"=("+fcn.getType().getSafeSymbol()+")"+generateTemp(fm,fcn.getSrc(),lb)+";");
5617   }
5618
5619   private void generateFlatLiteralNode(FlatMethod fm, LocalityBinding lb, FlatLiteralNode fln, PrintWriter output) {
5620     if (fln.getValue()==null)
5621       output.println(generateTemp(fm, fln.getDst(),lb)+"=0;");
5622     else if (fln.getType().getSymbol().equals(TypeUtil.StringClass)) {
5623       if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
5624         if (state.DSM && locality.getAtomic(lb).get(fln).intValue()>0) {
5625           //Stash pointer in case of GC
5626           String revertptr=generateTemp(fm, reverttable.get(lb),lb);
5627           output.println(revertptr+"=revertlist;");
5628         }
5629         output.println(generateTemp(fm, fln.getDst(),lb)+"=NewString("+localsprefixaddr+", \""+FlatLiteralNode.escapeString((String)fln.getValue())+"\","+((String)fln.getValue()).length()+");");
5630         if (state.DSM && locality.getAtomic(lb).get(fln).intValue()>0) {
5631           //Stash pointer in case of GC
5632           String revertptr=generateTemp(fm, reverttable.get(lb),lb);
5633           output.println("revertlist="+revertptr+";");
5634         }
5635       } else {
5636         output.println(generateTemp(fm, fln.getDst(),lb)+"=NewString(\""+FlatLiteralNode.escapeString((String)fln.getValue())+"\","+((String)fln.getValue()).length()+");");
5637       }
5638     } else if (fln.getType().isBoolean()) {
5639       if (((Boolean)fln.getValue()).booleanValue())
5640         output.println(generateTemp(fm, fln.getDst(),lb)+"=1;");
5641       else
5642         output.println(generateTemp(fm, fln.getDst(),lb)+"=0;");
5643     } else if (fln.getType().isChar()) {
5644       String st=FlatLiteralNode.escapeString(fln.getValue().toString());
5645       output.println(generateTemp(fm, fln.getDst(),lb)+"='"+st+"';");
5646     } else if (fln.getType().isLong()) {
5647       output.println(generateTemp(fm, fln.getDst(),lb)+"="+fln.getValue()+"LL;");
5648     } else
5649       output.println(generateTemp(fm, fln.getDst(),lb)+"="+fln.getValue()+";");
5650   }
5651
5652   protected void generateFlatReturnNode(FlatMethod fm, LocalityBinding lb, FlatReturnNode frn, PrintWriter output) {
5653     if(state.MGC) {
5654       // TODO add version for normal Java later
5655     if((fm.getMethod() != null) && (fm.getMethod().isStaticBlock())) {
5656       // a static block, check if it has been executed
5657       output.println("  global_defs_p->" + fm.getMethod().getClassDesc().getSafeSymbol()+"static_block_exe_flag = 1;");
5658       output.println("");
5659     }
5660     }
5661     if (frn.getReturnTemp()!=null) {
5662       if (frn.getReturnTemp().getType().isPtr())
5663         output.println("return (struct "+fm.getMethod().getReturnType().getSafeSymbol()+"*)"+generateTemp(fm, frn.getReturnTemp(), lb)+";");
5664       else
5665         output.println("return "+generateTemp(fm, frn.getReturnTemp(), lb)+";");
5666     } else {
5667       output.println("return;");
5668     }
5669   }
5670
5671   protected void generateStoreFlatCondBranch(FlatMethod fm, LocalityBinding lb, FlatCondBranch fcb, String label, PrintWriter output) {
5672     int left=-1;
5673     int right=-1;
5674     //only record if this group has more than one exit
5675     if (branchanalysis.numJumps(fcb)>1) {
5676       left=branchanalysis.jumpValue(fcb, 0);
5677       right=branchanalysis.jumpValue(fcb, 1);
5678     }
5679     output.println("if (!"+generateTemp(fm, fcb.getTest(),lb)+") {");
5680     if (right!=-1)
5681       output.println("STOREBRANCH("+right+");");
5682     output.println("goto "+label+";");
5683     output.println("}");
5684     if (left!=-1)
5685       output.println("STOREBRANCH("+left+");");
5686   }
5687
5688   protected void generateFlatCondBranch(FlatMethod fm, LocalityBinding lb, FlatCondBranch fcb, String label, PrintWriter output) {
5689     output.println("if (!"+generateTemp(fm, fcb.getTest(),lb)+") goto "+label+";");
5690   }
5691
5692   /** This method generates header information for the method or
5693    * task referenced by the Descriptor des. */
5694   private void generateHeader(FlatMethod fm, LocalityBinding lb, Descriptor des, PrintWriter output) {
5695     generateHeader(fm, lb, des, output, false);
5696   }
5697
5698   private void generateHeader(FlatMethod fm, LocalityBinding lb, Descriptor des, PrintWriter output, boolean addSESErecord) {
5699     /* Print header */
5700     ParamsObject objectparams=(ParamsObject)paramstable.get(lb!=null ? lb : des);
5701     MethodDescriptor md=null;
5702     TaskDescriptor task=null;
5703     if (des instanceof MethodDescriptor)
5704       md=(MethodDescriptor) des;
5705     else
5706       task=(TaskDescriptor) des;
5707
5708     ClassDescriptor cn=md!=null ? md.getClassDesc() : null;
5709
5710     if (md!=null&&md.getReturnType()!=null) {
5711       if (md.getReturnType().isClass()||md.getReturnType().isArray())
5712         output.print("struct " + md.getReturnType().getSafeSymbol()+" * ");
5713       else
5714         output.print(md.getReturnType().getSafeSymbol()+" ");
5715     } else
5716       //catch the constructor case
5717       output.print("void ");
5718     if (md!=null) {
5719       if (state.DSM||state.SINGLETM) {
5720         output.print(cn.getSafeSymbol()+lb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"(");
5721       } else
5722         output.print(cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"(");
5723     } else
5724       output.print(task.getSafeSymbol()+"(");
5725     
5726     boolean printcomma=false;
5727     if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC)) {
5728       if (md!=null) {
5729         if (state.DSM||state.SINGLETM) {
5730           output.print("struct "+cn.getSafeSymbol()+lb.getSignature()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params * "+paramsprefix);
5731         } else
5732           output.print("struct "+cn.getSafeSymbol()+md.getSafeSymbol()+"_"+md.getSafeMethodDescriptor()+"_params * "+paramsprefix);
5733       } else
5734         output.print("struct "+task.getSafeSymbol()+"_params * "+paramsprefix);
5735       printcomma=true;
5736     }
5737
5738     if (md!=null) {
5739       /* Method */
5740       for(int i=0; i<objectparams.numPrimitives(); i++) {
5741         TempDescriptor temp=objectparams.getPrimitive(i);
5742         if (printcomma)
5743           output.print(", ");
5744         printcomma=true;
5745         if (temp.getType().isClass()||temp.getType().isArray())
5746           output.print("struct "+temp.getType().getSafeSymbol()+" * "+temp.getSafeSymbol());
5747         else
5748           output.print(temp.getType().getSafeSymbol()+" "+temp.getSafeSymbol());
5749       }
5750       output.println(") {");
5751     } else if (!GENERATEPRECISEGC && !this.state.MULTICOREGC) {
5752       /* Imprecise Task */
5753       output.println("void * parameterarray[]) {");
5754       /* Unpack variables */
5755       for(int i=0; i<objectparams.numPrimitives(); i++) {
5756         TempDescriptor temp=objectparams.getPrimitive(i);
5757         output.println("struct "+temp.getType().getSafeSymbol()+" * "+temp.getSafeSymbol()+"=parameterarray["+i+"];");
5758       }
5759       for(int i=0; i<fm.numTags(); i++) {
5760         TempDescriptor temp=fm.getTag(i);
5761         int offset=i+objectparams.numPrimitives();
5762         output.println("struct ___TagDescriptor___ * "+temp.getSafeSymbol()+"=parameterarray["+offset+"];");
5763       }
5764
5765       if ((objectparams.numPrimitives()+fm.numTags())>maxtaskparams)
5766         maxtaskparams=objectparams.numPrimitives()+fm.numTags();
5767     } else output.println(") {");
5768   }
5769
5770   public void generateFlatFlagActionNode(FlatMethod fm, LocalityBinding lb, FlatFlagActionNode ffan, PrintWriter output) {
5771     output.println("/* FlatFlagActionNode */");
5772
5773
5774     /* Process tag changes */
5775     Relation tagsettable=new Relation();
5776     Relation tagcleartable=new Relation();
5777
5778     Iterator tagsit=ffan.getTempTagPairs();
5779     while (tagsit.hasNext()) {
5780       TempTagPair ttp=(TempTagPair) tagsit.next();
5781       TempDescriptor objtmp=ttp.getTemp();
5782       TagDescriptor tag=ttp.getTag();
5783       TempDescriptor tagtmp=ttp.getTagTemp();
5784       boolean tagstatus=ffan.getTagChange(ttp);
5785       if (tagstatus) {
5786         tagsettable.put(objtmp, tagtmp);
5787       } else {
5788         tagcleartable.put(objtmp, tagtmp);
5789       }
5790     }
5791
5792
5793     Hashtable flagandtable=new Hashtable();
5794     Hashtable flagortable=new Hashtable();
5795
5796     /* Process flag changes */
5797     Iterator flagsit=ffan.getTempFlagPairs();
5798     while(flagsit.hasNext()) {
5799       TempFlagPair tfp=(TempFlagPair)flagsit.next();
5800       TempDescriptor temp=tfp.getTemp();
5801       Hashtable flagtable=(Hashtable)flagorder.get(temp.getType().getClassDesc());
5802       FlagDescriptor flag=tfp.getFlag();
5803       if (flag==null) {
5804         //Newly allocate objects that don't set any flags case
5805         if (flagortable.containsKey(temp)) {
5806           throw new Error();
5807         }
5808         int mask=0;
5809         flagortable.put(temp,new Integer(mask));
5810       } else {
5811         int flagid=1<<((Integer)flagtable.get(flag)).intValue();
5812         boolean flagstatus=ffan.getFlagChange(tfp);
5813         if (flagstatus) {
5814           int mask=0;
5815           if (flagortable.containsKey(temp)) {
5816             mask=((Integer)flagortable.get(temp)).intValue();
5817           }
5818           mask|=flagid;
5819           flagortable.put(temp,new Integer(mask));
5820         } else {
5821           int mask=0xFFFFFFFF;
5822           if (flagandtable.containsKey(temp)) {
5823             mask=((Integer)flagandtable.get(temp)).intValue();
5824           }
5825           mask&=(0xFFFFFFFF^flagid);
5826           flagandtable.put(temp,new Integer(mask));
5827         }
5828       }
5829     }
5830
5831
5832     HashSet flagtagset=new HashSet();
5833     flagtagset.addAll(flagortable.keySet());
5834     flagtagset.addAll(flagandtable.keySet());
5835     flagtagset.addAll(tagsettable.keySet());
5836     flagtagset.addAll(tagcleartable.keySet());
5837
5838     Iterator ftit=flagtagset.iterator();
5839     while(ftit.hasNext()) {
5840       TempDescriptor temp=(TempDescriptor)ftit.next();
5841
5842
5843       Set tagtmps=tagcleartable.get(temp);
5844       if (tagtmps!=null) {
5845         Iterator tagit=tagtmps.iterator();
5846         while(tagit.hasNext()) {
5847           TempDescriptor tagtmp=(TempDescriptor)tagit.next();
5848           if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC))
5849             output.println("tagclear("+localsprefixaddr+", (struct ___Object___ *)"+generateTemp(fm, temp,lb)+", "+generateTemp(fm,tagtmp,lb)+");");
5850           else
5851             output.println("tagclear((struct ___Object___ *)"+generateTemp(fm, temp,lb)+", "+generateTemp(fm,tagtmp,lb)+");");
5852         }
5853       }
5854
5855       tagtmps=tagsettable.get(temp);
5856       if (tagtmps!=null) {
5857         Iterator tagit=tagtmps.iterator();
5858         while(tagit.hasNext()) {
5859           TempDescriptor tagtmp=(TempDescriptor)tagit.next();
5860           if ((GENERATEPRECISEGC) || (this.state.MULTICOREGC))
5861             output.println("tagset("+localsprefixaddr+", (struct ___Object___ *)"+generateTemp(fm, temp,lb)+", "+generateTemp(fm,tagtmp,lb)+");");
5862           else
5863             output.println("tagset((struct ___Object___ *)"+generateTemp(fm, temp, lb)+", "+generateTemp(fm,tagtmp, lb)+");");
5864         }
5865       }
5866
5867       int ormask=0;
5868       int andmask=0xFFFFFFF;
5869
5870       if (flagortable.containsKey(temp))
5871         ormask=((Integer)flagortable.get(temp)).intValue();
5872       if (flagandtable.containsKey(temp))
5873         andmask=((Integer)flagandtable.get(temp)).intValue();
5874       generateFlagOrAnd(ffan, fm, lb, temp, output, ormask, andmask);
5875       generateObjectDistribute(ffan, fm, lb, temp, output);
5876     }
5877   }
5878
5879   protected void generateFlagOrAnd(FlatFlagActionNode ffan, FlatMethod fm, LocalityBinding lb, TempDescriptor temp,
5880                                    PrintWriter output, int ormask, int andmask) {
5881     if (ffan.getTaskType()==FlatFlagActionNode.NEWOBJECT) {
5882       output.println("flagorandinit("+generateTemp(fm, temp, lb)+", 0x"+Integer.toHexString(ormask)+", 0x"+Integer.toHexString(andmask)+");");
5883     } else {
5884       output.println("flagorand("+generateTemp(fm, temp, lb)+", 0x"+Integer.toHexString(ormask)+", 0x"+Integer.toHexString(andmask)+");");
5885     }
5886   }
5887
5888   protected void generateObjectDistribute(FlatFlagActionNode ffan, FlatMethod fm, LocalityBinding lb, TempDescriptor temp, PrintWriter output) {
5889     output.println("enqueueObject("+generateTemp(fm, temp, lb)+");");
5890   }
5891
5892   void generateOptionalHeader(PrintWriter headers) {
5893
5894     //GENERATE HEADERS
5895     headers.println("#include \"task.h\"\n\n");
5896     headers.println("#ifndef _OPTIONAL_STRUCT_");
5897     headers.println("#define _OPTIONAL_STRUCT_");
5898
5899     //STRUCT PREDICATEMEMBER
5900     headers.println("struct predicatemember{");
5901     headers.println("int type;");
5902     headers.println("int numdnfterms;");
5903     headers.println("int * flags;");
5904     headers.println("int numtags;");
5905     headers.println("int * tags;\n};\n\n");
5906
5907     //STRUCT OPTIONALTASKDESCRIPTOR
5908     headers.println("struct optionaltaskdescriptor{");
5909     headers.println("struct taskdescriptor * task;");
5910     headers.println("int index;");
5911     headers.println("int numenterflags;");
5912     headers.println("int * enterflags;");
5913     headers.println("int numpredicatemembers;");
5914     headers.println("struct predicatemember ** predicatememberarray;");
5915     headers.println("};\n\n");
5916
5917     //STRUCT TASKFAILURE
5918     headers.println("struct taskfailure {");
5919     headers.println("struct taskdescriptor * task;");
5920     headers.println("int index;");
5921     headers.println("int numoptionaltaskdescriptors;");
5922     headers.println("struct optionaltaskdescriptor ** optionaltaskdescriptorarray;\n};\n\n");
5923
5924     //STRUCT FSANALYSISWRAPPER
5925     headers.println("struct fsanalysiswrapper{");
5926     headers.println("int  flags;");
5927     headers.println("int numtags;");
5928     headers.println("int * tags;");
5929     headers.println("int numtaskfailures;");
5930     headers.println("struct taskfailure ** taskfailurearray;");
5931     headers.println("int numoptionaltaskdescriptors;");
5932     headers.println("struct optionaltaskdescriptor ** optionaltaskdescriptorarray;\n};\n\n");
5933
5934     //STRUCT CLASSANALYSISWRAPPER
5935     headers.println("struct classanalysiswrapper{");
5936     headers.println("int type;");
5937     headers.println("int numotd;");
5938     headers.println("struct optionaltaskdescriptor ** otdarray;");
5939     headers.println("int numfsanalysiswrappers;");
5940     headers.println("struct fsanalysiswrapper ** fsanalysiswrapperarray;\n};");
5941
5942     headers.println("extern struct classanalysiswrapper * classanalysiswrapperarray[];");
5943
5944     Iterator taskit=state.getTaskSymbolTable().getDescriptorsIterator();
5945     while(taskit.hasNext()) {
5946       TaskDescriptor td=(TaskDescriptor)taskit.next();
5947       headers.println("extern struct taskdescriptor task_"+td.getSafeSymbol()+";");
5948     }
5949
5950   }
5951
5952   //CHECK OVER THIS -- THERE COULD BE SOME ERRORS HERE
5953   int generateOptionalPredicate(Predicate predicate, OptionalTaskDescriptor otd, ClassDescriptor cdtemp, PrintWriter output) {
5954     int predicateindex = 0;
5955     //iterate through the classes concerned by the predicate
5956     Set c_vard = predicate.vardescriptors;
5957     Hashtable<TempDescriptor, Integer> slotnumber=new Hashtable<TempDescriptor, Integer>();
5958     int current_slot=0;
5959
5960     for(Iterator vard_it = c_vard.iterator(); vard_it.hasNext();) {
5961       VarDescriptor vard = (VarDescriptor)vard_it.next();
5962       TypeDescriptor typed = vard.getType();
5963
5964       //generate for flags
5965       HashSet fen_hashset = predicate.flags.get(vard.getSymbol());
5966       output.println("int predicateflags_"+predicateindex+"_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+"[]={");
5967       int numberterms=0;
5968       if (fen_hashset!=null) {
5969         for (Iterator fen_it = fen_hashset.iterator(); fen_it.hasNext();) {
5970           FlagExpressionNode fen = (FlagExpressionNode)fen_it.next();
5971           if (fen!=null) {
5972             DNFFlag dflag=fen.getDNF();
5973             numberterms+=dflag.size();
5974
5975             Hashtable flags=(Hashtable)flagorder.get(typed.getClassDesc());
5976
5977             for(int j=0; j<dflag.size(); j++) {
5978               if (j!=0)
5979                 output.println(",");
5980               Vector term=dflag.get(j);
5981               int andmask=0;
5982               int checkmask=0;
5983               for(int k=0; k<term.size(); k++) {
5984                 DNFFlagAtom dfa=(DNFFlagAtom)term.get(k);
5985                 FlagDescriptor fd=dfa.getFlag();
5986                 boolean negated=dfa.getNegated();
5987                 int flagid=1<<((Integer)flags.get(fd)).intValue();
5988                 andmask|=flagid;
5989                 if (!negated)
5990                   checkmask|=flagid;
5991               }
5992               output.print("/*andmask*/0x"+Integer.toHexString(andmask)+", /*checkmask*/0x"+Integer.toHexString(checkmask));
5993             }
5994           }
5995         }
5996       }
5997       output.println("};\n");
5998
5999       //generate for tags
6000       TagExpressionList tagel = predicate.tags.get(vard.getSymbol());
6001       output.println("int predicatetags_"+predicateindex+"_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+"[]={");
6002       int numtags = 0;
6003       if (tagel!=null) {
6004         for(int j=0; j<tagel.numTags(); j++) {
6005           if (j!=0)
6006             output.println(",");
6007           TempDescriptor tmp=tagel.getTemp(j);
6008           if (!slotnumber.containsKey(tmp)) {
6009             Integer slotint=new Integer(current_slot++);
6010             slotnumber.put(tmp,slotint);
6011           }
6012           int slot=slotnumber.get(tmp).intValue();
6013           output.println("/* slot */"+ slot+", /*tagid*/"+state.getTagId(tmp.getTag()));
6014         }
6015         numtags = tagel.numTags();
6016       }
6017       output.println("};");
6018
6019       //store the result into a predicatemember struct
6020       output.println("struct predicatemember predicatemember_"+predicateindex+"_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+"={");
6021       output.println("/*type*/"+typed.getClassDesc().getId()+",");
6022       output.println("/* number of dnf terms */"+numberterms+",");
6023       output.println("predicateflags_"+predicateindex+"_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+",");
6024       output.println("/* number of tag */"+numtags+",");
6025       output.println("predicatetags_"+predicateindex+"_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+",");
6026       output.println("};\n");
6027       predicateindex++;
6028     }
6029
6030
6031     //generate an array that stores the entire predicate
6032     output.println("struct predicatemember * predicatememberarray_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+"[]={");
6033     for( int j = 0; j<predicateindex; j++) {
6034       if( j != predicateindex-1) output.println("&predicatemember_"+j+"_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+",");
6035       else output.println("&predicatemember_"+j+"_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol());
6036     }
6037     output.println("};\n");
6038     return predicateindex;
6039   }
6040
6041
6042   void generateOptionalArrays(PrintWriter output, PrintWriter headers, Hashtable<ClassDescriptor, Hashtable<FlagState, Set<OptionalTaskDescriptor>>> safeexecution, Hashtable optionaltaskdescriptors) {
6043     generateOptionalHeader(headers);
6044     //GENERATE STRUCTS
6045     output.println("#include \"optionalstruct.h\"\n\n");
6046     output.println("#include \"stdlib.h\"\n");
6047
6048     HashSet processedcd = new HashSet();
6049     int maxotd=0;
6050     Enumeration e = safeexecution.keys();
6051     while (e.hasMoreElements()) {
6052       int numotd=0;
6053       //get the class
6054       ClassDescriptor cdtemp=(ClassDescriptor)e.nextElement();
6055       Hashtable flaginfo=(Hashtable)flagorder.get(cdtemp);       //will be used several times
6056
6057       //Generate the struct of optionals
6058       Collection c_otd = ((Hashtable)optionaltaskdescriptors.get(cdtemp)).values();
6059       numotd = c_otd.size();
6060       if(maxotd<numotd) maxotd = numotd;
6061       if( !c_otd.isEmpty() ) {
6062         for(Iterator otd_it = c_otd.iterator(); otd_it.hasNext();) {
6063           OptionalTaskDescriptor otd = (OptionalTaskDescriptor)otd_it.next();
6064
6065           //generate the int arrays for the predicate
6066           Predicate predicate = otd.predicate;
6067           int predicateindex = generateOptionalPredicate(predicate, otd, cdtemp, output);
6068           TreeSet<Integer> fsset=new TreeSet<Integer>();
6069           //iterate through possible FSes corresponding to
6070           //the state when entering
6071
6072           for(Iterator fses = otd.enterflagstates.iterator(); fses.hasNext();) {
6073             FlagState fs = (FlagState)fses.next();
6074             int flagid=0;
6075             for(Iterator flags = fs.getFlags(); flags.hasNext();) {
6076               FlagDescriptor flagd = (FlagDescriptor)flags.next();
6077               int id=1<<((Integer)flaginfo.get(flagd)).intValue();
6078               flagid|=id;
6079             }
6080             fsset.add(new Integer(flagid));
6081             //tag information not needed because tag
6082             //changes are not tolerated.
6083           }
6084
6085           output.println("int enterflag_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+"[]={");
6086           boolean needcomma=false;
6087           for(Iterator<Integer> it=fsset.iterator(); it.hasNext();) {
6088             if(needcomma)
6089               output.print(", ");
6090             output.println(it.next());
6091           }
6092
6093           output.println("};\n");
6094
6095
6096           //generate optionaltaskdescriptor that actually
6097           //includes exit fses, predicate and the task
6098           //concerned
6099           output.println("struct optionaltaskdescriptor optionaltaskdescriptor_"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+"={");
6100           output.println("&task_"+otd.td.getSafeSymbol()+",");
6101           output.println("/*index*/"+otd.getIndex()+",");
6102           output.println("/*number of enter flags*/"+fsset.size()+",");
6103           output.println("enterflag_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+",");
6104           output.println("/*number of members */"+predicateindex+",");
6105           output.println("predicatememberarray_OTD"+otd.getuid()+"_"+cdtemp.getSafeSymbol()+",");
6106           output.println("};\n");
6107         }
6108       } else
6109         continue;
6110       // if there are no optionals, there is no need to build the rest of the struct
6111
6112       output.println("struct optionaltaskdescriptor * otdarray"+cdtemp.getSafeSymbol()+"[]={");
6113       c_otd = ((Hashtable)optionaltaskdescriptors.get(cdtemp)).values();
6114       if( !c_otd.isEmpty() ) {
6115         boolean needcomma=false;
6116         for(Iterator otd_it = c_otd.iterator(); otd_it.hasNext();) {
6117           OptionalTaskDescriptor otd = (OptionalTaskDescriptor)otd_it.next();
6118           if(needcomma)
6119             output.println(",");
6120           needcomma=true;
6121           output.println("&optionaltaskdescriptor_"+otd.getuid()+"_"+cdtemp.getSafeSymbol());
6122         }
6123       }
6124       output.println("};\n");
6125
6126       //get all the possible flagstates reachable by an object
6127       Hashtable hashtbtemp = safeexecution.get(cdtemp);
6128       int fscounter = 0;
6129       TreeSet fsts=new TreeSet(new FlagComparator(flaginfo));
6130       fsts.addAll(hashtbtemp.keySet());
6131       for(Iterator fsit=fsts.iterator(); fsit.hasNext();) {
6132         FlagState fs = (FlagState)fsit.next();
6133         fscounter++;
6134
6135         //get the set of OptionalTaskDescriptors corresponding
6136         HashSet<OptionalTaskDescriptor> availabletasks = (HashSet<OptionalTaskDescriptor>)hashtbtemp.get(fs);
6137         //iterate through the OptionalTaskDescriptors and
6138         //store the pointers to the optionals struct (see on
6139         //top) into an array
6140
6141         output.println("struct optionaltaskdescriptor * optionaltaskdescriptorarray_FS"+fscounter+"_"+cdtemp.getSafeSymbol()+"[] = {");
6142         for(Iterator<OptionalTaskDescriptor> mos = ordertd(availabletasks).iterator(); mos.hasNext();) {
6143           OptionalTaskDescriptor mm = mos.next();
6144           if(!mos.hasNext())
6145             output.println("&optionaltaskdescriptor_"+mm.getuid()+"_"+cdtemp.getSafeSymbol());
6146           else
6147             output.println("&optionaltaskdescriptor_"+mm.getuid()+"_"+cdtemp.getSafeSymbol()+",");
6148         }
6149
6150         output.println("};\n");
6151
6152         //process flag information (what the flag after failure is) so we know what optionaltaskdescriptors to choose.
6153
6154         int flagid=0;
6155         for(Iterator flags = fs.getFlags(); flags.hasNext();) {
6156           FlagDescriptor flagd = (FlagDescriptor)flags.next();
6157           int id=1<<((Integer)flaginfo.get(flagd)).intValue();
6158           flagid|=id;
6159         }
6160
6161         //process tag information
6162
6163         int tagcounter = 0;
6164         boolean first = true;
6165         Enumeration tag_enum = fs.getTags();
6166         output.println("int tags_FS"+fscounter+"_"+cdtemp.getSafeSymbol()+"[]={");
6167         while(tag_enum.hasMoreElements()) {
6168           tagcounter++;
6169           TagDescriptor tagd = (TagDescriptor)tag_enum.nextElement();
6170           if(first==true)
6171             first = false;
6172           else
6173             output.println(", ");
6174           output.println("/*tagid*/"+state.getTagId(tagd));
6175         }
6176         output.println("};");
6177
6178         Set<TaskIndex> tiset=sa.getTaskIndex(fs);
6179         for(Iterator<TaskIndex> itti=tiset.iterator(); itti.hasNext();) {
6180           TaskIndex ti=itti.next();
6181           if (ti.isRuntime())
6182             continue;
6183
6184           Set<OptionalTaskDescriptor> otdset=sa.getOptions(fs, ti);
6185
6186           output.print("struct optionaltaskdescriptor * optionaltaskfailure_FS"+fscounter+"_"+ti.getTask().getSafeSymbol()+"_"+ti.getIndex()+"_array[] = {");
6187           boolean needcomma=false;
6188           for(Iterator<OptionalTaskDescriptor> otdit=ordertd(otdset).iterator(); otdit.hasNext();) {
6189             OptionalTaskDescriptor otd=otdit.next();
6190             if(needcomma)
6191               output.print(", ");
6192             needcomma=true;
6193             output.println("&optionaltaskdescriptor_"+otd.getuid()+"_"+cdtemp.getSafeSymbol());
6194           }
6195           output.println("};");
6196
6197           output.print("struct taskfailure taskfailure_FS"+fscounter+"_"+ti.getTask().getSafeSymbol()+"_"+ti.getIndex()+" = {");
6198           output.print("&task_"+ti.getTask().getSafeSymbol()+", ");
6199           output.print(ti.getIndex()+", ");
6200           output.print(otdset.size()+", ");
6201           output.print("optionaltaskfailure_FS"+fscounter+"_"+ti.getTask().getSafeSymbol()+"_"+ti.getIndex()+"_array");
6202           output.println("};");
6203         }
6204
6205         tiset=sa.getTaskIndex(fs);
6206         boolean needcomma=false;
6207         int runtimeti=0;
6208         output.println("struct taskfailure * taskfailurearray"+fscounter+"_"+cdtemp.getSafeSymbol()+"[]={");
6209         for(Iterator<TaskIndex> itti=tiset.iterator(); itti.hasNext();) {
6210           TaskIndex ti=itti.next();
6211           if (ti.isRuntime()) {
6212             runtimeti++;
6213             continue;
6214           }
6215           if (needcomma)
6216             output.print(", ");
6217           needcomma=true;
6218           output.print("&taskfailure_FS"+fscounter+"_"+ti.getTask().getSafeSymbol()+"_"+ti.getIndex());
6219         }
6220         output.println("};\n");
6221
6222         //Store the result in fsanalysiswrapper
6223
6224         output.println("struct fsanalysiswrapper fsanalysiswrapper_FS"+fscounter+"_"+cdtemp.getSafeSymbol()+"={");
6225         output.println("/*flag*/"+flagid+",");
6226         output.println("/* number of tags*/"+tagcounter+",");
6227         output.println("tags_FS"+fscounter+"_"+cdtemp.getSafeSymbol()+",");
6228         output.println("/* numtask failures */"+(tiset.size()-runtimeti)+",");
6229         output.println("taskfailurearray"+fscounter+"_"+cdtemp.getSafeSymbol()+",");
6230         output.println("/* number of optionaltaskdescriptors */"+availabletasks.size()+",");
6231         output.println("optionaltaskdescriptorarray_FS"+fscounter+"_"+cdtemp.getSafeSymbol());
6232         output.println("};\n");
6233
6234       }
6235
6236       //Build the array of fsanalysiswrappers
6237       output.println("struct fsanalysiswrapper * fsanalysiswrapperarray_"+cdtemp.getSafeSymbol()+"[] = {");
6238       boolean needcomma=false;
6239       for(int i = 0; i<fscounter; i++) {
6240         if (needcomma) output.print(",");
6241         output.println("&fsanalysiswrapper_FS"+(i+1)+"_"+cdtemp.getSafeSymbol());
6242         needcomma=true;
6243       }
6244       output.println("};");
6245
6246       //Build the classanalysiswrapper referring to the previous array
6247       output.println("struct classanalysiswrapper classanalysiswrapper_"+cdtemp.getSafeSymbol()+"={");
6248       output.println("/*type*/"+cdtemp.getId()+",");
6249       output.println("/*numotd*/"+numotd+",");
6250       output.println("otdarray"+cdtemp.getSafeSymbol()+",");
6251       output.println("/* number of fsanalysiswrappers */"+fscounter+",");
6252       output.println("fsanalysiswrapperarray_"+cdtemp.getSafeSymbol()+"};\n");
6253       processedcd.add(cdtemp);
6254     }
6255
6256     //build an array containing every classes for which code has been build
6257     output.println("struct classanalysiswrapper * classanalysiswrapperarray[]={");
6258     for(int i=0; i<state.numClasses(); i++) {
6259       ClassDescriptor cn=cdarray[i];
6260       if (i>0)
6261         output.print(", ");
6262       if ((cn != null) && (processedcd.contains(cn)))
6263         output.print("&classanalysiswrapper_"+cn.getSafeSymbol());
6264       else
6265         output.print("NULL");
6266     }
6267     output.println("};");
6268
6269     output.println("#define MAXOTD "+maxotd);
6270     headers.println("#endif");
6271   }
6272
6273   public List<OptionalTaskDescriptor> ordertd(Set<OptionalTaskDescriptor> otdset) {
6274     Relation r=new Relation();
6275     for(Iterator<OptionalTaskDescriptor>otdit=otdset.iterator(); otdit.hasNext();) {
6276       OptionalTaskDescriptor otd=otdit.next();
6277       TaskIndex ti=new TaskIndex(otd.td, otd.getIndex());
6278       r.put(ti, otd);
6279     }
6280
6281     LinkedList<OptionalTaskDescriptor> l=new LinkedList<OptionalTaskDescriptor>();
6282     for(Iterator it=r.keySet().iterator(); it.hasNext();) {
6283       Set s=r.get(it.next());
6284       for(Iterator it2=s.iterator(); it2.hasNext();) {
6285         OptionalTaskDescriptor otd=(OptionalTaskDescriptor)it2.next();
6286         l.add(otd);
6287       }
6288     }
6289
6290     return l;
6291   }
6292
6293   protected void outputTransCode(PrintWriter output) {
6294   }
6295   
6296   private int calculateSizeOfSESEParamList(FlatSESEEnterNode fsen){
6297           
6298           Set<TempDescriptor> tdSet=new HashSet<TempDescriptor>();
6299           
6300           for (Iterator iterator = fsen.getInVarSet().iterator(); iterator.hasNext();) {
6301                 TempDescriptor tempDescriptor = (TempDescriptor) iterator.next();
6302                 if(!tempDescriptor.getType().isPrimitive() || tempDescriptor.getType().isArray()){
6303                         tdSet.add(tempDescriptor);
6304                 }       
6305           }
6306           
6307           for (Iterator iterator = fsen.getOutVarSet().iterator(); iterator.hasNext();) {
6308                         TempDescriptor tempDescriptor = (TempDescriptor) iterator.next();
6309                         if(!tempDescriptor.getType().isPrimitive() || tempDescriptor.getType().isArray()){
6310                                 tdSet.add(tempDescriptor);
6311                         }       
6312           }       
6313                   
6314           return tdSet.size();
6315   }
6316   
6317   private String calculateSizeOfSESEParamSize(FlatSESEEnterNode fsen){
6318     HashMap <String,Integer> map=new HashMap();
6319     HashSet <TempDescriptor> processed=new HashSet<TempDescriptor>();
6320     String rtr="";
6321           
6322     // space for all in and out set primitives
6323     Set<TempDescriptor> inSetAndOutSet = new HashSet<TempDescriptor>();
6324     inSetAndOutSet.addAll( fsen.getInVarSet() );
6325     inSetAndOutSet.addAll( fsen.getOutVarSet() );
6326             
6327     Set<TempDescriptor> inSetAndOutSetPrims = new HashSet<TempDescriptor>();
6328
6329     Iterator<TempDescriptor> itr = inSetAndOutSet.iterator();
6330     while( itr.hasNext() ) {
6331       TempDescriptor temp = itr.next();
6332       TypeDescriptor type = temp.getType();
6333       if( !type.isPtr() ) {
6334         inSetAndOutSetPrims.add( temp );
6335       }
6336     }
6337             
6338     Iterator<TempDescriptor> itrPrims = inSetAndOutSetPrims.iterator();
6339     while( itrPrims.hasNext() ) {
6340       TempDescriptor temp = itrPrims.next();
6341       TypeDescriptor type = temp.getType();
6342       if(type.isPrimitive()){
6343         Integer count=map.get(type.getSymbol());
6344         if(count==null){
6345           count=new Integer(1);
6346           map.put(type.getSymbol(), count);
6347         }else{
6348           map.put(type.getSymbol(), new Integer(count.intValue()+1));
6349         }
6350       }      
6351     }
6352           
6353     Set<String> keySet=map.keySet();
6354     for (Iterator iterator = keySet.iterator(); iterator.hasNext();) {
6355       String key = (String) iterator.next();
6356       rtr+="+sizeof("+key+")*"+map.get(key);
6357     }
6358     return  rtr;
6359   }
6360
6361 }
6362
6363
6364
6365
6366
6367