better error message
[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   public void checkTypeDescriptor(TypeDescriptor td) {
63     if (td.isPrimitive())
64       return;       /* Done */
65     else if (td.isClass()) {
66       String name=td.toString();
67       ClassDescriptor field_cd=(ClassDescriptor)state.getClassSymbolTable().get(name);
68       if (field_cd==null)
69         throw new Error("Undefined class "+name);
70       td.setClassDescriptor(field_cd);
71       return;
72     } else if (td.isTag())
73       return;
74     else
75       throw new Error();
76   }
77
78   public void checkField(ClassDescriptor cd, FieldDescriptor fd) {
79     checkTypeDescriptor(fd.getType());
80   }
81
82   public void checkConstraintCheck(TaskDescriptor td, SymbolTable nametable, Vector ccs) {
83     if (ccs==null)
84       return;       /* No constraint checks to check */
85     for(int i=0; i<ccs.size(); i++) {
86       ConstraintCheck cc=(ConstraintCheck) ccs.get(i);
87
88       for(int j=0; j<cc.numArgs(); j++) {
89         ExpressionNode en=cc.getArg(j);
90         checkExpressionNode(td,nametable,en,null);
91       }
92     }
93   }
94
95   public void checkFlagEffects(TaskDescriptor td, Vector vfe, SymbolTable nametable) {
96     if (vfe==null)
97       return;       /* No flag effects to check */
98     for(int i=0; i<vfe.size(); i++) {
99       FlagEffects fe=(FlagEffects) vfe.get(i);
100       String varname=fe.getName();
101       //Make sure the variable is declared as a parameter to the task
102       VarDescriptor vd=(VarDescriptor)td.getParameterTable().get(varname);
103       if (vd==null)
104         throw new Error("Parameter "+varname+" in Flag Effects not declared in "+td);
105       fe.setVar(vd);
106
107       //Make sure it correspods to a class
108       TypeDescriptor type_d=vd.getType();
109       if (!type_d.isClass())
110         throw new Error("Cannot have non-object argument for flag_effect");
111
112       ClassDescriptor cd=type_d.getClassDesc();
113       for(int j=0; j<fe.numEffects(); j++) {
114         FlagEffect flag=fe.getEffect(j);
115         String name=flag.getName();
116         FlagDescriptor flag_d=(FlagDescriptor)cd.getFlagTable().get(name);
117         //Make sure the flag is declared
118         if (flag_d==null)
119           throw new Error("Flag descriptor "+name+" undefined in class: "+cd.getSymbol());
120         if (flag_d.getExternal())
121           throw new Error("Attempting to modify external flag: "+name);
122         flag.setFlag(flag_d);
123       }
124       for(int j=0; j<fe.numTagEffects(); j++) {
125         TagEffect tag=fe.getTagEffect(j);
126         String name=tag.getName();
127
128         Descriptor d=(Descriptor)nametable.get(name);
129         if (d==null)
130           throw new Error("Tag descriptor "+name+" undeclared");
131         else if (!(d instanceof TagVarDescriptor))
132           throw new Error(name+" is not a tag descriptor");
133         tag.setTag((TagVarDescriptor)d);
134       }
135     }
136   }
137
138   public void checkTask(TaskDescriptor td) {
139     for(int i=0; i<td.numParameters(); i++) {
140       /* Check that parameter is well typed */
141       TypeDescriptor param_type=td.getParamType(i);
142       checkTypeDescriptor(param_type);
143
144       /* Check the parameter's flag expression is well formed */
145       FlagExpressionNode fen=td.getFlag(td.getParameter(i));
146       if (!param_type.isClass())
147         throw new Error("Cannot have non-object argument to a task");
148       ClassDescriptor cd=param_type.getClassDesc();
149       if (fen!=null)
150         checkFlagExpressionNode(cd, fen);
151     }
152
153     checkFlagEffects(td, td.getFlagEffects(),td.getParameterTable());
154     /* Check that the task code is valid */
155     BlockNode bn=state.getMethodBody(td);
156     checkBlockNode(td, td.getParameterTable(),bn);
157   }
158
159   public void checkFlagExpressionNode(ClassDescriptor cd, FlagExpressionNode fen) {
160     switch(fen.kind()) {
161     case Kind.FlagOpNode:
162     {
163       FlagOpNode fon=(FlagOpNode)fen;
164       checkFlagExpressionNode(cd, fon.getLeft());
165       if (fon.getRight()!=null)
166         checkFlagExpressionNode(cd, fon.getRight());
167       break;
168     }
169
170     case Kind.FlagNode:
171     {
172       FlagNode fn=(FlagNode)fen;
173       String name=fn.getFlagName();
174       FlagDescriptor fd=(FlagDescriptor)cd.getFlagTable().get(name);
175       if (fd==null)
176         throw new Error("Undeclared flag: "+name);
177       fn.setFlag(fd);
178       break;
179     }
180
181     default:
182       throw new Error("Unrecognized FlagExpressionNode");
183     }
184   }
185
186   public void checkMethod(ClassDescriptor cd, MethodDescriptor md) {
187     /* Check return type */
188     if (!md.isConstructor())
189       if (!md.getReturnType().isVoid())
190         checkTypeDescriptor(md.getReturnType());
191
192     for(int i=0; i<md.numParameters(); i++) {
193       TypeDescriptor param_type=md.getParamType(i);
194       checkTypeDescriptor(param_type);
195     }
196     /* Link the naming environments */
197     if (!md.isStatic())     /* Fields aren't accessible directly in a static method, so don't link in this table */
198       md.getParameterTable().setParent(cd.getFieldTable());
199     md.setClassDesc(cd);
200     if (!md.isStatic()) {
201       VarDescriptor thisvd=new VarDescriptor(new TypeDescriptor(cd),"this");
202       md.setThis(thisvd);
203     }
204   }
205
206   public void checkMethodBody(ClassDescriptor cd, MethodDescriptor md) {
207     ClassDescriptor superdesc=cd.getSuperDesc();
208     if (superdesc!=null) {
209       Set possiblematches=superdesc.getMethodTable().getSet(md.getSymbol());
210       for(Iterator methodit=possiblematches.iterator(); methodit.hasNext();) {
211         MethodDescriptor matchmd=(MethodDescriptor)methodit.next();
212         if (md.matches(matchmd)) {
213           if (matchmd.getModifiers().isFinal()) {
214             throw new Error("Try to override final method in method:"+md+" declared in  "+cd);
215           }
216         }
217       }
218     }
219     BlockNode bn=state.getMethodBody(md);
220     checkBlockNode(md, md.getParameterTable(),bn);
221   }
222
223   public void checkBlockNode(Descriptor md, SymbolTable nametable, BlockNode bn) {
224     /* Link in the naming environment */
225     bn.getVarTable().setParent(nametable);
226     for(int i=0; i<bn.size(); i++) {
227       BlockStatementNode bsn=bn.get(i);
228       checkBlockStatementNode(md, bn.getVarTable(),bsn);
229     }
230   }
231
232   public void checkBlockStatementNode(Descriptor md, SymbolTable nametable, BlockStatementNode bsn) {
233     switch(bsn.kind()) {
234     case Kind.BlockExpressionNode:
235       checkBlockExpressionNode(md, nametable,(BlockExpressionNode)bsn);
236       return;
237
238     case Kind.DeclarationNode:
239       checkDeclarationNode(md, nametable, (DeclarationNode)bsn);
240       return;
241
242     case Kind.TagDeclarationNode:
243       checkTagDeclarationNode(md, nametable, (TagDeclarationNode)bsn);
244       return;
245
246     case Kind.IfStatementNode:
247       checkIfStatementNode(md, nametable, (IfStatementNode)bsn);
248       return;
249
250     case Kind.LoopNode:
251       checkLoopNode(md, nametable, (LoopNode)bsn);
252       return;
253
254     case Kind.ReturnNode:
255       checkReturnNode(md, nametable, (ReturnNode)bsn);
256       return;
257
258     case Kind.TaskExitNode:
259       checkTaskExitNode(md, nametable, (TaskExitNode)bsn);
260       return;
261
262     case Kind.SubBlockNode:
263       checkSubBlockNode(md, nametable, (SubBlockNode)bsn);
264       return;
265
266     case Kind.AtomicNode:
267       checkAtomicNode(md, nametable, (AtomicNode)bsn);
268       return;
269     }
270     throw new Error();
271   }
272
273   void checkBlockExpressionNode(Descriptor md, SymbolTable nametable, BlockExpressionNode ben) {
274     checkExpressionNode(md, nametable, ben.getExpression(), null);
275   }
276
277   void checkDeclarationNode(Descriptor md, SymbolTable nametable,  DeclarationNode dn) {
278     VarDescriptor vd=dn.getVarDescriptor();
279     checkTypeDescriptor(vd.getType());
280     Descriptor d=nametable.get(vd.getSymbol());
281     if ((d==null)||
282         (d instanceof FieldDescriptor)) {
283       nametable.add(vd);
284     } else
285       throw new Error(vd.getSymbol()+" in "+md+" defined a second time");
286     if (dn.getExpression()!=null)
287       checkExpressionNode(md, nametable, dn.getExpression(), vd.getType());
288   }
289
290   void checkTagDeclarationNode(Descriptor md, SymbolTable nametable,  TagDeclarationNode dn) {
291     TagVarDescriptor vd=dn.getTagVarDescriptor();
292     Descriptor d=nametable.get(vd.getSymbol());
293     if ((d==null)||
294         (d instanceof FieldDescriptor)) {
295       nametable.add(vd);
296     } else
297       throw new Error(vd.getSymbol()+" defined a second time");
298   }
299
300   void checkSubBlockNode(Descriptor md, SymbolTable nametable, SubBlockNode sbn) {
301     checkBlockNode(md, nametable, sbn.getBlockNode());
302   }
303
304   void checkAtomicNode(Descriptor md, SymbolTable nametable, AtomicNode sbn) {
305     checkBlockNode(md, nametable, sbn.getBlockNode());
306   }
307
308   void checkReturnNode(Descriptor d, SymbolTable nametable, ReturnNode rn) {
309     if (d instanceof TaskDescriptor)
310       throw new Error("Illegal return appears in Task: "+d.getSymbol());
311     MethodDescriptor md=(MethodDescriptor)d;
312     if (rn.getReturnExpression()!=null)
313       if (md.getReturnType()==null)
314         throw new Error("Constructor can't return something.");
315       else if (md.getReturnType().isVoid())
316         throw new Error(md+" is void");
317       else
318         checkExpressionNode(md, nametable, rn.getReturnExpression(), md.getReturnType());
319     else
320     if (md.getReturnType()!=null&&!md.getReturnType().isVoid())
321       throw new Error("Need to return something for "+md);
322   }
323
324   void checkTaskExitNode(Descriptor md, SymbolTable nametable, TaskExitNode ten) {
325     if (md instanceof MethodDescriptor)
326       throw new Error("Illegal taskexit appears in Method: "+md.getSymbol());
327     checkFlagEffects((TaskDescriptor)md, ten.getFlagEffects(),nametable);
328     checkConstraintCheck((TaskDescriptor) md, nametable, ten.getChecks());
329   }
330
331   void checkIfStatementNode(Descriptor md, SymbolTable nametable, IfStatementNode isn) {
332     checkExpressionNode(md, nametable, isn.getCondition(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
333     checkBlockNode(md, nametable, isn.getTrueBlock());
334     if (isn.getFalseBlock()!=null)
335       checkBlockNode(md, nametable, isn.getFalseBlock());
336   }
337
338   void checkExpressionNode(Descriptor md, SymbolTable nametable, ExpressionNode en, TypeDescriptor td) {
339     switch(en.kind()) {
340     case Kind.AssignmentNode:
341       checkAssignmentNode(md,nametable,(AssignmentNode)en,td);
342       return;
343
344     case Kind.CastNode:
345       checkCastNode(md,nametable,(CastNode)en,td);
346       return;
347
348     case Kind.CreateObjectNode:
349       checkCreateObjectNode(md,nametable,(CreateObjectNode)en,td);
350       return;
351
352     case Kind.FieldAccessNode:
353       checkFieldAccessNode(md,nametable,(FieldAccessNode)en,td);
354       return;
355
356     case Kind.ArrayAccessNode:
357       checkArrayAccessNode(md,nametable,(ArrayAccessNode)en,td);
358       return;
359
360     case Kind.LiteralNode:
361       checkLiteralNode(md,nametable,(LiteralNode)en,td);
362       return;
363
364     case Kind.MethodInvokeNode:
365       checkMethodInvokeNode(md,nametable,(MethodInvokeNode)en,td);
366       return;
367
368     case Kind.NameNode:
369       checkNameNode(md,nametable,(NameNode)en,td);
370       return;
371
372     case Kind.OpNode:
373       checkOpNode(md,nametable,(OpNode)en,td);
374       return;
375     }
376     throw new Error();
377   }
378
379   void checkCastNode(Descriptor md, SymbolTable nametable, CastNode cn, TypeDescriptor td) {
380     /* Get type descriptor */
381     if (cn.getType()==null) {
382       NameDescriptor typenamed=cn.getTypeName().getName();
383       String typename=typenamed.toString();
384       TypeDescriptor ntd=new TypeDescriptor(typeutil.getClass(typename));
385       cn.setType(ntd);
386     }
387
388     /* Check the type descriptor */
389     TypeDescriptor cast_type=cn.getType();
390     checkTypeDescriptor(cast_type);
391
392     /* Type check */
393     if (td!=null) {
394       if (!typeutil.isSuperorType(td,cast_type))
395         throw new Error("Cast node returns "+cast_type+", but need "+td);
396     }
397
398     ExpressionNode en=cn.getExpression();
399     checkExpressionNode(md, nametable, en, null);
400     TypeDescriptor etd=en.getType();
401     if (typeutil.isSuperorType(cast_type,etd))     /* Cast trivially succeeds */
402       return;
403
404     if (typeutil.isSuperorType(etd,cast_type))     /* Cast may succeed */
405       return;
406     if (typeutil.isCastable(etd, cast_type))
407       return;
408
409     /* Different branches */
410     /* TODO: change if add interfaces */
411     throw new Error("Cast will always fail\n"+cn.printNode(0));
412   }
413
414   void checkFieldAccessNode(Descriptor md, SymbolTable nametable, FieldAccessNode fan, TypeDescriptor td) {
415     ExpressionNode left=fan.getExpression();
416     checkExpressionNode(md,nametable,left,null);
417     TypeDescriptor ltd=left.getType();
418     String fieldname=fan.getFieldName();
419
420     FieldDescriptor fd=null;
421     if (ltd.isArray()&&fieldname.equals("length"))
422       fd=FieldDescriptor.arrayLength;
423     else
424       fd=(FieldDescriptor) ltd.getClassDesc().getFieldTable().get(fieldname);
425     if (fd==null)
426       throw new Error("Unknown field "+fieldname + " in "+fan.printNode(0)+" in "+md);
427     fan.setField(fd);
428     if (td!=null)
429       if (!typeutil.isSuperorType(td,fan.getType()))
430         throw new Error("Field node returns "+fan.getType()+", but need "+td);
431   }
432
433   void checkArrayAccessNode(Descriptor md, SymbolTable nametable, ArrayAccessNode aan, TypeDescriptor td) {
434     ExpressionNode left=aan.getExpression();
435     checkExpressionNode(md,nametable,left,null);
436
437     checkExpressionNode(md,nametable,aan.getIndex(),new TypeDescriptor(TypeDescriptor.INT));
438     TypeDescriptor ltd=left.getType();
439
440     if (td!=null)
441       if (!typeutil.isSuperorType(td,aan.getType()))
442         throw new Error("Field node returns "+aan.getType()+", but need "+td);
443   }
444
445   void checkLiteralNode(Descriptor md, SymbolTable nametable, LiteralNode ln, TypeDescriptor td) {
446     /* Resolve the type */
447     Object o=ln.getValue();
448     if (ln.getTypeString().equals("null")) {
449       ln.setType(new TypeDescriptor(TypeDescriptor.NULL));
450     } else if (o instanceof Integer) {
451       ln.setType(new TypeDescriptor(TypeDescriptor.INT));
452     } else if (o instanceof Long) {
453       ln.setType(new TypeDescriptor(TypeDescriptor.LONG));
454     } else if (o instanceof Float) {
455       ln.setType(new TypeDescriptor(TypeDescriptor.FLOAT));
456     } else if (o instanceof Boolean) {
457       ln.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
458     } else if (o instanceof Double) {
459       ln.setType(new TypeDescriptor(TypeDescriptor.DOUBLE));
460     } else if (o instanceof Character) {
461       ln.setType(new TypeDescriptor(TypeDescriptor.CHAR));
462     } else if (o instanceof String) {
463       ln.setType(new TypeDescriptor(typeutil.getClass(TypeUtil.StringClass)));
464     }
465
466     if (td!=null)
467       if (!typeutil.isSuperorType(td,ln.getType()))
468         throw new Error("Field node returns "+ln.getType()+", but need "+td);
469   }
470
471   void checkNameNode(Descriptor md, SymbolTable nametable, NameNode nn, TypeDescriptor td) {
472     NameDescriptor nd=nn.getName();
473     if (nd.getBase()!=null) {
474       /* Big hack */
475       /* Rewrite NameNode */
476       ExpressionNode en=translateNameDescriptorintoExpression(nd);
477       nn.setExpression(en);
478       checkExpressionNode(md,nametable,en,td);
479     } else {
480       String varname=nd.toString();
481       Descriptor d=(Descriptor)nametable.get(varname);
482       if (d==null) {
483         throw new Error("Name "+varname+" undefined in: "+md);
484       }
485       if (d instanceof VarDescriptor) {
486         nn.setVar(d);
487       } else if (d instanceof FieldDescriptor) {
488         nn.setField((FieldDescriptor)d);
489         nn.setVar((VarDescriptor)nametable.get("this"));        /* Need a pointer to this */
490       } else if (d instanceof TagVarDescriptor) {
491         nn.setVar(d);
492       } else throw new Error("Wrong type of descriptor");
493       if (td!=null)
494         if (!typeutil.isSuperorType(td,nn.getType()))
495           throw new Error("Field node returns "+nn.getType()+", but need "+td);
496     }
497   }
498
499   void checkAssignmentNode(Descriptor md, SymbolTable nametable, AssignmentNode an, TypeDescriptor td) {
500     boolean postinc=true;
501     if (an.getOperation().getBaseOp()==null||
502         (an.getOperation().getBaseOp().getOp()!=Operation.POSTINC&&
503          an.getOperation().getBaseOp().getOp()!=Operation.POSTDEC))
504       postinc=false;
505
506     if (!postinc)
507       checkExpressionNode(md, nametable, an.getSrc(),td);
508     //TODO: Need check on validity of operation here
509     if (!((an.getDest() instanceof FieldAccessNode)||
510           (an.getDest() instanceof ArrayAccessNode)||
511           (an.getDest() instanceof NameNode)))
512       throw new Error("Bad lside in "+an.printNode(0));
513     checkExpressionNode(md, nametable, an.getDest(), null);
514
515     /* We want parameter variables to tasks to be immutable */
516     if (md instanceof TaskDescriptor) {
517       if (an.getDest() instanceof NameNode) {
518         NameNode nn=(NameNode)an.getDest();
519         if (nn.getVar()!=null) {
520           if (((TaskDescriptor)md).getParameterTable().contains(nn.getVar().getSymbol()))
521             throw new Error("Can't modify parameter "+nn.getVar()+ " to task "+td.getSymbol());
522         }
523       }
524     }
525
526     if (an.getDest().getType().isString()&&an.getOperation().getOp()==AssignOperation.PLUSEQ) {
527       //String add
528       ClassDescriptor stringcl=typeutil.getClass(TypeUtil.StringClass);
529       TypeDescriptor stringtd=new TypeDescriptor(stringcl);
530       NameDescriptor nd=new NameDescriptor("String");
531       NameDescriptor valuend=new NameDescriptor(nd, "valueOf");
532
533       if (!(an.getSrc().getType().isString()&&(an.getSrc() instanceof OpNode))) {
534         MethodInvokeNode rightmin=new MethodInvokeNode(valuend);
535         rightmin.addArgument(an.getSrc());
536         an.right=rightmin;
537         checkExpressionNode(md, nametable, an.getSrc(), null);
538       }
539     }
540
541     if (!postinc&&!typeutil.isSuperorType(an.getDest().getType(),an.getSrc().getType())) {
542       throw new Error("Type of rside ("+an.getSrc().getType()+") not compatible with type of lside ("+an.getDest().getType()+")"+an.printNode(0));
543     }
544   }
545
546   void checkLoopNode(Descriptor md, SymbolTable nametable, LoopNode ln) {
547     if (ln.getType()==LoopNode.WHILELOOP||ln.getType()==LoopNode.DOWHILELOOP) {
548       checkExpressionNode(md, nametable, ln.getCondition(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
549       checkBlockNode(md, nametable, ln.getBody());
550     } else {
551       //For loop case
552       /* Link in the initializer naming environment */
553       BlockNode bn=ln.getInitializer();
554       bn.getVarTable().setParent(nametable);
555       for(int i=0; i<bn.size(); i++) {
556         BlockStatementNode bsn=bn.get(i);
557         checkBlockStatementNode(md, bn.getVarTable(),bsn);
558       }
559       //check the condition
560       checkExpressionNode(md, bn.getVarTable(), ln.getCondition(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
561       checkBlockNode(md, bn.getVarTable(), ln.getBody());
562       checkBlockNode(md, bn.getVarTable(), ln.getUpdate());
563     }
564   }
565
566
567   void checkCreateObjectNode(Descriptor md, SymbolTable nametable, CreateObjectNode con, TypeDescriptor td) {
568     TypeDescriptor[] tdarray=new TypeDescriptor[con.numArgs()];
569     for(int i=0; i<con.numArgs(); i++) {
570       ExpressionNode en=con.getArg(i);
571       checkExpressionNode(md,nametable,en,null);
572       tdarray[i]=en.getType();
573     }
574
575     TypeDescriptor typetolookin=con.getType();
576     checkTypeDescriptor(typetolookin);
577
578     if (td!=null&&!typeutil.isSuperorType(td, typetolookin))
579       throw new Error(typetolookin + " isn't a "+td);
580
581     /* Check flag effects */
582     if (con.getFlagEffects()!=null) {
583       FlagEffects fe=con.getFlagEffects();
584       ClassDescriptor cd=typetolookin.getClassDesc();
585
586       for(int j=0; j<fe.numEffects(); j++) {
587         FlagEffect flag=fe.getEffect(j);
588         String name=flag.getName();
589         FlagDescriptor flag_d=(FlagDescriptor)cd.getFlagTable().get(name);
590         //Make sure the flag is declared
591         if (flag_d==null)
592           throw new Error("Flag descriptor "+name+" undefined in class: "+cd.getSymbol());
593         if (flag_d.getExternal())
594           throw new Error("Attempting to modify external flag: "+name);
595         flag.setFlag(flag_d);
596       }
597       for(int j=0; j<fe.numTagEffects(); j++) {
598         TagEffect tag=fe.getTagEffect(j);
599         String name=tag.getName();
600
601         Descriptor d=(Descriptor)nametable.get(name);
602         if (d==null)
603           throw new Error("Tag descriptor "+name+" undeclared");
604         else if (!(d instanceof TagVarDescriptor))
605           throw new Error(name+" is not a tag descriptor");
606         tag.setTag((TagVarDescriptor)d);
607       }
608     }
609
610     if ((!typetolookin.isClass())&&(!typetolookin.isArray()))
611       throw new Error("Can't allocate primitive type:"+con.printNode(0));
612
613     if (!typetolookin.isArray()) {
614       //Array's don't need constructor calls
615       ClassDescriptor classtolookin=typetolookin.getClassDesc();
616
617       Set methoddescriptorset=classtolookin.getMethodTable().getSet(typetolookin.getSymbol());
618       MethodDescriptor bestmd=null;
619 NextMethod:
620       for(Iterator methodit=methoddescriptorset.iterator(); methodit.hasNext();) {
621         MethodDescriptor currmd=(MethodDescriptor)methodit.next();
622         /* Need correct number of parameters */
623         if (con.numArgs()!=currmd.numParameters())
624           continue;
625         for(int i=0; i<con.numArgs(); i++) {
626           if (!typeutil.isSuperorType(currmd.getParamType(i),tdarray[i]))
627             continue NextMethod;
628         }
629         /* Local allocations can't call global allocator */
630         if (!con.isGlobal()&&currmd.isGlobal())
631           continue;
632
633         /* Method okay so far */
634         if (bestmd==null)
635           bestmd=currmd;
636         else {
637           if (typeutil.isMoreSpecific(currmd,bestmd)) {
638             bestmd=currmd;
639           } else if (con.isGlobal()&&match(currmd, bestmd)) {
640             if (currmd.isGlobal()&&!bestmd.isGlobal())
641               bestmd=currmd;
642             else if (currmd.isGlobal()&&bestmd.isGlobal())
643               throw new Error();
644           } else if (!typeutil.isMoreSpecific(bestmd, currmd)) {
645             throw new Error("No method is most specific");
646           }
647
648           /* Is this more specific than bestmd */
649         }
650       }
651       if (bestmd==null)
652         throw new Error("No method found for "+con.printNode(0)+" in "+md);
653       con.setConstructor(bestmd);
654     }
655   }
656
657
658   /** Check to see if md1 is the same specificity as md2.*/
659
660   boolean match(MethodDescriptor md1, MethodDescriptor md2) {
661     /* Checks if md1 is more specific than md2 */
662     if (md1.numParameters()!=md2.numParameters())
663       throw new Error();
664     for(int i=0; i<md1.numParameters(); i++) {
665       if (!md2.getParamType(i).equals(md1.getParamType(i)))
666         return false;
667     }
668     if (!md2.getReturnType().equals(md1.getReturnType()))
669       return false;
670
671     if (!md2.getClassDesc().equals(md1.getClassDesc()))
672       return false;
673
674     return true;
675   }
676
677
678
679   ExpressionNode translateNameDescriptorintoExpression(NameDescriptor nd) {
680     String id=nd.getIdentifier();
681     NameDescriptor base=nd.getBase();
682     if (base==null)
683       return new NameNode(nd);
684     else
685       return new FieldAccessNode(translateNameDescriptorintoExpression(base),id);
686   }
687
688
689   void checkMethodInvokeNode(Descriptor md, SymbolTable nametable, MethodInvokeNode min, TypeDescriptor td) {
690     /*Typecheck subexpressions
691        and get types for expressions*/
692
693     TypeDescriptor[] tdarray=new TypeDescriptor[min.numArgs()];
694     for(int i=0; i<min.numArgs(); i++) {
695       ExpressionNode en=min.getArg(i);
696       checkExpressionNode(md,nametable,en,null);
697       tdarray[i]=en.getType();
698     }
699     TypeDescriptor typetolookin=null;
700     if (min.getExpression()!=null) {
701       checkExpressionNode(md,nametable,min.getExpression(),null);
702       typetolookin=min.getExpression().getType();
703     } else if (min.getBaseName()!=null) {
704       String rootname=min.getBaseName().getRoot();
705       if (rootname.equals("super")) {
706         ClassDescriptor supercd=((MethodDescriptor)md).getClassDesc().getSuperDesc();
707         typetolookin=new TypeDescriptor(supercd);
708       } else if (nametable.get(rootname)!=null) {
709         //we have an expression
710         min.setExpression(translateNameDescriptorintoExpression(min.getBaseName()));
711         checkExpressionNode(md, nametable, min.getExpression(), null);
712         typetolookin=min.getExpression().getType();
713       } else {
714         //we have a type
715         ClassDescriptor cd=typeutil.getClass(min.getBaseName().getSymbol());
716         if (cd==null)
717           throw new Error("md = "+ md.toString()+ "  "+min.getBaseName()+" undefined");
718         typetolookin=new TypeDescriptor(cd);
719       }
720     } else if ((md instanceof MethodDescriptor)&&min.getMethodName().equals("super")) {
721       ClassDescriptor supercd=((MethodDescriptor)md).getClassDesc().getSuperDesc();
722       min.methodid=supercd.getSymbol();
723       typetolookin=new TypeDescriptor(supercd);
724     } else if (md instanceof MethodDescriptor) {
725       typetolookin=new TypeDescriptor(((MethodDescriptor)md).getClassDesc());
726     } else {
727       /* If this a task descriptor we throw an error at this point */
728       throw new Error("Unknown method call to "+min.getMethodName()+"in task"+md.getSymbol());
729     }
730     if (!typetolookin.isClass())
731       throw new Error("Error with method call to "+min.getMethodName());
732     ClassDescriptor classtolookin=typetolookin.getClassDesc();
733     //System.out.println("Method name="+min.getMethodName());
734
735     Set methoddescriptorset=classtolookin.getMethodTable().getSet(min.getMethodName());
736     MethodDescriptor bestmd=null;
737 NextMethod:
738     for(Iterator methodit=methoddescriptorset.iterator(); methodit.hasNext();) {
739       MethodDescriptor currmd=(MethodDescriptor)methodit.next();
740       /* Need correct number of parameters */
741       if (min.numArgs()!=currmd.numParameters())
742         continue;
743       for(int i=0; i<min.numArgs(); i++) {
744         if (!typeutil.isSuperorType(currmd.getParamType(i),tdarray[i]))
745           continue NextMethod;
746       }
747       /* Method okay so far */
748       if (bestmd==null)
749         bestmd=currmd;
750       else {
751         if (typeutil.isMoreSpecific(currmd,bestmd)) {
752           bestmd=currmd;
753         } else if (!typeutil.isMoreSpecific(bestmd, currmd))
754           throw new Error("No method is most specific");
755
756         /* Is this more specific than bestmd */
757       }
758     }
759     if (bestmd==null)
760       throw new Error("No method found for :"+min.printNode(0)+" in class: " + classtolookin+" in "+md);
761     min.setMethod(bestmd);
762
763     if ((td!=null)&&(min.getType()!=null)&&!typeutil.isSuperorType(td,  min.getType()))
764       throw new Error(min.getType()+ " is not equal to or a subclass of "+td);
765     /* Check whether we need to set this parameter to implied this */
766     if (!bestmd.isStatic()) {
767       if (min.getExpression()==null) {
768         ExpressionNode en=new NameNode(new NameDescriptor("this"));
769         min.setExpression(en);
770         checkExpressionNode(md, nametable, min.getExpression(), null);
771       }
772     }
773   }
774
775
776   void checkOpNode(Descriptor md, SymbolTable nametable, OpNode on, TypeDescriptor td) {
777     checkExpressionNode(md, nametable, on.getLeft(), null);
778     if (on.getRight()!=null)
779       checkExpressionNode(md, nametable, on.getRight(), null);
780     TypeDescriptor ltd=on.getLeft().getType();
781     TypeDescriptor rtd=on.getRight()!=null ? on.getRight().getType() : null;
782     TypeDescriptor lefttype=null;
783     TypeDescriptor righttype=null;
784     Operation op=on.getOp();
785
786     switch(op.getOp()) {
787     case Operation.LOGIC_OR:
788     case Operation.LOGIC_AND:
789       if (!(rtd.isBoolean()))
790         throw new Error();
791       on.setRightType(rtd);
792
793     case Operation.LOGIC_NOT:
794       if (!(ltd.isBoolean()))
795         throw new Error();
796       //no promotion
797       on.setLeftType(ltd);
798
799       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
800       break;
801
802     case Operation.COMP:
803       // 5.6.2 Binary Numeric Promotion
804       //TODO unboxing of reference objects
805       if (ltd.isDouble())
806         throw new Error();
807       else if (ltd.isFloat())
808         throw new Error();
809       else if (ltd.isLong())
810         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
811       else
812         lefttype=new TypeDescriptor(TypeDescriptor.INT);
813       on.setLeftType(lefttype);
814       on.setType(lefttype);
815       break;
816
817     case Operation.BIT_OR:
818     case Operation.BIT_XOR:
819     case Operation.BIT_AND:
820       // 5.6.2 Binary Numeric Promotion
821       //TODO unboxing of reference objects
822       if (ltd.isDouble()||rtd.isDouble())
823         throw new Error();
824       else if (ltd.isFloat()||rtd.isFloat())
825         throw new Error();
826       else if (ltd.isLong()||rtd.isLong())
827         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
828       else
829         lefttype=new TypeDescriptor(TypeDescriptor.INT);
830       righttype=lefttype;
831
832       on.setLeftType(lefttype);
833       on.setRightType(righttype);
834       on.setType(lefttype);
835       break;
836
837     case Operation.ISAVAILABLE:
838       if (!(ltd.isPtr())) {
839         throw new Error("Can't use isavailable on non-pointers/non-parameters.");
840       }
841       lefttype=ltd;
842       on.setLeftType(lefttype);
843       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
844       break;
845
846     case Operation.EQUAL:
847     case Operation.NOTEQUAL:
848       // 5.6.2 Binary Numeric Promotion
849       //TODO unboxing of reference objects
850       if (ltd.isBoolean()||rtd.isBoolean()) {
851         if (!(ltd.isBoolean()&&rtd.isBoolean()))
852           throw new Error();
853         righttype=lefttype=new TypeDescriptor(TypeDescriptor.BOOLEAN);
854       } else if (ltd.isPtr()||rtd.isPtr()) {
855         if (!(ltd.isPtr()&&rtd.isPtr()))
856           throw new Error();
857         righttype=rtd;
858         lefttype=ltd;
859       } else if (ltd.isDouble()||rtd.isDouble())
860         righttype=lefttype=new TypeDescriptor(TypeDescriptor.DOUBLE);
861       else if (ltd.isFloat()||rtd.isFloat())
862         righttype=lefttype=new TypeDescriptor(TypeDescriptor.FLOAT);
863       else if (ltd.isLong()||rtd.isLong())
864         righttype=lefttype=new TypeDescriptor(TypeDescriptor.LONG);
865       else
866         righttype=lefttype=new TypeDescriptor(TypeDescriptor.INT);
867
868       on.setLeftType(lefttype);
869       on.setRightType(righttype);
870       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
871       break;
872
873
874
875     case Operation.LT:
876     case Operation.GT:
877     case Operation.LTE:
878     case Operation.GTE:
879       // 5.6.2 Binary Numeric Promotion
880       //TODO unboxing of reference objects
881       if (!ltd.isNumber()||!rtd.isNumber())
882         throw new Error();
883
884       if (ltd.isDouble()||rtd.isDouble())
885         lefttype=new TypeDescriptor(TypeDescriptor.DOUBLE);
886       else if (ltd.isFloat()||rtd.isFloat())
887         lefttype=new TypeDescriptor(TypeDescriptor.FLOAT);
888       else if (ltd.isLong()||rtd.isLong())
889         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
890       else
891         lefttype=new TypeDescriptor(TypeDescriptor.INT);
892       righttype=lefttype;
893       on.setLeftType(lefttype);
894       on.setRightType(righttype);
895       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
896       break;
897
898     case Operation.ADD:
899       if (ltd.isString()||rtd.isString()) {
900         ClassDescriptor stringcl=typeutil.getClass(TypeUtil.StringClass);
901         TypeDescriptor stringtd=new TypeDescriptor(stringcl);
902         NameDescriptor nd=new NameDescriptor("String");
903         NameDescriptor valuend=new NameDescriptor(nd, "valueOf");
904         if (!(ltd.isString()&&(on.getLeft() instanceof OpNode))) {
905           MethodInvokeNode leftmin=new MethodInvokeNode(valuend);
906           leftmin.addArgument(on.getLeft());
907           on.left=leftmin;
908           checkExpressionNode(md, nametable, on.getLeft(), null);
909         }
910
911         if (!(rtd.isString()&&(on.getRight() instanceof OpNode))) {
912           MethodInvokeNode rightmin=new MethodInvokeNode(valuend);
913           rightmin.addArgument(on.getRight());
914           on.right=rightmin;
915           checkExpressionNode(md, nametable, on.getRight(), null);
916         }
917
918         on.setLeftType(stringtd);
919         on.setRightType(stringtd);
920         on.setType(stringtd);
921         break;
922       }
923
924     case Operation.SUB:
925     case Operation.MULT:
926     case Operation.DIV:
927     case Operation.MOD:
928       // 5.6.2 Binary Numeric Promotion
929       //TODO unboxing of reference objects
930       if (ltd.isArray()||rtd.isArray()||!ltd.isNumber()||!rtd.isNumber())
931         throw new Error("Error in "+on.printNode(0));
932
933       if (ltd.isDouble()||rtd.isDouble())
934         lefttype=new TypeDescriptor(TypeDescriptor.DOUBLE);
935       else if (ltd.isFloat()||rtd.isFloat())
936         lefttype=new TypeDescriptor(TypeDescriptor.FLOAT);
937       else if (ltd.isLong()||rtd.isLong())
938         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
939       else
940         lefttype=new TypeDescriptor(TypeDescriptor.INT);
941       righttype=lefttype;
942       on.setLeftType(lefttype);
943       on.setRightType(righttype);
944       on.setType(lefttype);
945       break;
946
947     case Operation.LEFTSHIFT:
948     case Operation.RIGHTSHIFT:
949     case Operation.URIGHTSHIFT:
950       if (!rtd.isIntegerType())
951         throw new Error();
952       //5.6.1 Unary Numeric Promotion
953       if (rtd.isByte()||rtd.isShort()||rtd.isInt())
954         righttype=new TypeDescriptor(TypeDescriptor.INT);
955       else
956         righttype=rtd;
957
958       on.setRightType(righttype);
959       if (!ltd.isIntegerType())
960         throw new Error();
961
962     case Operation.UNARYPLUS:
963     case Operation.UNARYMINUS:
964       /*        case Operation.POSTINC:
965           case Operation.POSTDEC:
966           case Operation.PREINC:
967           case Operation.PREDEC:*/
968       if (!ltd.isNumber())
969         throw new Error();
970       //5.6.1 Unary Numeric Promotion
971       if (ltd.isByte()||ltd.isShort()||ltd.isInt())
972         lefttype=new TypeDescriptor(TypeDescriptor.INT);
973       else
974         lefttype=ltd;
975       on.setLeftType(lefttype);
976       on.setType(lefttype);
977       break;
978
979     default:
980       throw new Error(op.toString());
981     }
982
983     if (td!=null)
984       if (!typeutil.isSuperorType(td, on.getType())) {
985         System.out.println(td);
986         System.out.println(on.getType());
987         throw new Error("Type of rside not compatible with type of lside"+on.printNode(0));
988       }
989   }
990 }