Add support for Enum type for mgc version and also add default constructor. Comment...
[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     for( int i = 0; i < ain.numVarInitializers(); ++i ) {
777       checkExpressionNode(md, nametable, ain.getVarInitializer(i), td); 
778     }
779   }
780
781   void checkAssignmentNode(Descriptor md, SymbolTable nametable, AssignmentNode an, TypeDescriptor td) {
782     boolean postinc=true;
783     if (an.getOperation().getBaseOp()==null||
784         (an.getOperation().getBaseOp().getOp()!=Operation.POSTINC&&
785          an.getOperation().getBaseOp().getOp()!=Operation.POSTDEC))
786       postinc=false;
787     if (!postinc)      
788       checkExpressionNode(md, nametable, an.getSrc(),td);
789     //TODO: Need check on validity of operation here
790     if (!((an.getDest() instanceof FieldAccessNode)||
791           (an.getDest() instanceof ArrayAccessNode)||
792           (an.getDest() instanceof NameNode)))
793       throw new Error("Bad lside in "+an.printNode(0));
794     checkExpressionNode(md, nametable, an.getDest(), null);
795
796     /* We want parameter variables to tasks to be immutable */
797     if (md instanceof TaskDescriptor) {
798       if (an.getDest() instanceof NameNode) {
799         NameNode nn=(NameNode)an.getDest();
800         if (nn.getVar()!=null) {
801           if (((TaskDescriptor)md).getParameterTable().contains(nn.getVar().getSymbol()))
802             throw new Error("Can't modify parameter "+nn.getVar()+ " to task "+td.getSymbol());
803         }
804       }
805     }
806
807     if (an.getDest().getType().isString()&&an.getOperation().getOp()==AssignOperation.PLUSEQ) {
808       //String add
809       ClassDescriptor stringcl=getClass(TypeUtil.StringClass);
810       TypeDescriptor stringtd=new TypeDescriptor(stringcl);
811       NameDescriptor nd=new NameDescriptor("String");
812       NameDescriptor valuend=new NameDescriptor(nd, "valueOf");
813
814       if (!(an.getSrc().getType().isString()&&(an.getSrc() instanceof OpNode))) {
815         MethodInvokeNode rightmin=new MethodInvokeNode(valuend);
816         rightmin.addArgument(an.getSrc());
817         an.right=rightmin;
818         checkExpressionNode(md, nametable, an.getSrc(), null);
819       }
820     }
821
822     if (!postinc&&!typeutil.isSuperorType(an.getDest().getType(),an.getSrc().getType())) {
823       throw new Error("Type of rside ("+an.getSrc().getType().toPrettyString()+") not compatible with type of lside ("+an.getDest().getType().toPrettyString()+")"+an.printNode(0));
824     }
825   }
826
827   void checkLoopNode(Descriptor md, SymbolTable nametable, LoopNode ln) {
828       loopstack.push(ln);
829     if (ln.getType()==LoopNode.WHILELOOP||ln.getType()==LoopNode.DOWHILELOOP) {
830       checkExpressionNode(md, nametable, ln.getCondition(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
831       checkBlockNode(md, nametable, ln.getBody());
832     } else {
833       //For loop case
834       /* Link in the initializer naming environment */
835       BlockNode bn=ln.getInitializer();
836       bn.getVarTable().setParent(nametable);
837       for(int i=0; i<bn.size(); i++) {
838         BlockStatementNode bsn=bn.get(i);
839         checkBlockStatementNode(md, bn.getVarTable(),bsn);
840       }
841       //check the condition
842       checkExpressionNode(md, bn.getVarTable(), ln.getCondition(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
843       checkBlockNode(md, bn.getVarTable(), ln.getBody());
844       checkBlockNode(md, bn.getVarTable(), ln.getUpdate());
845     }
846     loopstack.pop();
847   }
848
849
850   void checkCreateObjectNode(Descriptor md, SymbolTable nametable, CreateObjectNode con, TypeDescriptor td) {
851     TypeDescriptor[] tdarray=new TypeDescriptor[con.numArgs()];
852     for(int i=0; i<con.numArgs(); i++) {
853       ExpressionNode en=con.getArg(i);
854       checkExpressionNode(md,nametable,en,null);
855       tdarray[i]=en.getType();
856     }
857
858     TypeDescriptor typetolookin=con.getType();
859     checkTypeDescriptor(typetolookin);
860
861     if (td!=null&&!typeutil.isSuperorType(td, typetolookin))
862       throw new Error(typetolookin + " isn't a "+td);
863
864     /* Check flag effects */
865     if (con.getFlagEffects()!=null) {
866       FlagEffects fe=con.getFlagEffects();
867       ClassDescriptor cd=typetolookin.getClassDesc();
868
869       for(int j=0; j<fe.numEffects(); j++) {
870         FlagEffect flag=fe.getEffect(j);
871         String name=flag.getName();
872         FlagDescriptor flag_d=(FlagDescriptor)cd.getFlagTable().get(name);
873         //Make sure the flag is declared
874         if (flag_d==null)
875           throw new Error("Flag descriptor "+name+" undefined in class: "+cd.getSymbol());
876         if (flag_d.getExternal())
877           throw new Error("Attempting to modify external flag: "+name);
878         flag.setFlag(flag_d);
879       }
880       for(int j=0; j<fe.numTagEffects(); j++) {
881         TagEffect tag=fe.getTagEffect(j);
882         String name=tag.getName();
883
884         Descriptor d=(Descriptor)nametable.get(name);
885         if (d==null)
886           throw new Error("Tag descriptor "+name+" undeclared");
887         else if (!(d instanceof TagVarDescriptor))
888           throw new Error(name+" is not a tag descriptor");
889         tag.setTag((TagVarDescriptor)d);
890       }
891     }
892
893     if ((!typetolookin.isClass())&&(!typetolookin.isArray()))
894       throw new Error("Can't allocate primitive type:"+con.printNode(0));
895
896     if (!typetolookin.isArray()) {
897       //Array's don't need constructor calls
898       ClassDescriptor classtolookin=typetolookin.getClassDesc();
899
900       Set methoddescriptorset=classtolookin.getMethodTable().getSet(typetolookin.getSymbol());
901       MethodDescriptor bestmd=null;
902 NextMethod:
903       for(Iterator methodit=methoddescriptorset.iterator(); methodit.hasNext();) {
904         MethodDescriptor currmd=(MethodDescriptor)methodit.next();
905         /* Need correct number of parameters */
906         if (con.numArgs()!=currmd.numParameters())
907           continue;
908         for(int i=0; i<con.numArgs(); i++) {
909           if (!typeutil.isSuperorType(currmd.getParamType(i),tdarray[i]))
910             continue NextMethod;
911         }
912         /* Local allocations can't call global allocator */
913         if (!con.isGlobal()&&currmd.isGlobal())
914           continue;
915
916         /* Method okay so far */
917         if (bestmd==null)
918           bestmd=currmd;
919         else {
920           if (typeutil.isMoreSpecific(currmd,bestmd)) {
921             bestmd=currmd;
922           } else if (con.isGlobal()&&match(currmd, bestmd)) {
923             if (currmd.isGlobal()&&!bestmd.isGlobal())
924               bestmd=currmd;
925             else if (currmd.isGlobal()&&bestmd.isGlobal())
926               throw new Error();
927           } else if (!typeutil.isMoreSpecific(bestmd, currmd)) {
928             throw new Error("No method is most specific");
929           }
930
931           /* Is this more specific than bestmd */
932         }
933       }
934       if (bestmd==null)
935         throw new Error("No method found for "+con.printNode(0)+" in "+md);
936       con.setConstructor(bestmd);
937     }
938   }
939
940
941   /** Check to see if md1 is the same specificity as md2.*/
942
943   boolean match(MethodDescriptor md1, MethodDescriptor md2) {
944     /* Checks if md1 is more specific than md2 */
945     if (md1.numParameters()!=md2.numParameters())
946       throw new Error();
947     for(int i=0; i<md1.numParameters(); i++) {
948       if (!md2.getParamType(i).equals(md1.getParamType(i)))
949         return false;
950     }
951     if (!md2.getReturnType().equals(md1.getReturnType()))
952       return false;
953
954     if (!md2.getClassDesc().equals(md1.getClassDesc()))
955       return false;
956
957     return true;
958   }
959
960
961
962   ExpressionNode translateNameDescriptorintoExpression(NameDescriptor nd) {
963     String id=nd.getIdentifier();
964     NameDescriptor base=nd.getBase();
965     if (base==null)
966       return new NameNode(nd);
967     else
968       return new FieldAccessNode(translateNameDescriptorintoExpression(base),id);
969   }
970
971
972   void checkMethodInvokeNode(Descriptor md, SymbolTable nametable, MethodInvokeNode min, TypeDescriptor td) {
973     /*Typecheck subexpressions
974        and get types for expressions*/
975
976     TypeDescriptor[] tdarray=new TypeDescriptor[min.numArgs()];
977     for(int i=0; i<min.numArgs(); i++) {
978       ExpressionNode en=min.getArg(i);
979       checkExpressionNode(md,nametable,en,null);
980       tdarray[i]=en.getType();
981       if(state.MGC && en.getType().isClass() && en.getType().getClassDesc().isEnum()) {
982         tdarray[i] = new TypeDescriptor(TypeDescriptor.INT);
983       }
984     }
985     TypeDescriptor typetolookin=null;
986     if (min.getExpression()!=null) {
987       checkExpressionNode(md,nametable,min.getExpression(),null);
988       typetolookin=min.getExpression().getType();
989       //if (typetolookin==null)
990       //throw new Error(md+" has null return type");
991
992     } else if (min.getBaseName()!=null) {
993       String rootname=min.getBaseName().getRoot();
994       if (rootname.equals("super")) {
995         ClassDescriptor supercd=((MethodDescriptor)md).getClassDesc().getSuperDesc();
996         typetolookin=new TypeDescriptor(supercd);
997       } else if (nametable.get(rootname)!=null) {
998         //we have an expression
999         min.setExpression(translateNameDescriptorintoExpression(min.getBaseName()));
1000         checkExpressionNode(md, nametable, min.getExpression(), null);
1001         typetolookin=min.getExpression().getType();
1002       } else {
1003         //we have a type
1004         ClassDescriptor cd;
1005         if (min.getBaseName().getSymbol().equals("System.out"))
1006           cd=getClass("System");
1007         else
1008           cd=getClass(min.getBaseName().getSymbol());
1009         if (cd==null)
1010           throw new Error("md = "+ md.toString()+ "  "+min.getBaseName()+" undefined");
1011         typetolookin=new TypeDescriptor(cd);
1012       }
1013     } else if ((md instanceof MethodDescriptor)&&min.getMethodName().equals("super")) {
1014       ClassDescriptor supercd=((MethodDescriptor)md).getClassDesc().getSuperDesc();
1015       min.methodid=supercd.getSymbol();
1016       typetolookin=new TypeDescriptor(supercd);
1017     } else if (md instanceof MethodDescriptor) {
1018       typetolookin=new TypeDescriptor(((MethodDescriptor)md).getClassDesc());
1019     } else {
1020       /* If this a task descriptor we throw an error at this point */
1021       throw new Error("Unknown method call to "+min.getMethodName()+"in task"+md.getSymbol());
1022     }
1023     if (!typetolookin.isClass())
1024       throw new Error("Error with method call to "+min.getMethodName());
1025     ClassDescriptor classtolookin=typetolookin.getClassDesc();
1026     //System.out.println("Method name="+min.getMethodName());
1027
1028     Set methoddescriptorset=classtolookin.getMethodTable().getSet(min.getMethodName());
1029     MethodDescriptor bestmd=null;
1030 NextMethod:
1031     for(Iterator methodit=methoddescriptorset.iterator(); methodit.hasNext();) {
1032       MethodDescriptor currmd=(MethodDescriptor)methodit.next();
1033       /* Need correct number of parameters */
1034       if (min.numArgs()!=currmd.numParameters())
1035         continue;
1036       for(int i=0; i<min.numArgs(); i++) {
1037         if (!typeutil.isSuperorType(currmd.getParamType(i),tdarray[i]))
1038           continue NextMethod;
1039       }
1040       /* Method okay so far */
1041       if (bestmd==null)
1042         bestmd=currmd;
1043       else {
1044         if (typeutil.isMoreSpecific(currmd,bestmd)) {
1045           bestmd=currmd;
1046         } else if (!typeutil.isMoreSpecific(bestmd, currmd))
1047           throw new Error("No method is most specific");
1048
1049         /* Is this more specific than bestmd */
1050       }
1051     }
1052     if (bestmd==null)
1053       throw new Error("No method found for :"+min.printNode(0)+" in class: " + classtolookin+" in "+md);
1054     min.setMethod(bestmd);
1055
1056     if ((td!=null)&&(min.getType()!=null)&&!typeutil.isSuperorType(td,  min.getType()))
1057       throw new Error(min.getType()+ " is not equal to or a subclass of "+td);
1058     /* Check whether we need to set this parameter to implied this */
1059     if (!bestmd.isStatic()) {
1060       if (min.getExpression()==null) {
1061         ExpressionNode en=new NameNode(new NameDescriptor("this"));
1062         min.setExpression(en);
1063         checkExpressionNode(md, nametable, min.getExpression(), null);
1064       }
1065     }
1066   }
1067
1068
1069   void checkOpNode(Descriptor md, SymbolTable nametable, OpNode on, TypeDescriptor td) {
1070     checkExpressionNode(md, nametable, on.getLeft(), null);
1071     if (on.getRight()!=null)
1072       checkExpressionNode(md, nametable, on.getRight(), null);
1073     TypeDescriptor ltd=on.getLeft().getType();
1074     TypeDescriptor rtd=on.getRight()!=null ? on.getRight().getType() : null;
1075     TypeDescriptor lefttype=null;
1076     TypeDescriptor righttype=null;
1077     Operation op=on.getOp();
1078
1079     switch(op.getOp()) {
1080     case Operation.LOGIC_OR:
1081     case Operation.LOGIC_AND:
1082       if (!(rtd.isBoolean()))
1083         throw new Error();
1084       on.setRightType(rtd);
1085
1086     case Operation.LOGIC_NOT:
1087       if (!(ltd.isBoolean()))
1088         throw new Error();
1089       //no promotion
1090       on.setLeftType(ltd);
1091
1092       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
1093       break;
1094
1095     case Operation.COMP:
1096       // 5.6.2 Binary Numeric Promotion
1097       //TODO unboxing of reference objects
1098       if (ltd.isDouble())
1099         throw new Error();
1100       else if (ltd.isFloat())
1101         throw new Error();
1102       else if (ltd.isLong())
1103         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
1104       else
1105         lefttype=new TypeDescriptor(TypeDescriptor.INT);
1106       on.setLeftType(lefttype);
1107       on.setType(lefttype);
1108       break;
1109
1110     case Operation.BIT_OR:
1111     case Operation.BIT_XOR:
1112     case Operation.BIT_AND:
1113       // 5.6.2 Binary Numeric Promotion
1114       //TODO unboxing of reference objects
1115       if (ltd.isDouble()||rtd.isDouble())
1116         throw new Error();
1117       else if (ltd.isFloat()||rtd.isFloat())
1118         throw new Error();
1119       else if (ltd.isLong()||rtd.isLong())
1120         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
1121       // 090205 hack for boolean
1122       else if (ltd.isBoolean()||rtd.isBoolean())
1123         lefttype=new TypeDescriptor(TypeDescriptor.BOOLEAN);
1124       else
1125         lefttype=new TypeDescriptor(TypeDescriptor.INT);
1126       righttype=lefttype;
1127
1128       on.setLeftType(lefttype);
1129       on.setRightType(righttype);
1130       on.setType(lefttype);
1131       break;
1132
1133     case Operation.ISAVAILABLE:
1134       if (!(ltd.isPtr())) {
1135         throw new Error("Can't use isavailable on non-pointers/non-parameters.");
1136       }
1137       lefttype=ltd;
1138       on.setLeftType(lefttype);
1139       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
1140       break;
1141
1142     case Operation.EQUAL:
1143     case Operation.NOTEQUAL:
1144       // 5.6.2 Binary Numeric Promotion
1145       //TODO unboxing of reference objects
1146       if (ltd.isBoolean()||rtd.isBoolean()) {
1147         if (!(ltd.isBoolean()&&rtd.isBoolean()))
1148           throw new Error();
1149         righttype=lefttype=new TypeDescriptor(TypeDescriptor.BOOLEAN);
1150       } else if (ltd.isPtr()||rtd.isPtr()) {
1151         if (!(ltd.isPtr()&&rtd.isPtr()))
1152           throw new Error();
1153         righttype=rtd;
1154         lefttype=ltd;
1155       } else if (ltd.isDouble()||rtd.isDouble())
1156         righttype=lefttype=new TypeDescriptor(TypeDescriptor.DOUBLE);
1157       else if (ltd.isFloat()||rtd.isFloat())
1158         righttype=lefttype=new TypeDescriptor(TypeDescriptor.FLOAT);
1159       else if (ltd.isLong()||rtd.isLong())
1160         righttype=lefttype=new TypeDescriptor(TypeDescriptor.LONG);
1161       else
1162         righttype=lefttype=new TypeDescriptor(TypeDescriptor.INT);
1163
1164       on.setLeftType(lefttype);
1165       on.setRightType(righttype);
1166       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
1167       break;
1168
1169
1170
1171     case Operation.LT:
1172     case Operation.GT:
1173     case Operation.LTE:
1174     case Operation.GTE:
1175       // 5.6.2 Binary Numeric Promotion
1176       //TODO unboxing of reference objects
1177       if (!ltd.isNumber()||!rtd.isNumber()) {
1178         if (!ltd.isNumber())
1179           throw new Error("Leftside is not number"+on.printNode(0)+"type="+ltd.toPrettyString());
1180         if (!rtd.isNumber())
1181           throw new Error("Rightside is not number"+on.printNode(0));
1182       }
1183
1184       if (ltd.isDouble()||rtd.isDouble())
1185         lefttype=new TypeDescriptor(TypeDescriptor.DOUBLE);
1186       else if (ltd.isFloat()||rtd.isFloat())
1187         lefttype=new TypeDescriptor(TypeDescriptor.FLOAT);
1188       else if (ltd.isLong()||rtd.isLong())
1189         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
1190       else
1191         lefttype=new TypeDescriptor(TypeDescriptor.INT);
1192       righttype=lefttype;
1193       on.setLeftType(lefttype);
1194       on.setRightType(righttype);
1195       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
1196       break;
1197
1198     case Operation.ADD:
1199       if (ltd.isString()||rtd.isString()) {
1200         ClassDescriptor stringcl=getClass(TypeUtil.StringClass);
1201         TypeDescriptor stringtd=new TypeDescriptor(stringcl);
1202         NameDescriptor nd=new NameDescriptor("String");
1203         NameDescriptor valuend=new NameDescriptor(nd, "valueOf");
1204         if (!(ltd.isString()&&(on.getLeft() instanceof OpNode))) {
1205           MethodInvokeNode leftmin=new MethodInvokeNode(valuend);
1206           leftmin.addArgument(on.getLeft());
1207           on.left=leftmin;
1208           checkExpressionNode(md, nametable, on.getLeft(), null);
1209         }
1210
1211         if (!(rtd.isString()&&(on.getRight() instanceof OpNode))) {
1212           MethodInvokeNode rightmin=new MethodInvokeNode(valuend);
1213           rightmin.addArgument(on.getRight());
1214           on.right=rightmin;
1215           checkExpressionNode(md, nametable, on.getRight(), null);
1216         }
1217
1218         on.setLeftType(stringtd);
1219         on.setRightType(stringtd);
1220         on.setType(stringtd);
1221         break;
1222       }
1223
1224     case Operation.SUB:
1225     case Operation.MULT:
1226     case Operation.DIV:
1227     case Operation.MOD:
1228       // 5.6.2 Binary Numeric Promotion
1229       //TODO unboxing of reference objects
1230       if (ltd.isArray()||rtd.isArray()||!ltd.isNumber()||!rtd.isNumber())
1231         throw new Error("Error in "+on.printNode(0));
1232
1233       if (ltd.isDouble()||rtd.isDouble())
1234         lefttype=new TypeDescriptor(TypeDescriptor.DOUBLE);
1235       else if (ltd.isFloat()||rtd.isFloat())
1236         lefttype=new TypeDescriptor(TypeDescriptor.FLOAT);
1237       else if (ltd.isLong()||rtd.isLong())
1238         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
1239       else
1240         lefttype=new TypeDescriptor(TypeDescriptor.INT);
1241       righttype=lefttype;
1242       on.setLeftType(lefttype);
1243       on.setRightType(righttype);
1244       on.setType(lefttype);
1245       break;
1246
1247     case Operation.LEFTSHIFT:
1248     case Operation.RIGHTSHIFT:
1249     case Operation.URIGHTSHIFT:
1250       if (!rtd.isIntegerType())
1251         throw new Error();
1252       //5.6.1 Unary Numeric Promotion
1253       if (rtd.isByte()||rtd.isShort()||rtd.isInt())
1254         righttype=new TypeDescriptor(TypeDescriptor.INT);
1255       else
1256         righttype=rtd;
1257
1258       on.setRightType(righttype);
1259       if (!ltd.isIntegerType())
1260         throw new Error();
1261
1262     case Operation.UNARYPLUS:
1263     case Operation.UNARYMINUS:
1264       /*        case Operation.POSTINC:
1265           case Operation.POSTDEC:
1266           case Operation.PREINC:
1267           case Operation.PREDEC:*/
1268       if (!ltd.isNumber())
1269         throw new Error();
1270       //5.6.1 Unary Numeric Promotion
1271       if (ltd.isByte()||ltd.isShort()||ltd.isInt())
1272         lefttype=new TypeDescriptor(TypeDescriptor.INT);
1273       else
1274         lefttype=ltd;
1275       on.setLeftType(lefttype);
1276       on.setType(lefttype);
1277       break;
1278
1279     default:
1280       throw new Error(op.toString());
1281     }
1282
1283     if (td!=null)
1284       if (!typeutil.isSuperorType(td, on.getType())) {
1285         System.out.println(td);
1286         System.out.println(on.getType());
1287         throw new Error("Type of rside not compatible with type of lside"+on.printNode(0));
1288       }
1289   }
1290 }