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