Checking in code to put flags into createobjectnodes
[IRC.git] / Robust / src / IR / Tree / SemanticCheck.java
1 package IR.Tree;
2
3 import java.util.*;
4 import IR.*;
5
6 public class SemanticCheck {
7     State state;
8     TypeUtil typeutil;
9
10     public SemanticCheck(State state, TypeUtil tu) {
11         this.state=state;
12         this.typeutil=tu;
13     }
14
15     public void semanticCheck() {
16         SymbolTable classtable=state.getClassSymbolTable();
17         Iterator it=classtable.getDescriptorsIterator();
18         // Do descriptors first
19         while(it.hasNext()) {
20             ClassDescriptor cd=(ClassDescriptor)it.next();
21             System.out.println("Checking class: "+cd);
22             //Set superclass link up
23             if (cd.getSuper()!=null) {
24                 cd.setSuper(typeutil.getClass(cd.getSuper()));
25                 // Link together Field, Method, and Flag tables so classes
26                 // inherit these from their superclasses
27                 cd.getFieldTable().setParent(cd.getSuperDesc().getFieldTable());
28                 cd.getMethodTable().setParent(cd.getSuperDesc().getMethodTable());
29                 cd.getFlagTable().setParent(cd.getSuperDesc().getFlagTable());
30             }
31             
32             /* Check to see that fields are well typed */
33             for(Iterator field_it=cd.getFields();field_it.hasNext();) {
34                 FieldDescriptor fd=(FieldDescriptor)field_it.next();
35                 System.out.println("Checking field: "+fd);
36                 checkField(cd,fd);
37             }
38
39             for(Iterator method_it=cd.getMethods();method_it.hasNext();) {
40                 MethodDescriptor md=(MethodDescriptor)method_it.next();
41                 checkMethod(cd,md);
42             }
43         }
44
45         it=classtable.getDescriptorsIterator();
46         // Do descriptors first
47         while(it.hasNext()) {
48             ClassDescriptor cd=(ClassDescriptor)it.next();
49             for(Iterator method_it=cd.getMethods();method_it.hasNext();) {
50                 MethodDescriptor md=(MethodDescriptor)method_it.next();
51                 checkMethodBody(cd,md);
52             }
53         }
54
55         for(Iterator task_it=state.getTaskSymbolTable().getDescriptorsIterator();task_it.hasNext();) {
56             TaskDescriptor td=(TaskDescriptor)task_it.next();
57             checkTask(td);
58             
59         }
60
61     }
62
63     public void checkTypeDescriptor(TypeDescriptor td) {
64         if (td.isPrimitive())
65             return; /* Done */
66         if (td.isClass()) {
67             String name=td.toString();
68             ClassDescriptor field_cd=(ClassDescriptor)state.getClassSymbolTable().get(name);
69             if (field_cd==null)
70                 throw new Error("Undefined class "+name);
71             td.setClassDescriptor(field_cd);
72             return;
73         }
74         throw new Error();
75     }
76
77     public void checkField(ClassDescriptor cd, FieldDescriptor fd) {
78         checkTypeDescriptor(fd.getType());
79     }
80
81     public void checkFlagEffects(TaskDescriptor td, Vector vfe) {
82         for(int i=0;i<vfe.size();i++) {
83             FlagEffects fe=(FlagEffects) vfe.get(i);
84             String varname=fe.getName();
85             //Make sure the variable is declared as a parameter to the task
86             VarDescriptor vd=(VarDescriptor)td.getParameterTable().get(varname);
87             if (vd==null)
88                 throw new Error("Parameter "+varname+" in Flag Effects not declared");
89             fe.setVar(vd);
90
91             //Make sure it correspods to a class
92             TypeDescriptor type_d=vd.getType();
93             if (!type_d.isClass())
94                 throw new Error("Cannot have non-object argument for flag_effect");
95
96             ClassDescriptor cd=type_d.getClassDesc();
97             for(int j=0;j<fe.numEffects();j++) {
98                 FlagEffect flag=fe.getEffect(j);
99                 String name=flag.getName();
100                 FlagDescriptor flag_d=(FlagDescriptor)cd.getFlagTable().get(name);
101                 //Make sure the flag is declared
102                 if (flag_d==null)
103                     throw new Error("Flag descriptor "+name+" undefined in class: "+cd.getSymbol());
104                 flag.setFlag(flag_d);
105             }
106         }
107     }
108
109     public void checkTask(TaskDescriptor td) {
110         for(int i=0;i<td.numParameters();i++) {
111             /* Check that parameter is well typed */
112             TypeDescriptor param_type=td.getParamType(i);
113             checkTypeDescriptor(param_type);
114
115             /* Check the parameter's flag expression is well formed */
116             FlagExpressionNode fen=td.getFlag(td.getParameter(i));
117             if (!param_type.isClass())
118                 throw new Error("Cannot have non-object argument to a task");
119             ClassDescriptor cd=param_type.getClassDesc();
120             checkFlagExpressionNode(cd, fen);
121             checkFlagEffects(td, td.getFlagEffects());
122
123             /* Check that the task code is valid */
124             BlockNode bn=state.getMethodBody(td);
125             checkBlockNode(td, td.getParameterTable(),bn);
126         }
127     }
128
129     public void checkFlagExpressionNode(ClassDescriptor cd, FlagExpressionNode fen) {
130         switch(fen.kind()) {
131         case Kind.FlagOpNode: 
132             {
133                 FlagOpNode fon=(FlagOpNode)fen;
134                 checkFlagExpressionNode(cd, fon.getLeft());
135                 if (fon.getRight()!=null)
136                     checkFlagExpressionNode(cd, fon.getRight());
137                 break;
138             }
139         case Kind.FlagNode:
140             {
141                 FlagNode fn=(FlagNode)fen;
142                 String name=fn.getFlagName();
143                 FlagDescriptor fd=(FlagDescriptor)cd.getFlagTable().get(name);
144                 if (fd==null)
145                     throw new Error("Undeclared flag: "+name);
146                 fn.setFlag(fd);
147                 break;
148             }
149         default:
150             throw new Error("Unrecognized FlagExpressionNode");
151         }
152     }
153
154     public void checkMethod(ClassDescriptor cd, MethodDescriptor md) {
155         /* Check return type */
156         if (!md.isConstructor())
157             if (!md.getReturnType().isVoid())
158                 checkTypeDescriptor(md.getReturnType());
159
160         for(int i=0;i<md.numParameters();i++) {
161             TypeDescriptor param_type=md.getParamType(i);
162             checkTypeDescriptor(param_type);
163         }
164         /* Link the naming environments */
165         if (!md.isStatic()) /* Fields aren't accessible directly in a static method, so don't link in this table */
166             md.getParameterTable().setParent(cd.getFieldTable());
167         md.setClassDesc(cd);
168         if (!md.isStatic()) {
169             VarDescriptor thisvd=new VarDescriptor(new TypeDescriptor(cd),"this");
170             md.setThis(thisvd);
171         }
172     }
173
174     public void checkMethodBody(ClassDescriptor cd, MethodDescriptor md) {
175         System.out.println("Processing method:"+md);
176         BlockNode bn=state.getMethodBody(md);
177         checkBlockNode(md, md.getParameterTable(),bn);
178     }
179     
180     public void checkBlockNode(Descriptor md, SymbolTable nametable, BlockNode bn) {
181         /* Link in the naming environment */
182         bn.getVarTable().setParent(nametable);
183         for(int i=0;i<bn.size();i++) {
184             BlockStatementNode bsn=bn.get(i);
185             checkBlockStatementNode(md, bn.getVarTable(),bsn);
186         }
187     }
188     
189     public void checkBlockStatementNode(Descriptor md, SymbolTable nametable, BlockStatementNode bsn) {
190         switch(bsn.kind()) {
191         case Kind.BlockExpressionNode:
192             checkBlockExpressionNode(md, nametable,(BlockExpressionNode)bsn);
193             return;
194
195         case Kind.DeclarationNode:
196             checkDeclarationNode(md, nametable, (DeclarationNode)bsn);
197             return;
198             
199         case Kind.IfStatementNode:
200             checkIfStatementNode(md, nametable, (IfStatementNode)bsn);
201             return;
202             
203         case Kind.LoopNode:
204             checkLoopNode(md, nametable, (LoopNode)bsn);
205             return;
206             
207         case Kind.ReturnNode:
208             checkReturnNode(md, nametable, (ReturnNode)bsn);
209             return;
210
211         case Kind.TaskExitNode:
212             checkTaskExitNode(md, nametable, (TaskExitNode)bsn);
213             return;
214
215         case Kind.SubBlockNode:
216             checkSubBlockNode(md, nametable, (SubBlockNode)bsn);
217             return;
218         }
219         throw new Error();
220     }
221
222     void checkBlockExpressionNode(Descriptor md, SymbolTable nametable, BlockExpressionNode ben) {
223         checkExpressionNode(md, nametable, ben.getExpression(), null);
224     }
225
226     void checkDeclarationNode(Descriptor md, SymbolTable nametable,  DeclarationNode dn) {
227         VarDescriptor vd=dn.getVarDescriptor();
228         checkTypeDescriptor(vd.getType());
229         Descriptor d=nametable.get(vd.getSymbol());
230         if ((d==null)||
231             (d instanceof FieldDescriptor)) {
232             nametable.add(vd);
233         } else
234             throw new Error(vd.getSymbol()+" defined a second time");
235         if (dn.getExpression()!=null)
236             checkExpressionNode(md, nametable, dn.getExpression(), vd.getType());
237     }
238     
239     void checkSubBlockNode(Descriptor md, SymbolTable nametable, SubBlockNode sbn) {
240         checkBlockNode(md, nametable, sbn.getBlockNode());
241     }
242
243     void checkReturnNode(Descriptor d, SymbolTable nametable, ReturnNode rn) {
244         if (d instanceof TaskDescriptor)
245             throw new Error("Illegal return appears in Task: "+d.getSymbol());
246         MethodDescriptor md=(MethodDescriptor)d;
247         if (rn.getReturnExpression()!=null)
248             checkExpressionNode(md, nametable, rn.getReturnExpression(), md.getReturnType());
249         else
250             if (md.getReturnType()!=null&&!md.getReturnType().isVoid())
251                 throw new Error("Need to return something for "+md);
252     }
253
254     void checkTaskExitNode(Descriptor md, SymbolTable nametable, TaskExitNode ten) {
255         if (md instanceof MethodDescriptor)
256             throw new Error("Illegal taskexit appears in Method: "+md.getSymbol());
257         checkFlagEffects((TaskDescriptor)md, ten.getFlagEffects());
258     }
259
260     void checkIfStatementNode(Descriptor md, SymbolTable nametable, IfStatementNode isn) {
261         checkExpressionNode(md, nametable, isn.getCondition(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
262         checkBlockNode(md, nametable, isn.getTrueBlock());
263         if (isn.getFalseBlock()!=null)
264             checkBlockNode(md, nametable, isn.getFalseBlock());
265     }
266     
267     void checkExpressionNode(Descriptor md, SymbolTable nametable, ExpressionNode en, TypeDescriptor td) {
268         switch(en.kind()) {
269         case Kind.AssignmentNode:
270             checkAssignmentNode(md,nametable,(AssignmentNode)en,td);
271             return;
272         case Kind.CastNode:
273             checkCastNode(md,nametable,(CastNode)en,td);
274             return;
275         case Kind.CreateObjectNode:
276             checkCreateObjectNode(md,nametable,(CreateObjectNode)en,td);
277             return;
278         case Kind.FieldAccessNode:
279             checkFieldAccessNode(md,nametable,(FieldAccessNode)en,td);
280             return;
281         case Kind.ArrayAccessNode:
282             checkArrayAccessNode(md,nametable,(ArrayAccessNode)en,td);
283             return;
284         case Kind.LiteralNode:
285             checkLiteralNode(md,nametable,(LiteralNode)en,td);
286             return;
287         case Kind.MethodInvokeNode:
288             checkMethodInvokeNode(md,nametable,(MethodInvokeNode)en,td);
289             return;
290         case Kind.NameNode:
291             checkNameNode(md,nametable,(NameNode)en,td);
292             return;
293         case Kind.OpNode:
294             checkOpNode(md,nametable,(OpNode)en,td);
295             return;
296         }
297         throw new Error();
298     }
299
300     void checkCastNode(Descriptor md, SymbolTable nametable, CastNode cn, TypeDescriptor td) {
301         /* Get type descriptor */
302         if (cn.getType()==null) {
303             NameDescriptor typenamed=cn.getTypeName().getName();
304             String typename=typenamed.toString();
305             TypeDescriptor ntd=new TypeDescriptor(typeutil.getClass(typename));
306             cn.setType(ntd);
307         }
308
309         /* Check the type descriptor */
310         TypeDescriptor cast_type=cn.getType();
311         checkTypeDescriptor(cast_type);
312
313         /* Type check */
314         if (td!=null) {
315             if (!typeutil.isSuperorType(td,cast_type))
316                 throw new Error("Cast node returns "+cast_type+", but need "+td);
317         }
318
319         ExpressionNode en=cn.getExpression();
320         checkExpressionNode(md, nametable, en, null);
321         TypeDescriptor etd=en.getType();
322         if (typeutil.isSuperorType(cast_type,etd)) /* Cast trivially succeeds */
323             return;
324
325         if (typeutil.isSuperorType(etd,cast_type)) /* Cast may succeed */
326             return;
327
328         /* Different branches */
329         /* TODO: change if add interfaces */
330         throw new Error("Cast will always fail\n"+cn.printNode(0));
331     }
332
333     void checkFieldAccessNode(Descriptor md, SymbolTable nametable, FieldAccessNode fan, TypeDescriptor td) {
334         ExpressionNode left=fan.getExpression();
335         checkExpressionNode(md,nametable,left,null);
336         TypeDescriptor ltd=left.getType();
337         String fieldname=fan.getFieldName();
338
339         FieldDescriptor fd=null;
340         if (ltd.isArray()&&fieldname.equals("length"))
341             fd=FieldDescriptor.arrayLength;
342         else
343             fd=(FieldDescriptor) ltd.getClassDesc().getFieldTable().get(fieldname);
344         if (fd==null)
345             throw new Error("Unknown field "+fieldname);
346         fan.setField(fd);
347         if (td!=null)
348             if (!typeutil.isSuperorType(td,fan.getType()))
349                 throw new Error("Field node returns "+fan.getType()+", but need "+td);
350     }
351
352     void checkArrayAccessNode(Descriptor md, SymbolTable nametable, ArrayAccessNode aan, TypeDescriptor td) {
353         ExpressionNode left=aan.getExpression();
354         checkExpressionNode(md,nametable,left,null);
355
356         checkExpressionNode(md,nametable,aan.getIndex(),new TypeDescriptor(TypeDescriptor.INT));
357         TypeDescriptor ltd=left.getType();
358
359         if (td!=null)
360             if (!typeutil.isSuperorType(td,aan.getType()))
361                 throw new Error("Field node returns "+aan.getType()+", but need "+td);
362     }
363
364     void checkLiteralNode(Descriptor md, SymbolTable nametable, LiteralNode ln, TypeDescriptor td) {
365         /* Resolve the type */
366         Object o=ln.getValue();
367         if (ln.getTypeString().equals("null")) {
368             ln.setType(new TypeDescriptor(TypeDescriptor.NULL));
369         } else if (o instanceof Integer) {
370             ln.setType(new TypeDescriptor(TypeDescriptor.INT));
371         } else if (o instanceof Long) {
372             ln.setType(new TypeDescriptor(TypeDescriptor.LONG));
373         } else if (o instanceof Float) {
374             ln.setType(new TypeDescriptor(TypeDescriptor.FLOAT));
375         } else if (o instanceof Boolean) {
376             ln.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
377         } else if (o instanceof Double) {
378             ln.setType(new TypeDescriptor(TypeDescriptor.DOUBLE));
379         } else if (o instanceof Character) {
380             ln.setType(new TypeDescriptor(TypeDescriptor.CHAR));
381         } else if (o instanceof String) {
382             ln.setType(new TypeDescriptor(typeutil.getClass(TypeUtil.StringClass)));
383         }
384
385         if (td!=null)
386             if (!typeutil.isSuperorType(td,ln.getType()))
387                 throw new Error("Field node returns "+ln.getType()+", but need "+td);
388     }
389
390     void checkNameNode(Descriptor md, SymbolTable nametable, NameNode nn, TypeDescriptor td) {
391         NameDescriptor nd=nn.getName();
392         if (nd.getBase()!=null) {
393             /* Big hack */
394             /* Rewrite NameNode */
395             ExpressionNode en=translateNameDescriptorintoExpression(nd);
396             nn.setExpression(en);
397             checkExpressionNode(md,nametable,en,td);
398         } else {
399             String varname=nd.toString();
400             Descriptor d=(Descriptor)nametable.get(varname);
401             if (d==null) {
402                 throw new Error("Name "+varname+" undefined");
403             }
404             if (d instanceof VarDescriptor) {
405                 nn.setVar((VarDescriptor)d);
406             } else if (d instanceof FieldDescriptor) {
407                 nn.setField((FieldDescriptor)d);
408                 nn.setVar((VarDescriptor)nametable.get("this")); /* Need a pointer to this */
409             }
410             if (td!=null)
411                 if (!typeutil.isSuperorType(td,nn.getType()))
412                     throw new Error("Field node returns "+nn.getType()+", but need "+td);
413         }
414     }
415
416     void checkAssignmentNode(Descriptor md, SymbolTable nametable, AssignmentNode an, TypeDescriptor td) {
417         checkExpressionNode(md, nametable, an.getSrc() ,td);
418         //TODO: Need check on validity of operation here
419         if (!((an.getDest() instanceof FieldAccessNode)||
420               (an.getDest() instanceof ArrayAccessNode)||
421               (an.getDest() instanceof NameNode)))
422             throw new Error("Bad lside in "+an.printNode(0));
423         checkExpressionNode(md, nametable, an.getDest(), null);
424         if (!typeutil.isSuperorType(an.getDest().getType(),an.getSrc().getType())) {
425             throw new Error("Type of rside ("+an.getSrc().getType()+") not compatible with type of lside ("+an.getDest().getType()+")"+an.printNode(0));
426         }
427     }
428
429     void checkLoopNode(Descriptor md, SymbolTable nametable, LoopNode ln) {
430         if (ln.getType()==LoopNode.WHILELOOP||ln.getType()==LoopNode.DOWHILELOOP) {
431             checkExpressionNode(md, nametable, ln.getCondition(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
432             checkBlockNode(md, nametable, ln.getBody());
433         } else {
434             //For loop case
435             /* Link in the initializer naming environment */
436             BlockNode bn=ln.getInitializer();
437             bn.getVarTable().setParent(nametable);
438             for(int i=0;i<bn.size();i++) {
439                 BlockStatementNode bsn=bn.get(i);
440                 checkBlockStatementNode(md, bn.getVarTable(),bsn);
441             }
442             //check the condition
443             checkExpressionNode(md, bn.getVarTable(), ln.getCondition(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
444             checkBlockNode(md, bn.getVarTable(), ln.getBody());
445             checkBlockNode(md, bn.getVarTable(), ln.getUpdate());
446         }
447     }
448
449
450     void checkCreateObjectNode(Descriptor md, SymbolTable nametable, CreateObjectNode con, TypeDescriptor td) {
451         TypeDescriptor[] tdarray=new TypeDescriptor[con.numArgs()];
452         for(int i=0;i<con.numArgs();i++) {
453             ExpressionNode en=con.getArg(i);
454             checkExpressionNode(md,nametable,en,null);
455             tdarray[i]=en.getType();
456         }
457
458         TypeDescriptor typetolookin=con.getType();
459         checkTypeDescriptor(typetolookin);
460
461         /* Check flag effects */
462         if (con.getFlagEffects()!=null) {
463             FlagEffects fe=con.getFlagEffects();
464             ClassDescriptor cd=typetolookin.getClassDesc();
465             
466             for(int j=0;j<fe.numEffects();j++) {
467                 FlagEffect flag=fe.getEffect(j);
468                 String name=flag.getName();
469                 FlagDescriptor flag_d=(FlagDescriptor)cd.getFlagTable().get(name);
470                 //Make sure the flag is declared
471                 if (flag_d==null)
472                     throw new Error("Flag descriptor "+name+" undefined in class: "+cd.getSymbol());
473                 flag.setFlag(flag_d);
474             }
475         }
476
477
478         if ((!typetolookin.isClass())&&(!typetolookin.isArray())) 
479             throw new Error("Can't allocate primitive type:"+con.printNode(0));
480
481         if (!typetolookin.isArray()) {
482             //Array's don't need constructor calls
483             ClassDescriptor classtolookin=typetolookin.getClassDesc();
484             System.out.println("Looking for "+typetolookin.getSymbol());
485             System.out.println(classtolookin.getMethodTable());
486             
487             Set methoddescriptorset=classtolookin.getMethodTable().getSet(typetolookin.getSymbol());
488             MethodDescriptor bestmd=null;
489         NextMethod:
490             for(Iterator methodit=methoddescriptorset.iterator();methodit.hasNext();) {
491                 MethodDescriptor currmd=(MethodDescriptor)methodit.next();
492                 /* Need correct number of parameters */
493                 System.out.println("Examining: "+currmd);
494                 if (con.numArgs()!=currmd.numParameters())
495                     continue;
496                 for(int i=0;i<con.numArgs();i++) {
497                     if (!typeutil.isSuperorType(currmd.getParamType(i),tdarray[i]))
498                         continue NextMethod;
499                 }
500                 /* Method okay so far */
501                 if (bestmd==null)
502                     bestmd=currmd;
503                 else {
504                     if (isMoreSpecific(currmd,bestmd)) {
505                         bestmd=currmd;
506                     } else if (!isMoreSpecific(bestmd, currmd))
507                         throw new Error("No method is most specific");
508                     
509                     /* Is this more specific than bestmd */
510                 }
511             }
512             if (bestmd==null)
513                 throw new Error("No method found for "+con.printNode(0));
514             con.setConstructor(bestmd);
515         }
516     }
517
518
519     /** Check to see if md1 is more specific than md2...  Informally
520         if md2 could always be called given the arguments passed into
521         md1 */
522
523     boolean isMoreSpecific(MethodDescriptor md1, MethodDescriptor md2) {
524         /* Checks if md1 is more specific than md2 */
525         if (md1.numParameters()!=md2.numParameters())
526             throw new Error();
527         for(int i=0;i<md1.numParameters();i++) {
528             if (!typeutil.isSuperorType(md2.getParamType(i), md1.getParamType(i)))
529                 return false;
530         }
531         if (!typeutil.isSuperorType(md2.getReturnType(), md1.getReturnType()))
532                 return false;
533         return true;
534     }
535
536     ExpressionNode translateNameDescriptorintoExpression(NameDescriptor nd) {
537         String id=nd.getIdentifier();
538         NameDescriptor base=nd.getBase();
539         if (base==null) 
540             return new NameNode(nd);
541         else 
542             return new FieldAccessNode(translateNameDescriptorintoExpression(base),id);
543     }
544
545
546     void checkMethodInvokeNode(Descriptor md, SymbolTable nametable, MethodInvokeNode min, TypeDescriptor td) {
547         /*Typecheck subexpressions
548           and get types for expressions*/
549
550         TypeDescriptor[] tdarray=new TypeDescriptor[min.numArgs()];
551         for(int i=0;i<min.numArgs();i++) {
552             ExpressionNode en=min.getArg(i);
553             checkExpressionNode(md,nametable,en,null);
554             tdarray[i]=en.getType();
555         }
556         TypeDescriptor typetolookin=null;
557         if (min.getExpression()!=null) {
558             checkExpressionNode(md,nametable,min.getExpression(),null);
559             typetolookin=min.getExpression().getType();
560         } else if (min.getBaseName()!=null) {
561             String rootname=min.getBaseName().getRoot();
562             if (nametable.get(rootname)!=null) {
563                 //we have an expression
564                 min.setExpression(translateNameDescriptorintoExpression(min.getBaseName()));
565                 checkExpressionNode(md, nametable, min.getExpression(), null);
566                 typetolookin=min.getExpression().getType();
567             } else {
568                 //we have a type
569                 ClassDescriptor cd=typeutil.getClass(min.getBaseName().getSymbol());
570                 if (cd==null)
571                     throw new Error(min.getBaseName()+" undefined");
572                 typetolookin=new TypeDescriptor(cd);
573             }
574         } else if (md instanceof MethodDescriptor) {
575             typetolookin=new TypeDescriptor(((MethodDescriptor)md).getClassDesc());
576         } else {
577             /* If this a task descriptor we throw an error at this point */
578             throw new Error("Unknown method call to "+min.getMethodName()+"in task"+md.getSymbol());
579         }
580         if (!typetolookin.isClass()) 
581             throw new Error();
582         ClassDescriptor classtolookin=typetolookin.getClassDesc();
583         System.out.println("Method name="+min.getMethodName());
584         Set methoddescriptorset=classtolookin.getMethodTable().getSet(min.getMethodName());
585         MethodDescriptor bestmd=null;
586         NextMethod:
587         for(Iterator methodit=methoddescriptorset.iterator();methodit.hasNext();) {
588             MethodDescriptor currmd=(MethodDescriptor)methodit.next();
589             /* Need correct number of parameters */
590             if (min.numArgs()!=currmd.numParameters())
591                 continue;
592             for(int i=0;i<min.numArgs();i++) {
593                 if (!typeutil.isSuperorType(currmd.getParamType(i),tdarray[i]))
594                     continue NextMethod;
595             }
596             /* Method okay so far */
597             if (bestmd==null)
598                 bestmd=currmd;
599             else {
600                 if (isMoreSpecific(currmd,bestmd)) {
601                     bestmd=currmd;
602                 } else if (!isMoreSpecific(bestmd, currmd))
603                     throw new Error("No method is most specific");
604                 
605                 /* Is this more specific than bestmd */
606             }
607         }
608         if (bestmd==null)
609             throw new Error("No method found for :"+min.printNode(0));
610         min.setMethod(bestmd);
611         /* Check whether we need to set this parameter to implied this */
612         if (!bestmd.isStatic()) {
613             if (min.getExpression()==null) {
614                 ExpressionNode en=new NameNode(new NameDescriptor("this"));
615                 min.setExpression(en);
616                 checkExpressionNode(md, nametable, min.getExpression(), null);
617             }
618         }
619
620     }
621
622
623     void checkOpNode(Descriptor md, SymbolTable nametable, OpNode on, TypeDescriptor td) {
624         checkExpressionNode(md, nametable, on.getLeft(), null);
625         if (on.getRight()!=null)
626             checkExpressionNode(md, nametable, on.getRight(), null);
627         TypeDescriptor ltd=on.getLeft().getType();
628         TypeDescriptor rtd=on.getRight()!=null?on.getRight().getType():null;
629         TypeDescriptor lefttype=null;
630         TypeDescriptor righttype=null;
631         Operation op=on.getOp();
632
633         switch(op.getOp()) {
634         case Operation.LOGIC_OR:
635         case Operation.LOGIC_AND:
636             if (!(ltd.isBoolean()&&rtd.isBoolean()))
637                 throw new Error();
638             //no promotion
639             on.setLeftType(ltd);
640             on.setRightType(rtd);
641             on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
642             break;
643
644         case Operation.BIT_OR:
645         case Operation.BIT_XOR:
646         case Operation.BIT_AND:
647             // 5.6.2 Binary Numeric Promotion
648             //TODO unboxing of reference objects
649             if (ltd.isDouble()||rtd.isDouble())
650                 throw new Error();
651             else if (ltd.isFloat()||rtd.isFloat())
652                 throw new Error();
653             else if (ltd.isLong()||rtd.isLong())
654                 lefttype=new TypeDescriptor(TypeDescriptor.LONG);
655             else 
656                 lefttype=new TypeDescriptor(TypeDescriptor.INT);
657             righttype=lefttype;
658
659             on.setLeftType(lefttype);
660             on.setRightType(righttype);
661             on.setType(lefttype);
662             break;
663
664         case Operation.EQUAL:
665         case Operation.NOTEQUAL:
666             // 5.6.2 Binary Numeric Promotion
667             //TODO unboxing of reference objects
668             if (ltd.isBoolean()||rtd.isBoolean()) {
669                 if (!(ltd.isBoolean()&&rtd.isBoolean()))
670                     throw new Error();
671                 righttype=lefttype=new TypeDescriptor(TypeDescriptor.BOOLEAN);
672             } else if (ltd.isPtr()||rtd.isPtr()) {
673                 if (!(ltd.isPtr()&&rtd.isPtr()))
674                     throw new Error();
675                 righttype=rtd;
676                 lefttype=ltd;
677             } else if (ltd.isDouble()||rtd.isDouble())
678                 righttype=lefttype=new TypeDescriptor(TypeDescriptor.DOUBLE);
679             else if (ltd.isFloat()||rtd.isFloat())
680                 righttype=lefttype=new TypeDescriptor(TypeDescriptor.FLOAT);
681             else if (ltd.isLong()||rtd.isLong())
682                 righttype=lefttype=new TypeDescriptor(TypeDescriptor.LONG);
683             else 
684                 righttype=lefttype=new TypeDescriptor(TypeDescriptor.INT);
685
686             on.setLeftType(lefttype);
687             on.setRightType(righttype);
688             on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
689             break;
690
691
692
693         case Operation.LT:
694         case Operation.GT:
695         case Operation.LTE:
696         case Operation.GTE:
697             // 5.6.2 Binary Numeric Promotion
698             //TODO unboxing of reference objects
699             if (!ltd.isNumber()||!rtd.isNumber())
700                 throw new Error();
701
702             if (ltd.isDouble()||rtd.isDouble())
703                 lefttype=new TypeDescriptor(TypeDescriptor.DOUBLE);
704             else if (ltd.isFloat()||rtd.isFloat())
705                 lefttype=new TypeDescriptor(TypeDescriptor.FLOAT);
706             else if (ltd.isLong()||rtd.isLong())
707                 lefttype=new TypeDescriptor(TypeDescriptor.LONG);
708             else 
709                 lefttype=new TypeDescriptor(TypeDescriptor.INT);
710             righttype=lefttype;
711             on.setLeftType(lefttype);
712             on.setRightType(righttype);
713             on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
714             break;
715
716         case Operation.ADD:
717             //TODO: Need special case for strings eventually
718             
719             
720         case Operation.SUB:
721         case Operation.MULT:
722         case Operation.DIV:
723         case Operation.MOD:
724             // 5.6.2 Binary Numeric Promotion
725             //TODO unboxing of reference objects
726             if (!ltd.isNumber()||!rtd.isNumber())
727                 throw new Error("Error in "+on.printNode(0));
728
729             if (ltd.isDouble()||rtd.isDouble())
730                 lefttype=new TypeDescriptor(TypeDescriptor.DOUBLE);
731             else if (ltd.isFloat()||rtd.isFloat())
732                 lefttype=new TypeDescriptor(TypeDescriptor.FLOAT);
733             else if (ltd.isLong()||rtd.isLong())
734                 lefttype=new TypeDescriptor(TypeDescriptor.LONG);
735             else 
736                 lefttype=new TypeDescriptor(TypeDescriptor.INT);
737             righttype=lefttype;
738             on.setLeftType(lefttype);
739             on.setRightType(righttype);
740             on.setType(lefttype);
741             break;
742
743         case Operation.LEFTSHIFT:
744         case Operation.RIGHTSHIFT:
745             if (!rtd.isIntegerType())
746                 throw new Error();
747             //5.6.1 Unary Numeric Promotion
748             if (rtd.isByte()||rtd.isShort()||rtd.isInt())
749                 righttype=new TypeDescriptor(TypeDescriptor.INT);
750             else
751                 righttype=rtd;
752
753             on.setRightType(righttype);
754             if (!ltd.isIntegerType())
755                 throw new Error();
756         case Operation.UNARYPLUS:
757         case Operation.UNARYMINUS:
758         case Operation.POSTINC:
759         case Operation.POSTDEC:
760         case Operation.PREINC:
761         case Operation.PREDEC:
762             if (!ltd.isNumber())
763                 throw new Error();
764             //5.6.1 Unary Numeric Promotion
765             if (ltd.isByte()||ltd.isShort()||ltd.isInt())
766                 lefttype=new TypeDescriptor(TypeDescriptor.INT);
767             else
768                 lefttype=ltd;
769             on.setLeftType(lefttype);
770             on.setType(lefttype);
771             break;
772         default:
773             throw new Error();
774         }
775    
776         if (td!=null)
777             if (!typeutil.isSuperorType(td, on.getType())) {
778                 System.out.println(td);
779                 System.out.println(on.getType());
780                 throw new Error("Type of rside not compatible with type of lside"+on.printNode(0));     
781             }
782     }
783 }