Enable array creation with initialization for MGC. Now array initialization is fully...
[IRC.git] / Robust / src / IR / Tree / SemanticCheck.java
1 package IR.Tree;
2
3 import java.util.*;
4
5 import IR.*;
6
7 public class SemanticCheck {
8   State state;
9   TypeUtil typeutil;
10   Stack loopstack;
11   HashSet toanalyze;
12   HashSet completed;
13
14
15   public SemanticCheck(State state, TypeUtil tu) {
16     this.state=state;
17     this.typeutil=tu;
18     this.loopstack=new Stack();
19     this.toanalyze=new HashSet();
20     this.completed=new HashSet();
21   }
22
23   public ClassDescriptor getClass(String classname) {
24     ClassDescriptor cd=typeutil.getClass(classname, toanalyze);
25     checkClass(cd);
26     return cd;
27   }
28
29   private void checkClass(ClassDescriptor cd) {
30     if (!completed.contains(cd)) {
31       completed.add(cd);
32       
33       //Set superclass link up
34       if (cd.getSuper()!=null) {
35         cd.setSuper(getClass(cd.getSuper()));
36         // Link together Field, Method, and Flag tables so classes
37         // inherit these from their superclasses
38         cd.getFieldTable().setParent(cd.getSuperDesc().getFieldTable());
39         cd.getMethodTable().setParent(cd.getSuperDesc().getMethodTable());
40         cd.getFlagTable().setParent(cd.getSuperDesc().getFlagTable());
41     if(state.MGC) {
42       // TODO add version for normal Java later
43       // Link together Field, Method tables do classes inherit these from 
44       // their ancestor interfaces
45       Vector<String> sifv = cd.getSuperInterface();
46       for(int i = 0; i < sifv.size(); i++) {
47         ClassDescriptor superif = getClass(sifv.elementAt(i));
48         cd.addSuperInterfaces(superif);
49         cd.getFieldTable().addParentIF(superif.getFieldTable());
50         cd.getMethodTable().addParentIF(superif.getMethodTable());
51       }
52     }
53       }
54       
55       /* Check to see that fields are well typed */
56       for(Iterator field_it=cd.getFields(); field_it.hasNext();) {
57         FieldDescriptor fd=(FieldDescriptor)field_it.next();
58         checkField(cd,fd);
59       }
60       
61       boolean hasConstructor = false;
62       for(Iterator method_it=cd.getMethods(); method_it.hasNext();) {
63         MethodDescriptor md=(MethodDescriptor)method_it.next();
64         checkMethod(cd,md);
65     hasConstructor |= md.isConstructor();
66       }
67       if(!hasConstructor) {
68         // add a default constructor for this class
69         MethodDescriptor md = new MethodDescriptor(new Modifiers(Modifiers.PUBLIC),
70             cd.getSymbol(), false);
71         BlockNode bn=new BlockNode();
72         state.addTreeCode(md,bn);
73         cd.addMethod(md);
74         checkMethod(cd,md);
75       }
76     }
77   }
78
79   public void semanticCheck() {
80     SymbolTable classtable=state.getClassSymbolTable();
81     toanalyze.addAll(classtable.getValueSet());
82     toanalyze.addAll(state.getTaskSymbolTable().getValueSet());
83
84     // Do methods next
85     while(!toanalyze.isEmpty()) {
86       Object obj=toanalyze.iterator().next();
87       if (obj instanceof TaskDescriptor) {
88         toanalyze.remove(obj);
89         TaskDescriptor td=(TaskDescriptor)obj;
90         try {
91           checkTask(td);
92         } catch( Error e ) {
93             System.out.println( "Error in "+td );
94             throw e;
95         }
96       } else {
97         ClassDescriptor cd=(ClassDescriptor)obj;
98         toanalyze.remove(cd);
99         //need to initialize typeutil object here...only place we can
100         //get class descriptors without first calling getclass
101         getClass(cd.getSymbol());
102         for(Iterator method_it=cd.getMethods(); method_it.hasNext();) {
103           MethodDescriptor md=(MethodDescriptor)method_it.next();
104           try {
105             checkMethodBody(cd,md);
106           } catch( Error e ) {
107             System.out.println( "Error in "+md );
108             throw e;
109           }
110         }
111       }
112     }
113   }
114
115   public void checkTypeDescriptor(TypeDescriptor td) {
116     if (td.isPrimitive())
117       return;       /* Done */
118     else if (td.isClass()) {
119       String name=td.toString();
120       ClassDescriptor field_cd=getClass(name);
121       if (field_cd==null)
122         throw new Error("Undefined class "+name);
123       td.setClassDescriptor(field_cd);
124       return;
125     } else if (td.isTag())
126       return;
127     else
128       throw new Error();
129   }
130
131   public void checkField(ClassDescriptor cd, FieldDescriptor fd) {
132     checkTypeDescriptor(fd.getType());
133   }
134
135   public void checkConstraintCheck(TaskDescriptor td, SymbolTable nametable, Vector ccs) {
136     if (ccs==null)
137       return;       /* No constraint checks to check */
138     for(int i=0; i<ccs.size(); i++) {
139       ConstraintCheck cc=(ConstraintCheck) ccs.get(i);
140
141       for(int j=0; j<cc.numArgs(); j++) {
142         ExpressionNode en=cc.getArg(j);
143         checkExpressionNode(td,nametable,en,null);
144       }
145     }
146   }
147
148   public void checkFlagEffects(TaskDescriptor td, Vector vfe, SymbolTable nametable) {
149     if (vfe==null)
150       return;       /* No flag effects to check */
151     for(int i=0; i<vfe.size(); i++) {
152       FlagEffects fe=(FlagEffects) vfe.get(i);
153       String varname=fe.getName();
154       //Make sure the variable is declared as a parameter to the task
155       VarDescriptor vd=(VarDescriptor)td.getParameterTable().get(varname);
156       if (vd==null)
157         throw new Error("Parameter "+varname+" in Flag Effects not declared in "+td);
158       fe.setVar(vd);
159
160       //Make sure it correspods to a class
161       TypeDescriptor type_d=vd.getType();
162       if (!type_d.isClass())
163         throw new Error("Cannot have non-object argument for flag_effect");
164
165       ClassDescriptor cd=type_d.getClassDesc();
166       for(int j=0; j<fe.numEffects(); j++) {
167         FlagEffect flag=fe.getEffect(j);
168         String name=flag.getName();
169         FlagDescriptor flag_d=(FlagDescriptor)cd.getFlagTable().get(name);
170         //Make sure the flag is declared
171         if (flag_d==null)
172           throw new Error("Flag descriptor "+name+" undefined in class: "+cd.getSymbol());
173         if (flag_d.getExternal())
174           throw new Error("Attempting to modify external flag: "+name);
175         flag.setFlag(flag_d);
176       }
177       for(int j=0; j<fe.numTagEffects(); j++) {
178         TagEffect tag=fe.getTagEffect(j);
179         String name=tag.getName();
180
181         Descriptor d=(Descriptor)nametable.get(name);
182         if (d==null)
183           throw new Error("Tag descriptor "+name+" undeclared");
184         else if (!(d instanceof TagVarDescriptor))
185           throw new Error(name+" is not a tag descriptor");
186         tag.setTag((TagVarDescriptor)d);
187       }
188     }
189   }
190
191   public void checkTask(TaskDescriptor td) {
192     for(int i=0; i<td.numParameters(); i++) {
193       /* Check that parameter is well typed */
194       TypeDescriptor param_type=td.getParamType(i);
195       checkTypeDescriptor(param_type);
196
197       /* Check the parameter's flag expression is well formed */
198       FlagExpressionNode fen=td.getFlag(td.getParameter(i));
199       if (!param_type.isClass())
200         throw new Error("Cannot have non-object argument to a task");
201       ClassDescriptor cd=param_type.getClassDesc();
202       if (fen!=null)
203         checkFlagExpressionNode(cd, fen);
204     }
205
206     checkFlagEffects(td, td.getFlagEffects(),td.getParameterTable());
207     /* Check that the task code is valid */
208     BlockNode bn=state.getMethodBody(td);
209     checkBlockNode(td, td.getParameterTable(),bn);
210   }
211
212   public void checkFlagExpressionNode(ClassDescriptor cd, FlagExpressionNode fen) {
213     switch(fen.kind()) {
214     case Kind.FlagOpNode:
215     {
216       FlagOpNode fon=(FlagOpNode)fen;
217       checkFlagExpressionNode(cd, fon.getLeft());
218       if (fon.getRight()!=null)
219         checkFlagExpressionNode(cd, fon.getRight());
220       break;
221     }
222
223     case Kind.FlagNode:
224     {
225       FlagNode fn=(FlagNode)fen;
226       String name=fn.getFlagName();
227       FlagDescriptor fd=(FlagDescriptor)cd.getFlagTable().get(name);
228       if (fd==null)
229         throw new Error("Undeclared flag: "+name);
230       fn.setFlag(fd);
231       break;
232     }
233
234     default:
235       throw new Error("Unrecognized FlagExpressionNode");
236     }
237   }
238
239   public void checkMethod(ClassDescriptor cd, MethodDescriptor md) {
240     if(state.MGC) {
241       // TODO add version for normal Java later
242       /* Check for abstract methods */
243       if(md.isAbstract()) {
244         if(!cd.isAbstract() && !cd.isInterface()) {
245           throw new Error("Error! The non-abstract Class " + cd.getSymbol() + " contains an abstract method " + md.getSymbol());
246         }
247       }
248     }
249     /* Check return type */
250     if (!md.isConstructor())
251       if (!md.getReturnType().isVoid())
252         checkTypeDescriptor(md.getReturnType());
253
254     for(int i=0; i<md.numParameters(); i++) {
255       TypeDescriptor param_type=md.getParamType(i);
256       checkTypeDescriptor(param_type);
257     }
258     /* Link the naming environments */
259     if (!md.isStatic())     /* Fields aren't accessible directly in a static method, so don't link in this table */
260       md.getParameterTable().setParent(cd.getFieldTable());
261     md.setClassDesc(cd);
262     if (!md.isStatic()) {
263       VarDescriptor thisvd=new VarDescriptor(new TypeDescriptor(cd),"this");
264       md.setThis(thisvd);
265     }
266   }
267
268   public void checkMethodBody(ClassDescriptor cd, MethodDescriptor md) {
269     ClassDescriptor superdesc=cd.getSuperDesc();
270     if (superdesc!=null) {
271       Set possiblematches=superdesc.getMethodTable().getSet(md.getSymbol());
272       for(Iterator methodit=possiblematches.iterator(); methodit.hasNext();) {
273         MethodDescriptor matchmd=(MethodDescriptor)methodit.next();
274         if (md.matches(matchmd)) {
275           if (matchmd.getModifiers().isFinal()) {
276             throw new Error("Try to override final method in method:"+md+" declared in  "+cd);
277           }
278         }
279       }
280     }
281     BlockNode bn=state.getMethodBody(md);
282     checkBlockNode(md, md.getParameterTable(),bn);
283   }
284
285   public void checkBlockNode(Descriptor md, SymbolTable nametable, BlockNode bn) {
286     /* Link in the naming environment */
287     bn.getVarTable().setParent(nametable);
288     for(int i=0; i<bn.size(); i++) {
289       BlockStatementNode bsn=bn.get(i);
290       checkBlockStatementNode(md, bn.getVarTable(),bsn);
291     }
292   }
293
294   public void checkBlockStatementNode(Descriptor md, SymbolTable nametable, BlockStatementNode bsn) {
295     switch(bsn.kind()) {
296     case Kind.BlockExpressionNode:
297       checkBlockExpressionNode(md, nametable,(BlockExpressionNode)bsn);
298       return;
299
300     case Kind.DeclarationNode:
301       checkDeclarationNode(md, nametable, (DeclarationNode)bsn);
302       return;
303
304     case Kind.TagDeclarationNode:
305       checkTagDeclarationNode(md, nametable, (TagDeclarationNode)bsn);
306       return;
307
308     case Kind.IfStatementNode:
309       checkIfStatementNode(md, nametable, (IfStatementNode)bsn);
310       return;
311       
312     case Kind.SwitchStatementNode:
313       checkSwitchStatementNode(md, nametable, (SwitchStatementNode)bsn);
314       return;
315
316     case Kind.LoopNode:
317       checkLoopNode(md, nametable, (LoopNode)bsn);
318       return;
319
320     case Kind.ReturnNode:
321       checkReturnNode(md, nametable, (ReturnNode)bsn);
322       return;
323
324     case Kind.TaskExitNode:
325       checkTaskExitNode(md, nametable, (TaskExitNode)bsn);
326       return;
327
328     case Kind.SubBlockNode:
329       checkSubBlockNode(md, nametable, (SubBlockNode)bsn);
330       return;
331
332     case Kind.AtomicNode:
333       checkAtomicNode(md, nametable, (AtomicNode)bsn);
334       return;
335
336     case Kind.SynchronizedNode:
337       checkSynchronizedNode(md, nametable, (SynchronizedNode)bsn);
338       return;
339
340     case Kind.ContinueBreakNode:
341         checkContinueBreakNode(md, nametable, (ContinueBreakNode) bsn);
342         return;
343
344     case Kind.SESENode:
345     case Kind.GenReachNode:
346       // do nothing, no semantic check for SESEs
347       return;
348     }
349
350     throw new Error();
351   }
352
353   void checkBlockExpressionNode(Descriptor md, SymbolTable nametable, BlockExpressionNode ben) {
354     checkExpressionNode(md, nametable, ben.getExpression(), null);
355   }
356
357   void checkDeclarationNode(Descriptor md, SymbolTable nametable,  DeclarationNode dn) {
358     VarDescriptor vd=dn.getVarDescriptor();
359     checkTypeDescriptor(vd.getType());
360     Descriptor d=nametable.get(vd.getSymbol());
361     if ((d==null)||
362         (d instanceof FieldDescriptor)) {
363       nametable.add(vd);
364     } else
365       throw new Error(vd.getSymbol()+" in "+md+" defined a second time");
366     if (dn.getExpression()!=null)
367       checkExpressionNode(md, nametable, dn.getExpression(), vd.getType());
368   }
369
370   void checkTagDeclarationNode(Descriptor md, SymbolTable nametable,  TagDeclarationNode dn) {
371     TagVarDescriptor vd=dn.getTagVarDescriptor();
372     Descriptor d=nametable.get(vd.getSymbol());
373     if ((d==null)||
374         (d instanceof FieldDescriptor)) {
375       nametable.add(vd);
376     } else
377       throw new Error(vd.getSymbol()+" defined a second time");
378   }
379
380   void checkSubBlockNode(Descriptor md, SymbolTable nametable, SubBlockNode sbn) {
381     checkBlockNode(md, nametable, sbn.getBlockNode());
382   }
383
384   void checkAtomicNode(Descriptor md, SymbolTable nametable, AtomicNode sbn) {
385     checkBlockNode(md, nametable, sbn.getBlockNode());
386   }
387
388   void checkSynchronizedNode(Descriptor md, SymbolTable nametable, SynchronizedNode sbn) {
389     checkBlockNode(md, nametable, sbn.getBlockNode());
390     //todo this could be Object
391     checkExpressionNode(md, nametable, sbn.getExpr(), null);
392   }
393
394   void checkContinueBreakNode(Descriptor md, SymbolTable nametable, ContinueBreakNode cbn) {
395       if (loopstack.empty())
396           throw new Error("continue/break outside of loop");
397       LoopNode ln=(LoopNode)loopstack.peek();
398       cbn.setLoop(ln);
399   }
400
401   void checkReturnNode(Descriptor d, SymbolTable nametable, ReturnNode rn) {
402     if (d instanceof TaskDescriptor)
403       throw new Error("Illegal return appears in Task: "+d.getSymbol());
404     MethodDescriptor md=(MethodDescriptor)d;
405     if (rn.getReturnExpression()!=null)
406       if (md.getReturnType()==null)
407         throw new Error("Constructor can't return something.");
408       else if (md.getReturnType().isVoid())
409         throw new Error(md+" is void");
410       else
411         checkExpressionNode(md, nametable, rn.getReturnExpression(), md.getReturnType());
412     else
413     if (md.getReturnType()!=null&&!md.getReturnType().isVoid())
414       throw new Error("Need to return something for "+md);
415   }
416
417   void checkTaskExitNode(Descriptor md, SymbolTable nametable, TaskExitNode ten) {
418     if (md instanceof MethodDescriptor)
419       throw new Error("Illegal taskexit appears in Method: "+md.getSymbol());
420     checkFlagEffects((TaskDescriptor)md, ten.getFlagEffects(),nametable);
421     checkConstraintCheck((TaskDescriptor) md, nametable, ten.getChecks());
422   }
423
424   void checkIfStatementNode(Descriptor md, SymbolTable nametable, IfStatementNode isn) {
425     checkExpressionNode(md, nametable, isn.getCondition(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
426     checkBlockNode(md, nametable, isn.getTrueBlock());
427     if (isn.getFalseBlock()!=null)
428       checkBlockNode(md, nametable, isn.getFalseBlock());
429   }
430   
431   void checkSwitchStatementNode(Descriptor md, SymbolTable nametable, SwitchStatementNode ssn) {
432     checkExpressionNode(md, nametable, ssn.getCondition(), new TypeDescriptor(TypeDescriptor.INT));
433     
434     BlockNode sbn = ssn.getSwitchBody();
435     boolean hasdefault = false;
436     for(int i = 0; i < sbn.size(); i++) {
437       boolean containdefault = checkSwitchBlockNode(md, nametable, (SwitchBlockNode)sbn.get(i));
438       if(hasdefault && containdefault) {
439         throw new Error("Error: duplicate default branch in switch-case statement in Method: " + md.getSymbol());
440       }
441       hasdefault = containdefault;
442     }
443   }
444   
445   boolean checkSwitchBlockNode(Descriptor md, SymbolTable nametable, SwitchBlockNode sbn) {
446     Vector<SwitchLabelNode> slnv = sbn.getSwitchConditions();
447     int defaultb = 0;
448     for(int i = 0; i < slnv.size(); i++) {
449       if(slnv.elementAt(i).isdefault) {
450         defaultb++;
451       } else {
452         checkConstantExpressionNode(md, nametable, slnv.elementAt(i).getCondition(), new TypeDescriptor(TypeDescriptor.INT));
453       }
454     }
455     if(defaultb > 1) {
456       throw new Error("Error: duplicate default branch in switch-case statement in Method: " + md.getSymbol());
457     } else {
458       checkBlockNode(md, nametable, sbn.getSwitchBlockStatement());
459       return (defaultb > 0);
460     }
461   }
462   
463   void checkConstantExpressionNode(Descriptor md, SymbolTable nametable, ExpressionNode en, TypeDescriptor td) {
464     switch(en.kind()) {
465     case Kind.FieldAccessNode:
466       checkFieldAccessNode(md,nametable,(FieldAccessNode)en,td);
467       return;
468      
469     case Kind.LiteralNode:
470       checkLiteralNode(md,nametable,(LiteralNode)en,td);
471       return;
472     }
473     throw new Error();
474   }
475
476   void checkExpressionNode(Descriptor md, SymbolTable nametable, ExpressionNode en, TypeDescriptor td) {
477     switch(en.kind()) {
478     case Kind.AssignmentNode:
479       checkAssignmentNode(md,nametable,(AssignmentNode)en,td);
480       return;
481
482     case Kind.CastNode:
483       checkCastNode(md,nametable,(CastNode)en,td);
484       return;
485
486     case Kind.CreateObjectNode:
487       checkCreateObjectNode(md,nametable,(CreateObjectNode)en,td);
488       return;
489
490     case Kind.FieldAccessNode:
491       checkFieldAccessNode(md,nametable,(FieldAccessNode)en,td);
492       return;
493
494     case Kind.ArrayAccessNode:
495       checkArrayAccessNode(md,nametable,(ArrayAccessNode)en,td);
496       return;
497
498     case Kind.LiteralNode:
499       checkLiteralNode(md,nametable,(LiteralNode)en,td);
500       return;
501
502     case Kind.MethodInvokeNode:
503       checkMethodInvokeNode(md,nametable,(MethodInvokeNode)en,td);
504       return;
505
506     case Kind.NameNode:
507       checkNameNode(md,nametable,(NameNode)en,td);
508       return;
509
510     case Kind.OpNode:
511       checkOpNode(md,nametable,(OpNode)en,td);
512       return;
513
514     case Kind.OffsetNode:
515       checkOffsetNode(md, nametable, (OffsetNode)en, td);
516       return;
517
518     case Kind.TertiaryNode:
519       checkTertiaryNode(md, nametable, (TertiaryNode)en, td);
520       return;
521       
522     case Kind.InstanceOfNode:
523       checkInstanceOfNode(md, nametable, (InstanceOfNode) en, td);
524       return;
525
526     case Kind.ArrayInitializerNode:
527       checkArrayInitializerNode(md, nametable, (ArrayInitializerNode) en, td);
528       return;
529     }
530     throw new Error();
531   }
532
533   void checkCastNode(Descriptor md, SymbolTable nametable, CastNode cn, TypeDescriptor td) {
534     /* Get type descriptor */
535     if (cn.getType()==null) {
536       NameDescriptor typenamed=cn.getTypeName().getName();
537       String typename=typenamed.toString();
538       TypeDescriptor ntd=new TypeDescriptor(getClass(typename));
539       cn.setType(ntd);
540     }
541
542     /* Check the type descriptor */
543     TypeDescriptor cast_type=cn.getType();
544     checkTypeDescriptor(cast_type);
545
546     /* Type check */
547     if (td!=null) {
548       if (!typeutil.isSuperorType(td,cast_type))
549         throw new Error("Cast node returns "+cast_type+", but need "+td);
550     }
551
552     ExpressionNode en=cn.getExpression();
553     checkExpressionNode(md, nametable, en, null);
554     TypeDescriptor etd=en.getType();
555     if (typeutil.isSuperorType(cast_type,etd))     /* Cast trivially succeeds */
556       return;
557
558     if (typeutil.isSuperorType(etd,cast_type))     /* Cast may succeed */
559       return;
560     if (typeutil.isCastable(etd, cast_type))
561       return;
562
563     /* Different branches */
564     /* TODO: change if add interfaces */
565     throw new Error("Cast will always fail\n"+cn.printNode(0));
566   }
567
568   void checkFieldAccessNode(Descriptor md, SymbolTable nametable, FieldAccessNode fan, TypeDescriptor td) {
569     ExpressionNode left=fan.getExpression();
570     checkExpressionNode(md,nametable,left,null);
571     TypeDescriptor ltd=left.getType();
572     String fieldname=fan.getFieldName();
573
574     FieldDescriptor fd=null;
575     if (ltd.isArray()&&fieldname.equals("length"))
576       fd=FieldDescriptor.arrayLength;
577     else
578       fd=(FieldDescriptor) ltd.getClassDesc().getFieldTable().get(fieldname);
579     if(state.MGC) {
580       // TODO add version for normal Java later
581     if(ltd.isStatic()) {
582       if(ltd.getClassDesc().isEnum()) {
583         int value = ltd.getClassDesc().getEnumConstant(fieldname);
584         if(-1 == value) {
585           // check if this field is an enum constant
586           throw new Error(fieldname + " is not an enum constant in "+fan.printNode(0)+" in "+md);
587         }
588         fd = new FieldDescriptor(new Modifiers(Modifiers.PUBLIC|Modifiers.FINAL), new TypeDescriptor(TypeDescriptor.INT), fieldname, null, false);
589         fd.setAsEnum();
590         fd.setEnumValue(value);
591       } else if(!fd.isStatic()) {
592         // check if this field is a static field
593         throw new Error("Dereference of the non-static field "+ fieldname + " in "+fan.printNode(0)+" in "+md);
594       }
595     } 
596     }
597     if (fd==null)
598       throw new Error("Unknown field "+fieldname + " in "+fan.printNode(0)+" in "+md);
599
600     if (fd.getType().iswrapper()) {
601       FieldAccessNode fan2=new FieldAccessNode(left, fieldname);
602       fan2.setField(fd);
603       fan.left=fan2;
604       fan.fieldname="value";
605
606       ExpressionNode leftwr=fan.getExpression();
607       TypeDescriptor ltdwr=leftwr.getType();
608       String fieldnamewr=fan.getFieldName();
609       FieldDescriptor fdwr=(FieldDescriptor) ltdwr.getClassDesc().getFieldTable().get(fieldnamewr);
610       fan.setField(fdwr);
611       if (fdwr==null)
612           throw new Error("Unknown field "+fieldnamewr + " in "+fan.printNode(0)+" in "+md);
613     } else {
614       fan.setField(fd);
615     }
616     if (td!=null) {
617       if (!typeutil.isSuperorType(td,fan.getType()))
618         throw new Error("Field node returns "+fan.getType()+", but need "+td);
619     }
620   }
621
622   void checkArrayAccessNode(Descriptor md, SymbolTable nametable, ArrayAccessNode aan, TypeDescriptor td) {
623     ExpressionNode left=aan.getExpression();
624     checkExpressionNode(md,nametable,left,null);
625
626     checkExpressionNode(md,nametable,aan.getIndex(),new TypeDescriptor(TypeDescriptor.INT));
627     TypeDescriptor ltd=left.getType();
628     if (ltd.dereference().iswrapper()) {
629       aan.wrappertype=((FieldDescriptor)ltd.dereference().getClassDesc().getFieldTable().get("value")).getType();
630     }
631
632     if (td!=null)
633       if (!typeutil.isSuperorType(td,aan.getType()))
634         throw new Error("Field node returns "+aan.getType()+", but need "+td);
635   }
636
637   void checkLiteralNode(Descriptor md, SymbolTable nametable, LiteralNode ln, TypeDescriptor td) {
638     /* Resolve the type */
639     Object o=ln.getValue();
640     if (ln.getTypeString().equals("null")) {
641       ln.setType(new TypeDescriptor(TypeDescriptor.NULL));
642     } else if (o instanceof Integer) {
643       ln.setType(new TypeDescriptor(TypeDescriptor.INT));
644     } else if (o instanceof Long) {
645       ln.setType(new TypeDescriptor(TypeDescriptor.LONG));
646     } else if (o instanceof Float) {
647       ln.setType(new TypeDescriptor(TypeDescriptor.FLOAT));
648     } else if (o instanceof Boolean) {
649       ln.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
650     } else if (o instanceof Double) {
651       ln.setType(new TypeDescriptor(TypeDescriptor.DOUBLE));
652     } else if (o instanceof Character) {
653       ln.setType(new TypeDescriptor(TypeDescriptor.CHAR));
654     } else if (o instanceof String) {
655       ln.setType(new TypeDescriptor(getClass(TypeUtil.StringClass)));
656     }
657
658     if (td!=null)
659       if (!typeutil.isSuperorType(td,ln.getType()))
660         throw new Error("Field node returns "+ln.getType()+", but need "+td+" in "+md);
661   }
662
663   void checkNameNode(Descriptor md, SymbolTable nametable, NameNode nn, TypeDescriptor td) {
664     NameDescriptor nd=nn.getName();
665     if (nd.getBase()!=null) {
666       /* Big hack */
667       /* Rewrite NameNode */
668       ExpressionNode en=translateNameDescriptorintoExpression(nd);
669       nn.setExpression(en);
670       checkExpressionNode(md,nametable,en,td);
671     } else {
672       String varname=nd.toString();
673       Descriptor d=(Descriptor)nametable.get(varname);
674       if (d==null) {
675         if(state.MGC) {
676           // TODO add version for normal Java later
677         ClassDescriptor cd = null;
678         if(((MethodDescriptor)md).isStaticBlock()) {
679           // this is a static block, all the accessed fields should be static field
680           cd = ((MethodDescriptor)md).getClassDesc();
681           SymbolTable fieldtbl = cd.getFieldTable();
682           FieldDescriptor fd=(FieldDescriptor)fieldtbl.get(varname);
683           if((fd == null) || (!fd.isStatic())){
684             // no such field in the class or it is not a static field
685             throw new Error("Name "+varname+" should not be used in static block: "+md);
686           } else {
687             // this is a static field
688             nn.setField(fd);
689             nn.setClassDesc(cd);
690             return;
691           }
692         } else {
693           cd=getClass(varname);
694           if(cd != null) {
695             // this is a class name
696             nn.setClassDesc(cd);
697             return;
698           } else {
699             throw new Error("Name "+varname+" undefined in: "+md);
700           }
701         }
702         } else {
703           throw new Error("Name "+varname+" undefined in: "+md);
704         }
705       }
706       if (d instanceof VarDescriptor) {
707         nn.setVar(d);
708       } else if (d instanceof FieldDescriptor) {
709         FieldDescriptor fd=(FieldDescriptor)d;
710         if (fd.getType().iswrapper()) {
711           String id=nd.getIdentifier();
712           NameDescriptor base=nd.getBase();
713           NameNode n=new NameNode(nn.getName());
714           n.setField(fd);
715           n.setVar((VarDescriptor)nametable.get("this"));        /* Need a pointer to this */
716           FieldAccessNode fan=new FieldAccessNode(n,"value");
717           FieldDescriptor fdval=(FieldDescriptor) fd.getType().getClassDesc().getFieldTable().get("value");
718           fan.setField(fdval);
719           nn.setExpression(fan);
720         } else {
721           nn.setField(fd);
722           nn.setVar((VarDescriptor)nametable.get("this"));        /* Need a pointer to this */
723         }
724       } else if (d instanceof TagVarDescriptor) {
725         nn.setVar(d);
726       } else throw new Error("Wrong type of descriptor");
727       if (td!=null)
728         if (!typeutil.isSuperorType(td,nn.getType()))
729           throw new Error("Field node returns "+nn.getType()+", but need "+td);
730     }
731   }
732
733   void checkOffsetNode(Descriptor md, SymbolTable nameTable, OffsetNode ofn, TypeDescriptor td) {
734     TypeDescriptor ltd=ofn.td;
735     checkTypeDescriptor(ltd);
736     
737     String fieldname = ofn.fieldname;
738     FieldDescriptor fd=null;
739     if (ltd.isArray()&&fieldname.equals("length")) {
740       fd=FieldDescriptor.arrayLength;
741     } else {
742       fd=(FieldDescriptor) ltd.getClassDesc().getFieldTable().get(fieldname);
743     }
744
745     ofn.setField(fd);
746     checkField(ltd.getClassDesc(), fd);
747
748     if (fd==null)
749       throw new Error("Unknown field "+fieldname + " in "+ofn.printNode(1)+" in "+md);
750
751     if (td!=null) {
752       if (!typeutil.isSuperorType(td, ofn.getType())) {
753         System.out.println(td);
754         System.out.println(ofn.getType());
755         throw new Error("Type of rside not compatible with type of lside"+ofn.printNode(0));
756       }
757     }
758   }
759
760
761   void checkTertiaryNode(Descriptor md, SymbolTable nametable, TertiaryNode tn, TypeDescriptor td) {
762     checkExpressionNode(md, nametable, tn.getCond(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
763     checkExpressionNode(md, nametable, tn.getTrueExpr(), td );
764     checkExpressionNode(md, nametable, tn.getFalseExpr(), td );
765   }
766
767   void checkInstanceOfNode(Descriptor md, SymbolTable nametable, InstanceOfNode tn, TypeDescriptor td) {
768     if (td!=null&&!td.isBoolean())
769       throw new Error("Expecting type "+td+"for instanceof expression");
770     
771     checkTypeDescriptor(tn.getExprType());
772     checkExpressionNode(md, nametable, tn.getExpr(), null);
773   }
774
775   void checkArrayInitializerNode(Descriptor md, SymbolTable nametable, ArrayInitializerNode ain, TypeDescriptor td) {
776     Vector<TypeDescriptor> vec_type = new Vector<TypeDescriptor>();
777     for( int i = 0; i < ain.numVarInitializers(); ++i ) {
778       checkExpressionNode(md, nametable, ain.getVarInitializer(i), td==null?td:td.dereference());
779       vec_type.add(ain.getVarInitializer(i).getType());
780     }
781     // descide the type of this variableInitializerNode
782     TypeDescriptor out_type = vec_type.elementAt(0);
783     for(int i = 1; i < vec_type.size(); i++) {
784       TypeDescriptor tmp_type = vec_type.elementAt(i);
785       if(out_type == null) {
786         if(tmp_type != null) {
787           out_type = tmp_type;
788         }
789       } else if(out_type.isNull()) {
790         if(!tmp_type.isNull() ) {
791           if(!tmp_type.isArray()) {
792             throw new Error("Error: mixed type in var initializer list");
793           } else {
794             out_type = tmp_type;
795           }
796         }
797       } else if(out_type.isArray()) {
798         if(tmp_type.isArray()) {
799           if(tmp_type.getArrayCount() > out_type.getArrayCount()) {
800             out_type = tmp_type;
801           }
802         } else if((tmp_type != null) && (!tmp_type.isNull())) {
803           throw new Error("Error: mixed type in var initializer list");
804         }
805       } else if(out_type.isInt()) {
806         if(!tmp_type.isInt()) {
807           throw new Error("Error: mixed type in var initializer list");
808         }
809       } else if(out_type.isString()) {
810         if(!tmp_type.isString()) {
811           throw new Error("Error: mixed type in var initializer list");
812         }
813       }
814     }
815     if(out_type != null) {
816       out_type = out_type.makeArray(state);
817     }
818     ain.setType(out_type);
819   }
820
821   void checkAssignmentNode(Descriptor md, SymbolTable nametable, AssignmentNode an, TypeDescriptor td) {
822     boolean postinc=true;
823     if (an.getOperation().getBaseOp()==null||
824         (an.getOperation().getBaseOp().getOp()!=Operation.POSTINC&&
825          an.getOperation().getBaseOp().getOp()!=Operation.POSTDEC))
826       postinc=false;
827     if (!postinc)      
828       checkExpressionNode(md, nametable, an.getSrc(),td);
829     //TODO: Need check on validity of operation here
830     if (!((an.getDest() instanceof FieldAccessNode)||
831           (an.getDest() instanceof ArrayAccessNode)||
832           (an.getDest() instanceof NameNode)))
833       throw new Error("Bad lside in "+an.printNode(0));
834     checkExpressionNode(md, nametable, an.getDest(), null);
835
836     /* We want parameter variables to tasks to be immutable */
837     if (md instanceof TaskDescriptor) {
838       if (an.getDest() instanceof NameNode) {
839         NameNode nn=(NameNode)an.getDest();
840         if (nn.getVar()!=null) {
841           if (((TaskDescriptor)md).getParameterTable().contains(nn.getVar().getSymbol()))
842             throw new Error("Can't modify parameter "+nn.getVar()+ " to task "+td.getSymbol());
843         }
844       }
845     }
846
847     if (an.getDest().getType().isString()&&an.getOperation().getOp()==AssignOperation.PLUSEQ) {
848       //String add
849       ClassDescriptor stringcl=getClass(TypeUtil.StringClass);
850       TypeDescriptor stringtd=new TypeDescriptor(stringcl);
851       NameDescriptor nd=new NameDescriptor("String");
852       NameDescriptor valuend=new NameDescriptor(nd, "valueOf");
853
854       if (!(an.getSrc().getType().isString()&&(an.getSrc() instanceof OpNode))) {
855         MethodInvokeNode rightmin=new MethodInvokeNode(valuend);
856         rightmin.addArgument(an.getSrc());
857         an.right=rightmin;
858         checkExpressionNode(md, nametable, an.getSrc(), null);
859       }
860     }
861
862     if (!postinc&&!typeutil.isSuperorType(an.getDest().getType(),an.getSrc().getType())) {
863       throw new Error("Type of rside ("+an.getSrc().getType().toPrettyString()+") not compatible with type of lside ("+an.getDest().getType().toPrettyString()+")"+an.printNode(0));
864     }
865   }
866
867   void checkLoopNode(Descriptor md, SymbolTable nametable, LoopNode ln) {
868       loopstack.push(ln);
869     if (ln.getType()==LoopNode.WHILELOOP||ln.getType()==LoopNode.DOWHILELOOP) {
870       checkExpressionNode(md, nametable, ln.getCondition(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
871       checkBlockNode(md, nametable, ln.getBody());
872     } else {
873       //For loop case
874       /* Link in the initializer naming environment */
875       BlockNode bn=ln.getInitializer();
876       bn.getVarTable().setParent(nametable);
877       for(int i=0; i<bn.size(); i++) {
878         BlockStatementNode bsn=bn.get(i);
879         checkBlockStatementNode(md, bn.getVarTable(),bsn);
880       }
881       //check the condition
882       checkExpressionNode(md, bn.getVarTable(), ln.getCondition(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
883       checkBlockNode(md, bn.getVarTable(), ln.getBody());
884       checkBlockNode(md, bn.getVarTable(), ln.getUpdate());
885     }
886     loopstack.pop();
887   }
888
889
890   void checkCreateObjectNode(Descriptor md, SymbolTable nametable, CreateObjectNode con, TypeDescriptor td) {
891     TypeDescriptor[] tdarray=new TypeDescriptor[con.numArgs()];
892     for(int i=0; i<con.numArgs(); i++) {
893       ExpressionNode en=con.getArg(i);
894       checkExpressionNode(md,nametable,en,null);
895       tdarray[i]=en.getType();
896     }
897
898     TypeDescriptor typetolookin=con.getType();
899     checkTypeDescriptor(typetolookin);
900
901     if (td!=null&&!typeutil.isSuperorType(td, typetolookin))
902       throw new Error(typetolookin + " isn't a "+td);
903     
904     /* Check Array Initializers */
905     if(state.MGC && (con.getArrayInitializer() != null)) {
906       checkArrayInitializerNode(md, nametable, con.getArrayInitializer(), td);
907     }
908
909     /* Check flag effects */
910     if (con.getFlagEffects()!=null) {
911       FlagEffects fe=con.getFlagEffects();
912       ClassDescriptor cd=typetolookin.getClassDesc();
913
914       for(int j=0; j<fe.numEffects(); j++) {
915         FlagEffect flag=fe.getEffect(j);
916         String name=flag.getName();
917         FlagDescriptor flag_d=(FlagDescriptor)cd.getFlagTable().get(name);
918         //Make sure the flag is declared
919         if (flag_d==null)
920           throw new Error("Flag descriptor "+name+" undefined in class: "+cd.getSymbol());
921         if (flag_d.getExternal())
922           throw new Error("Attempting to modify external flag: "+name);
923         flag.setFlag(flag_d);
924       }
925       for(int j=0; j<fe.numTagEffects(); j++) {
926         TagEffect tag=fe.getTagEffect(j);
927         String name=tag.getName();
928
929         Descriptor d=(Descriptor)nametable.get(name);
930         if (d==null)
931           throw new Error("Tag descriptor "+name+" undeclared");
932         else if (!(d instanceof TagVarDescriptor))
933           throw new Error(name+" is not a tag descriptor");
934         tag.setTag((TagVarDescriptor)d);
935       }
936     }
937
938     if ((!typetolookin.isClass())&&(!typetolookin.isArray()))
939       throw new Error("Can't allocate primitive type:"+con.printNode(0));
940
941     if (!typetolookin.isArray()) {
942       //Array's don't need constructor calls
943       ClassDescriptor classtolookin=typetolookin.getClassDesc();
944
945       Set methoddescriptorset=classtolookin.getMethodTable().getSet(typetolookin.getSymbol());
946       MethodDescriptor bestmd=null;
947 NextMethod:
948       for(Iterator methodit=methoddescriptorset.iterator(); methodit.hasNext();) {
949         MethodDescriptor currmd=(MethodDescriptor)methodit.next();
950         /* Need correct number of parameters */
951         if (con.numArgs()!=currmd.numParameters())
952           continue;
953         for(int i=0; i<con.numArgs(); i++) {
954           if (!typeutil.isSuperorType(currmd.getParamType(i),tdarray[i]))
955             continue NextMethod;
956         }
957         /* Local allocations can't call global allocator */
958         if (!con.isGlobal()&&currmd.isGlobal())
959           continue;
960
961         /* Method okay so far */
962         if (bestmd==null)
963           bestmd=currmd;
964         else {
965           if (typeutil.isMoreSpecific(currmd,bestmd)) {
966             bestmd=currmd;
967           } else if (con.isGlobal()&&match(currmd, bestmd)) {
968             if (currmd.isGlobal()&&!bestmd.isGlobal())
969               bestmd=currmd;
970             else if (currmd.isGlobal()&&bestmd.isGlobal())
971               throw new Error();
972           } else if (!typeutil.isMoreSpecific(bestmd, currmd)) {
973             throw new Error("No method is most specific");
974           }
975
976           /* Is this more specific than bestmd */
977         }
978       }
979       if (bestmd==null)
980         throw new Error("No method found for "+con.printNode(0)+" in "+md);
981       con.setConstructor(bestmd);
982     }
983   }
984
985
986   /** Check to see if md1 is the same specificity as md2.*/
987
988   boolean match(MethodDescriptor md1, MethodDescriptor md2) {
989     /* Checks if md1 is more specific than md2 */
990     if (md1.numParameters()!=md2.numParameters())
991       throw new Error();
992     for(int i=0; i<md1.numParameters(); i++) {
993       if (!md2.getParamType(i).equals(md1.getParamType(i)))
994         return false;
995     }
996     if (!md2.getReturnType().equals(md1.getReturnType()))
997       return false;
998
999     if (!md2.getClassDesc().equals(md1.getClassDesc()))
1000       return false;
1001
1002     return true;
1003   }
1004
1005
1006
1007   ExpressionNode translateNameDescriptorintoExpression(NameDescriptor nd) {
1008     String id=nd.getIdentifier();
1009     NameDescriptor base=nd.getBase();
1010     if (base==null)
1011       return new NameNode(nd);
1012     else
1013       return new FieldAccessNode(translateNameDescriptorintoExpression(base),id);
1014   }
1015
1016
1017   void checkMethodInvokeNode(Descriptor md, SymbolTable nametable, MethodInvokeNode min, TypeDescriptor td) {
1018     /*Typecheck subexpressions
1019        and get types for expressions*/
1020
1021     TypeDescriptor[] tdarray=new TypeDescriptor[min.numArgs()];
1022     for(int i=0; i<min.numArgs(); i++) {
1023       ExpressionNode en=min.getArg(i);
1024       checkExpressionNode(md,nametable,en,null);
1025       tdarray[i]=en.getType();
1026       if(state.MGC && en.getType().isClass() && en.getType().getClassDesc().isEnum()) {
1027         tdarray[i] = new TypeDescriptor(TypeDescriptor.INT);
1028       }
1029     }
1030     TypeDescriptor typetolookin=null;
1031     if (min.getExpression()!=null) {
1032       checkExpressionNode(md,nametable,min.getExpression(),null);
1033       typetolookin=min.getExpression().getType();
1034       //if (typetolookin==null)
1035       //throw new Error(md+" has null return type");
1036
1037     } else if (min.getBaseName()!=null) {
1038       String rootname=min.getBaseName().getRoot();
1039       if (rootname.equals("super")) {
1040         ClassDescriptor supercd=((MethodDescriptor)md).getClassDesc().getSuperDesc();
1041         typetolookin=new TypeDescriptor(supercd);
1042       } else if (nametable.get(rootname)!=null) {
1043         //we have an expression
1044         min.setExpression(translateNameDescriptorintoExpression(min.getBaseName()));
1045         checkExpressionNode(md, nametable, min.getExpression(), null);
1046         typetolookin=min.getExpression().getType();
1047       } else {
1048         //we have a type
1049         ClassDescriptor cd;
1050         if (min.getBaseName().getSymbol().equals("System.out"))
1051           cd=getClass("System");
1052         else
1053           cd=getClass(min.getBaseName().getSymbol());
1054         if (cd==null)
1055           throw new Error("md = "+ md.toString()+ "  "+min.getBaseName()+" undefined");
1056         typetolookin=new TypeDescriptor(cd);
1057       }
1058     } else if ((md instanceof MethodDescriptor)&&min.getMethodName().equals("super")) {
1059       ClassDescriptor supercd=((MethodDescriptor)md).getClassDesc().getSuperDesc();
1060       min.methodid=supercd.getSymbol();
1061       typetolookin=new TypeDescriptor(supercd);
1062     } else if (md instanceof MethodDescriptor) {
1063       typetolookin=new TypeDescriptor(((MethodDescriptor)md).getClassDesc());
1064     } else {
1065       /* If this a task descriptor we throw an error at this point */
1066       throw new Error("Unknown method call to "+min.getMethodName()+"in task"+md.getSymbol());
1067     }
1068     if (!typetolookin.isClass())
1069       throw new Error("Error with method call to "+min.getMethodName());
1070     ClassDescriptor classtolookin=typetolookin.getClassDesc();
1071     //System.out.println("Method name="+min.getMethodName());
1072
1073     Set methoddescriptorset=classtolookin.getMethodTable().getSet(min.getMethodName());
1074     MethodDescriptor bestmd=null;
1075 NextMethod:
1076     for(Iterator methodit=methoddescriptorset.iterator(); methodit.hasNext();) {
1077       MethodDescriptor currmd=(MethodDescriptor)methodit.next();
1078       /* Need correct number of parameters */
1079       if (min.numArgs()!=currmd.numParameters())
1080         continue;
1081       for(int i=0; i<min.numArgs(); i++) {
1082         if (!typeutil.isSuperorType(currmd.getParamType(i),tdarray[i]))
1083           continue NextMethod;
1084       }
1085       /* Method okay so far */
1086       if (bestmd==null)
1087         bestmd=currmd;
1088       else {
1089         if (typeutil.isMoreSpecific(currmd,bestmd)) {
1090           bestmd=currmd;
1091         } else if (!typeutil.isMoreSpecific(bestmd, currmd))
1092           throw new Error("No method is most specific");
1093
1094         /* Is this more specific than bestmd */
1095       }
1096     }
1097     if (bestmd==null)
1098       throw new Error("No method found for :"+min.printNode(0)+" in class: " + classtolookin+" in "+md);
1099     min.setMethod(bestmd);
1100
1101     if ((td!=null)&&(min.getType()!=null)&&!typeutil.isSuperorType(td,  min.getType()))
1102       throw new Error(min.getType()+ " is not equal to or a subclass of "+td);
1103     /* Check whether we need to set this parameter to implied this */
1104     if (!bestmd.isStatic()) {
1105       if (min.getExpression()==null) {
1106         ExpressionNode en=new NameNode(new NameDescriptor("this"));
1107         min.setExpression(en);
1108         checkExpressionNode(md, nametable, min.getExpression(), null);
1109       }
1110     }
1111   }
1112
1113
1114   void checkOpNode(Descriptor md, SymbolTable nametable, OpNode on, TypeDescriptor td) {
1115     checkExpressionNode(md, nametable, on.getLeft(), null);
1116     if (on.getRight()!=null)
1117       checkExpressionNode(md, nametable, on.getRight(), null);
1118     TypeDescriptor ltd=on.getLeft().getType();
1119     TypeDescriptor rtd=on.getRight()!=null ? on.getRight().getType() : null;
1120     TypeDescriptor lefttype=null;
1121     TypeDescriptor righttype=null;
1122     Operation op=on.getOp();
1123
1124     switch(op.getOp()) {
1125     case Operation.LOGIC_OR:
1126     case Operation.LOGIC_AND:
1127       if (!(rtd.isBoolean()))
1128         throw new Error();
1129       on.setRightType(rtd);
1130
1131     case Operation.LOGIC_NOT:
1132       if (!(ltd.isBoolean()))
1133         throw new Error();
1134       //no promotion
1135       on.setLeftType(ltd);
1136
1137       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
1138       break;
1139
1140     case Operation.COMP:
1141       // 5.6.2 Binary Numeric Promotion
1142       //TODO unboxing of reference objects
1143       if (ltd.isDouble())
1144         throw new Error();
1145       else if (ltd.isFloat())
1146         throw new Error();
1147       else if (ltd.isLong())
1148         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
1149       else
1150         lefttype=new TypeDescriptor(TypeDescriptor.INT);
1151       on.setLeftType(lefttype);
1152       on.setType(lefttype);
1153       break;
1154
1155     case Operation.BIT_OR:
1156     case Operation.BIT_XOR:
1157     case Operation.BIT_AND:
1158       // 5.6.2 Binary Numeric Promotion
1159       //TODO unboxing of reference objects
1160       if (ltd.isDouble()||rtd.isDouble())
1161         throw new Error();
1162       else if (ltd.isFloat()||rtd.isFloat())
1163         throw new Error();
1164       else if (ltd.isLong()||rtd.isLong())
1165         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
1166       // 090205 hack for boolean
1167       else if (ltd.isBoolean()||rtd.isBoolean())
1168         lefttype=new TypeDescriptor(TypeDescriptor.BOOLEAN);
1169       else
1170         lefttype=new TypeDescriptor(TypeDescriptor.INT);
1171       righttype=lefttype;
1172
1173       on.setLeftType(lefttype);
1174       on.setRightType(righttype);
1175       on.setType(lefttype);
1176       break;
1177
1178     case Operation.ISAVAILABLE:
1179       if (!(ltd.isPtr())) {
1180         throw new Error("Can't use isavailable on non-pointers/non-parameters.");
1181       }
1182       lefttype=ltd;
1183       on.setLeftType(lefttype);
1184       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
1185       break;
1186
1187     case Operation.EQUAL:
1188     case Operation.NOTEQUAL:
1189       // 5.6.2 Binary Numeric Promotion
1190       //TODO unboxing of reference objects
1191       if (ltd.isBoolean()||rtd.isBoolean()) {
1192         if (!(ltd.isBoolean()&&rtd.isBoolean()))
1193           throw new Error();
1194         righttype=lefttype=new TypeDescriptor(TypeDescriptor.BOOLEAN);
1195       } else if (ltd.isPtr()||rtd.isPtr()) {
1196         if (!(ltd.isPtr()&&rtd.isPtr()))
1197           throw new Error();
1198         righttype=rtd;
1199         lefttype=ltd;
1200       } else if (ltd.isDouble()||rtd.isDouble())
1201         righttype=lefttype=new TypeDescriptor(TypeDescriptor.DOUBLE);
1202       else if (ltd.isFloat()||rtd.isFloat())
1203         righttype=lefttype=new TypeDescriptor(TypeDescriptor.FLOAT);
1204       else if (ltd.isLong()||rtd.isLong())
1205         righttype=lefttype=new TypeDescriptor(TypeDescriptor.LONG);
1206       else
1207         righttype=lefttype=new TypeDescriptor(TypeDescriptor.INT);
1208
1209       on.setLeftType(lefttype);
1210       on.setRightType(righttype);
1211       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
1212       break;
1213
1214
1215
1216     case Operation.LT:
1217     case Operation.GT:
1218     case Operation.LTE:
1219     case Operation.GTE:
1220       // 5.6.2 Binary Numeric Promotion
1221       //TODO unboxing of reference objects
1222       if (!ltd.isNumber()||!rtd.isNumber()) {
1223         if (!ltd.isNumber())
1224           throw new Error("Leftside is not number"+on.printNode(0)+"type="+ltd.toPrettyString());
1225         if (!rtd.isNumber())
1226           throw new Error("Rightside is not number"+on.printNode(0));
1227       }
1228
1229       if (ltd.isDouble()||rtd.isDouble())
1230         lefttype=new TypeDescriptor(TypeDescriptor.DOUBLE);
1231       else if (ltd.isFloat()||rtd.isFloat())
1232         lefttype=new TypeDescriptor(TypeDescriptor.FLOAT);
1233       else if (ltd.isLong()||rtd.isLong())
1234         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
1235       else
1236         lefttype=new TypeDescriptor(TypeDescriptor.INT);
1237       righttype=lefttype;
1238       on.setLeftType(lefttype);
1239       on.setRightType(righttype);
1240       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
1241       break;
1242
1243     case Operation.ADD:
1244       if (ltd.isString()||rtd.isString()) {
1245         ClassDescriptor stringcl=getClass(TypeUtil.StringClass);
1246         TypeDescriptor stringtd=new TypeDescriptor(stringcl);
1247         NameDescriptor nd=new NameDescriptor("String");
1248         NameDescriptor valuend=new NameDescriptor(nd, "valueOf");
1249         if (!(ltd.isString()&&(on.getLeft() instanceof OpNode))) {
1250           MethodInvokeNode leftmin=new MethodInvokeNode(valuend);
1251           leftmin.addArgument(on.getLeft());
1252           on.left=leftmin;
1253           checkExpressionNode(md, nametable, on.getLeft(), null);
1254         }
1255
1256         if (!(rtd.isString()&&(on.getRight() instanceof OpNode))) {
1257           MethodInvokeNode rightmin=new MethodInvokeNode(valuend);
1258           rightmin.addArgument(on.getRight());
1259           on.right=rightmin;
1260           checkExpressionNode(md, nametable, on.getRight(), null);
1261         }
1262
1263         on.setLeftType(stringtd);
1264         on.setRightType(stringtd);
1265         on.setType(stringtd);
1266         break;
1267       }
1268
1269     case Operation.SUB:
1270     case Operation.MULT:
1271     case Operation.DIV:
1272     case Operation.MOD:
1273       // 5.6.2 Binary Numeric Promotion
1274       //TODO unboxing of reference objects
1275       if (ltd.isArray()||rtd.isArray()||!ltd.isNumber()||!rtd.isNumber())
1276         throw new Error("Error in "+on.printNode(0));
1277
1278       if (ltd.isDouble()||rtd.isDouble())
1279         lefttype=new TypeDescriptor(TypeDescriptor.DOUBLE);
1280       else if (ltd.isFloat()||rtd.isFloat())
1281         lefttype=new TypeDescriptor(TypeDescriptor.FLOAT);
1282       else if (ltd.isLong()||rtd.isLong())
1283         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
1284       else
1285         lefttype=new TypeDescriptor(TypeDescriptor.INT);
1286       righttype=lefttype;
1287       on.setLeftType(lefttype);
1288       on.setRightType(righttype);
1289       on.setType(lefttype);
1290       break;
1291
1292     case Operation.LEFTSHIFT:
1293     case Operation.RIGHTSHIFT:
1294     case Operation.URIGHTSHIFT:
1295       if (!rtd.isIntegerType())
1296         throw new Error();
1297       //5.6.1 Unary Numeric Promotion
1298       if (rtd.isByte()||rtd.isShort()||rtd.isInt())
1299         righttype=new TypeDescriptor(TypeDescriptor.INT);
1300       else
1301         righttype=rtd;
1302
1303       on.setRightType(righttype);
1304       if (!ltd.isIntegerType())
1305         throw new Error();
1306
1307     case Operation.UNARYPLUS:
1308     case Operation.UNARYMINUS:
1309       /*        case Operation.POSTINC:
1310           case Operation.POSTDEC:
1311           case Operation.PREINC:
1312           case Operation.PREDEC:*/
1313       if (!ltd.isNumber())
1314         throw new Error();
1315       //5.6.1 Unary Numeric Promotion
1316       if (ltd.isByte()||ltd.isShort()||ltd.isInt())
1317         lefttype=new TypeDescriptor(TypeDescriptor.INT);
1318       else
1319         lefttype=ltd;
1320       on.setLeftType(lefttype);
1321       on.setType(lefttype);
1322       break;
1323
1324     default:
1325       throw new Error(op.toString());
1326     }
1327
1328     if (td!=null)
1329       if (!typeutil.isSuperorType(td, on.getType())) {
1330         System.out.println(td);
1331         System.out.println(on.getType());
1332         throw new Error("Type of rside not compatible with type of lside"+on.printNode(0));
1333       }
1334   }
1335 }