21587c03da0d696ac3f2665abb86b8149ddd8c48
[IRC.git] / Robust / src / IR / Tree / BuildIR.java
1 package IR.Tree;
2 import IR.*;
3 import Util.Lattice;
4 import Util.Pair;
5
6 import java.io.File;
7 import java.util.*;
8
9 public class BuildIR {
10   State state;
11
12   private int m_taskexitnum;
13
14   public BuildIR(State state) {
15     this.state=state;
16     this.m_taskexitnum = 0;
17   }
18
19   public void buildtree(ParseNode pn, Set toanalyze, String sourcefile) {
20     parseFile(pn, toanalyze, sourcefile);
21
22     // numering the interfaces
23     int if_num = 0;
24     Iterator it_classes = state.getClassSymbolTable().getValueSet().iterator();
25     while(it_classes.hasNext()) {
26       ClassDescriptor cd = (ClassDescriptor)it_classes.next();
27       if(cd.isInterface()) {
28         cd.setInterfaceId(if_num++);
29       }
30     }
31   }
32
33   //This is all single imports and a subset of the
34   //multi imports that have been resolved.
35   Hashtable mandatoryImports;
36   //maps class names in file to full name
37   //Note may map a name to an ERROR.
38   Hashtable multiimports;
39   NameDescriptor packages;
40
41   /** Parse the classes in this file */
42   public void parseFile(ParseNode pn, Set toanalyze, String sourcefile) {
43     mandatoryImports = new Hashtable();
44     multiimports = new Hashtable();
45
46     if(state.JNI) {
47       //add java.lang as our default multi-import
48       this.addMultiImport(sourcefile, "java.lang", false);
49     }
50
51     ParseNode ipn = pn.getChild("imports").getChild("import_decls_list");
52     if ((ipn != null) && !state.MGC) {
53       ParseNodeVector pnv = ipn.getChildren();
54       for (int i = 0; i < pnv.size(); i++) {
55         ParseNode pnimport = pnv.elementAt(i);
56         NameDescriptor nd = parseName(pnimport.getChild("name"));
57         if (isNode(pnimport, "import_single")) {
58           if (!mandatoryImports.containsKey(nd.getIdentifier())) {
59             // map name to full name (includes package/directory
60             mandatoryImports.put(nd.getIdentifier(), nd.getPathFromRootToHere());
61           } else {
62             throw new Error("An ambiguous class "+ nd.getIdentifier() +" has been found. It is included for " +
63                             ((String)mandatoryImports.get(nd.getIdentifier())) + " and " +
64                             nd.getPathFromRootToHere());
65           }
66         } else {
67           addMultiImport(sourcefile, nd.getPathFromRootToHere(), false);
68         }
69       }
70     }
71
72     ParseNode ppn=pn.getChild("packages").getChild("package");
73     String packageName = null;
74     if ((ppn!=null) && !state.MGC){
75       NameDescriptor nd = parseClassName(ppn.getChild("name"));
76       packageName = nd.getPathFromRootToHere();
77       //Trick -> import the package directory as a multi-import and it'll
78       //automatically recognize files in the same directory.
79       addMultiImport(sourcefile, packageName, true);
80     }
81
82     ParseNode tpn=pn.getChild("type_declaration_list");
83     if (tpn != null) {
84       ParseNodeVector pnv = tpn.getChildren();
85       for (int i = 0; i < pnv.size(); i++) {
86         ParseNode type_pn = pnv.elementAt(i);
87         if (isEmpty(type_pn)) /* Skip the semicolon */
88           continue;
89         if (isNode(type_pn, "class_declaration")) {
90           ClassDescriptor cn = parseTypeDecl(type_pn, packageName);
91           cn.setSourceFileName(sourcefile);
92           parseInitializers(cn);
93           if (toanalyze != null)
94             toanalyze.add(cn);
95           state.addClass(cn);
96           // for inner classes/enum
97           HashSet tovisit = new HashSet();
98           Iterator it_icds = cn.getInnerClasses();
99           while (it_icds.hasNext()) {
100             tovisit.add(it_icds.next());
101           }
102
103           while (!tovisit.isEmpty()) {
104             ClassDescriptor cd = (ClassDescriptor) tovisit.iterator().next();
105             tovisit.remove(cd);
106             parseInitializers(cd);
107             if (toanalyze != null) {
108               toanalyze.add(cd);
109             }
110             cd.setSourceFileName(sourcefile);
111             state.addClass(cd);
112
113             Iterator it_ics = cd.getInnerClasses();
114             while (it_ics.hasNext()) {
115               tovisit.add(it_ics.next());
116             }
117
118             Iterator it_ienums = cd.getEnum();
119             while (it_ienums.hasNext()) {
120               ClassDescriptor iecd = (ClassDescriptor) it_ienums.next();
121               if (toanalyze != null) {
122                 toanalyze.add(iecd);
123               }
124               iecd.setSourceFileName(sourcefile);
125               state.addClass(iecd);
126             }
127           }
128
129           Iterator it_enums = cn.getEnum();
130           while (it_enums.hasNext()) {
131             ClassDescriptor ecd = (ClassDescriptor) it_enums.next();
132             if (toanalyze != null) {
133               toanalyze.add(ecd);
134             }
135             ecd.setSourceFileName(sourcefile);
136             state.addClass(ecd);
137           }
138         } else if (isNode(type_pn, "task_declaration")) {
139           TaskDescriptor td = parseTaskDecl(type_pn);
140           if (toanalyze != null)
141             toanalyze.add(td);
142           state.addTask(td);
143         } else if (isNode(type_pn, "interface_declaration")) {
144           // TODO add version for normal Java later
145           ClassDescriptor cn = parseInterfaceDecl(type_pn, packageName);
146           if (toanalyze != null)
147             toanalyze.add(cn);
148           cn.setSourceFileName(sourcefile);
149           state.addClass(cn);
150
151           // for enum
152           Iterator it_enums = cn.getEnum();
153           while (it_enums.hasNext()) {
154             ClassDescriptor ecd = (ClassDescriptor) it_enums.next();
155             if (toanalyze != null) {
156               toanalyze.add(ecd);
157             }
158             ecd.setSourceFileName(sourcefile);
159             state.addClass(ecd);
160           }
161         } else if (isNode(type_pn, "enum_declaration")) {
162           // TODO add version for normal Java later
163           ClassDescriptor cn = parseEnumDecl(null, type_pn);
164           if (toanalyze != null)
165             toanalyze.add(cn);
166           cn.setSourceFileName(sourcefile);
167           state.addClass(cn);
168         } else if(isNode(type_pn,"annotation_type_declaration")) {
169           ClassDescriptor cn=parseAnnotationTypeDecl(type_pn);
170           if (toanalyze != null)
171             toanalyze.add(cn);
172           cn.setSourceFileName(sourcefile);
173           state.addClass(cn);
174         } else {
175           throw new Error(type_pn.getLabel());
176         }
177       }
178     }
179   }
180
181
182
183   //This kind of breaks away from tradition a little bit by doing the file checks here
184   // instead of in Semantic check, but doing it here is easier because we have a mapping early on
185   // if I wait until semantic check, I have to change ALL the type descriptors to match the new
186   // mapping and that's both ugly and tedious.
187   private void addMultiImport(String currentSource, String importPath, boolean isPackageDirectory) {
188     boolean found = false;
189     for (int j = 0; j < state.classpath.size(); j++) {
190       String path = (String) state.classpath.get(j);
191       File folder = new File(path, importPath.replace('.', '/'));
192       if (folder.exists()) {
193         found = true;
194         for (String file : folder.list()) {
195           // if the file is of type *.java add to multiImport list.
196           if (file.lastIndexOf('.') != -1 && file.substring(file.lastIndexOf('.')).equalsIgnoreCase(".java")) {
197             String classname = file.substring(0, file.length() - 5);
198             // single imports have precedence over multi-imports
199             if (!mandatoryImports.containsKey(classname)) {
200               //package files have precedence over multi-imports.
201               if (multiimports.containsKey(classname)  && !isPackageDirectory) {
202                 // put error in for later, in case we try to import
203                 multiimports.put(classname, new Error("Error: class " + classname + " is defined more than once in a multi-import in " + currentSource));
204               } else {
205                 multiimports.put(classname, importPath + "." + classname);
206               }
207             }
208           }
209         }
210       }
211     }
212
213
214     if(!found) {
215       throw new Error("Import package " + importPath + " in  " + currentSource
216                       + " cannot be resolved.");
217     }
218   }
219
220   public void parseInitializers(ClassDescriptor cn) {
221     Vector fv=cn.getFieldVec();
222     int pos = 0;
223     for(int i=0; i<fv.size(); i++) {
224       FieldDescriptor fd=(FieldDescriptor)fv.get(i);
225       if(fd.getExpressionNode()!=null) {
226         Iterator methodit = cn.getMethods();
227         while(methodit.hasNext()) {
228           MethodDescriptor currmd=(MethodDescriptor)methodit.next();
229           if(currmd.isConstructor()) {
230             BlockNode bn=state.getMethodBody(currmd);
231             NameNode nn=new NameNode(new NameDescriptor(fd.getSymbol()));
232             AssignmentNode an=new AssignmentNode(nn,fd.getExpressionNode(),new AssignOperation(1));
233             bn.addBlockStatementAt(new BlockExpressionNode(an), pos);
234           }
235         }
236         pos++;
237       }
238     }
239   }
240
241   private ClassDescriptor parseEnumDecl(ClassDescriptor cn, ParseNode pn) {
242     ClassDescriptor ecd=new ClassDescriptor(pn.getChild("name").getTerminal(), false);
243     ecd.setImports(mandatoryImports);
244     ecd.setAsEnum();
245     if(cn != null) {
246       ecd.setSurroundingClass(cn.getSymbol());
247       ecd.setSurrounding(cn);
248       cn.addEnum(ecd);
249     }
250     if (!(ecd.getSymbol().equals(TypeUtil.ObjectClass)||
251           ecd.getSymbol().equals(TypeUtil.TagClass))) {
252       ecd.setSuper(TypeUtil.ObjectClass);
253     }
254     ecd.setModifiers(parseModifiersList(pn.getChild("modifiers")));
255     parseEnumBody(ecd, pn.getChild("enumbody"));
256     return ecd;
257   }
258
259   private void parseEnumBody(ClassDescriptor cn, ParseNode pn) {
260     ParseNode decls=pn.getChild("enum_constants_list");
261     if (decls!=null) {
262       ParseNodeVector pnv=decls.getChildren();
263       for(int i=0; i<pnv.size(); i++) {
264         ParseNode decl=pnv.elementAt(i);
265         if (isNode(decl,"enum_constant")) {
266           parseEnumConstant(cn,decl);
267         } else throw new Error();
268       }
269     }
270   }
271
272   private void parseEnumConstant(ClassDescriptor cn, ParseNode pn) {
273     cn.addEnumConstant(pn.getChild("name").getTerminal());
274   }
275
276   private ClassDescriptor parseAnnotationTypeDecl(ParseNode pn) {
277     ClassDescriptor cn=new ClassDescriptor(pn.getChild("name").getTerminal(), true);
278     cn.setImports(mandatoryImports);
279     ParseNode modifiers=pn.getChild("modifiers");
280     if(modifiers!=null) {
281       cn.setModifiers(parseModifiersList(modifiers));
282     }
283     parseAnnotationTypeBody(cn,pn.getChild("body"));
284     return cn;
285   }
286
287   private void parseAnnotationTypeBody(ClassDescriptor cn, ParseNode pn) {
288     ParseNode list_node=pn.getChild("annotation_type_element_list");
289     if(list_node!=null) {
290       ParseNodeVector pnv = list_node.getChildren();
291       for (int i = 0; i < pnv.size(); i++) {
292         ParseNode element_node = pnv.elementAt(i);
293         if (isNode(element_node, "annotation_type_element_declaration")) {
294           ParseNodeVector elementProps = element_node.getChildren();
295           String identifier=null;
296           TypeDescriptor type=null;
297           Modifiers modifiers=new Modifiers();
298           for(int eidx=0; eidx<elementProps.size(); eidx++) {
299             ParseNode prop_node=elementProps.elementAt(eidx);
300             if(isNode(prop_node,"name")) {
301               identifier=prop_node.getTerminal();
302             } else if(isNode(prop_node,"type")) {
303               type=parseTypeDescriptor(prop_node);
304             } else if(isNode(prop_node,"modifier")) {
305               modifiers=parseModifiersList(prop_node);
306             }
307           }
308           cn.addField(new FieldDescriptor(modifiers, type, identifier, null, false));
309         }
310       }
311     }
312   }
313
314   public ClassDescriptor parseInterfaceDecl(ParseNode pn, String packageName) {
315     ClassDescriptor cn;
316     if(packageName == null) {
317       cn=new ClassDescriptor(pn.getChild("name").getTerminal(), true);
318     } else  {
319       String newClassname = packageName + "." + pn.getChild("name").getTerminal();
320       cn= new ClassDescriptor(packageName, newClassname, true);
321     }
322
323     cn.setImports(mandatoryImports);
324     //cn.setAsInterface();
325     if (!isEmpty(pn.getChild("superIF").getTerminal())) {
326       /* parse inherited interface name */
327       ParseNode snlist=pn.getChild("superIF").getChild("extend_interface_list");
328       ParseNodeVector pnv=snlist.getChildren();
329       for(int i=0; i<pnv.size(); i++) {
330         ParseNode decl=pnv.elementAt(i);
331         if (isNode(decl,"type")) {
332           NameDescriptor nd=parseClassName(decl.getChild("class").getChild("name"));
333           cn.addSuperInterface(nd.toString());
334         }
335       }
336     }
337     cn.setModifiers(parseModifiersList(pn.getChild("modifiers")));
338     parseInterfaceBody(cn, pn.getChild("interfacebody"));
339     return cn;
340   }
341
342   private void parseInterfaceBody(ClassDescriptor cn, ParseNode pn) {
343     assert(cn.isInterface());
344     ParseNode decls=pn.getChild("interface_member_declaration_list");
345     if (decls!=null) {
346       ParseNodeVector pnv=decls.getChildren();
347       for(int i=0; i<pnv.size(); i++) {
348         ParseNode decl=pnv.elementAt(i);
349         if (isNode(decl,"constant")) {
350           parseInterfaceConstant(cn,decl);
351         } else if (isNode(decl,"method")) {
352           parseInterfaceMethod(cn,decl.getChild("method_declaration"));
353         } else throw new Error();
354       }
355     }
356   }
357
358
359
360   private void parseInterfaceConstant(ClassDescriptor cn, ParseNode pn) {
361     if (pn!=null) {
362       parseFieldDecl(cn,pn.getChild("field_declaration"));
363       return;
364     }
365     throw new Error();
366   }
367
368   private void parseInterfaceMethod(ClassDescriptor cn, ParseNode pn) {
369     ParseNode headern=pn.getChild("header");
370     ParseNode bodyn=pn.getChild("body");
371     MethodDescriptor md=parseMethodHeader(headern.getChild("method_header"));
372     md.getModifiers().addModifier(Modifiers.PUBLIC);
373     md.getModifiers().addModifier(Modifiers.ABSTRACT);
374     try {
375       BlockNode bn=parseBlock(bodyn);
376       cn.addMethod(md);
377       state.addTreeCode(md,bn);
378
379       // this is a hack for investigating new language features
380       // at the AST level, someday should evolve into a nice compiler
381       // option *wink*
382       //if( cn.getSymbol().equals( ***put a class in here like:     "Test" ) &&
383       //    md.getSymbol().equals( ***put your method in here like: "main" )
384       //) {
385       //  bn.setStyle( BlockNode.NORMAL );
386       //  System.out.println( bn.printNode( 0 ) );
387       //}
388
389     } catch (Exception e) {
390       System.out.println("Error with method:"+md.getSymbol());
391       e.printStackTrace();
392       throw new Error();
393     } catch (Error e) {
394       System.out.println("Error with method:"+md.getSymbol());
395       e.printStackTrace();
396       throw new Error();
397     }
398   }
399
400   public TaskDescriptor parseTaskDecl(ParseNode pn) {
401     TaskDescriptor td=new TaskDescriptor(pn.getChild("name").getTerminal());
402     ParseNode bodyn=pn.getChild("body");
403     BlockNode bn=parseBlock(bodyn);
404     parseParameterList(td, pn);
405     state.addTreeCode(td,bn);
406     if (pn.getChild("flag_effects_list")!=null)
407       td.addFlagEffects(parseFlags(pn.getChild("flag_effects_list")));
408     return td;
409   }
410
411   public Vector parseFlags(ParseNode pn) {
412     Vector vfe=new Vector();
413     ParseNodeVector pnv=pn.getChildren();
414     for(int i=0; i<pnv.size(); i++) {
415       ParseNode fn=pnv.elementAt(i);
416       FlagEffects fe=parseFlagEffects(fn);
417       vfe.add(fe);
418     }
419     return vfe;
420   }
421
422   public FlagEffects parseFlagEffects(ParseNode pn) {
423     if (isNode(pn,"flag_effect")) {
424       String flagname=pn.getChild("name").getTerminal();
425       FlagEffects fe=new FlagEffects(flagname);
426       if (pn.getChild("flag_list")!=null)
427         parseFlagEffect(fe, pn.getChild("flag_list"));
428       if (pn.getChild("tag_list")!=null)
429         parseTagEffect(fe, pn.getChild("tag_list"));
430       return fe;
431     } else throw new Error();
432   }
433
434   public void parseTagEffect(FlagEffects fes, ParseNode pn) {
435     ParseNodeVector pnv=pn.getChildren();
436     for(int i=0; i<pnv.size(); i++) {
437       ParseNode pn2=pnv.elementAt(i);
438       boolean status=true;
439       if (isNode(pn2,"not")) {
440         status=false;
441         pn2=pn2.getChild("name");
442       }
443       String name=pn2.getTerminal();
444       fes.addTagEffect(new TagEffect(name,status));
445     }
446   }
447
448   public void parseFlagEffect(FlagEffects fes, ParseNode pn) {
449     ParseNodeVector pnv=pn.getChildren();
450     for(int i=0; i<pnv.size(); i++) {
451       ParseNode pn2=pnv.elementAt(i);
452       boolean status=true;
453       if (isNode(pn2,"not")) {
454         status=false;
455         pn2=pn2.getChild("name");
456       }
457       String name=pn2.getTerminal();
458       fes.addEffect(new FlagEffect(name,status));
459     }
460   }
461
462   public FlagExpressionNode parseFlagExpression(ParseNode pn) {
463     if (isNode(pn,"or")) {
464       ParseNodeVector pnv=pn.getChildren();
465       ParseNode left=pnv.elementAt(0);
466       ParseNode right=pnv.elementAt(1);
467       return new FlagOpNode(parseFlagExpression(left), parseFlagExpression(right), new Operation(Operation.LOGIC_OR));
468     } else if (isNode(pn,"and")) {
469       ParseNodeVector pnv=pn.getChildren();
470       ParseNode left=pnv.elementAt(0);
471       ParseNode right=pnv.elementAt(1);
472       return new FlagOpNode(parseFlagExpression(left), parseFlagExpression(right), new Operation(Operation.LOGIC_AND));
473     } else if (isNode(pn, "not")) {
474       ParseNodeVector pnv=pn.getChildren();
475       ParseNode left=pnv.elementAt(0);
476       return new FlagOpNode(parseFlagExpression(left), new Operation(Operation.LOGIC_NOT));
477
478     } else if (isNode(pn,"name")) {
479       return new FlagNode(pn.getTerminal());
480     } else {
481       throw new Error();
482     }
483   }
484
485   public Vector parseChecks(ParseNode pn) {
486     Vector ccs=new Vector();
487     ParseNodeVector pnv=pn.getChildren();
488     for(int i=0; i<pnv.size(); i++) {
489       ParseNode fn=pnv.elementAt(i);
490       ConstraintCheck cc=parseConstraintCheck(fn);
491       ccs.add(cc);
492     }
493     return ccs;
494   }
495
496   public ConstraintCheck parseConstraintCheck(ParseNode pn) {
497     if (isNode(pn,"cons_check")) {
498       String specname=pn.getChild("name").getChild("identifier").getTerminal();
499       Vector[] args=parseConsArgumentList(pn);
500       ConstraintCheck cc=new ConstraintCheck(specname);
501       for(int i=0; i<args[0].size(); i++) {
502         cc.addVariable((String)args[0].get(i));
503         cc.addArgument((ExpressionNode)args[1].get(i));
504       }
505       return cc;
506     } else throw new Error();
507   }
508
509   public void parseParameterList(TaskDescriptor td, ParseNode pn) {
510
511     boolean optional;
512     ParseNode paramlist=pn.getChild("task_parameter_list");
513     if (paramlist==null)
514       return;
515     ParseNodeVector pnv=paramlist.getChildren();
516     for(int i=0; i<pnv.size(); i++) {
517       ParseNode paramn=pnv.elementAt(i);
518       if(paramn.getChild("optional")!=null) {
519         optional = true;
520         paramn = paramn.getChild("optional").getFirstChild();
521         System.out.println("OPTIONAL FOUND!!!!!!!");
522       } else { optional = false;
523                System.out.println("NOT OPTIONAL"); }
524
525       TypeDescriptor type=parseTypeDescriptor(paramn);
526
527       String paramname=paramn.getChild("single").getTerminal();
528       FlagExpressionNode fen=null;
529       if (paramn.getChild("flag")!=null)
530         fen=parseFlagExpression(paramn.getChild("flag").getFirstChild());
531
532       ParseNode tagnode=paramn.getChild("tag");
533
534       TagExpressionList tel=null;
535       if (tagnode!=null) {
536         tel=parseTagExpressionList(tagnode);
537       }
538
539       td.addParameter(type,paramname,fen, tel, optional);
540     }
541   }
542
543   public TagExpressionList parseTagExpressionList(ParseNode pn) {
544     //BUG FIX: change pn.getChildren() to pn.getChild("tag_expression_list").getChildren()
545     //To test, feed in any input program that uses tags
546     ParseNodeVector pnv=pn.getChild("tag_expression_list").getChildren();
547     TagExpressionList tel=new TagExpressionList();
548     for(int i=0; i<pnv.size(); i++) {
549       ParseNode tn=pnv.elementAt(i);
550       String type=tn.getChild("type").getTerminal();
551       String name=tn.getChild("single").getTerminal();
552       tel.addTag(type, name);
553     }
554     return tel;
555   }
556
557   public ClassDescriptor parseTypeDecl(ParseNode pn, String packageName) {
558     ClassDescriptor cn;
559     // if is in no package, then create a class descriptor with just the name.
560     // else add the package on
561     if(packageName == null) {
562       cn=new ClassDescriptor(pn.getChild("name").getTerminal(), false);
563     } else  {
564       String newClassname = packageName + "." + pn.getChild("name").getTerminal();
565       cn= new ClassDescriptor(packageName, newClassname, false);
566     }
567     cn.setImports(mandatoryImports);
568     if (!isEmpty(pn.getChild("super").getTerminal())) {
569       /* parse superclass name */
570       ParseNode snn=pn.getChild("super").getChild("type").getChild("class").getChild("name");
571       NameDescriptor nd=parseClassName(snn);
572       cn.setSuper(nd.toString());
573     } else {
574       if (!(cn.getSymbol().equals(TypeUtil.ObjectClass)||
575             cn.getSymbol().equals(TypeUtil.TagClass)))
576         cn.setSuper(TypeUtil.ObjectClass);
577     }
578     // check inherited interfaces
579     if (!isEmpty(pn.getChild("superIF").getTerminal())) {
580       /* parse inherited interface name */
581       ParseNode snlist=pn.getChild("superIF").getChild("interface_type_list");
582       ParseNodeVector pnv=snlist.getChildren();
583       for(int i=0; i<pnv.size(); i++) {
584         ParseNode decl=pnv.elementAt(i);
585         if (isNode(decl,"type")) {
586           NameDescriptor nd=parseClassName(decl.getChild("class").getChild("name"));
587           cn.addSuperInterface(nd.toString());
588         }
589       }
590     }
591     cn.setModifiers(parseModifiersList(pn.getChild("modifiers")));
592     parseClassBody(cn, pn.getChild("classbody"));
593
594     boolean hasConstructor = false;
595     for(Iterator method_it=cn.getMethods(); method_it.hasNext(); ) {
596       MethodDescriptor md=(MethodDescriptor)method_it.next();
597       hasConstructor |= md.isConstructor();
598     }
599     if((!hasConstructor) && (!cn.isEnum())) {
600       // add a default constructor for this class
601       MethodDescriptor md = new MethodDescriptor(new Modifiers(Modifiers.PUBLIC),
602                                                  cn.getSymbol(), false);
603       BlockNode bn=new BlockNode();
604       state.addTreeCode(md,bn);
605       md.setDefaultConstructor();
606       cn.addMethod(md);
607     }
608     return cn;
609   }
610
611   private void parseClassBody(ClassDescriptor cn, ParseNode pn) {
612     ParseNode decls=pn.getChild("class_body_declaration_list");
613     if (decls!=null) {
614       ParseNodeVector pnv=decls.getChildren();
615       for(int i=0; i<pnv.size(); i++) {
616         ParseNode decl=pnv.elementAt(i);
617         if (isNode(decl,"member")) {
618           parseClassMember(cn,decl);
619         } else if (isNode(decl,"constructor")) {
620           parseConstructorDecl(cn,decl.getChild("constructor_declaration"));
621         } else if (isNode(decl, "static_block")) {
622           parseStaticBlockDecl(cn, decl.getChild("static_block_declaration"));
623         } else if (isNode(decl,"block")) {
624         } else throw new Error();
625       }
626     }
627   }
628
629   private void parseClassMember(ClassDescriptor cn, ParseNode pn) {
630     ParseNode fieldnode=pn.getChild("field");
631     if (fieldnode!=null) {
632       parseFieldDecl(cn,fieldnode.getChild("field_declaration"));
633       return;
634     }
635     ParseNode methodnode=pn.getChild("method");
636     if (methodnode!=null) {
637       parseMethodDecl(cn,methodnode.getChild("method_declaration"));
638       return;
639     }
640     ParseNode innerclassnode=pn.getChild("inner_class_declaration");
641     if (innerclassnode!=null) {
642       parseInnerClassDecl(cn,innerclassnode);
643       return;
644     }
645     ParseNode enumnode=pn.getChild("enum_declaration");
646     if (enumnode!=null) {
647       parseEnumDecl(cn,enumnode);
648       return;
649     }
650     ParseNode flagnode=pn.getChild("flag");
651     if (flagnode!=null) {
652       parseFlagDecl(cn, flagnode.getChild("flag_declaration"));
653       return;
654     }
655     // in case there are empty node
656     ParseNode emptynode=pn.getChild("empty");
657     if(emptynode != null) {
658       return;
659     }
660     throw new Error();
661   }
662
663   private ClassDescriptor parseInnerClassDecl(ClassDescriptor cn, ParseNode pn) {
664     ClassDescriptor icn=new ClassDescriptor(pn.getChild("name").getTerminal(), false);
665     icn.setImports(mandatoryImports);
666     icn.setAsInnerClass();
667     icn.setSurroundingClass(cn.getSymbol());
668     icn.setSurrounding(cn);
669     cn.addInnerClass(icn);
670     if (!isEmpty(pn.getChild("super").getTerminal())) {
671       /* parse superclass name */
672       ParseNode snn=pn.getChild("super").getChild("type").getChild("class").getChild("name");
673       NameDescriptor nd=parseClassName(snn);
674       icn.setSuper(nd.toString());
675     } else {
676       if (!(icn.getSymbol().equals(TypeUtil.ObjectClass)||
677             icn.getSymbol().equals(TypeUtil.TagClass)))
678         icn.setSuper(TypeUtil.ObjectClass);
679     }
680     // check inherited interfaces
681     if (!isEmpty(pn.getChild("superIF").getTerminal())) {
682       /* parse inherited interface name */
683       ParseNode snlist=pn.getChild("superIF").getChild("interface_type_list");
684       ParseNodeVector pnv=snlist.getChildren();
685       for(int i=0; i<pnv.size(); i++) {
686         ParseNode decl=pnv.elementAt(i);
687         if (isNode(decl,"type")) {
688           NameDescriptor nd=parseClassName(decl.getChild("class").getChild("name"));
689           icn.addSuperInterface(nd.toString());
690         }
691       }
692     }
693     icn.setModifiers(parseModifiersList(pn.getChild("modifiers")));
694     if(!icn.isStatic()) {
695       throw new Error("Error: inner class " + icn.getSymbol() + " in Class " +
696                       cn.getSymbol() + " is not a nested class and is not supported yet!");
697     }
698     parseClassBody(icn, pn.getChild("classbody"));
699     return icn;
700   }
701
702   private TypeDescriptor parseTypeDescriptor(ParseNode pn) {
703     ParseNode tn=pn.getChild("type");
704     String type_st=tn.getTerminal();
705     if(type_st.equals("byte")) {
706       return state.getTypeDescriptor(TypeDescriptor.BYTE);
707     } else if(type_st.equals("short")) {
708       return state.getTypeDescriptor(TypeDescriptor.SHORT);
709     } else if(type_st.equals("boolean")) {
710       return state.getTypeDescriptor(TypeDescriptor.BOOLEAN);
711     } else if(type_st.equals("int")) {
712       return state.getTypeDescriptor(TypeDescriptor.INT);
713     } else if(type_st.equals("long")) {
714       return state.getTypeDescriptor(TypeDescriptor.LONG);
715     } else if(type_st.equals("char")) {
716       return state.getTypeDescriptor(TypeDescriptor.CHAR);
717     } else if(type_st.equals("float")) {
718       return state.getTypeDescriptor(TypeDescriptor.FLOAT);
719     } else if(type_st.equals("double")) {
720       return state.getTypeDescriptor(TypeDescriptor.DOUBLE);
721     } else if(type_st.equals("class")) {
722       ParseNode nn=tn.getChild("class");
723       return state.getTypeDescriptor(parseClassName(nn.getChild("name")));
724     } else if(type_st.equals("array")) {
725       ParseNode nn=tn.getChild("array");
726       TypeDescriptor td=parseTypeDescriptor(nn.getChild("basetype"));
727       Integer numdims=(Integer)nn.getChild("dims").getLiteral();
728       for(int i=0; i<numdims.intValue(); i++)
729         td=td.makeArray(state);
730       return td;
731     } else {
732       System.out.println(pn.PPrint(2, true));
733       throw new Error();
734     }
735   }
736
737   //Needed to separate out top level call since if a base exists,
738   //we do not want to apply our resolveName function (i.e. deal with imports)
739   //otherwise, if base == null, we do just want to resolve name.
740   private NameDescriptor parseClassName(ParseNode nn) {
741     ParseNode base=nn.getChild("base");
742     ParseNode id=nn.getChild("identifier");
743     String classname = id.getTerminal();
744     if (base==null) {
745       return new NameDescriptor(resolveName(classname));
746     }
747     return new NameDescriptor(parseClassNameRecursive(base.getChild("name")),classname);
748   }
749
750   private NameDescriptor parseClassNameRecursive(ParseNode nn) {
751     ParseNode base=nn.getChild("base");
752     ParseNode id=nn.getChild("identifier");
753     String classname = id.getTerminal();
754     if (base==null) {
755       return new NameDescriptor(classname);
756     }
757     return new NameDescriptor(parseClassNameRecursive(base.getChild("name")),classname);
758   }
759
760   //This will get the mapping of a terminal class name
761   //to a canonical classname (with imports/package locations in them)
762   private String resolveName(String terminal) {
763     if(mandatoryImports.containsKey(terminal)) {
764       return (String) mandatoryImports.get(terminal);
765     } else {
766       if(multiimports.containsKey(terminal)) {
767         //Test for error
768         Object o = multiimports.get(terminal);
769         if(o instanceof Error) {
770           throw new Error("Class " + terminal + " is ambiguous. Cause: more than 1 package import contain the same class.");
771         } else {
772           //At this point, if we found a unique class
773           //we can treat it as a single, mandatory import.
774           mandatoryImports.put(terminal, o);
775           return (String) o;
776         }
777       }
778     }
779
780     return terminal;
781   }
782
783   //only function difference between this and parseName() is that this
784   //does not look for a import mapping.
785   private NameDescriptor parseName(ParseNode nn) {
786     ParseNode base=nn.getChild("base");
787     ParseNode id=nn.getChild("identifier");
788     if (base==null) {
789       return new NameDescriptor(id.getTerminal());
790     }
791     return new NameDescriptor(parseName(base.getChild("name")),id.getTerminal());
792   }
793
794   private void parseFlagDecl(ClassDescriptor cn,ParseNode pn) {
795     String name=pn.getChild("name").getTerminal();
796     FlagDescriptor flag=new FlagDescriptor(name);
797     if (pn.getChild("external")!=null)
798       flag.makeExternal();
799     cn.addFlag(flag);
800   }
801
802   private void parseFieldDecl(ClassDescriptor cn,ParseNode pn) {
803     ParseNode mn=pn.getChild("modifier");
804     Modifiers m=parseModifiersList(mn);
805     if(cn.isInterface()) {
806       // TODO add version for normal Java later
807       // Can only be PUBLIC or STATIC or FINAL
808       if((m.isAbstract()) || (m.isAtomic()) || (m.isNative())
809          || (m.isSynchronized())) {
810         throw new Error("Error: field in Interface " + cn.getSymbol() + "can only be PUBLIC or STATIC or FINAL");
811       }
812       m.addModifier(Modifiers.PUBLIC);
813       m.addModifier(Modifiers.STATIC);
814       m.addModifier(Modifiers.FINAL);
815     }
816
817     ParseNode tn=pn.getChild("type");
818     TypeDescriptor t=parseTypeDescriptor(tn);
819     ParseNode vn=pn.getChild("variables").getChild("variable_declarators_list");
820     ParseNodeVector pnv=vn.getChildren();
821     boolean isglobal=pn.getChild("global")!=null;
822
823     for(int i=0; i<pnv.size(); i++) {
824       ParseNode vardecl=pnv.elementAt(i);
825       ParseNode tmp=vardecl;
826       TypeDescriptor arrayt=t;
827       while (tmp.getChild("single")==null) {
828         arrayt=arrayt.makeArray(state);
829         tmp=tmp.getChild("array");
830       }
831       String identifier=tmp.getChild("single").getTerminal();
832       ParseNode epn=vardecl.getChild("initializer");
833
834       ExpressionNode en=null;
835       if (epn!=null) {
836         en=parseExpression(epn.getFirstChild());
837         en.setNumLine(epn.getFirstChild().getLine());
838         if(m.isStatic()) {
839           // for static field, the initializer should be considered as a
840           // static block
841           boolean isfirst = false;
842           MethodDescriptor md = (MethodDescriptor)cn.getMethodTable().getFromSameScope("staticblocks");
843           if(md == null) {
844             // the first static block for this class
845             Modifiers m_i=new Modifiers();
846             m_i.addModifier(Modifiers.STATIC);
847             md = new MethodDescriptor(m_i, "staticblocks", false);
848             md.setAsStaticBlock();
849             isfirst = true;
850           }
851           if(isfirst) {
852             cn.addMethod(md);
853           }
854           cn.incStaticBlocks();
855           BlockNode bn=new BlockNode();
856           NameNode nn=new NameNode(new NameDescriptor(identifier));
857           nn.setNumLine(en.getNumLine());
858           AssignmentNode an=new AssignmentNode(nn,en,new AssignOperation(1));
859           an.setNumLine(pn.getLine());
860           bn.addBlockStatement(new BlockExpressionNode(an));
861           if(isfirst) {
862             state.addTreeCode(md,bn);
863           } else {
864             BlockNode obn = state.getMethodBody(md);
865             for(int ii = 0; ii < bn.size(); ii++) {
866               BlockStatementNode bsn = bn.get(ii);
867               obn.addBlockStatement(bsn);
868             }
869             state.addTreeCode(md, obn);
870             bn = null;
871           }
872           en = null;
873         }
874       }
875
876       cn.addField(new FieldDescriptor(m, arrayt, identifier, en, isglobal));
877       assignAnnotationsToType(m,arrayt);
878     }
879   }
880
881   private void assignAnnotationsToType(Modifiers modifiers, TypeDescriptor type) {
882     Vector<AnnotationDescriptor> annotations=modifiers.getAnnotations();
883     for(int i=0; i<annotations.size(); i++) {
884       // it only supports a marker annotation
885       AnnotationDescriptor an=annotations.elementAt(i);
886       type.addAnnotationMarker(an);
887     }
888   }
889
890   int innerCount=0;
891
892   private ExpressionNode parseExpression(ParseNode pn) {
893     if (isNode(pn,"assignment"))
894       return parseAssignmentExpression(pn);
895     else if (isNode(pn,"logical_or")||isNode(pn,"logical_and")||
896              isNode(pn,"bitwise_or")||isNode(pn,"bitwise_xor")||
897              isNode(pn,"bitwise_and")||isNode(pn,"equal")||
898              isNode(pn,"not_equal")||isNode(pn,"comp_lt")||
899              isNode(pn,"comp_lte")||isNode(pn,"comp_gt")||
900              isNode(pn,"comp_gte")||isNode(pn,"leftshift")||
901              isNode(pn,"rightshift")||isNode(pn,"sub")||
902              isNode(pn,"urightshift")||isNode(pn,"sub")||
903              isNode(pn,"add")||isNode(pn,"mult")||
904              isNode(pn,"div")||isNode(pn,"mod")) {
905       ParseNodeVector pnv=pn.getChildren();
906       ParseNode left=pnv.elementAt(0);
907       ParseNode right=pnv.elementAt(1);
908       Operation op=new Operation(pn.getLabel());
909       OpNode on=new OpNode(parseExpression(left),parseExpression(right),op);
910       on.setNumLine(pn.getLine());
911       return on;
912     } else if (isNode(pn,"unaryplus")||
913                isNode(pn,"unaryminus")||
914                isNode(pn,"not")||
915                isNode(pn,"comp")) {
916       ParseNode left=pn.getFirstChild();
917       Operation op=new Operation(pn.getLabel());
918       OpNode on=new OpNode(parseExpression(left),op);
919       on.setNumLine(pn.getLine());
920       return on;
921     } else if (isNode(pn,"postinc")||
922                isNode(pn,"postdec")) {
923       ParseNode left=pn.getFirstChild();
924       AssignOperation op=new AssignOperation(pn.getLabel());
925       AssignmentNode an=new AssignmentNode(parseExpression(left),null,op);
926       an.setNumLine(pn.getLine());
927       return an;
928
929     } else if (isNode(pn,"preinc")||
930                isNode(pn,"predec")) {
931       ParseNode left=pn.getFirstChild();
932       AssignOperation op=isNode(pn,"preinc")?new AssignOperation(AssignOperation.PLUSEQ):new AssignOperation(AssignOperation.MINUSEQ);
933       AssignmentNode an=new AssignmentNode(parseExpression(left),
934                                            new LiteralNode("integer",new Integer(1)),op);
935       an.setNumLine(pn.getLine());
936       return an;
937     } else if (isNode(pn,"literal")) {
938       String literaltype=pn.getTerminal();
939       ParseNode literalnode=pn.getChild(literaltype);
940       Object literal_obj=literalnode.getLiteral();
941       LiteralNode ln=new LiteralNode(literaltype, literal_obj);
942       ln.setNumLine(pn.getLine());
943       return ln;
944     } else if (isNode(pn, "createobject")) {
945       TypeDescriptor td = parseTypeDescriptor(pn);
946
947       Vector args = parseArgumentList(pn);
948       boolean isglobal = pn.getChild("global") != null || pn.getChild("scratch") != null;
949       String disjointId = null;
950       if (pn.getChild("disjoint") != null) {
951         disjointId = pn.getChild("disjoint").getTerminal();
952       }
953       CreateObjectNode con = new CreateObjectNode(td, isglobal, disjointId);
954       con.setNumLine(pn.getLine());
955       for (int i = 0; i < args.size(); i++) {
956         con.addArgument((ExpressionNode) args.get(i));
957       }
958       /* Could have flag set or tag added here */
959       if (pn.getChild("flag_list") != null || pn.getChild("tag_list") != null) {
960         FlagEffects fe = new FlagEffects(null);
961         if (pn.getChild("flag_list") != null)
962           parseFlagEffect(fe, pn.getChild("flag_list"));
963
964         if (pn.getChild("tag_list") != null)
965           parseTagEffect(fe, pn.getChild("tag_list"));
966         con.addFlagEffects(fe);
967       }
968
969       return con;
970     } else if (isNode(pn,"createobjectcls")) {
971       //TODO:::  FIX BUG!!!  static fields in caller context need to become parameters
972       TypeDescriptor td=parseTypeDescriptor(pn);
973       innerCount++;
974       ClassDescriptor cnnew=new ClassDescriptor(td.getSymbol()+"$"+innerCount, false);
975       cnnew.setImports(mandatoryImports);
976       cnnew.setSuper(td.getSymbol());
977       parseClassBody(cnnew, pn.getChild("decl").getChild("classbody"));
978       Vector args=parseArgumentList(pn);
979
980       CreateObjectNode con=new CreateObjectNode(td, false, null);
981       con.setNumLine(pn.getLine());
982       for(int i=0; i<args.size(); i++) {
983         con.addArgument((ExpressionNode)args.get(i));
984       }
985
986       return con;
987     } else if (isNode(pn,"createarray")) {
988       //System.out.println(pn.PPrint(3,true));
989       boolean isglobal=pn.getChild("global")!=null||
990                         pn.getChild("scratch")!=null;
991       String disjointId=null;
992       if( pn.getChild("disjoint") != null) {
993         disjointId = pn.getChild("disjoint").getTerminal();
994       }
995       TypeDescriptor td=parseTypeDescriptor(pn);
996       Vector args=parseDimExprs(pn);
997       int num=0;
998       if (pn.getChild("dims_opt").getLiteral()!=null)
999         num=((Integer)pn.getChild("dims_opt").getLiteral()).intValue();
1000       for(int i=0; i<(args.size()+num); i++)
1001         td=td.makeArray(state);
1002       CreateObjectNode con=new CreateObjectNode(td, isglobal, disjointId);
1003       con.setNumLine(pn.getLine());
1004       for(int i=0; i<args.size(); i++) {
1005         con.addArgument((ExpressionNode)args.get(i));
1006       }
1007       return con;
1008     }
1009     if (isNode(pn,"createarray2")) {
1010       TypeDescriptor td=parseTypeDescriptor(pn);
1011       int num=0;
1012       if (pn.getChild("dims_opt").getLiteral()!=null)
1013         num=((Integer)pn.getChild("dims_opt").getLiteral()).intValue();
1014       for(int i=0; i<num; i++)
1015         td=td.makeArray(state);
1016       CreateObjectNode con=new CreateObjectNode(td, false, null);
1017       con.setNumLine(pn.getLine());
1018       ParseNode ipn = pn.getChild("initializer");
1019       Vector initializers=parseVariableInitializerList(ipn);
1020       ArrayInitializerNode ain = new ArrayInitializerNode(initializers);
1021       ain.setNumLine(pn.getLine());
1022       con.addArrayInitializer(ain);
1023       return con;
1024     } else if (isNode(pn,"name")) {
1025       NameDescriptor nd=parseName(pn);
1026       NameNode nn=new NameNode(nd);
1027       nn.setNumLine(pn.getLine());
1028       return nn;
1029     } else if (isNode(pn,"this")) {
1030       NameDescriptor nd=new NameDescriptor("this");
1031       NameNode nn=new NameNode(nd);
1032       nn.setNumLine(pn.getLine());
1033       return nn;
1034     } else if (isNode(pn,"isavailable")) {
1035       NameDescriptor nd=new NameDescriptor(pn.getTerminal());
1036       NameNode nn=new NameNode(nd);
1037       nn.setNumLine(pn.getLine());
1038       return new OpNode(nn,null,new Operation(Operation.ISAVAILABLE));
1039     } else if (isNode(pn,"methodinvoke1")) {
1040       NameDescriptor nd=parseName(pn.getChild("name"));
1041       Vector args=parseArgumentList(pn);
1042       MethodInvokeNode min=new MethodInvokeNode(nd);
1043       min.setNumLine(pn.getLine());
1044       for(int i=0; i<args.size(); i++) {
1045         min.addArgument((ExpressionNode)args.get(i));
1046       }
1047       return min;
1048     } else if (isNode(pn,"methodinvoke2")) {
1049       String methodid=pn.getChild("id").getTerminal();
1050       ExpressionNode exp=parseExpression(pn.getChild("base").getFirstChild());
1051       Vector args=parseArgumentList(pn);
1052       MethodInvokeNode min=new MethodInvokeNode(methodid,exp);
1053       min.setNumLine(pn.getLine());
1054       for(int i=0; i<args.size(); i++) {
1055         min.addArgument((ExpressionNode)args.get(i));
1056       }
1057       return min;
1058     } else if (isNode(pn,"fieldaccess")) {
1059       ExpressionNode en=parseExpression(pn.getChild("base").getFirstChild());
1060       String fieldname=pn.getChild("field").getTerminal();
1061
1062       FieldAccessNode fan=new FieldAccessNode(en,fieldname);
1063       fan.setNumLine(pn.getLine());
1064       return fan;
1065     } else if (isNode(pn,"arrayaccess")) {
1066       ExpressionNode en=parseExpression(pn.getChild("base").getFirstChild());
1067       ExpressionNode index=parseExpression(pn.getChild("index").getFirstChild());
1068       ArrayAccessNode aan=new ArrayAccessNode(en,index);
1069       aan.setNumLine(pn.getLine());
1070       return aan;
1071     } else if (isNode(pn,"cast1")) {
1072       try {
1073         CastNode cn=new CastNode(parseTypeDescriptor(pn.getChild("type")),parseExpression(pn.getChild("exp").getFirstChild()));
1074         cn.setNumLine(pn.getLine());
1075         return cn;
1076       } catch (Exception e) {
1077         System.out.println(pn.PPrint(1,true));
1078         e.printStackTrace();
1079         throw new Error();
1080       }
1081     } else if (isNode(pn,"cast2")) {
1082       CastNode cn=new CastNode(parseExpression(pn.getChild("type").getFirstChild()),parseExpression(pn.getChild("exp").getFirstChild()));
1083       cn.setNumLine(pn.getLine());
1084       return cn;
1085     } else if (isNode(pn, "getoffset")) {
1086       TypeDescriptor td=parseTypeDescriptor(pn);
1087       String fieldname = pn.getChild("field").getTerminal();
1088       //System.out.println("Checking the values of: "+ " td.toString()= " + td.toString()+ "  fieldname= " + fieldname);
1089       return new OffsetNode(td, fieldname);
1090     } else if (isNode(pn, "tert")) {
1091
1092       TertiaryNode tn=new TertiaryNode(parseExpression(pn.getChild("cond").getFirstChild()),
1093                                        parseExpression(pn.getChild("trueexpr").getFirstChild()),
1094                                        parseExpression(pn.getChild("falseexpr").getFirstChild()) );
1095       tn.setNumLine(pn.getLine());
1096
1097       return tn;
1098     } else if (isNode(pn, "instanceof")) {
1099       ExpressionNode exp=parseExpression(pn.getChild("exp").getFirstChild());
1100       TypeDescriptor t=parseTypeDescriptor(pn);
1101       InstanceOfNode ion=new InstanceOfNode(exp,t);
1102       ion.setNumLine(pn.getLine());
1103       return ion;
1104     } else if (isNode(pn, "array_initializer")) {
1105       Vector initializers=parseVariableInitializerList(pn);
1106       return new ArrayInitializerNode(initializers);
1107     } else if (isNode(pn, "class_type")) {
1108       TypeDescriptor td=parseTypeDescriptor(pn);
1109       ClassTypeNode ctn=new ClassTypeNode(td);
1110       ctn.setNumLine(pn.getLine());
1111       return ctn;
1112     } else if (isNode(pn, "empty")) {
1113       return null;
1114     } else {
1115       System.out.println("---------------------");
1116       System.out.println(pn.PPrint(3,true));
1117       throw new Error();
1118     }
1119   }
1120
1121   private Vector parseDimExprs(ParseNode pn) {
1122     Vector arglist=new Vector();
1123     ParseNode an=pn.getChild("dim_exprs");
1124     if (an==null)       /* No argument list */
1125       return arglist;
1126     ParseNodeVector anv=an.getChildren();
1127     for(int i=0; i<anv.size(); i++) {
1128       arglist.add(parseExpression(anv.elementAt(i)));
1129     }
1130     return arglist;
1131   }
1132
1133   private Vector parseArgumentList(ParseNode pn) {
1134     Vector arglist=new Vector();
1135     ParseNode an=pn.getChild("argument_list");
1136     if (an==null)       /* No argument list */
1137       return arglist;
1138     ParseNodeVector anv=an.getChildren();
1139     for(int i=0; i<anv.size(); i++) {
1140       arglist.add(parseExpression(anv.elementAt(i)));
1141     }
1142     return arglist;
1143   }
1144
1145   private Vector[] parseConsArgumentList(ParseNode pn) {
1146     Vector arglist=new Vector();
1147     Vector varlist=new Vector();
1148     ParseNode an=pn.getChild("cons_argument_list");
1149     if (an==null)       /* No argument list */
1150       return new Vector[] {varlist, arglist};
1151     ParseNodeVector anv=an.getChildren();
1152     for(int i=0; i<anv.size(); i++) {
1153       ParseNode cpn=anv.elementAt(i);
1154       ParseNode var=cpn.getChild("var");
1155       ParseNode exp=cpn.getChild("exp").getFirstChild();
1156       varlist.add(var.getTerminal());
1157       arglist.add(parseExpression(exp));
1158     }
1159     return new Vector[] {varlist, arglist};
1160   }
1161
1162   private Vector parseVariableInitializerList(ParseNode pn) {
1163     Vector varInitList=new Vector();
1164     ParseNode vin=pn.getChild("var_init_list");
1165     if (vin==null)       /* No argument list */
1166       return varInitList;
1167     ParseNodeVector vinv=vin.getChildren();
1168     for(int i=0; i<vinv.size(); i++) {
1169       varInitList.add(parseExpression(vinv.elementAt(i)));
1170     }
1171     return varInitList;
1172   }
1173
1174   private ExpressionNode parseAssignmentExpression(ParseNode pn) {
1175     AssignOperation ao=new AssignOperation(pn.getChild("op").getTerminal());
1176     ParseNodeVector pnv=pn.getChild("args").getChildren();
1177
1178     AssignmentNode an=new AssignmentNode(parseExpression(pnv.elementAt(0)),parseExpression(pnv.elementAt(1)),ao);
1179     an.setNumLine(pn.getLine());
1180     return an;
1181   }
1182
1183
1184   private void parseMethodDecl(ClassDescriptor cn, ParseNode pn) {
1185     ParseNode headern=pn.getChild("method_header");
1186     ParseNode bodyn=pn.getChild("body");
1187     MethodDescriptor md=parseMethodHeader(headern);
1188     try {
1189       BlockNode bn=parseBlock(bodyn);
1190       bn.setNumLine(pn.getLine()); // assume that method header is located at the beginning of method body
1191       cn.addMethod(md);
1192       state.addTreeCode(md,bn);
1193
1194       // this is a hack for investigating new language features
1195       // at the AST level, someday should evolve into a nice compiler
1196       // option *wink*
1197       //if( cn.getSymbol().equals( ***put a class in here like:     "Test" ) &&
1198       //    md.getSymbol().equals( ***put your method in here like: "main" )
1199       //) {
1200       //  bn.setStyle( BlockNode.NORMAL );
1201       //  System.out.println( bn.printNode( 0 ) );
1202       //}
1203
1204     } catch (Exception e) {
1205       System.out.println("Error with method:"+md.getSymbol());
1206       e.printStackTrace();
1207       throw new Error();
1208     } catch (Error e) {
1209       System.out.println("Error with method:"+md.getSymbol());
1210       e.printStackTrace();
1211       throw new Error();
1212     }
1213   }
1214
1215   private void parseConstructorDecl(ClassDescriptor cn, ParseNode pn) {
1216     ParseNode mn=pn.getChild("modifiers");
1217     Modifiers m=parseModifiersList(mn);
1218     ParseNode cdecl=pn.getChild("constructor_declarator");
1219     boolean isglobal=cdecl.getChild("global")!=null;
1220     String name=resolveName(cn.getSymbol());
1221     MethodDescriptor md=new MethodDescriptor(m, name, isglobal);
1222     ParseNode paramnode=cdecl.getChild("parameters");
1223     parseParameterList(md,paramnode);
1224     ParseNode bodyn0=pn.getChild("body");
1225     ParseNode bodyn=bodyn0.getChild("constructor_body");
1226     cn.addMethod(md);
1227     BlockNode bn=null;
1228     if (bodyn!=null&&bodyn.getChild("block_statement_list")!=null)
1229       bn=parseBlock(bodyn);
1230     else
1231       bn=new BlockNode();
1232     if (bodyn!=null&&bodyn.getChild("superinvoke")!=null) {
1233       ParseNode sin=bodyn.getChild("superinvoke");
1234       NameDescriptor nd=new NameDescriptor("super");
1235       Vector args=parseArgumentList(sin);
1236       MethodInvokeNode min=new MethodInvokeNode(nd);
1237       min.setNumLine(sin.getLine());
1238       for(int i=0; i<args.size(); i++) {
1239         min.addArgument((ExpressionNode)args.get(i));
1240       }
1241       BlockExpressionNode ben=new BlockExpressionNode(min);
1242       bn.addFirstBlockStatement(ben);
1243
1244     } else if (bodyn!=null&&bodyn.getChild("explconstrinv")!=null) {
1245       ParseNode eci=bodyn.getChild("explconstrinv");
1246       NameDescriptor nd=new NameDescriptor(cn.getSymbol());
1247       Vector args=parseArgumentList(eci);
1248       MethodInvokeNode min=new MethodInvokeNode(nd);
1249       min.setNumLine(eci.getLine());
1250       for(int i=0; i<args.size(); i++) {
1251         min.addArgument((ExpressionNode)args.get(i));
1252       }
1253       BlockExpressionNode ben=new BlockExpressionNode(min);
1254       ben.setNumLine(eci.getLine());
1255       bn.addFirstBlockStatement(ben);
1256     }
1257     state.addTreeCode(md,bn);
1258   }
1259
1260   private void parseStaticBlockDecl(ClassDescriptor cn, ParseNode pn) {
1261     // Each class maintains one MethodDecscriptor which combines all its
1262     // static blocks in their declaration order
1263     boolean isfirst = false;
1264     MethodDescriptor md = (MethodDescriptor)cn.getMethodTable().getFromSameScope("staticblocks");
1265     if(md == null) {
1266       // the first static block for this class
1267       Modifiers m_i=new Modifiers();
1268       m_i.addModifier(Modifiers.STATIC);
1269       md = new MethodDescriptor(m_i, "staticblocks", false);
1270       md.setAsStaticBlock();
1271       isfirst = true;
1272     }
1273     ParseNode bodyn=pn.getChild("body");
1274     if(isfirst) {
1275       cn.addMethod(md);
1276     }
1277     cn.incStaticBlocks();
1278     BlockNode bn=null;
1279     if (bodyn!=null&&bodyn.getChild("block_statement_list")!=null)
1280       bn=parseBlock(bodyn);
1281     else
1282       bn=new BlockNode();
1283     if(isfirst) {
1284       state.addTreeCode(md,bn);
1285     } else {
1286       BlockNode obn = state.getMethodBody(md);
1287       for(int i = 0; i < bn.size(); i++) {
1288         BlockStatementNode bsn = bn.get(i);
1289         obn.addBlockStatement(bsn);
1290       }
1291       state.addTreeCode(md, obn);
1292       bn = null;
1293     }
1294   }
1295
1296   public BlockNode parseBlock(ParseNode pn) {
1297     this.m_taskexitnum = 0;
1298     if (pn==null||isEmpty(pn.getTerminal()))
1299       return new BlockNode();
1300     ParseNode bsn=pn.getChild("block_statement_list");
1301     return parseBlockHelper(bsn);
1302   }
1303
1304   private BlockNode parseBlockHelper(ParseNode pn) {
1305     ParseNodeVector pnv=pn.getChildren();
1306     BlockNode bn=new BlockNode();
1307     for(int i=0; i<pnv.size(); i++) {
1308       Vector bsv=parseBlockStatement(pnv.elementAt(i));
1309       for(int j=0; j<bsv.size(); j++) {
1310         bn.addBlockStatement((BlockStatementNode)bsv.get(j));
1311       }
1312     }
1313     return bn;
1314   }
1315
1316   public BlockNode parseSingleBlock(ParseNode pn) {
1317     BlockNode bn=new BlockNode();
1318     Vector bsv=parseBlockStatement(pn);
1319     for(int j=0; j<bsv.size(); j++) {
1320       bn.addBlockStatement((BlockStatementNode)bsv.get(j));
1321     }
1322     bn.setStyle(BlockNode.NOBRACES);
1323     return bn;
1324   }
1325
1326   public Vector parseSESEBlock(Vector parentbs, ParseNode pn) {
1327     ParseNodeVector pnv=pn.getChildren();
1328     Vector bv=new Vector();
1329     for(int i=0; i<pnv.size(); i++) {
1330       bv.addAll(parseBlockStatement(pnv.elementAt(i)));
1331     }
1332     return bv;
1333   }
1334
1335   public Vector parseBlockStatement(ParseNode pn) {
1336     Vector blockstatements=new Vector();
1337     if (isNode(pn,"tag_declaration")) {
1338       String name=pn.getChild("single").getTerminal();
1339       String type=pn.getChild("type").getTerminal();
1340
1341       TagDeclarationNode tdn=new TagDeclarationNode(name, type);
1342       tdn.setNumLine(pn.getLine());
1343
1344       blockstatements.add(tdn);
1345     } else if (isNode(pn,"local_variable_declaration")) {
1346
1347       TypeDescriptor t=parseTypeDescriptor(pn);
1348       ParseNode vn=pn.getChild("variable_declarators_list");
1349       ParseNodeVector pnv=vn.getChildren();
1350       for(int i=0; i<pnv.size(); i++) {
1351         ParseNode vardecl=pnv.elementAt(i);
1352
1353
1354         ParseNode tmp=vardecl;
1355         TypeDescriptor arrayt=t;
1356
1357         while (tmp.getChild("single")==null) {
1358           arrayt=arrayt.makeArray(state);
1359           tmp=tmp.getChild("array");
1360         }
1361         String identifier=tmp.getChild("single").getTerminal();
1362
1363         ParseNode epn=vardecl.getChild("initializer");
1364
1365
1366         ExpressionNode en=null;
1367         if (epn!=null)
1368           en=parseExpression(epn.getFirstChild());
1369
1370         DeclarationNode dn=new DeclarationNode(new VarDescriptor(arrayt, identifier),en);
1371         dn.setNumLine(tmp.getLine());
1372         
1373         ParseNode mn=pn.getChild("modifiers");
1374         if(mn!=null) {
1375           // here, modifers parse node has the list of annotations
1376           Modifiers m=parseModifiersList(mn);
1377           assignAnnotationsToType(m, arrayt);
1378         }
1379
1380         blockstatements.add(dn);
1381       }
1382     } else if (isNode(pn,"nop")) {
1383       /* Do Nothing */
1384     } else if (isNode(pn,"expression")) {
1385       BlockExpressionNode ben=new BlockExpressionNode(parseExpression(pn.getFirstChild()));
1386       ben.setNumLine(pn.getLine());
1387       blockstatements.add(ben);
1388     } else if (isNode(pn,"ifstatement")) {
1389       IfStatementNode isn=new IfStatementNode(parseExpression(pn.getChild("condition").getFirstChild()),
1390                                               parseSingleBlock(pn.getChild("statement").getFirstChild()),
1391                                               pn.getChild("else_statement")!=null?parseSingleBlock(pn.getChild("else_statement").getFirstChild()):null);
1392       isn.setNumLine(pn.getLine());
1393
1394       blockstatements.add(isn);
1395     } else if (isNode(pn,"switch_statement")) {
1396       // TODO add version for normal Java later
1397       SwitchStatementNode ssn=new SwitchStatementNode(parseExpression(pn.getChild("condition").getFirstChild()),
1398                                                       parseSingleBlock(pn.getChild("statement").getFirstChild()));
1399       ssn.setNumLine(pn.getLine());
1400       blockstatements.add(ssn);
1401     } else if (isNode(pn,"switch_block_list")) {
1402       // TODO add version for normal Java later
1403       ParseNodeVector pnv=pn.getChildren();
1404       for(int i=0; i<pnv.size(); i++) {
1405         ParseNode sblockdecl=pnv.elementAt(i);
1406
1407         if(isNode(sblockdecl, "switch_block")) {
1408           ParseNode lpn=sblockdecl.getChild("switch_labels").getChild("switch_label_list");
1409           ParseNodeVector labelv=lpn.getChildren();
1410           Vector<SwitchLabelNode> slv = new Vector<SwitchLabelNode>();
1411           for(int j=0; j<labelv.size(); j++) {
1412             ParseNode labeldecl=labelv.elementAt(j);
1413             if(isNode(labeldecl, "switch_label")) {
1414               SwitchLabelNode sln=new SwitchLabelNode(parseExpression(labeldecl.getChild("constant_expression").getFirstChild()), false);
1415               sln.setNumLine(labeldecl.getLine());
1416               slv.addElement(sln);
1417             } else if(isNode(labeldecl, "default_switch_label")) {
1418               SwitchLabelNode sln=new SwitchLabelNode(null, true);
1419               sln.setNumLine(labeldecl.getLine());
1420               slv.addElement(sln);
1421             }
1422           }
1423
1424           SwitchBlockNode sbn=new SwitchBlockNode(slv,
1425                                                   parseSingleBlock(sblockdecl.getChild("switch_statements").getFirstChild()));
1426           sbn.setNumLine(sblockdecl.getLine());
1427
1428           blockstatements.add(sbn);
1429
1430         }
1431       }
1432     } else if (isNode(pn, "trycatchstatement")) {
1433       // TODO add version for normal Java later
1434       // Do not fully support exceptions now. Only make sure that if there are no
1435       // exceptions thrown, the execution is right
1436       ParseNode tpn = pn.getChild("tryblock").getFirstChild();
1437       BlockNode bn=parseBlockHelper(tpn);
1438       blockstatements.add(new SubBlockNode(bn));
1439
1440       ParseNode fbk = pn.getChild("finallyblock");
1441       if(fbk != null) {
1442         ParseNode fpn = fbk.getFirstChild();
1443         BlockNode fbn=parseBlockHelper(fpn);
1444         blockstatements.add(new SubBlockNode(fbn));
1445       }
1446     } else if (isNode(pn, "throwstatement")) {
1447       // TODO Simply return here
1448       //blockstatements.add(new ReturnNode());
1449     } else if (isNode(pn,"taskexit")) {
1450       Vector vfe=null;
1451       if (pn.getChild("flag_effects_list")!=null)
1452         vfe=parseFlags(pn.getChild("flag_effects_list"));
1453       Vector ccs=null;
1454       if (pn.getChild("cons_checks")!=null)
1455         ccs=parseChecks(pn.getChild("cons_checks"));
1456       TaskExitNode ten=new TaskExitNode(vfe, ccs, this.m_taskexitnum++);
1457       ten.setNumLine(pn.getLine());
1458       blockstatements.add(ten);
1459     } else if (isNode(pn,"atomic")) {
1460       BlockNode bn=parseBlockHelper(pn);
1461       AtomicNode an=new AtomicNode(bn);
1462       an.setNumLine(pn.getLine());
1463       blockstatements.add(an);
1464     } else if (isNode(pn,"synchronized")) {
1465       BlockNode bn=parseBlockHelper(pn.getChild("block"));
1466       ExpressionNode en=parseExpression(pn.getChild("expr").getFirstChild());
1467       SynchronizedNode sn=new SynchronizedNode(en, bn);
1468       sn.setNumLine(pn.getLine());
1469       blockstatements.add(sn);
1470     } else if (isNode(pn,"return")) {
1471       if (isEmpty(pn.getTerminal()))
1472         blockstatements.add(new ReturnNode());
1473       else {
1474         ExpressionNode en=parseExpression(pn.getFirstChild());
1475         ReturnNode rn=new ReturnNode(en);
1476         rn.setNumLine(pn.getLine());
1477         blockstatements.add(rn);
1478       }
1479     } else if (isNode(pn,"block_statement_list")) {
1480       BlockNode bn=parseBlockHelper(pn);
1481       blockstatements.add(new SubBlockNode(bn));
1482     } else if (isNode(pn,"empty")) {
1483       /* nop */
1484     } else if (isNode(pn,"statement_expression_list")) {
1485       ParseNodeVector pnv=pn.getChildren();
1486       BlockNode bn=new BlockNode();
1487       for(int i=0; i<pnv.size(); i++) {
1488         ExpressionNode en=parseExpression(pnv.elementAt(i));
1489         blockstatements.add(new BlockExpressionNode(en));
1490       }
1491       bn.setStyle(BlockNode.EXPRLIST);
1492     } else if (isNode(pn,"forstatement")) {
1493       BlockNode init=parseSingleBlock(pn.getChild("initializer").getFirstChild());
1494       BlockNode update=parseSingleBlock(pn.getChild("update").getFirstChild());
1495       ExpressionNode condition=parseExpression(pn.getChild("condition").getFirstChild());
1496       BlockNode body=parseSingleBlock(pn.getChild("statement").getFirstChild());
1497       if(condition == null) {
1498         // no condition clause, make a 'true' expression as the condition
1499         condition = (ExpressionNode) new LiteralNode("boolean", new Boolean(true));
1500       }
1501       LoopNode ln=new LoopNode(init,condition,update,body);
1502       ln.setNumLine(pn.getLine());
1503       blockstatements.add(ln);
1504     } else if (isNode(pn,"whilestatement")) {
1505       ExpressionNode condition=parseExpression(pn.getChild("condition").getFirstChild());
1506       BlockNode body=parseSingleBlock(pn.getChild("statement").getFirstChild());
1507       if(condition == null) {
1508         // no condition clause, make a 'true' expression as the condition
1509         condition = (ExpressionNode) new LiteralNode("boolean", new Boolean(true));
1510       }
1511       blockstatements.add(new LoopNode(condition,body,LoopNode.WHILELOOP));
1512     } else if (isNode(pn,"dowhilestatement")) {
1513       ExpressionNode condition=parseExpression(pn.getChild("condition").getFirstChild());
1514       BlockNode body=parseSingleBlock(pn.getChild("statement").getFirstChild());
1515       if(condition == null) {
1516         // no condition clause, make a 'true' expression as the condition
1517         condition = (ExpressionNode) new LiteralNode("boolean", new Boolean(true));
1518       }
1519       blockstatements.add(new LoopNode(condition,body,LoopNode.DOWHILELOOP));
1520     } else if (isNode(pn,"sese")) {
1521       ParseNode pnID=pn.getChild("identifier");
1522       String stID=null;
1523       if( pnID != null ) {
1524         stID=pnID.getFirstChild().getTerminal();
1525       }
1526       SESENode start=new SESENode(stID);
1527       start.setNumLine(pn.getLine());
1528       SESENode end  =new SESENode(stID);
1529       start.setEnd(end);
1530       end.setStart(start);
1531       blockstatements.add(start);
1532       blockstatements.addAll(parseSESEBlock(blockstatements,pn.getChild("body").getFirstChild()));
1533       blockstatements.add(end);
1534     } else if (isNode(pn,"continue")) {
1535       ContinueBreakNode cbn=new ContinueBreakNode(false);
1536       cbn.setNumLine(pn.getLine());
1537       blockstatements.add(cbn);
1538     } else if (isNode(pn,"break")) {
1539       ContinueBreakNode cbn=new ContinueBreakNode(true);
1540       cbn.setNumLine(pn.getLine());
1541       blockstatements.add(cbn);
1542       ParseNode idopt_pn=pn.getChild("identifier_opt");
1543       ParseNode name_pn=idopt_pn.getChild("name");
1544       // name_pn.getTerminal() gives you the label
1545     } else if (isNode(pn,"genreach")) {
1546       String graphName = pn.getChild("graphName").getTerminal();
1547       blockstatements.add(new GenReachNode(graphName) );
1548
1549     } else if(isNode(pn,"labeledstatement")) {
1550       String label = pn.getChild("name").getTerminal();
1551       BlockNode bn=parseSingleBlock(pn.getChild("statement").getFirstChild());
1552       bn.setLabel(label);
1553       blockstatements.add(new SubBlockNode(bn));
1554     } else {
1555       System.out.println("---------------");
1556       System.out.println(pn.PPrint(3,true));
1557       throw new Error();
1558     }
1559     return blockstatements;
1560   }
1561
1562   public MethodDescriptor parseMethodHeader(ParseNode pn) {
1563     ParseNode mn=pn.getChild("modifiers");
1564     Modifiers m=parseModifiersList(mn);
1565
1566     ParseNode tn=pn.getChild("returntype");
1567     TypeDescriptor returntype;
1568     if (tn!=null)
1569       returntype=parseTypeDescriptor(tn);
1570     else
1571       returntype=new TypeDescriptor(TypeDescriptor.VOID);
1572
1573     ParseNode pmd=pn.getChild("method_declarator");
1574     String name=pmd.getChild("name").getTerminal();
1575     MethodDescriptor md=new MethodDescriptor(m, returntype, name);
1576
1577     ParseNode paramnode=pmd.getChild("parameters");
1578     parseParameterList(md,paramnode);
1579     return md;
1580   }
1581
1582   public void parseParameterList(MethodDescriptor md, ParseNode pn) {
1583     ParseNode paramlist=pn.getChild("formal_parameter_list");
1584     if (paramlist==null)
1585       return;
1586     ParseNodeVector pnv=paramlist.getChildren();
1587     for(int i=0; i<pnv.size(); i++) {
1588       ParseNode paramn=pnv.elementAt(i);
1589
1590       if (isNode(paramn, "tag_parameter")) {
1591         String paramname=paramn.getChild("single").getTerminal();
1592         TypeDescriptor type=new TypeDescriptor(TypeDescriptor.TAG);
1593         md.addTagParameter(type, paramname);
1594       } else  {
1595
1596         TypeDescriptor type=parseTypeDescriptor(paramn);
1597
1598         ParseNode tmp=paramn;
1599         while (tmp.getChild("single")==null) {
1600           type=type.makeArray(state);
1601           tmp=tmp.getChild("array");
1602         }
1603         String paramname=tmp.getChild("single").getTerminal();
1604
1605         md.addParameter(type, paramname);
1606         if(isNode(paramn, "annotation_parameter")) {
1607           ParseNode bodynode=paramn.getChild("annotation_body");
1608           parseParameterAnnotation(bodynode,type);
1609         }
1610
1611       }
1612     }
1613   }
1614
1615   public Modifiers parseModifiersList(ParseNode pn) {
1616     Modifiers m=new Modifiers();
1617     ParseNode modlist=pn.getChild("modifier_list");
1618     if (modlist!=null) {
1619       ParseNodeVector pnv=modlist.getChildren();
1620       for(int i=0; i<pnv.size(); i++) {
1621         ParseNode modn=pnv.elementAt(i);
1622         if (isNode(modn,"public"))
1623           m.addModifier(Modifiers.PUBLIC);
1624         else if (isNode(modn,"protected"))
1625           m.addModifier(Modifiers.PROTECTED);
1626         else if (isNode(modn,"private"))
1627           m.addModifier(Modifiers.PRIVATE);
1628         else if (isNode(modn,"static"))
1629           m.addModifier(Modifiers.STATIC);
1630         else if (isNode(modn,"final"))
1631           m.addModifier(Modifiers.FINAL);
1632         else if (isNode(modn,"native"))
1633           m.addModifier(Modifiers.NATIVE);
1634         else if (isNode(modn,"synchronized"))
1635           m.addModifier(Modifiers.SYNCHRONIZED);
1636         else if (isNode(modn,"atomic"))
1637           m.addModifier(Modifiers.ATOMIC);
1638         else if (isNode(modn,"abstract"))
1639           m.addModifier(Modifiers.ABSTRACT);
1640         else if (isNode(modn,"volatile"))
1641           m.addModifier(Modifiers.VOLATILE);
1642         else if (isNode(modn,"transient"))
1643           m.addModifier(Modifiers.TRANSIENT);
1644         else if(isNode(modn,"annotation_list"))
1645           parseAnnotationList(modn,m);
1646         else {
1647           throw new Error("Unrecognized Modifier:"+modn.getLabel());
1648         }
1649       }
1650     }
1651     return m;
1652   }
1653
1654   private void parseAnnotationList(ParseNode pn, Modifiers m) {
1655     ParseNodeVector pnv = pn.getChildren();
1656     for (int i = 0; i < pnv.size(); i++) {
1657       ParseNode body_list = pnv.elementAt(i);
1658       if (isNode(body_list, "annotation_body")) {
1659         ParseNode body_node = body_list.getFirstChild();
1660         if (isNode(body_node, "marker_annotation")) {
1661           m.addAnnotation(new AnnotationDescriptor(body_node.getChild("name").getTerminal()));
1662         } else if (isNode(body_node, "single_annotation")) {
1663           m.addAnnotation(new AnnotationDescriptor(body_node.getChild("name").getTerminal(),
1664                                                    body_node.getChild("element_value").getTerminal()));
1665         } else if (isNode(body_node, "normal_annotation")) {
1666           throw new Error("Annotation with multiple data members is not supported yet.");
1667         }
1668       }
1669     }
1670   }
1671
1672   private void parseParameterAnnotation(ParseNode body_list,TypeDescriptor type) {
1673     ParseNode body_node = body_list.getFirstChild();
1674     if (isNode(body_node, "marker_annotation")) {
1675       type.addAnnotationMarker(new AnnotationDescriptor(body_node.getChild("name").getTerminal()));
1676     } else if (isNode(body_node, "single_annotation")) {
1677       type.addAnnotationMarker(new AnnotationDescriptor(body_node.getChild("name").getTerminal(),
1678                                                         body_node.getChild("element_value").getTerminal()));
1679     } else if (isNode(body_node, "normal_annotation")) {
1680       throw new Error("Annotation with multiple data members is not supported yet.");
1681     }
1682   }
1683
1684   private boolean isNode(ParseNode pn, String label) {
1685     if (pn.getLabel().equals(label))
1686       return true;
1687     else return false;
1688   }
1689
1690   private static boolean isEmpty(ParseNode pn) {
1691     if (pn.getLabel().equals("empty"))
1692       return true;
1693     else
1694       return false;
1695   }
1696
1697   private static boolean isEmpty(String s) {
1698     if (s.equals("empty"))
1699       return true;
1700     else
1701       return false;
1702   }
1703
1704   /** Throw an exception if something is unexpected */
1705   private void check(ParseNode pn, String label) {
1706     if (pn == null) {
1707       throw new Error(pn+ "IE: Expected '" + label + "', got null");
1708     }
1709     if (!pn.getLabel().equals(label)) {
1710       throw new Error(pn+ "IE: Expected '" + label + "', got '"+pn.getLabel()+"'");
1711     }
1712   }
1713 }