5293f865966e5832f565bff97c965f27a70bfb17
[IRC.git] / Robust / src / IR / Tree / BuildIR.java
1 package IR.Tree;
2 import IR.*;
3 import java.util.*;
4
5
6 public class BuildIR {
7   State state;
8
9   private int m_taskexitnum;
10
11   public BuildIR(State state) {
12     this.state=state;
13     this.m_taskexitnum = 0;
14   }
15
16   public void buildtree(ParseNode pn, Set toanalyze) {
17     parseFile(pn, toanalyze);
18   }
19
20   Vector singleimports;
21   Vector multiimports;
22   NameDescriptor packages;
23
24   /** Parse the classes in this file */
25   public void parseFile(ParseNode pn, Set toanalyze) {
26     singleimports=new Vector();
27     multiimports=new Vector();
28
29     ParseNode ipn=pn.getChild("imports").getChild("import_decls_list");
30     if (ipn!=null) {
31       ParseNodeVector pnv=ipn.getChildren();
32       for(int i=0; i<pnv.size(); i++) {
33         ParseNode pnimport=pnv.elementAt(i);
34         NameDescriptor nd=parseName(pnimport.getChild("name"));
35         if (isNode(pnimport,"import_single"))
36           singleimports.add(nd);
37         else
38           multiimports.add(nd);
39       }
40     }
41     ParseNode ppn=pn.getChild("packages").getChild("package");
42     if (ppn!=null) {
43       packages=parseName(pn.getChild("name"));
44     }
45     ParseNode tpn=pn.getChild("type_declaration_list");
46     if (tpn!=null) {
47       ParseNodeVector pnv=tpn.getChildren();
48       for(int i=0; i<pnv.size(); i++) {
49         ParseNode type_pn=pnv.elementAt(i);
50         if (isEmpty(type_pn))         /* Skip the semicolon */
51           continue;
52         if (isNode(type_pn,"class_declaration")) {
53           ClassDescriptor cn=parseTypeDecl(type_pn);
54           if (toanalyze!=null)
55             toanalyze.add(cn);
56           state.addClass(cn);
57         } else if (isNode(type_pn,"task_declaration")) {
58           TaskDescriptor td=parseTaskDecl(type_pn);
59           if (toanalyze!=null)
60             toanalyze.add(td);
61           state.addTask(td);
62         } else {
63           throw new Error(type_pn.getLabel());
64         }
65       }
66     }
67   }
68
69   public TaskDescriptor parseTaskDecl(ParseNode pn) {
70     TaskDescriptor td=new TaskDescriptor(pn.getChild("name").getTerminal());
71     ParseNode bodyn=pn.getChild("body");
72     BlockNode bn=parseBlock(bodyn);
73     parseParameterList(td, pn);
74     state.addTreeCode(td,bn);
75     if (pn.getChild("flag_effects_list")!=null)
76       td.addFlagEffects(parseFlags(pn.getChild("flag_effects_list")));
77     return td;
78   }
79
80   public Vector parseFlags(ParseNode pn) {
81     Vector vfe=new Vector();
82     ParseNodeVector pnv=pn.getChildren();
83     for(int i=0; i<pnv.size(); i++) {
84       ParseNode fn=pnv.elementAt(i);
85       FlagEffects fe=parseFlagEffects(fn);
86       vfe.add(fe);
87     }
88     return vfe;
89   }
90
91   public FlagEffects parseFlagEffects(ParseNode pn) {
92     if (isNode(pn,"flag_effect")) {
93       String flagname=pn.getChild("name").getTerminal();
94       FlagEffects fe=new FlagEffects(flagname);
95       if (pn.getChild("flag_list")!=null)
96         parseFlagEffect(fe, pn.getChild("flag_list"));
97       if (pn.getChild("tag_list")!=null)
98         parseTagEffect(fe, pn.getChild("tag_list"));
99       return fe;
100     } else throw new Error();
101   }
102
103   public void parseTagEffect(FlagEffects fes, ParseNode pn) {
104     ParseNodeVector pnv=pn.getChildren();
105     for(int i=0; i<pnv.size(); i++) {
106       ParseNode pn2=pnv.elementAt(i);
107       boolean status=true;
108       if (isNode(pn2,"not")) {
109         status=false;
110         pn2=pn2.getChild("name");
111       }
112       String name=pn2.getTerminal();
113       fes.addTagEffect(new TagEffect(name,status));
114     }
115   }
116
117   public void parseFlagEffect(FlagEffects fes, ParseNode pn) {
118     ParseNodeVector pnv=pn.getChildren();
119     for(int i=0; i<pnv.size(); i++) {
120       ParseNode pn2=pnv.elementAt(i);
121       boolean status=true;
122       if (isNode(pn2,"not")) {
123         status=false;
124         pn2=pn2.getChild("name");
125       }
126       String name=pn2.getTerminal();
127       fes.addEffect(new FlagEffect(name,status));
128     }
129   }
130
131   public FlagExpressionNode parseFlagExpression(ParseNode pn) {
132     if (isNode(pn,"or")) {
133       ParseNodeVector pnv=pn.getChildren();
134       ParseNode left=pnv.elementAt(0);
135       ParseNode right=pnv.elementAt(1);
136       return new FlagOpNode(parseFlagExpression(left), parseFlagExpression(right), new Operation(Operation.LOGIC_OR));
137     } else if (isNode(pn,"and")) {
138       ParseNodeVector pnv=pn.getChildren();
139       ParseNode left=pnv.elementAt(0);
140       ParseNode right=pnv.elementAt(1);
141       return new FlagOpNode(parseFlagExpression(left), parseFlagExpression(right), new Operation(Operation.LOGIC_AND));
142     } else if (isNode(pn, "not")) {
143       ParseNodeVector pnv=pn.getChildren();
144       ParseNode left=pnv.elementAt(0);
145       return new FlagOpNode(parseFlagExpression(left), new Operation(Operation.LOGIC_NOT));
146
147     } else if (isNode(pn,"name")) {
148       return new FlagNode(pn.getTerminal());
149     } else {
150       throw new Error();
151     }
152   }
153
154   public Vector parseChecks(ParseNode pn) {
155     Vector ccs=new Vector();
156     ParseNodeVector pnv=pn.getChildren();
157     for(int i=0; i<pnv.size(); i++) {
158       ParseNode fn=pnv.elementAt(i);
159       ConstraintCheck cc=parseConstraintCheck(fn);
160       ccs.add(cc);
161     }
162     return ccs;
163   }
164
165   public ConstraintCheck parseConstraintCheck(ParseNode pn) {
166     if (isNode(pn,"cons_check")) {
167       String specname=pn.getChild("name").getChild("identifier").getTerminal();
168       Vector[] args=parseConsArgumentList(pn);
169       ConstraintCheck cc=new ConstraintCheck(specname);
170       for(int i=0; i<args[0].size(); i++) {
171         cc.addVariable((String)args[0].get(i));
172         cc.addArgument((ExpressionNode)args[1].get(i));
173       }
174       return cc;
175     } else throw new Error();
176   }
177
178   public void parseParameterList(TaskDescriptor td, ParseNode pn) {
179
180     boolean optional;
181     ParseNode paramlist=pn.getChild("task_parameter_list");
182     if (paramlist==null)
183       return;
184     ParseNodeVector pnv=paramlist.getChildren();
185     for(int i=0; i<pnv.size(); i++) {
186       ParseNode paramn=pnv.elementAt(i);
187       if(paramn.getChild("optional")!=null) {
188         optional = true;
189         paramn = paramn.getChild("optional").getFirstChild();
190         System.out.println("OPTIONAL FOUND!!!!!!!");
191       } else { optional = false;
192                System.out.println("NOT OPTIONAL");}
193
194       TypeDescriptor type=parseTypeDescriptor(paramn);
195
196       String paramname=paramn.getChild("single").getTerminal();
197       FlagExpressionNode fen=null;
198       if (paramn.getChild("flag")!=null)
199         fen=parseFlagExpression(paramn.getChild("flag").getFirstChild());
200
201       ParseNode tagnode=paramn.getChild("tag");
202
203       TagExpressionList tel=null;
204       if (tagnode!=null) {
205         tel=parseTagExpressionList(tagnode);
206       }
207
208       td.addParameter(type,paramname,fen, tel, optional);
209     }
210   }
211
212   public TagExpressionList parseTagExpressionList(ParseNode pn) {
213     //BUG FIX: change pn.getChildren() to pn.getChild("tag_expression_list").getChildren()
214     //To test, feed in any input program that uses tags
215     ParseNodeVector pnv=pn.getChild("tag_expression_list").getChildren();
216     TagExpressionList tel=new TagExpressionList();
217     for(int i=0; i<pnv.size(); i++) {
218       ParseNode tn=pnv.elementAt(i);
219       String type=tn.getChild("type").getTerminal();
220       String name=tn.getChild("single").getTerminal();
221       tel.addTag(type, name);
222     }
223     return tel;
224   }
225
226   public ClassDescriptor parseTypeDecl(ParseNode pn) {
227     ClassDescriptor cn=new ClassDescriptor(pn.getChild("name").getTerminal());
228     if (!isEmpty(pn.getChild("super").getTerminal())) {
229       /* parse superclass name */
230       ParseNode snn=pn.getChild("super").getChild("type").getChild("class").getChild("name");
231       NameDescriptor nd=parseName(snn);
232       cn.setSuper(nd.toString());
233     } else {
234       if (!(cn.getSymbol().equals(TypeUtil.ObjectClass)||
235             cn.getSymbol().equals(TypeUtil.TagClass)))
236         cn.setSuper(TypeUtil.ObjectClass);
237     }
238     cn.setModifiers(parseModifiersList(pn.getChild("modifiers")));
239     parseClassBody(cn, pn.getChild("classbody"));
240     return cn;
241   }
242
243   private void parseClassBody(ClassDescriptor cn, ParseNode pn) {
244     ParseNode decls=pn.getChild("class_body_declaration_list");
245     if (decls!=null) {
246       ParseNodeVector pnv=decls.getChildren();
247       for(int i=0; i<pnv.size(); i++) {
248         ParseNode decl=pnv.elementAt(i);
249         if (isNode(decl,"member")) {
250           parseClassMember(cn,decl);
251         } else if (isNode(decl,"constructor")) {
252           parseConstructorDecl(cn,decl.getChild("constructor_declaration"));
253         } else if (isNode(decl,"block")) {
254         } else throw new Error();
255       }
256     }
257   }
258
259   private void parseClassMember(ClassDescriptor cn, ParseNode pn) {
260     ParseNode fieldnode=pn.getChild("field");
261
262     if (fieldnode!=null) {
263       parseFieldDecl(cn,fieldnode.getChild("field_declaration"));
264       return;
265     }
266     ParseNode methodnode=pn.getChild("method");
267     if (methodnode!=null) {
268       parseMethodDecl(cn,methodnode.getChild("method_declaration"));
269       return;
270     }
271     ParseNode flagnode=pn.getChild("flag");
272     if (flagnode!=null) {
273       parseFlagDecl(cn, flagnode.getChild("flag_declaration"));
274       return;
275     }
276     throw new Error();
277   }
278
279   private TypeDescriptor parseTypeDescriptor(ParseNode pn) {
280     ParseNode tn=pn.getChild("type");
281     String type_st=tn.getTerminal();
282     if(type_st.equals("byte")) {
283       return state.getTypeDescriptor(TypeDescriptor.BYTE);
284     } else if(type_st.equals("short")) {
285       return state.getTypeDescriptor(TypeDescriptor.SHORT);
286     } else if(type_st.equals("boolean")) {
287       return state.getTypeDescriptor(TypeDescriptor.BOOLEAN);
288     } else if(type_st.equals("int")) {
289       return state.getTypeDescriptor(TypeDescriptor.INT);
290     } else if(type_st.equals("long")) {
291       return state.getTypeDescriptor(TypeDescriptor.LONG);
292     } else if(type_st.equals("char")) {
293       return state.getTypeDescriptor(TypeDescriptor.CHAR);
294     } else if(type_st.equals("float")) {
295       return state.getTypeDescriptor(TypeDescriptor.FLOAT);
296     } else if(type_st.equals("double")) {
297       return state.getTypeDescriptor(TypeDescriptor.DOUBLE);
298     } else if(type_st.equals("class")) {
299       ParseNode nn=tn.getChild("class");
300       return state.getTypeDescriptor(parseName(nn.getChild("name")));
301     } else if(type_st.equals("array")) {
302       ParseNode nn=tn.getChild("array");
303       TypeDescriptor td=parseTypeDescriptor(nn.getChild("basetype"));
304       Integer numdims=(Integer)nn.getChild("dims").getLiteral();
305       for(int i=0; i<numdims.intValue(); i++)
306         td=td.makeArray(state);
307       return td;
308     } else {
309       throw new Error();
310     }
311   }
312
313   private NameDescriptor parseName(ParseNode nn) {
314     ParseNode base=nn.getChild("base");
315     ParseNode id=nn.getChild("identifier");
316     if (base==null)
317       return new NameDescriptor(id.getTerminal());
318     return new NameDescriptor(parseName(base.getChild("name")),id.getTerminal());
319
320   }
321
322   private void parseFlagDecl(ClassDescriptor cn,ParseNode pn) {
323     String name=pn.getChild("name").getTerminal();
324     FlagDescriptor flag=new FlagDescriptor(name);
325     if (pn.getChild("external")!=null)
326       flag.makeExternal();
327     cn.addFlag(flag);
328   }
329
330   private void parseFieldDecl(ClassDescriptor cn,ParseNode pn) {
331     ParseNode mn=pn.getChild("modifier");
332     Modifiers m=parseModifiersList(mn);
333
334     ParseNode tn=pn.getChild("type");
335     TypeDescriptor t=parseTypeDescriptor(tn);
336     ParseNode vn=pn.getChild("variables").getChild("variable_declarators_list");
337     ParseNodeVector pnv=vn.getChildren();
338     boolean isglobal=pn.getChild("global")!=null;
339
340     for(int i=0; i<pnv.size(); i++) {
341       ParseNode vardecl=pnv.elementAt(i);
342       ParseNode tmp=vardecl;
343       TypeDescriptor arrayt=t;
344       while (tmp.getChild("single")==null) {
345         arrayt=arrayt.makeArray(state);
346         tmp=tmp.getChild("array");
347       }
348       String identifier=tmp.getChild("single").getTerminal();
349       ParseNode epn=vardecl.getChild("initializer");
350
351       ExpressionNode en=null;
352       if (epn!=null)
353         en=parseExpression(epn.getFirstChild());
354
355       cn.addField(new FieldDescriptor(m, arrayt, identifier, en, isglobal));
356     }
357   }
358
359   private ExpressionNode parseExpression(ParseNode pn) {
360     if (isNode(pn,"assignment"))
361       return parseAssignmentExpression(pn);
362     else if (isNode(pn,"logical_or")||isNode(pn,"logical_and")||
363              isNode(pn,"bitwise_or")||isNode(pn,"bitwise_xor")||
364              isNode(pn,"bitwise_and")||isNode(pn,"equal")||
365              isNode(pn,"not_equal")||isNode(pn,"comp_lt")||
366              isNode(pn,"comp_lte")||isNode(pn,"comp_gt")||
367              isNode(pn,"comp_gte")||isNode(pn,"leftshift")||
368              isNode(pn,"rightshift")||isNode(pn,"sub")||
369              isNode(pn,"urightshift")||isNode(pn,"sub")||
370              isNode(pn,"add")||isNode(pn,"mult")||
371              isNode(pn,"div")||isNode(pn,"mod")) {
372       ParseNodeVector pnv=pn.getChildren();
373       ParseNode left=pnv.elementAt(0);
374       ParseNode right=pnv.elementAt(1);
375       Operation op=new Operation(pn.getLabel());
376       return new OpNode(parseExpression(left),parseExpression(right),op);
377     } else if (isNode(pn,"unaryplus")||
378                isNode(pn,"unaryminus")||
379                isNode(pn,"not")||
380                isNode(pn,"comp")) {
381       ParseNode left=pn.getFirstChild();
382       Operation op=new Operation(pn.getLabel());
383       return new OpNode(parseExpression(left),op);
384     } else if (isNode(pn,"postinc")||
385                isNode(pn,"postdec")) {
386       ParseNode left=pn.getFirstChild();
387       AssignOperation op=new AssignOperation(pn.getLabel());
388       return new AssignmentNode(parseExpression(left),null,op);
389
390     } else if (isNode(pn,"preinc")||
391                isNode(pn,"predec")) {
392       ParseNode left=pn.getFirstChild();
393       AssignOperation op=isNode(pn,"preinc") ? new AssignOperation(AssignOperation.PLUSEQ) : new AssignOperation(AssignOperation.MINUSEQ);
394       return new AssignmentNode(parseExpression(left),
395                                 new LiteralNode("integer",new Integer(1)),op);
396     } else if (isNode(pn,"literal")) {
397       String literaltype=pn.getTerminal();
398       ParseNode literalnode=pn.getChild(literaltype);
399       Object literal_obj=literalnode.getLiteral();
400       return new LiteralNode(literaltype, literal_obj);
401     } else if (isNode(pn,"createobject")) {
402       TypeDescriptor td=parseTypeDescriptor(pn);
403       
404       Vector args=parseArgumentList(pn);
405       boolean isglobal=pn.getChild("global")!=null;
406       String disjointId=null;
407       if( pn.getChild("disjoint") != null) {
408         disjointId = pn.getChild("disjoint").getTerminal();
409       }
410       CreateObjectNode con=new CreateObjectNode(td, isglobal, disjointId);
411       for(int i=0; i<args.size(); i++) {
412         con.addArgument((ExpressionNode)args.get(i));
413       }
414       /* Could have flag set or tag added here */
415       if (pn.getChild("flag_list")!=null||pn.getChild("tag_list")!=null) {
416         FlagEffects fe=new FlagEffects(null);
417         if (pn.getChild("flag_list")!=null)
418           parseFlagEffect(fe, pn.getChild("flag_list"));
419
420         if (pn.getChild("tag_list")!=null)
421           parseTagEffect(fe, pn.getChild("tag_list"));
422         con.addFlagEffects(fe);
423       }
424
425       return con;
426     } else if (isNode(pn,"createarray")) {
427       //System.out.println(pn.PPrint(3,true));
428       boolean isglobal=pn.getChild("global")!=null;
429       String disjointId=null;
430       if( pn.getChild("disjoint") != null) {
431         disjointId = pn.getChild("disjoint").getTerminal();
432       }
433       TypeDescriptor td=parseTypeDescriptor(pn);
434       Vector args=parseDimExprs(pn);
435       int num=0;
436       if (pn.getChild("dims_opt").getLiteral()!=null)
437         num=((Integer)pn.getChild("dims_opt").getLiteral()).intValue();
438       for(int i=0; i<(args.size()+num); i++)
439         td=td.makeArray(state);
440       CreateObjectNode con=new CreateObjectNode(td, isglobal, disjointId);
441       for(int i=0; i<args.size(); i++) {
442         con.addArgument((ExpressionNode)args.get(i));
443       }
444       return con;
445     } else if (isNode(pn,"name")) {
446       NameDescriptor nd=parseName(pn);
447       return new NameNode(nd);
448     } else if (isNode(pn,"this")) {
449       NameDescriptor nd=new NameDescriptor("this");
450       return new NameNode(nd);
451     } else if (isNode(pn,"isavailable")) {
452       NameDescriptor nd=new NameDescriptor(pn.getTerminal());
453       return new OpNode(new NameNode(nd),null,new Operation(Operation.ISAVAILABLE));
454     } else if (isNode(pn,"methodinvoke1")) {
455       NameDescriptor nd=parseName(pn.getChild("name"));
456       Vector args=parseArgumentList(pn);
457       MethodInvokeNode min=new MethodInvokeNode(nd);
458       for(int i=0; i<args.size(); i++) {
459         min.addArgument((ExpressionNode)args.get(i));
460       }
461       return min;
462     } else if (isNode(pn,"methodinvoke2")) {
463       String methodid=pn.getChild("id").getTerminal();
464       ExpressionNode exp=parseExpression(pn.getChild("base").getFirstChild());
465       Vector args=parseArgumentList(pn);
466       MethodInvokeNode min=new MethodInvokeNode(methodid,exp);
467       for(int i=0; i<args.size(); i++) {
468         min.addArgument((ExpressionNode)args.get(i));
469       }
470       return min;
471     } else if (isNode(pn,"fieldaccess")) {
472       ExpressionNode en=parseExpression(pn.getChild("base").getFirstChild());
473       String fieldname=pn.getChild("field").getTerminal();
474       return new FieldAccessNode(en,fieldname);
475     } else if (isNode(pn,"arrayaccess")) {
476       ExpressionNode en=parseExpression(pn.getChild("base").getFirstChild());
477       ExpressionNode index=parseExpression(pn.getChild("index").getFirstChild());
478       return new ArrayAccessNode(en,index);
479     } else if (isNode(pn,"cast1")) {
480       return new CastNode(parseTypeDescriptor(pn.getChild("type")),parseExpression(pn.getChild("exp").getFirstChild()));
481     } else if (isNode(pn,"cast2")) {
482       return new CastNode(parseExpression(pn.getChild("type").getFirstChild()),parseExpression(pn.getChild("exp").getFirstChild()));
483     } else if (isNode(pn, "getoffset")) {
484       TypeDescriptor td=parseTypeDescriptor(pn);
485       String fieldname = pn.getChild("field").getTerminal();
486       //System.out.println("Checking the values of: "+ " td.toString()= " + td.toString()+ "  fieldname= " + fieldname);
487       return new OffsetNode(td, fieldname);
488     } else if (isNode(pn, "tert")) {
489       return new TertiaryNode(parseExpression(pn.getChild("cond").getFirstChild()),
490                               parseExpression(pn.getChild("trueexpr").getFirstChild()),
491                               parseExpression(pn.getChild("falseexpr").getFirstChild()) );
492     } else if (isNode(pn, "instanceof")) {
493       ExpressionNode exp=parseExpression(pn.getChild("exp").getFirstChild());
494       TypeDescriptor t=parseTypeDescriptor(pn);
495       return new InstanceOfNode(exp,t);
496     } else if (isNode(pn, "array_initializer")) {
497       System.out.println( "Array initializers not implemented yet." );
498       System.exit( -1 );
499       TypeDescriptor td=parseTypeDescriptor(pn);      
500       Vector initializers=parseVariableInitializerList(pn);
501       return new ArrayInitializerNode(td, initializers);
502     } else {
503       System.out.println("---------------------");
504       System.out.println(pn.PPrint(3,true));
505       throw new Error();
506     }
507   }
508
509   private Vector parseDimExprs(ParseNode pn) {
510     Vector arglist=new Vector();
511     ParseNode an=pn.getChild("dim_exprs");
512     if (an==null)       /* No argument list */
513       return arglist;
514     ParseNodeVector anv=an.getChildren();
515     for(int i=0; i<anv.size(); i++) {
516       arglist.add(parseExpression(anv.elementAt(i)));
517     }
518     return arglist;
519   }
520
521   private Vector parseArgumentList(ParseNode pn) {
522     Vector arglist=new Vector();
523     ParseNode an=pn.getChild("argument_list");
524     if (an==null)       /* No argument list */
525       return arglist;
526     ParseNodeVector anv=an.getChildren();
527     for(int i=0; i<anv.size(); i++) {
528       arglist.add(parseExpression(anv.elementAt(i)));
529     }
530     return arglist;
531   }
532
533   private Vector[] parseConsArgumentList(ParseNode pn) {
534     Vector arglist=new Vector();
535     Vector varlist=new Vector();
536     ParseNode an=pn.getChild("cons_argument_list");
537     if (an==null)       /* No argument list */
538       return new Vector[] {varlist, arglist};
539     ParseNodeVector anv=an.getChildren();
540     for(int i=0; i<anv.size(); i++) {
541       ParseNode cpn=anv.elementAt(i);
542       ParseNode var=cpn.getChild("var");
543       ParseNode exp=cpn.getChild("exp").getFirstChild();
544       varlist.add(var.getTerminal());
545       arglist.add(parseExpression(exp));
546     }
547     return new Vector[] {varlist, arglist};
548   }
549
550   private Vector parseVariableInitializerList(ParseNode pn) {
551     Vector varInitList=new Vector();
552     ParseNode vin=pn.getChild("variable_init_list");
553     if (vin==null)       /* No argument list */
554       return varInitList;
555     ParseNodeVector vinv=vin.getChildren();
556     for(int i=0; i<vinv.size(); i++) {
557       varInitList.add(parseExpression(vinv.elementAt(i)));
558     }
559     return varInitList;
560   }
561
562   private ExpressionNode parseAssignmentExpression(ParseNode pn) {
563     AssignOperation ao=new AssignOperation(pn.getChild("op").getTerminal());
564     ParseNodeVector pnv=pn.getChild("args").getChildren();
565
566     AssignmentNode an=new AssignmentNode(parseExpression(pnv.elementAt(0)),parseExpression(pnv.elementAt(1)),ao);
567     return an;
568   }
569
570
571   private void parseMethodDecl(ClassDescriptor cn, ParseNode pn) {
572     ParseNode headern=pn.getChild("method_header");
573     ParseNode bodyn=pn.getChild("body");
574     MethodDescriptor md=parseMethodHeader(headern);
575     BlockNode bn=parseBlock(bodyn);
576     cn.addMethod(md);
577     state.addTreeCode(md,bn);
578   }
579
580   private void parseConstructorDecl(ClassDescriptor cn, ParseNode pn) {
581     ParseNode mn=pn.getChild("modifiers");
582     Modifiers m=parseModifiersList(mn);
583     ParseNode cdecl=pn.getChild("constructor_declarator");
584     boolean isglobal=cdecl.getChild("global")!=null;
585     String name=cdecl.getChild("name").getChild("identifier").getTerminal();
586     MethodDescriptor md=new MethodDescriptor(m, name, isglobal);
587     ParseNode paramnode=cdecl.getChild("parameters");
588     parseParameterList(md,paramnode);
589     ParseNode bodyn0=pn.getChild("body");
590     ParseNode bodyn=bodyn0.getChild("constructor_body");
591     cn.addMethod(md);
592     BlockNode bn=null;
593     if (bodyn!=null&&bodyn.getChild("block_statement_list")!=null)
594       bn=parseBlock(bodyn);
595     else
596       bn=new BlockNode();
597     if (bodyn!=null&&bodyn.getChild("superinvoke")!=null) {
598       ParseNode sin=bodyn.getChild("superinvoke");
599       NameDescriptor nd=new NameDescriptor("super");
600       Vector args=parseArgumentList(sin);
601       MethodInvokeNode min=new MethodInvokeNode(nd);
602       for(int i=0; i<args.size(); i++) {
603         min.addArgument((ExpressionNode)args.get(i));
604       }
605       BlockExpressionNode ben=new BlockExpressionNode(min);
606       bn.addFirstBlockStatement(ben);
607     }
608     state.addTreeCode(md,bn);
609   }
610
611   public BlockNode parseBlock(ParseNode pn) {
612     this.m_taskexitnum = 0;
613     if (pn==null||isEmpty(pn.getTerminal()))
614       return new BlockNode();
615     ParseNode bsn=pn.getChild("block_statement_list");
616     return parseBlockHelper(bsn);
617   }
618
619   private BlockNode parseBlockHelper(ParseNode pn) {
620     ParseNodeVector pnv=pn.getChildren();
621     BlockNode bn=new BlockNode();
622     for(int i=0; i<pnv.size(); i++) {
623       Vector bsv=parseBlockStatement(pnv.elementAt(i));
624       for(int j=0; j<bsv.size(); j++) {
625         bn.addBlockStatement((BlockStatementNode)bsv.get(j));
626       }
627     }
628     return bn;
629   }
630
631   public BlockNode parseSingleBlock(ParseNode pn) {
632     BlockNode bn=new BlockNode();
633     Vector bsv=parseBlockStatement(pn);
634     for(int j=0; j<bsv.size(); j++) {
635       bn.addBlockStatement((BlockStatementNode)bsv.get(j));
636     }
637     bn.setStyle(BlockNode.NOBRACES);
638     return bn;
639   }
640
641   public Vector parseSESEBlock(Vector parentbs, ParseNode pn) {
642     ParseNodeVector pnv=pn.getChildren();
643     Vector bv=new Vector();
644     for(int i=0; i<pnv.size(); i++) {
645       bv.addAll(parseBlockStatement(pnv.elementAt(i)));
646     }
647     return bv;
648   }
649
650   public Vector parseBlockStatement(ParseNode pn) {
651     Vector blockstatements=new Vector();
652     if (isNode(pn,"tag_declaration")) {
653       String name=pn.getChild("single").getTerminal();
654       String type=pn.getChild("type").getTerminal();
655
656       blockstatements.add(new TagDeclarationNode(name, type));
657     } else if (isNode(pn,"local_variable_declaration")) {
658       TypeDescriptor t=parseTypeDescriptor(pn);
659       ParseNode vn=pn.getChild("variable_declarators_list");
660       ParseNodeVector pnv=vn.getChildren();
661       for(int i=0; i<pnv.size(); i++) {
662         ParseNode vardecl=pnv.elementAt(i);
663
664
665         ParseNode tmp=vardecl;
666         TypeDescriptor arrayt=t;
667         while (tmp.getChild("single")==null) {
668           arrayt=arrayt.makeArray(state);
669           tmp=tmp.getChild("array");
670         }
671         String identifier=tmp.getChild("single").getTerminal();
672
673         ParseNode epn=vardecl.getChild("initializer");
674
675
676         ExpressionNode en=null;
677         if (epn!=null)
678           en=parseExpression(epn.getFirstChild());
679
680         blockstatements.add(new DeclarationNode(new VarDescriptor(arrayt, identifier),en));
681       }
682     } else if (isNode(pn,"nop")) {
683       /* Do Nothing */
684     } else if (isNode(pn,"expression")) {
685       blockstatements.add(new BlockExpressionNode(parseExpression(pn.getFirstChild())));
686     } else if (isNode(pn,"ifstatement")) {
687       blockstatements.add(new IfStatementNode(parseExpression(pn.getChild("condition").getFirstChild()),
688                                               parseSingleBlock(pn.getChild("statement").getFirstChild()),
689                                               pn.getChild("else_statement")!=null ? parseSingleBlock(pn.getChild("else_statement").getFirstChild()) : null));
690     } else if (isNode(pn,"taskexit")) {
691       Vector vfe=null;
692       if (pn.getChild("flag_effects_list")!=null)
693         vfe=parseFlags(pn.getChild("flag_effects_list"));
694       Vector ccs=null;
695       if (pn.getChild("cons_checks")!=null)
696         ccs=parseChecks(pn.getChild("cons_checks"));
697
698       blockstatements.add(new TaskExitNode(vfe, ccs, this.m_taskexitnum++));
699     } else if (isNode(pn,"atomic")) {
700       BlockNode bn=parseBlockHelper(pn);
701       blockstatements.add(new AtomicNode(bn));
702     } else if (isNode(pn,"return")) {
703       if (isEmpty(pn.getTerminal()))
704         blockstatements.add(new ReturnNode());
705       else {
706         ExpressionNode en=parseExpression(pn.getFirstChild());
707         blockstatements.add(new ReturnNode(en));
708       }
709     } else if (isNode(pn,"block_statement_list")) {
710       BlockNode bn=parseBlockHelper(pn);
711       blockstatements.add(new SubBlockNode(bn));
712     } else if (isNode(pn,"empty")) {
713       /* nop */
714     } else if (isNode(pn,"statement_expression_list")) {
715       ParseNodeVector pnv=pn.getChildren();
716       BlockNode bn=new BlockNode();
717       for(int i=0; i<pnv.size(); i++) {
718         ExpressionNode en=parseExpression(pnv.elementAt(i));
719         blockstatements.add(new BlockExpressionNode(en));
720       }
721       bn.setStyle(BlockNode.EXPRLIST);
722     } else if (isNode(pn,"forstatement")) {
723       BlockNode init=parseSingleBlock(pn.getChild("initializer").getFirstChild());
724       BlockNode update=parseSingleBlock(pn.getChild("update").getFirstChild());
725       ExpressionNode condition=parseExpression(pn.getChild("condition").getFirstChild());
726       BlockNode body=parseSingleBlock(pn.getChild("statement").getFirstChild());
727       blockstatements.add(new LoopNode(init,condition,update,body));
728     } else if (isNode(pn,"whilestatement")) {
729       ExpressionNode condition=parseExpression(pn.getChild("condition").getFirstChild());
730       BlockNode body=parseSingleBlock(pn.getChild("statement").getFirstChild());
731       blockstatements.add(new LoopNode(condition,body,LoopNode.WHILELOOP));
732     } else if (isNode(pn,"dowhilestatement")) {
733       ExpressionNode condition=parseExpression(pn.getChild("condition").getFirstChild());
734       BlockNode body=parseSingleBlock(pn.getChild("statement").getFirstChild());
735       blockstatements.add(new LoopNode(condition,body,LoopNode.DOWHILELOOP));
736     } else if (isNode(pn,"sese")) {
737       ParseNode pnID=pn.getChild("identifier");
738       String stID=null;
739       if( pnID != null ) { stID=pnID.getFirstChild().getTerminal(); }
740       SESENode start=new SESENode(stID);
741       SESENode end  =new SESENode(stID);
742       start.setEnd( end   );
743       end.setStart( start );
744       blockstatements.add(start);
745       blockstatements.addAll(parseSESEBlock(blockstatements,pn.getChild("body").getFirstChild()));
746       blockstatements.add(end);
747     } else if (isNode(pn,"continue")) {
748         blockstatements.add(new ContinueBreakNode(false));
749     } else if (isNode(pn,"break")) {
750         blockstatements.add(new ContinueBreakNode(true));
751
752     } else {
753       System.out.println("---------------");
754       System.out.println(pn.PPrint(3,true));
755       throw new Error();
756     }
757     return blockstatements;
758   }
759
760   public MethodDescriptor parseMethodHeader(ParseNode pn) {
761     ParseNode mn=pn.getChild("modifiers");
762     Modifiers m=parseModifiersList(mn);
763
764     ParseNode tn=pn.getChild("returntype");
765     TypeDescriptor returntype;
766     if (tn!=null)
767       returntype=parseTypeDescriptor(tn);
768     else
769       returntype=new TypeDescriptor(TypeDescriptor.VOID);
770
771     ParseNode pmd=pn.getChild("method_declarator");
772     String name=pmd.getChild("name").getTerminal();
773     MethodDescriptor md=new MethodDescriptor(m, returntype, name);
774
775     ParseNode paramnode=pmd.getChild("parameters");
776     parseParameterList(md,paramnode);
777     return md;
778   }
779
780   public void parseParameterList(MethodDescriptor md, ParseNode pn) {
781     ParseNode paramlist=pn.getChild("formal_parameter_list");
782     if (paramlist==null)
783       return;
784     ParseNodeVector pnv=paramlist.getChildren();
785     for(int i=0; i<pnv.size(); i++) {
786       ParseNode paramn=pnv.elementAt(i);
787
788       if (isNode(paramn, "tag_parameter")) {
789         String paramname=paramn.getChild("single").getTerminal();
790         TypeDescriptor type=new TypeDescriptor(TypeDescriptor.TAG);
791         md.addTagParameter(type, paramname);
792       } else {
793         TypeDescriptor type=parseTypeDescriptor(paramn);
794
795         ParseNode tmp=paramn;
796         while (tmp.getChild("single")==null) {
797           type=type.makeArray(state);
798           tmp=tmp.getChild("array");
799         }
800         String paramname=tmp.getChild("single").getTerminal();
801
802         md.addParameter(type, paramname);
803       }
804     }
805   }
806
807   public Modifiers parseModifiersList(ParseNode pn) {
808     Modifiers m=new Modifiers();
809     ParseNode modlist=pn.getChild("modifier_list");
810     if (modlist!=null) {
811       ParseNodeVector pnv=modlist.getChildren();
812       for(int i=0; i<pnv.size(); i++) {
813         ParseNode modn=pnv.elementAt(i);
814         if (isNode(modn,"public"))
815           m.addModifier(Modifiers.PUBLIC);
816         else if (isNode(modn,"protected"))
817           m.addModifier(Modifiers.PROTECTED);
818         else if (isNode(modn,"private"))
819           m.addModifier(Modifiers.PRIVATE);
820         else if (isNode(modn,"static"))
821           m.addModifier(Modifiers.STATIC);
822         else if (isNode(modn,"final"))
823           m.addModifier(Modifiers.FINAL);
824         else if (isNode(modn,"native"))
825           m.addModifier(Modifiers.NATIVE);
826         else if (isNode(modn,"synchronized"))
827           m.addModifier(Modifiers.SYNCHRONIZED);
828         else if (isNode(modn,"atomic"))
829           m.addModifier(Modifiers.ATOMIC);
830         else throw new Error("Unrecognized Modifier");
831       }
832     }
833     return m;
834   }
835
836   private boolean isNode(ParseNode pn, String label) {
837     if (pn.getLabel().equals(label))
838       return true;
839     else return false;
840   }
841
842   private static boolean isEmpty(ParseNode pn) {
843     if (pn.getLabel().equals("empty"))
844       return true;
845     else
846       return false;
847   }
848
849   private static boolean isEmpty(String s) {
850     if (s.equals("empty"))
851       return true;
852     else
853       return false;
854   }
855
856   /** Throw an exception if something is unexpected */
857   private void check(ParseNode pn, String label) {
858     if (pn == null) {
859       throw new Error(pn+ "IE: Expected '" + label + "', got null");
860     }
861     if (!pn.getLabel().equals(label)) {
862       throw new Error(pn+ "IE: Expected '" + label + "', got '"+pn.getLabel()+"'");
863     }
864   }
865 }