Handling the case NAME DOT THIS for inner classes
[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   HashMap<ClassDescriptor, Integer> completed;
13
14   public static final int NOCHECK=0;
15   public static final int REFERENCE=1;
16   public static final int INIT=2;
17
18   boolean checkAll;
19
20   public boolean hasLayout(ClassDescriptor cd) {
21     return completed.get(cd)!=null&&completed.get(cd)==INIT;
22   }
23
24   public SemanticCheck(State state, TypeUtil tu) {
25     this(state, tu, true);
26   }
27
28   public SemanticCheck(State state, TypeUtil tu, boolean checkAll) {
29     this.state=state;
30     this.typeutil=tu;
31     this.loopstack=new Stack();
32     this.toanalyze=new HashSet();
33     this.completed=new HashMap<ClassDescriptor, Integer>();
34     this.checkAll=checkAll;
35   }
36
37   public ClassDescriptor getClass(ClassDescriptor context, String classname) {
38     return getClass(context, classname, INIT);
39   }
40   public ClassDescriptor getClass(ClassDescriptor context, String classnameIn, int fullcheck) {
41     ClassDescriptor cd=typeutil.getClass(context, classnameIn, toanalyze);
42     checkClass(cd, fullcheck);
43     return cd;
44   }
45
46   public void checkClass(ClassDescriptor cd) {
47     checkClass(cd, INIT);
48   }
49
50   public void checkClass(ClassDescriptor cd, int fullcheck) {
51     if (!completed.containsKey(cd)||completed.get(cd)<fullcheck) {
52       int oldstatus=completed.containsKey(cd)?completed.get(cd):0;
53       completed.put(cd, fullcheck);
54
55       if (fullcheck>=REFERENCE&&oldstatus<INIT) {
56         //Set superclass link up
57         if (cd.getSuper()!=null) {
58           ClassDescriptor superdesc=getClass(cd, cd.getSuper(), fullcheck);
59           if (superdesc.isInnerClass()) {
60             cd.setAsInnerClass();
61           }
62           if (superdesc.isInterface()) {
63             if (cd.getInline()) {
64               cd.setSuper(null);
65               cd.getSuperInterface().add(superdesc.getSymbol());
66             } else {
67               throw new Error("Error! Class " + cd.getSymbol() + " extends interface " + cd.getSuper());
68             }
69           } else {
70             cd.setSuperDesc(superdesc);
71
72             // Link together Field, Method, and Flag tables so classes
73             // inherit these from their superclasses
74             if (oldstatus<REFERENCE) {
75               cd.getFieldTable().setParent(cd.getSuperDesc().getFieldTable());
76               cd.getMethodTable().setParent(cd.getSuperDesc().getMethodTable());
77               cd.getFlagTable().setParent(cd.getSuperDesc().getFlagTable());
78             }
79           }
80         }
81         // Link together Field, Method tables do classes inherit these from
82         // their ancestor interfaces
83         Vector<String> sifv = cd.getSuperInterface();
84         for(int i = 0; i < sifv.size(); i++) {
85           ClassDescriptor superif = getClass(cd, sifv.elementAt(i), fullcheck);
86           if(!superif.isInterface()) {
87             throw new Error("Error! Class " + cd.getSymbol() + " implements non-interface " + superif.getSymbol());
88           }
89           if (oldstatus<REFERENCE) {
90             cd.addSuperInterfaces(superif);
91             cd.getMethodTable().addParentIF(superif.getMethodTable());
92             cd.getFieldTable().addParentIF(superif.getFieldTable());
93           }
94         }
95       }
96       if (oldstatus<INIT&&fullcheck>=INIT) {
97        if (cd.isInnerClass()) {
98           Modifiers fdmodifiers=new Modifiers();
99          FieldDescriptor enclosingfd=new FieldDescriptor(fdmodifiers,new TypeDescriptor(cd.getSurroundingDesc()),"this___enclosing",null,false);
100          cd.addField(enclosingfd);
101        }
102
103         /* Check to see that fields are well typed */
104         for(Iterator field_it=cd.getFields(); field_it.hasNext(); ) {
105           FieldDescriptor fd=(FieldDescriptor)field_it.next();
106           try {
107           checkField(cd,fd);
108           } catch (Error e) {
109             System.out.println("Class/Field in "+cd+":"+fd);
110             throw e;
111           }
112         }
113         for(Iterator method_it=cd.getMethods(); method_it.hasNext(); ) {
114           MethodDescriptor md=(MethodDescriptor)method_it.next();
115           try {
116           checkMethod(cd,md);
117           } catch (Error e) {
118             System.out.println("Class/Method in "+cd+":"+md);
119             throw e;
120           }
121         }
122       }
123     }
124   }
125
126   public void semanticCheck() {
127     SymbolTable classtable = state.getClassSymbolTable();
128     toanalyze.addAll(classtable.getValueSet());
129     toanalyze.addAll(state.getTaskSymbolTable().getValueSet());
130
131     // Do methods next
132     while (!toanalyze.isEmpty()) {
133       Object obj = toanalyze.iterator().next();
134       if (obj instanceof TaskDescriptor) {
135         toanalyze.remove(obj);
136         TaskDescriptor td = (TaskDescriptor) obj;
137         try {
138           checkTask(td);
139         } catch (Error e) {
140           System.out.println("Error in " + td);
141           throw e;
142         }
143       } else {
144         ClassDescriptor cd = (ClassDescriptor) obj;
145         toanalyze.remove(cd);
146
147         // need to initialize typeutil object here...only place we can
148         // get class descriptors without first calling getclass
149         getClass(cd, cd.getSymbol());
150         for (Iterator method_it = cd.getMethods(); method_it.hasNext(); ) {
151           MethodDescriptor md = (MethodDescriptor) method_it.next();
152           try {
153             checkMethodBody(cd, md);
154           } catch (Error e) {
155             System.out.println("Error in " + md);
156             throw e;
157           }
158         }
159       }
160     }
161   }
162
163   private void checkTypeDescriptor(ClassDescriptor cd, TypeDescriptor td) {
164     if (td.isPrimitive())
165       return;       /* Done */
166     else if (td.isClass()) {
167       String name=td.toString();
168       ClassDescriptor field_cd=checkAll?getClass(cd, name):getClass(cd, name, REFERENCE);
169
170       if (field_cd==null)
171         throw new Error("Undefined class "+name);
172       td.setClassDescriptor(field_cd);
173       return;
174     } else if (td.isTag())
175       return;
176     else
177       throw new Error();
178   }
179
180   public void checkField(ClassDescriptor cd, FieldDescriptor fd) {
181     checkTypeDescriptor(cd, fd.getType());
182   }
183
184   public void checkConstraintCheck(TaskDescriptor td, SymbolTable nametable, Vector ccs) {
185     if (ccs==null)
186       return;       /* No constraint checks to check */
187     for(int i=0; i<ccs.size(); i++) {
188       ConstraintCheck cc=(ConstraintCheck) ccs.get(i);
189
190       for(int j=0; j<cc.numArgs(); j++) {
191         ExpressionNode en=cc.getArg(j);
192         checkExpressionNode(td,nametable,en,null);
193       }
194     }
195   }
196
197   public void checkFlagEffects(TaskDescriptor td, Vector vfe, SymbolTable nametable) {
198     if (vfe==null)
199       return;       /* No flag effects to check */
200     for(int i=0; i<vfe.size(); i++) {
201       FlagEffects fe=(FlagEffects) vfe.get(i);
202       String varname=fe.getName();
203       //Make sure the variable is declared as a parameter to the task
204       VarDescriptor vd=(VarDescriptor)td.getParameterTable().get(varname);
205       if (vd==null)
206         throw new Error("Parameter "+varname+" in Flag Effects not declared in "+td);
207       fe.setVar(vd);
208
209       //Make sure it correspods to a class
210       TypeDescriptor type_d=vd.getType();
211       if (!type_d.isClass())
212         throw new Error("Cannot have non-object argument for flag_effect");
213
214       ClassDescriptor cd=type_d.getClassDesc();
215       for(int j=0; j<fe.numEffects(); j++) {
216         FlagEffect flag=fe.getEffect(j);
217         String name=flag.getName();
218         FlagDescriptor flag_d=(FlagDescriptor)cd.getFlagTable().get(name);
219         //Make sure the flag is declared
220         if (flag_d==null)
221           throw new Error("Flag descriptor "+name+" undefined in class: "+cd.getSymbol());
222         if (flag_d.getExternal())
223           throw new Error("Attempting to modify external flag: "+name);
224         flag.setFlag(flag_d);
225       }
226       for(int j=0; j<fe.numTagEffects(); j++) {
227         TagEffect tag=fe.getTagEffect(j);
228         String name=tag.getName();
229
230         Descriptor d=(Descriptor)nametable.get(name);
231         if (d==null)
232           throw new Error("Tag descriptor "+name+" undeclared");
233         else if (!(d instanceof TagVarDescriptor))
234           throw new Error(name+" is not a tag descriptor");
235         tag.setTag((TagVarDescriptor)d);
236       }
237     }
238   }
239
240   public void checkTask(TaskDescriptor td) {
241     for(int i=0; i<td.numParameters(); i++) {
242       /* Check that parameter is well typed */
243       TypeDescriptor param_type=td.getParamType(i);
244       checkTypeDescriptor(null, param_type);
245
246       /* Check the parameter's flag expression is well formed */
247       FlagExpressionNode fen=td.getFlag(td.getParameter(i));
248       if (!param_type.isClass())
249         throw new Error("Cannot have non-object argument to a task");
250       ClassDescriptor cd=param_type.getClassDesc();
251       if (fen!=null)
252         checkFlagExpressionNode(cd, fen);
253     }
254
255     checkFlagEffects(td, td.getFlagEffects(),td.getParameterTable());
256     /* Check that the task code is valid */
257     BlockNode bn=state.getMethodBody(td);
258     checkBlockNode(td, td.getParameterTable(),bn);
259   }
260
261   public void checkFlagExpressionNode(ClassDescriptor cd, FlagExpressionNode fen) {
262     switch(fen.kind()) {
263     case Kind.FlagOpNode:
264     {
265       FlagOpNode fon=(FlagOpNode)fen;
266       checkFlagExpressionNode(cd, fon.getLeft());
267       if (fon.getRight()!=null)
268         checkFlagExpressionNode(cd, fon.getRight());
269       break;
270     }
271
272     case Kind.FlagNode:
273     {
274       FlagNode fn=(FlagNode)fen;
275       String name=fn.getFlagName();
276       FlagDescriptor fd=(FlagDescriptor)cd.getFlagTable().get(name);
277       if (fd==null)
278         throw new Error("Undeclared flag: "+name);
279       fn.setFlag(fd);
280       break;
281     }
282
283     default:
284       throw new Error("Unrecognized FlagExpressionNode");
285     }
286   }
287
288   public void checkMethod(ClassDescriptor cd, MethodDescriptor md) {
289     /* Check for abstract methods */
290     if(md.isAbstract()) {
291       if(!cd.isAbstract() && !cd.isInterface()) {
292         throw new Error("Error! The non-abstract Class " + cd.getSymbol() + " contains an abstract method " + md.getSymbol());
293       }
294     }
295
296     /* Check return type */
297     if (!md.isConstructor() && !md.isStaticBlock())
298       if (!md.getReturnType().isVoid()) {
299         checkTypeDescriptor(cd, md.getReturnType());
300       }
301     for(int i=0; i<md.numParameters(); i++) {
302       TypeDescriptor param_type=md.getParamType(i);
303       checkTypeDescriptor(cd, param_type);
304     }
305     /* Link the naming environments */
306     if (!md.isStatic())     /* Fields aren't accessible directly in a static method, so don't link in this table */
307       md.getParameterTable().setParent(cd.getFieldTable());
308     md.setClassDesc(cd);
309     if (!md.isStatic()) {
310       VarDescriptor thisvd=new VarDescriptor(new TypeDescriptor(cd),"this");
311       md.setThis(thisvd);
312     }
313     if(md.isDefaultConstructor() && (cd.getSuperDesc() != null)) {
314       // add the construction of it super class, can only be super()
315       NameDescriptor nd=new NameDescriptor("super");
316       MethodInvokeNode min=new MethodInvokeNode(nd);
317       BlockExpressionNode ben=new BlockExpressionNode(min);
318       BlockNode bn = state.getMethodBody(md);
319       bn.addFirstBlockStatement(ben);
320     }
321   }
322
323   public void checkMethodBody(ClassDescriptor cd, MethodDescriptor md) {
324     ClassDescriptor superdesc=cd.getSuperDesc();
325     if (superdesc!=null) {
326       Set possiblematches=superdesc.getMethodTable().getSet(md.getSymbol());
327       for(Iterator methodit=possiblematches.iterator(); methodit.hasNext(); ) {
328         MethodDescriptor matchmd=(MethodDescriptor)methodit.next();
329         if (md.matches(matchmd)) {
330           if (matchmd.getModifiers().isFinal()) {
331             throw new Error("Try to override final method in method:"+md+" declared in  "+cd);
332           }
333         }
334       }
335     }
336     BlockNode bn=state.getMethodBody(md);
337     checkBlockNode(md, md.getParameterTable(),bn);
338   }
339
340   public void checkBlockNode(Descriptor md, SymbolTable nametable, BlockNode bn) {
341     /* Link in the naming environment */
342     bn.getVarTable().setParent(nametable);
343     for(int i=0; i<bn.size(); i++) {
344       BlockStatementNode bsn=bn.get(i);
345       checkBlockStatementNode(md, bn.getVarTable(),bsn);
346     }
347   }
348
349   public void checkBlockStatementNode(Descriptor md, SymbolTable nametable, BlockStatementNode bsn) {
350     switch(bsn.kind()) {
351     case Kind.BlockExpressionNode:
352       checkBlockExpressionNode(md, nametable,(BlockExpressionNode)bsn);
353       return;
354
355     case Kind.DeclarationNode:
356       checkDeclarationNode(md, nametable, (DeclarationNode)bsn);
357       return;
358
359     case Kind.TagDeclarationNode:
360       checkTagDeclarationNode(md, nametable, (TagDeclarationNode)bsn);
361       return;
362
363     case Kind.IfStatementNode:
364       checkIfStatementNode(md, nametable, (IfStatementNode)bsn);
365       return;
366
367     case Kind.SwitchStatementNode:
368       checkSwitchStatementNode(md, nametable, (SwitchStatementNode)bsn);
369       return;
370
371     case Kind.LoopNode:
372       checkLoopNode(md, nametable, (LoopNode)bsn);
373       return;
374
375     case Kind.ReturnNode:
376       checkReturnNode(md, nametable, (ReturnNode)bsn);
377       return;
378
379     case Kind.TaskExitNode:
380       checkTaskExitNode(md, nametable, (TaskExitNode)bsn);
381       return;
382
383     case Kind.SubBlockNode:
384       checkSubBlockNode(md, nametable, (SubBlockNode)bsn);
385       return;
386
387     case Kind.AtomicNode:
388       checkAtomicNode(md, nametable, (AtomicNode)bsn);
389       return;
390
391     case Kind.SynchronizedNode:
392       checkSynchronizedNode(md, nametable, (SynchronizedNode)bsn);
393       return;
394
395     case Kind.ContinueBreakNode:
396       checkContinueBreakNode(md, nametable, (ContinueBreakNode) bsn);
397       return;
398
399     case Kind.SESENode:
400     case Kind.GenReachNode:
401     case Kind.GenDefReachNode:
402       // do nothing, no semantic check for SESEs
403       return;
404     }
405
406     throw new Error();
407   }
408
409   void checkBlockExpressionNode(Descriptor md, SymbolTable nametable, BlockExpressionNode ben) {
410     checkExpressionNode(md, nametable, ben.getExpression(), null);
411   }
412
413   void checkDeclarationNode(Descriptor md, SymbolTable nametable,  DeclarationNode dn) {
414     VarDescriptor vd=dn.getVarDescriptor();
415     checkTypeDescriptor(((md instanceof MethodDescriptor)?((MethodDescriptor)md).getClassDesc():null), vd.getType());
416     Descriptor d=nametable.get(vd.getSymbol());
417     if ((d==null)||
418         (d instanceof FieldDescriptor)) {
419       nametable.add(vd);
420     } else
421       throw new Error(vd.getSymbol()+" in "+md+" defined a second time");
422     if (dn.getExpression()!=null)
423       checkExpressionNode(md, nametable, dn.getExpression(), vd.getType());
424   }
425
426   void checkTagDeclarationNode(Descriptor md, SymbolTable nametable,  TagDeclarationNode dn) {
427     TagVarDescriptor vd=dn.getTagVarDescriptor();
428     Descriptor d=nametable.get(vd.getSymbol());
429     if ((d==null)||
430         (d instanceof FieldDescriptor)) {
431       nametable.add(vd);
432     } else
433       throw new Error(vd.getSymbol()+" defined a second time");
434   }
435
436   void checkSubBlockNode(Descriptor md, SymbolTable nametable, SubBlockNode sbn) {
437     checkBlockNode(md, nametable, sbn.getBlockNode());
438   }
439
440   void checkAtomicNode(Descriptor md, SymbolTable nametable, AtomicNode sbn) {
441     checkBlockNode(md, nametable, sbn.getBlockNode());
442   }
443
444   void checkSynchronizedNode(Descriptor md, SymbolTable nametable, SynchronizedNode sbn) {
445     checkBlockNode(md, nametable, sbn.getBlockNode());
446     //todo this could be Object
447     checkExpressionNode(md, nametable, sbn.getExpr(), null);
448   }
449
450   void checkContinueBreakNode(Descriptor md, SymbolTable nametable, ContinueBreakNode cbn) {
451     if (loopstack.empty())
452       throw new Error("continue/break outside of loop");
453     Object o = loopstack.peek();
454     if(o instanceof LoopNode) {
455       LoopNode ln=(LoopNode)o;
456       cbn.setLoop(ln);
457     }
458   }
459
460   void checkReturnNode(Descriptor d, SymbolTable nametable, ReturnNode rn) {
461     if (d instanceof TaskDescriptor)
462       throw new Error("Illegal return appears in Task: "+d.getSymbol());
463     MethodDescriptor md=(MethodDescriptor)d;
464     if (rn.getReturnExpression()!=null)
465       if (md.getReturnType()==null)
466         throw new Error("Constructor can't return something.");
467       else if (md.getReturnType().isVoid())
468         throw new Error(md+" is void");
469       else
470         checkExpressionNode(md, nametable, rn.getReturnExpression(), md.getReturnType());
471     else
472     if (md.getReturnType()!=null&&!md.getReturnType().isVoid())
473       throw new Error("Need to return something for "+md);
474   }
475
476   void checkTaskExitNode(Descriptor md, SymbolTable nametable, TaskExitNode ten) {
477     if (md instanceof MethodDescriptor)
478       throw new Error("Illegal taskexit appears in Method: "+md.getSymbol());
479     checkFlagEffects((TaskDescriptor)md, ten.getFlagEffects(),nametable);
480     checkConstraintCheck((TaskDescriptor) md, nametable, ten.getChecks());
481   }
482
483   void checkIfStatementNode(Descriptor md, SymbolTable nametable, IfStatementNode isn) {
484     checkExpressionNode(md, nametable, isn.getCondition(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
485     checkBlockNode(md, nametable, isn.getTrueBlock());
486     if (isn.getFalseBlock()!=null)
487       checkBlockNode(md, nametable, isn.getFalseBlock());
488   }
489
490   void checkSwitchStatementNode(Descriptor md, SymbolTable nametable, SwitchStatementNode ssn) {
491     checkExpressionNode(md, nametable, ssn.getCondition(), new TypeDescriptor(TypeDescriptor.INT));
492
493     BlockNode sbn = ssn.getSwitchBody();
494     boolean hasdefault = false;
495     for(int i = 0; i < sbn.size(); i++) {
496       boolean containdefault = checkSwitchBlockNode(md, nametable, (SwitchBlockNode)sbn.get(i));
497       if(hasdefault && containdefault) {
498         throw new Error("Error: duplicate default branch in switch-case statement in Method: " + md.getSymbol());
499       }
500       hasdefault = containdefault;
501     }
502   }
503
504   boolean checkSwitchBlockNode(Descriptor md, SymbolTable nametable, SwitchBlockNode sbn) {
505     Vector<SwitchLabelNode> slnv = sbn.getSwitchConditions();
506     int defaultb = 0;
507     for(int i = 0; i < slnv.size(); i++) {
508       if(slnv.elementAt(i).isdefault) {
509         defaultb++;
510       } else {
511         checkConstantExpressionNode(md, nametable, slnv.elementAt(i).getCondition(), new TypeDescriptor(TypeDescriptor.INT));
512       }
513     }
514     if(defaultb > 1) {
515       throw new Error("Error: duplicate default branch in switch-case statement in Method: " + md.getSymbol());
516     } else {
517       loopstack.push(sbn);
518       checkBlockNode(md, nametable, sbn.getSwitchBlockStatement());
519       loopstack.pop();
520       return (defaultb > 0);
521     }
522   }
523
524   void checkConstantExpressionNode(Descriptor md, SymbolTable nametable, ExpressionNode en, TypeDescriptor td) {
525     switch(en.kind()) {
526     case Kind.FieldAccessNode:
527       checkFieldAccessNode(md,nametable,(FieldAccessNode)en,td);
528       return;
529
530     case Kind.LiteralNode:
531       checkLiteralNode(md,nametable,(LiteralNode)en,td);
532       return;
533
534     case Kind.NameNode:
535       checkNameNode(md,nametable,(NameNode)en,td);
536       return;
537
538     case Kind.OpNode:
539       checkOpNode(md, nametable, (OpNode)en, td);
540       return;
541     }
542     throw new Error();
543   }
544
545   void checkExpressionNode(Descriptor md, SymbolTable nametable, ExpressionNode en, TypeDescriptor td) {
546     switch(en.kind()) {
547     case Kind.AssignmentNode:
548       checkAssignmentNode(md,nametable,(AssignmentNode)en,td);
549       return;
550
551     case Kind.CastNode:
552       checkCastNode(md,nametable,(CastNode)en,td);
553       return;
554
555     case Kind.CreateObjectNode:
556       checkCreateObjectNode(md,nametable,(CreateObjectNode)en,td);
557       return;
558
559     case Kind.FieldAccessNode:
560       checkFieldAccessNode(md,nametable,(FieldAccessNode)en,td);
561       return;
562
563     case Kind.ArrayAccessNode:
564       checkArrayAccessNode(md,nametable,(ArrayAccessNode)en,td);
565       return;
566
567     case Kind.LiteralNode:
568       checkLiteralNode(md,nametable,(LiteralNode)en,td);
569       return;
570
571     case Kind.MethodInvokeNode:
572       checkMethodInvokeNode(md,nametable,(MethodInvokeNode)en,td);
573       return;
574
575     case Kind.NameNode:
576       checkNameNode(md,nametable,(NameNode)en,td);
577       return;
578
579     case Kind.OpNode:
580       checkOpNode(md,nametable,(OpNode)en,td);
581       return;
582
583     case Kind.OffsetNode:
584       checkOffsetNode(md, nametable, (OffsetNode)en, td);
585       return;
586
587     case Kind.TertiaryNode:
588       checkTertiaryNode(md, nametable, (TertiaryNode)en, td);
589       return;
590
591     case Kind.InstanceOfNode:
592       checkInstanceOfNode(md, nametable, (InstanceOfNode) en, td);
593       return;
594
595     case Kind.ArrayInitializerNode:
596       checkArrayInitializerNode(md, nametable, (ArrayInitializerNode) en, td);
597       return;
598
599     case Kind.ClassTypeNode:
600       checkClassTypeNode(md, nametable, (ClassTypeNode) en, td);
601       return;
602     }
603     throw new Error();
604   }
605
606   void checkClassTypeNode(Descriptor md, SymbolTable nametable, ClassTypeNode tn, TypeDescriptor td) {
607     checkTypeDescriptor(((md instanceof MethodDescriptor)?((MethodDescriptor)md).getClassDesc():null), tn.getType());
608   }
609
610   void checkCastNode(Descriptor md, SymbolTable nametable, CastNode cn, TypeDescriptor td) {
611     /* Get type descriptor */
612     if (cn.getType()==null) {
613       NameDescriptor typenamed=cn.getTypeName().getName();
614       TypeDescriptor ntd=new TypeDescriptor(getClass(((md instanceof MethodDescriptor)?((MethodDescriptor)md).getClassDesc():null), typenamed.toString()));
615       cn.setType(ntd);
616     }
617
618     /* Check the type descriptor */
619     TypeDescriptor cast_type=cn.getType();
620     checkTypeDescriptor(((md instanceof MethodDescriptor)?((MethodDescriptor)md).getClassDesc():null),cast_type);
621
622     /* Type check */
623     if (td!=null) {
624       if (!typeutil.isSuperorType(td,cast_type))
625         throw new Error("Cast node returns "+cast_type+", but need "+td);
626     }
627
628     ExpressionNode en=cn.getExpression();
629     checkExpressionNode(md, nametable, en, null);
630     TypeDescriptor etd=en.getType();
631     if (typeutil.isSuperorType(cast_type,etd))     /* Cast trivially succeeds */
632       return;
633
634     if (typeutil.isSuperorType(etd,cast_type))     /* Cast may succeed */
635       return;
636     if (typeutil.isCastable(etd, cast_type))
637       return;
638
639     //rough hack to handle interfaces...should clean up
640     if (etd.isClass()&&cast_type.isClass()) {
641       ClassDescriptor cdetd=etd.getClassDesc();
642       ClassDescriptor cdcast_type=cast_type.getClassDesc();
643
644       if (cdetd.isInterface()&&!cdcast_type.getModifier().isFinal())
645         return;
646       
647       if (cdcast_type.isInterface()&&!cdetd.getModifier().isFinal())
648         return;
649     }
650     /* Different branches */
651     /* TODO: change if add interfaces */
652     throw new Error("Cast will always fail\n"+cn.printNode(0));
653   }
654
655   //FieldDescriptor checkFieldAccessNodeForParentNode( Descriptor md, SymbolTable na )
656   void checkFieldAccessNode(Descriptor md, SymbolTable nametable, FieldAccessNode fan, TypeDescriptor td) {
657     ExpressionNode left=fan.getExpression();
658     checkExpressionNode(md,nametable,left,null);
659     TypeDescriptor ltd=left.getType();
660     if (!ltd.isArray())
661       checkClass(ltd.getClassDesc(), INIT);
662     String fieldname=fan.getFieldName();
663
664     FieldDescriptor fd=null;
665     if (ltd.isArray()&&fieldname.equals("length"))
666       fd=FieldDescriptor.arrayLength;
667     else {
668       fd=(FieldDescriptor) ltd.getClassDesc().getFieldTable().get(fieldname);
669     }
670     if(ltd.isClassNameRef()) {
671       // the field access is using a class name directly
672       if (fd==null) {
673        ClassDescriptor surroundingCls=ltd.getClassDesc().getSurroundingDesc();
674        
675        while(surroundingCls!=null) {
676          fd=(FieldDescriptor) surroundingCls.getFieldTable().get(fieldname);
677          if (fd!=null) {
678            fan.left=new ClassTypeNode(new TypeDescriptor(surroundingCls));
679            break;
680          }
681          surroundingCls=surroundingCls.getSurroundingDesc();
682        }
683       }
684
685       if(ltd.getClassDesc().isEnum()) {
686         int value = ltd.getClassDesc().getEnumConstant(fieldname);
687         if(-1 == value) {
688           // check if this field is an enum constant
689           throw new Error(fieldname + " is not an enum constant in "+fan.printNode(0)+" in "+md);
690         }
691         fd = new FieldDescriptor(new Modifiers(Modifiers.PUBLIC|Modifiers.FINAL), new TypeDescriptor(TypeDescriptor.INT), fieldname, null, false);
692         fd.setAsEnum();
693         fd.setEnumValue(value);
694       } else if(fd == null) {
695         throw new Error("Could not find field "+ fieldname + " in "+fan.printNode(0)+" in "+md + " (Line: "+fan.getNumLine()+")");
696       } else if(fd.isStatic()) {
697         // check if this field is a static field
698         if(fd.getExpressionNode() != null) {
699           checkExpressionNode(md,nametable,fd.getExpressionNode(),null);
700         }
701       } else {
702         throw new Error("Dereference of the non-static field "+ fieldname + " in "+fan.printNode(0)+" in "+md);
703       }
704     }
705
706     if (fd==null){
707         if((md instanceof MethodDescriptor) && false == ((MethodDescriptor)md).isStaticBlock()) {
708                 ClassDescriptor cd = ((MethodDescriptor)md).getClassDesc();
709                 FieldAccessNode theFieldNode =  fieldAccessExpression( cd, fieldname, fan.getNumLine() );
710                 if( null != theFieldNode ) {
711                         //fan = theFieldNode;
712                         checkFieldAccessNode( md, nametable, theFieldNode, td );
713                         fan.setField( theFieldNode.getField() );
714                         fan.setExpression( theFieldNode.getExpression() );
715                         //TypeDescriptor td1 = fan.getType();
716                         //td1.toString();
717                         return;         
718                 }       
719                 }
720         throw new Error("Unknown field "+fieldname + " in "+fan.printNode(0)+" in "+md);
721       }
722     if (fd==null) {
723       ClassDescriptor surroundingCls=ltd.getClassDesc().getSurroundingDesc();
724       int numencloses=1;
725       while(surroundingCls!=null) {
726        fd=(FieldDescriptor)surroundingCls.getFieldTable().get(fieldname);
727        if (fd!=null) {
728          surroundingCls=ltd.getClassDesc().getSurroundingDesc();
729          FieldAccessNode ftmp=fan;
730          for(;numencloses>0;numencloses--) {
731            FieldAccessNode fnew=new FieldAccessNode(ftmp.left, "this___enclosing");
732            fnew.setField((FieldDescriptor)surroundingCls.getFieldTable().get("this___enclosing"));
733            ftmp.left=fnew;
734            ftmp=fnew;
735            surroundingCls=surroundingCls.getSurroundingDesc();
736          }
737          break;
738        }
739        surroundingCls=surroundingCls.getSurroundingDesc();
740        numencloses++;
741       }
742
743       if (fd==null)
744        throw new Error("Unknown field "+fieldname + " in "+fan.printNode(0)+" in "+md);
745     }
746
747
748     if (fd.getType().iswrapper()) {
749       FieldAccessNode fan2=new FieldAccessNode(left, fieldname);
750       fan2.setNumLine(left.getNumLine());
751       fan2.setField(fd);
752       fan.left=fan2;
753       fan.fieldname="value";
754
755       ExpressionNode leftwr=fan.getExpression();
756       TypeDescriptor ltdwr=leftwr.getType();
757       String fieldnamewr=fan.getFieldName();
758       FieldDescriptor fdwr=(FieldDescriptor) ltdwr.getClassDesc().getFieldTable().get(fieldnamewr);
759       fan.setField(fdwr);
760       if (fdwr==null)
761         throw new Error("Unknown field "+fieldnamewr + " in "+fan.printNode(0)+" in "+md);
762     } else {
763       fan.setField(fd);
764     }
765     if (td!=null) {
766       if (!typeutil.isSuperorType(td,fan.getType()))
767         throw new Error("Field node returns "+fan.getType()+", but need "+td);
768     }
769   }
770
771   void checkArrayAccessNode(Descriptor md, SymbolTable nametable, ArrayAccessNode aan, TypeDescriptor td) {
772     ExpressionNode left=aan.getExpression();
773     checkExpressionNode(md,nametable,left,null);
774
775     checkExpressionNode(md,nametable,aan.getIndex(),new TypeDescriptor(TypeDescriptor.INT));
776     TypeDescriptor ltd=left.getType();
777     if (ltd.dereference().iswrapper()) {
778       aan.wrappertype=((FieldDescriptor)ltd.dereference().getClassDesc().getFieldTable().get("value")).getType();
779     }
780
781     if (td!=null)
782       if (!typeutil.isSuperorType(td,aan.getType()))
783         throw new Error("Field node returns "+aan.getType()+", but need "+td);
784   }
785
786   void checkLiteralNode(Descriptor md, SymbolTable nametable, LiteralNode ln, TypeDescriptor td) {
787     /* Resolve the type */
788     Object o=ln.getValue();
789     if (ln.getTypeString().equals("null")) {
790       ln.setType(new TypeDescriptor(TypeDescriptor.NULL));
791     } else if (o instanceof Integer) {
792       ln.setType(new TypeDescriptor(TypeDescriptor.INT));
793     } else if (o instanceof Long) {
794       ln.setType(new TypeDescriptor(TypeDescriptor.LONG));
795     } else if (o instanceof Float) {
796       ln.setType(new TypeDescriptor(TypeDescriptor.FLOAT));
797     } else if (o instanceof Boolean) {
798       ln.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
799     } else if (o instanceof Double) {
800       ln.setType(new TypeDescriptor(TypeDescriptor.DOUBLE));
801     } else if (o instanceof Character) {
802       ln.setType(new TypeDescriptor(TypeDescriptor.CHAR));
803     } else if (o instanceof String) {
804       ln.setType(new TypeDescriptor(getClass(null, TypeUtil.StringClass)));
805     }
806
807     if (td!=null)
808       if (!typeutil.isSuperorType(td,ln.getType())) {
809         Long l = ln.evaluate();
810         if((ln.getType().isByte() || ln.getType().isShort()
811             || ln.getType().isChar() || ln.getType().isInt())
812            && (l != null)
813            && (td.isByte() || td.isShort() || td.isChar()
814                || td.isInt() || td.isLong())) {
815           long lnvalue = l.longValue();
816           if((td.isByte() && ((lnvalue > 127) || (lnvalue < -128)))
817              || (td.isShort() && ((lnvalue > 32767) || (lnvalue < -32768)))
818              || (td.isChar() && ((lnvalue > 65535) || (lnvalue < 0)))
819              || (td.isInt() && ((lnvalue > 2147483647) || (lnvalue < -2147483648)))
820              || (td.isLong() && ((lnvalue > 9223372036854775807L) || (lnvalue < -9223372036854775808L)))) {
821             throw new Error("Field node returns "+ln.getType()+", but need "+td+" in "+md);
822           }
823         } else {
824           throw new Error("Field node returns "+ln.getType()+", but need "+td+" in "+md);
825         }
826       }
827   }
828
829   FieldDescriptor recurseSurroundingClasses( ClassDescriptor icd, String varname ) {
830         if( null == icd || false == icd.isInnerClass() )
831                 return null;
832         
833         ClassDescriptor surroundingDesc = icd.getSurroundingDesc();
834         if( null == surroundingDesc )
835                 return null;
836         
837         SymbolTable fieldTable = surroundingDesc.getFieldTable();
838         FieldDescriptor fd = ( FieldDescriptor ) fieldTable.get( varname );
839         if( null != fd )
840                 return fd;
841         return recurseSurroundingClasses( surroundingDesc, varname );
842   }
843
844   FieldAccessNode fieldAccessExpression( ClassDescriptor icd, String varname, int linenum ) {
845         FieldDescriptor fd = recurseSurroundingClasses( icd, varname );
846         if( null == fd )
847                 return null;
848
849         ClassDescriptor cd = fd.getClassDescriptor();
850         int depth = 1;
851         int startingDepth = icd.getInnerDepth();
852
853         if( true == cd.isInnerClass() ) 
854                 depth = cd.getInnerDepth();
855
856         String composed = "this";
857         NameDescriptor runningDesc = new NameDescriptor( "this" );;
858         
859         for ( int index = startingDepth; index > depth; --index ) {
860                 composed = "this$" + String.valueOf( index - 1  );      
861                 runningDesc = new NameDescriptor( runningDesc, composed );
862         }
863         if( false == cd.isInnerClass() )
864                 runningDesc = new NameDescriptor( runningDesc, "this$" + String.valueOf(0) ); //all the way up.
865         NameDescriptor idDesc = new NameDescriptor( runningDesc, varname );
866         
867         
868         FieldAccessNode theFieldNode = ( FieldAccessNode )translateNameDescriptorintoExpression( idDesc, linenum );
869         return theFieldNode;
870   }
871
872   void checkNameNode(Descriptor md, SymbolTable nametable, NameNode nn, TypeDescriptor td) {
873     NameDescriptor nd=nn.getName();
874     if (nd.getBase()!=null) {
875       /* Big hack */
876       /* Rewrite NameNode */
877       ExpressionNode en=translateNameDescriptorintoExpression(nd,nn.getNumLine());
878       nn.setExpression(en);
879       checkExpressionNode(md,nametable,en,td);
880     } else {
881       String varname=nd.toString();
882       if(varname.equals("this")) {
883         // "this"
884         nn.setVar((VarDescriptor)nametable.get("this"));
885         return;
886       }
887       Descriptor d=(Descriptor)nametable.get(varname);
888       if (d==null) {
889         ClassDescriptor cd = null;
890         //check the inner class case first.
891         if((md instanceof MethodDescriptor) && false == ((MethodDescriptor)md).isStaticBlock()) {
892                 cd = ((MethodDescriptor)md).getClassDesc();
893                 FieldAccessNode theFieldNode =  fieldAccessExpression( cd, varname, nn.getNumLine() );
894                 if( null != theFieldNode ) {
895                         nn.setExpression(( ExpressionNode )theFieldNode);
896                         checkExpressionNode(md,nametable,( ExpressionNode )theFieldNode,td);
897                         return;         
898                 }               
899         }
900         if((md instanceof MethodDescriptor) && ((MethodDescriptor)md).isStaticBlock()) {
901           // this is a static block, all the accessed fields should be static field
902           cd = ((MethodDescriptor)md).getClassDesc();
903           SymbolTable fieldtbl = cd.getFieldTable();
904           FieldDescriptor fd=(FieldDescriptor)fieldtbl.get(varname);
905           if((fd == null) || (!fd.isStatic())) {
906             // no such field in the class, check if this is a class
907             if(varname.equals("this")) {
908               throw new Error("Error: access this obj in a static block");
909             }
910             cd=getClass(((md instanceof MethodDescriptor)?((MethodDescriptor)md).getClassDesc():null), varname);
911             if(cd != null) {
912               // this is a class name
913               nn.setClassDesc(cd);
914               return;
915             } else {
916               throw new Error("Name "+varname+" should not be used in static block: "+md);
917             }
918           } else {
919             // this is a static field
920             nn.setField(fd);
921             nn.setClassDesc(cd);
922             return;
923           }
924         } else {
925           // check if the var is a static field of the class
926           if(md instanceof MethodDescriptor) {
927             cd = ((MethodDescriptor)md).getClassDesc();
928             FieldDescriptor fd = (FieldDescriptor)cd.getFieldTable().get(varname);
929             if((fd != null) && (fd.isStatic())) {
930               nn.setField(fd);
931               nn.setClassDesc(cd);
932               if (td!=null)
933                 if (!typeutil.isSuperorType(td,nn.getType()))
934                   throw new Error("Field node returns "+nn.getType()+", but need "+td);
935               return;
936             } else if(fd != null) {
937               throw new Error("Name "+varname+" should not be used in " + md);
938             }
939           }
940           cd=getClass(((md instanceof MethodDescriptor)?((MethodDescriptor)md).getClassDesc():null), varname);
941           if(cd != null) {
942             // this is a class name
943             nn.setClassDesc(cd);
944             return;
945           } else {
946             throw new Error("Name "+varname+" undefined in: "+md);          
947           }
948         }
949       }
950       if (d instanceof VarDescriptor) {
951         nn.setVar(d);
952       } else if (d instanceof FieldDescriptor) {
953         FieldDescriptor fd=(FieldDescriptor)d;
954         if (fd.getType().iswrapper()) {
955           String id=nd.getIdentifier();
956           NameDescriptor base=nd.getBase();
957           NameNode n=new NameNode(nn.getName());
958           n.setNumLine(nn.getNumLine());
959           n.setField(fd);
960           n.setVar((VarDescriptor)nametable.get("this"));        /* Need a pointer to this */
961           FieldAccessNode fan=new FieldAccessNode(n,"value");
962           fan.setNumLine(n.getNumLine());
963           FieldDescriptor fdval=(FieldDescriptor) fd.getType().getClassDesc().getFieldTable().get("value");
964           fan.setField(fdval);
965           nn.setExpression(fan);
966         } else {
967           nn.setField(fd);
968           nn.setVar((VarDescriptor)nametable.get("this"));        /* Need a pointer to this */
969         }
970       } else if (d instanceof TagVarDescriptor) {
971         nn.setVar(d);
972       } else throw new Error("Wrong type of descriptor");
973       if (td!=null)
974         if (!typeutil.isSuperorType(td,nn.getType()))
975           throw new Error("Field node returns "+nn.getType()+", but need "+td);
976     }
977   }
978
979   void checkOffsetNode(Descriptor md, SymbolTable nameTable, OffsetNode ofn, TypeDescriptor td) {
980     TypeDescriptor ltd=ofn.td;
981     checkTypeDescriptor(((md instanceof MethodDescriptor)?((MethodDescriptor)md).getClassDesc():null),ltd);
982
983     String fieldname = ofn.fieldname;
984     FieldDescriptor fd=null;
985     if (ltd.isArray()&&fieldname.equals("length")) {
986       fd=FieldDescriptor.arrayLength;
987     } else {
988       fd=(FieldDescriptor) ltd.getClassDesc().getFieldTable().get(fieldname);
989     }
990
991     ofn.setField(fd);
992     checkField(ltd.getClassDesc(), fd);
993
994     if (fd==null)
995       throw new Error("Unknown field "+fieldname + " in "+ofn.printNode(1)+" in "+md);
996
997     if (td!=null) {
998       if (!typeutil.isSuperorType(td, ofn.getType())) {
999         throw new Error("Type of rside not compatible with type of lside"+ofn.printNode(0));
1000       }
1001     }
1002   }
1003
1004
1005   void checkTertiaryNode(Descriptor md, SymbolTable nametable, TertiaryNode tn, TypeDescriptor td) {
1006     checkExpressionNode(md, nametable, tn.getCond(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
1007     checkExpressionNode(md, nametable, tn.getTrueExpr(), td);
1008     checkExpressionNode(md, nametable, tn.getFalseExpr(), td);
1009   }
1010
1011   void checkInstanceOfNode(Descriptor md, SymbolTable nametable, InstanceOfNode tn, TypeDescriptor td) {
1012     if (td!=null&&!td.isBoolean())
1013       throw new Error("Expecting type "+td+"for instanceof expression");
1014
1015     checkTypeDescriptor(((md instanceof MethodDescriptor)?((MethodDescriptor)md).getClassDesc():null), tn.getExprType());
1016     checkExpressionNode(md, nametable, tn.getExpr(), null);
1017   }
1018
1019   void checkArrayInitializerNode(Descriptor md, SymbolTable nametable, ArrayInitializerNode ain, TypeDescriptor td) {
1020     Vector<TypeDescriptor> vec_type = new Vector<TypeDescriptor>();
1021     for( int i = 0; i < ain.numVarInitializers(); ++i ) {
1022       checkExpressionNode(md, nametable, ain.getVarInitializer(i), td.dereference());
1023       vec_type.add(ain.getVarInitializer(i).getType());
1024     }
1025     if (td==null)
1026       throw new Error();
1027
1028     ain.setType(td);
1029   }
1030
1031   void checkAssignmentNode(Descriptor md, SymbolTable nametable, AssignmentNode an, TypeDescriptor td) {
1032     boolean postinc=true;
1033     if (an.getOperation().getBaseOp()==null||
1034         (an.getOperation().getBaseOp().getOp()!=Operation.POSTINC&&
1035          an.getOperation().getBaseOp().getOp()!=Operation.POSTDEC))
1036       postinc=false;
1037     if (!postinc)
1038       checkExpressionNode(md, nametable, an.getSrc(),td);
1039     //TODO: Need check on validity of operation here
1040     if (!((an.getDest() instanceof FieldAccessNode)||
1041           (an.getDest() instanceof ArrayAccessNode)||
1042           (an.getDest() instanceof NameNode)))
1043       throw new Error("Bad lside in "+an.printNode(0));
1044     checkExpressionNode(md, nametable, an.getDest(), null);
1045
1046     /* We want parameter variables to tasks to be immutable */
1047     if (md instanceof TaskDescriptor) {
1048       if (an.getDest() instanceof NameNode) {
1049         NameNode nn=(NameNode)an.getDest();
1050         if (nn.getVar()!=null) {
1051           if (((TaskDescriptor)md).getParameterTable().contains(nn.getVar().getSymbol()))
1052             throw new Error("Can't modify parameter "+nn.getVar()+ " to task "+td.getSymbol());
1053         }
1054       }
1055     }
1056
1057     if (an.getDest().getType().isString()&&an.getOperation().getOp()==AssignOperation.PLUSEQ) {
1058       //String add
1059       ClassDescriptor stringcl=getClass(null, TypeUtil.StringClass);
1060       TypeDescriptor stringtd=new TypeDescriptor(stringcl);
1061       NameDescriptor nd=new NameDescriptor("String");
1062       NameDescriptor valuend=new NameDescriptor(nd, "valueOf");
1063
1064       if (!(an.getSrc().getType().isString()&&(an.getSrc() instanceof OpNode))) {
1065         MethodInvokeNode rightmin=new MethodInvokeNode(valuend);
1066         rightmin.setNumLine(an.getSrc().getNumLine());
1067         rightmin.addArgument(an.getSrc());
1068         an.right=rightmin;
1069         checkExpressionNode(md, nametable, an.getSrc(), null);
1070       }
1071     }
1072
1073     if (!postinc&&!typeutil.isSuperorType(an.getDest().getType(),an.getSrc().getType())) {
1074       TypeDescriptor dt = an.getDest().getType();
1075       TypeDescriptor st = an.getSrc().getType();
1076       if(an.getSrc().kind() == Kind.ArrayInitializerNode) {
1077         if(dt.getArrayCount() != st.getArrayCount()) {
1078           throw new Error("Type of rside ("+an.getSrc().getType().toPrettyString()+") not compatible with type of lside ("+an.getDest().getType().toPrettyString()+")"+an.printNode(0));
1079         } else {
1080           do {
1081             dt = dt.dereference();
1082             st = st.dereference();
1083           } while(dt.isArray());
1084           if((st.isByte() || st.isShort() || st.isChar() || st.isInt())
1085              && (dt.isByte() || dt.isShort() || dt.isChar() || dt.isInt() || dt.isLong())) {
1086             return;
1087           } else {
1088             throw new Error("Type of rside ("+an.getSrc().getType().toPrettyString()+") not compatible with type of lside ("+an.getDest().getType().toPrettyString()+")"+an.printNode(0));
1089           }
1090         }
1091       } else {
1092         Long l = an.getSrc().evaluate();
1093         if((st.isByte() || st.isShort() || st.isChar() || st.isInt())
1094            && (l != null)
1095            && (dt.isByte() || dt.isShort() || dt.isChar() || dt.isInt() || dt.isLong())) {
1096           long lnvalue = l.longValue();
1097           if((dt.isByte() && ((lnvalue > 127) || (lnvalue < -128)))
1098              || (dt.isShort() && ((lnvalue > 32767) || (lnvalue < -32768)))
1099              || (dt.isChar() && ((lnvalue > 65535) || (lnvalue < 0)))
1100              || (dt.isInt() && ((lnvalue > 2147483647) || (lnvalue < -2147483648)))
1101              || (dt.isLong() && ((lnvalue > 9223372036854775807L) || (lnvalue < -9223372036854775808L)))) {
1102             throw new Error("Type of rside ("+an.getSrc().getType().toPrettyString()+") not compatible with type of lside ("+an.getDest().getType().toPrettyString()+")"+an.printNode(0));
1103           }
1104         } else {
1105           throw new Error("Type of rside ("+an.getSrc().getType().toPrettyString()+") not compatible with type of lside ("+an.getDest().getType().toPrettyString()+")"+an.printNode(0));
1106         }
1107       }
1108     }
1109   }
1110
1111   void checkLoopNode(Descriptor md, SymbolTable nametable, LoopNode ln) {
1112     loopstack.push(ln);
1113     if (ln.getType()==LoopNode.WHILELOOP||ln.getType()==LoopNode.DOWHILELOOP) {
1114       checkExpressionNode(md, nametable, ln.getCondition(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
1115       checkBlockNode(md, nametable, ln.getBody());
1116     } else {
1117       //For loop case
1118       /* Link in the initializer naming environment */
1119       BlockNode bn=ln.getInitializer();
1120       bn.getVarTable().setParent(nametable);
1121       for(int i=0; i<bn.size(); i++) {
1122         BlockStatementNode bsn=bn.get(i);
1123         checkBlockStatementNode(md, bn.getVarTable(),bsn);
1124       }
1125       //check the condition
1126       checkExpressionNode(md, bn.getVarTable(), ln.getCondition(), new TypeDescriptor(TypeDescriptor.BOOLEAN));
1127       checkBlockNode(md, bn.getVarTable(), ln.getBody());
1128       checkBlockNode(md, bn.getVarTable(), ln.getUpdate());
1129     }
1130     loopstack.pop();
1131   }
1132
1133   void InnerClassAddParamToCtor( MethodDescriptor md, ClassDescriptor cd, SymbolTable nametable, 
1134                                  CreateObjectNode con, TypeDescriptor td ) {
1135         
1136         TypeDescriptor cdsType = new TypeDescriptor( cd );
1137         ExpressionNode conExp = con.getSurroundingClassExpression();
1138         //System.out.println( "The surrounding class expression si " + con );
1139         if( null == conExp ) {
1140                 if( md.isStatic() ) {
1141                         throw new Error("trying to instantiate inner class: " +  con.getType() + " in a static scope" );
1142                 }
1143                 VarDescriptor thisVD = md.getThis();
1144                 if( null == thisVD ) {
1145                         throw new Error( "this pointer is not defined in a non static scope" ); 
1146                 }                       
1147                 if( cdsType.equals( thisVD.getType() ) == false ) {
1148                         throw new Error( "the type of this pointer is different than the type expected for inner class constructor. Initializing the inner class: "                             +  con.getType() + " in the wrong scope" );             
1149                 }       
1150                 //make this into an expression node.
1151                 NameNode nThis=new NameNode( new NameDescriptor( "this" ) );
1152                 con.addArgument( nThis );
1153         }
1154         else {
1155                 //REVISIT : here i am storing the expression as an expressionNode which does not implement type, there is no way for me to semantic check this argument.
1156                 con.addArgument( conExp );
1157         }
1158         //System.out.println( " the modified createObjectNode is " + con.printNode( 0 ) + "\n" );
1159 }
1160   void checkCreateObjectNode(Descriptor md, SymbolTable nametable, CreateObjectNode con,
1161                              TypeDescriptor td) {
1162     TypeDescriptor[] tdarray = new TypeDescriptor[con.numArgs()];
1163     for (int i = 0; i < con.numArgs(); i++) {
1164       ExpressionNode en = con.getArg(i);
1165       checkExpressionNode(md, nametable, en, null);
1166       tdarray[i] = en.getType();
1167     }
1168
1169     TypeDescriptor typetolookin = con.getType();
1170     checkTypeDescriptor(((md instanceof MethodDescriptor)?((MethodDescriptor)md).getClassDesc():null), typetolookin);
1171
1172     if (td != null && !typeutil.isSuperorType(td, typetolookin))
1173       throw new Error(typetolookin + " isn't a " + td);
1174
1175     /* Check Array Initializers */
1176     if ((con.getArrayInitializer() != null)) {
1177       checkArrayInitializerNode(md, nametable, con.getArrayInitializer(), typetolookin);
1178     }
1179
1180     /* Check flag effects */
1181     if (con.getFlagEffects() != null) {
1182       FlagEffects fe = con.getFlagEffects();
1183       ClassDescriptor cd = typetolookin.getClassDesc();
1184
1185       for (int j = 0; j < fe.numEffects(); j++) {
1186         FlagEffect flag = fe.getEffect(j);
1187         String name = flag.getName();
1188         FlagDescriptor flag_d = (FlagDescriptor) cd.getFlagTable().get(name);
1189         // Make sure the flag is declared
1190         if (flag_d == null)
1191           throw new Error("Flag descriptor " + name + " undefined in class: " + cd.getSymbol());
1192         if (flag_d.getExternal())
1193           throw new Error("Attempting to modify external flag: " + name);
1194         flag.setFlag(flag_d);
1195       }
1196       for (int j = 0; j < fe.numTagEffects(); j++) {
1197         TagEffect tag = fe.getTagEffect(j);
1198         String name = tag.getName();
1199
1200         Descriptor d = (Descriptor) nametable.get(name);
1201         if (d == null)
1202           throw new Error("Tag descriptor " + name + " undeclared");
1203         else if (!(d instanceof TagVarDescriptor))
1204           throw new Error(name + " is not a tag descriptor");
1205         tag.setTag((TagVarDescriptor) d);
1206       }
1207     }
1208
1209     if ((!typetolookin.isClass()) && (!typetolookin.isArray()))
1210       throw new Error("Can't allocate primitive type:" + con.printNode(0));
1211
1212     if (!typetolookin.isArray()) {
1213       // Array's don't need constructor calls
1214       ClassDescriptor classtolookin = typetolookin.getClassDesc();
1215       checkClass(classtolookin, INIT);
1216       if( classtolookin.isInnerClass() ) {
1217         InnerClassAddParamToCtor( (MethodDescriptor)md, ((MethodDescriptor)md).getClassDesc() , nametable, con, td );
1218         tdarray = new TypeDescriptor[con.numArgs()];
1219         for (int i = 0; i < con.numArgs(); i++) {
1220                 ExpressionNode en = con.getArg(i);
1221                 checkExpressionNode(md, nametable, en, null);
1222                 tdarray[i] = en.getType();
1223          }
1224       }
1225       Set methoddescriptorset = classtolookin.getMethodTable().getSet(classtolookin.getSymbol());
1226       MethodDescriptor bestmd = null;
1227 NextMethod: for (Iterator methodit = methoddescriptorset.iterator(); methodit.hasNext(); ) {
1228         MethodDescriptor currmd = (MethodDescriptor) methodit.next();
1229         /* Need correct number of parameters */
1230         if (con.numArgs() != currmd.numParameters())
1231           continue;
1232         for (int i = 0; i < con.numArgs(); i++) {
1233           if (!typeutil.isSuperorType(currmd.getParamType(i), tdarray[i]))
1234             continue NextMethod;
1235         }
1236         /* Local allocations can't call global allocator */
1237         if (!con.isGlobal() && currmd.isGlobal())
1238           continue;
1239
1240         /* Method okay so far */
1241         if (bestmd == null)
1242           bestmd = currmd;
1243         else {
1244           if (typeutil.isMoreSpecific(currmd, bestmd)) {
1245             bestmd = currmd;
1246           } else if (con.isGlobal() && match(currmd, bestmd)) {
1247             if (currmd.isGlobal() && !bestmd.isGlobal())
1248               bestmd = currmd;
1249             else if (currmd.isGlobal() && bestmd.isGlobal())
1250               throw new Error();
1251           } else if (!typeutil.isMoreSpecific(bestmd, currmd)) {
1252             throw new Error("No method is most specific:" + bestmd + " and " + currmd);
1253           }
1254
1255           /* Is this more specific than bestmd */
1256         }
1257       }
1258       if (bestmd == null) {
1259         throw new Error("No method found for " + con.printNode(0) + " in " + md);
1260       }
1261       con.setConstructor(bestmd);
1262     }
1263   }
1264
1265
1266   /** Check to see if md1 is the same specificity as md2.*/
1267
1268   boolean match(MethodDescriptor md1, MethodDescriptor md2) {
1269     /* Checks if md1 is more specific than md2 */
1270     if (md1.numParameters()!=md2.numParameters())
1271       throw new Error();
1272     for(int i=0; i<md1.numParameters(); i++) {
1273       if (!md2.getParamType(i).equals(md1.getParamType(i)))
1274         return false;
1275     }
1276     if (!md2.getReturnType().equals(md1.getReturnType()))
1277       return false;
1278
1279     if (!md2.getClassDesc().equals(md1.getClassDesc()))
1280       return false;
1281
1282     return true;
1283   }
1284
1285
1286
1287   ExpressionNode translateNameDescriptorintoExpression(NameDescriptor nd, int numLine) {
1288     String id=nd.getIdentifier();
1289     NameDescriptor base=nd.getBase();
1290     if (base==null) {
1291       NameNode nn=new NameNode(nd);
1292       nn.setNumLine(numLine);
1293       return nn;
1294     } else {
1295       FieldAccessNode fan=new FieldAccessNode(translateNameDescriptorintoExpression(base,numLine),id);
1296       fan.setNumLine(numLine);
1297       return fan;
1298     }
1299   }
1300
1301
1302   void checkMethodInvokeNode(Descriptor md, SymbolTable nametable, MethodInvokeNode min, TypeDescriptor td) {
1303     /*Typecheck subexpressions
1304        and get types for expressions*/
1305
1306     boolean isstatic = false;
1307     if((md instanceof MethodDescriptor) && ((MethodDescriptor)md).isStatic()) {
1308       isstatic = true;
1309     }
1310     TypeDescriptor[] tdarray=new TypeDescriptor[min.numArgs()];
1311     for(int i=0; i<min.numArgs(); i++) {
1312       ExpressionNode en=min.getArg(i);
1313       checkExpressionNode(md,nametable,en,null);
1314       tdarray[i]=en.getType();
1315
1316       if(en.getType().isClass() && en.getType().getClassDesc().isEnum()) {
1317         tdarray[i] = new TypeDescriptor(TypeDescriptor.INT);
1318       }
1319     }
1320     TypeDescriptor typetolookin=null;
1321     if (min.getExpression()!=null) {
1322       checkExpressionNode(md,nametable,min.getExpression(),null);
1323       typetolookin=min.getExpression().getType();
1324     } else if (min.getBaseName()!=null) {
1325       String rootname=min.getBaseName().getRoot();
1326       if (rootname.equals("super")) {
1327         ClassDescriptor supercd=((MethodDescriptor)md).getClassDesc().getSuperDesc();
1328         typetolookin=new TypeDescriptor(supercd);
1329         min.setSuper();
1330       } else if (rootname.equals("this")) {
1331         if(isstatic) {
1332           throw new Error("use this object in static method md = "+ md.toString());
1333         }
1334         ClassDescriptor cd=((MethodDescriptor)md).getClassDesc();
1335         typetolookin=new TypeDescriptor(cd);
1336       } else if (nametable.get(rootname)!=null) {
1337         //we have an expression
1338         min.setExpression(translateNameDescriptorintoExpression(min.getBaseName(),min.getNumLine()));
1339         checkExpressionNode(md, nametable, min.getExpression(), null);
1340         typetolookin=min.getExpression().getType();
1341       } else {
1342         if(!min.getBaseName().getSymbol().equals("System.out")||state.JNI) {
1343           ExpressionNode nn = translateNameDescriptorintoExpression(min.getBaseName(),min.getNumLine());
1344           checkExpressionNode(md, nametable, nn, null);
1345           typetolookin = nn.getType();
1346           if(!((nn.kind()== Kind.NameNode) && (((NameNode)nn).getField() == null)
1347                && (((NameNode)nn).getVar() == null) && (((NameNode)nn).getExpression() == null))) {
1348             // this is not a pure class name, need to add to
1349             min.setExpression(nn);
1350           }
1351         } else {
1352           //we have a type
1353           ClassDescriptor cd = getClass(null, "System");
1354
1355           if (cd==null)
1356             throw new Error("md = "+ md.toString()+ "  "+min.getBaseName()+" undefined");
1357           typetolookin=new TypeDescriptor(cd);
1358         }
1359       }
1360     } else if ((md instanceof MethodDescriptor)&&min.getMethodName().equals("super")) {
1361       ClassDescriptor supercd=((MethodDescriptor)md).getClassDesc().getSuperDesc();
1362       min.methodid=supercd.getSymbol();
1363       typetolookin=new TypeDescriptor(supercd);
1364     } else if (md instanceof MethodDescriptor) {
1365       typetolookin=new TypeDescriptor(((MethodDescriptor)md).getClassDesc());
1366     } else {
1367       /* If this a task descriptor we throw an error at this point */
1368       throw new Error("Unknown method call to "+min.getMethodName()+"in task"+md.getSymbol());
1369     }
1370     if (!typetolookin.isClass())
1371       throw new Error("Error with method call to "+min.getMethodName()+" in class "+typetolookin);
1372     ClassDescriptor classtolookin=typetolookin.getClassDesc();
1373     checkClass(classtolookin, REFERENCE);
1374     Set methoddescriptorset=classtolookin.getMethodTable().getSet(min.getMethodName());
1375     MethodDescriptor bestmd=null;
1376 NextMethod:
1377     for(Iterator methodit=methoddescriptorset.iterator(); methodit.hasNext(); ) {
1378       MethodDescriptor currmd=(MethodDescriptor)methodit.next();
1379       /* Need correct number of parameters */
1380       if (min.numArgs()!=currmd.numParameters())
1381         continue;
1382       for(int i=0; i<min.numArgs(); i++) {
1383         if (!typeutil.isSuperorType(currmd.getParamType(i),tdarray[i]))
1384           if(((!tdarray[i].isArray() &&(tdarray[i].isInt() || tdarray[i].isLong()))
1385               && currmd.getParamType(i).isClass() && currmd.getParamType(i).getClassDesc().getSymbol().equals("Object"))) {
1386             // primitive parameters vs object
1387           } else {
1388             continue NextMethod;
1389           }
1390       }
1391       /* Method okay so far */
1392       if (bestmd==null)
1393         bestmd=currmd;
1394       else {
1395         if (typeutil.isMoreSpecific(currmd,bestmd)) {
1396           bestmd=currmd;
1397         } else if (!typeutil.isMoreSpecific(bestmd, currmd))
1398           throw new Error("No method is most specific:"+bestmd+" and "+currmd);
1399
1400         /* Is this more specific than bestmd */
1401       }
1402     }
1403     if (bestmd==null)
1404       throw new Error("No method found for :"+min.printNode(0)+" in class: " + classtolookin+" in "+md);
1405     min.setMethod(bestmd);
1406
1407     if ((td!=null)&&(min.getType()!=null)&&!typeutil.isSuperorType(td,  min.getType()))
1408       throw new Error(min.getType()+ " is not equal to or a subclass of "+td);
1409     /* Check whether we need to set this parameter to implied this */
1410     if (!isstatic && !bestmd.isStatic()) {
1411       if (min.getExpression()==null) {
1412         ExpressionNode en=new NameNode(new NameDescriptor("this"));
1413         min.setExpression(en);
1414         checkExpressionNode(md, nametable, min.getExpression(), null);
1415       }
1416     }
1417
1418     /* Check if we need to wrap primitive paratmeters to objects */
1419     for(int i=0; i<min.numArgs(); i++) {
1420       if(!tdarray[i].isArray() && (tdarray[i].isInt() || tdarray[i].isLong())
1421          && min.getMethod().getParamType(i).isClass() && min.getMethod().getParamType(i).getClassDesc().getSymbol().equals("Object")) {
1422         // Shall wrap this primitive parameter as a object
1423         ExpressionNode exp = min.getArg(i);
1424         TypeDescriptor ptd = null;
1425         NameDescriptor nd=null;
1426         if(exp.getType().isInt()) {
1427           nd = new NameDescriptor("Integer");
1428           ptd = state.getTypeDescriptor(nd);
1429         } else if(exp.getType().isLong()) {
1430           nd = new NameDescriptor("Long");
1431           ptd = state.getTypeDescriptor(nd);
1432         }
1433         boolean isglobal = false;
1434         String disjointId = null;
1435         CreateObjectNode con=new CreateObjectNode(ptd, isglobal, disjointId);
1436         con.addArgument(exp);
1437         checkExpressionNode(md, nametable, con, null);
1438         min.setArgument(con, i);
1439       }
1440     }
1441   }
1442
1443
1444   void checkOpNode(Descriptor md, SymbolTable nametable, OpNode on, TypeDescriptor td) {
1445     checkExpressionNode(md, nametable, on.getLeft(), null);
1446     if (on.getRight()!=null)
1447       checkExpressionNode(md, nametable, on.getRight(), null);
1448     TypeDescriptor ltd=on.getLeft().getType();
1449     TypeDescriptor rtd=on.getRight()!=null?on.getRight().getType():null;
1450     TypeDescriptor lefttype=null;
1451     TypeDescriptor righttype=null;
1452     Operation op=on.getOp();
1453
1454     switch(op.getOp()) {
1455     case Operation.LOGIC_OR:
1456     case Operation.LOGIC_AND:
1457       if (!(rtd.isBoolean()))
1458         throw new Error();
1459       on.setRightType(rtd);
1460
1461     case Operation.LOGIC_NOT:
1462       if (!(ltd.isBoolean()))
1463         throw new Error();
1464       //no promotion
1465       on.setLeftType(ltd);
1466
1467       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
1468       break;
1469
1470     case Operation.COMP:
1471       // 5.6.2 Binary Numeric Promotion
1472       //TODO unboxing of reference objects
1473       if (ltd.isDouble())
1474         throw new Error();
1475       else if (ltd.isFloat())
1476         throw new Error();
1477       else if (ltd.isLong())
1478         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
1479       else
1480         lefttype=new TypeDescriptor(TypeDescriptor.INT);
1481       on.setLeftType(lefttype);
1482       on.setType(lefttype);
1483       break;
1484
1485     case Operation.BIT_OR:
1486     case Operation.BIT_XOR:
1487     case Operation.BIT_AND:
1488       // 5.6.2 Binary Numeric Promotion
1489       //TODO unboxing of reference objects
1490       if (ltd.isDouble()||rtd.isDouble())
1491         throw new Error();
1492       else if (ltd.isFloat()||rtd.isFloat())
1493         throw new Error();
1494       else if (ltd.isLong()||rtd.isLong())
1495         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
1496       // 090205 hack for boolean
1497       else if (ltd.isBoolean()||rtd.isBoolean())
1498         lefttype=new TypeDescriptor(TypeDescriptor.BOOLEAN);
1499       else
1500         lefttype=new TypeDescriptor(TypeDescriptor.INT);
1501       righttype=lefttype;
1502
1503       on.setLeftType(lefttype);
1504       on.setRightType(righttype);
1505       on.setType(lefttype);
1506       break;
1507
1508     case Operation.ISAVAILABLE:
1509       if (!(ltd.isPtr())) {
1510         throw new Error("Can't use isavailable on non-pointers/non-parameters.");
1511       }
1512       lefttype=ltd;
1513       on.setLeftType(lefttype);
1514       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
1515       break;
1516
1517     case Operation.EQUAL:
1518     case Operation.NOTEQUAL:
1519       // 5.6.2 Binary Numeric Promotion
1520       //TODO unboxing of reference objects
1521       if (ltd.isBoolean()||rtd.isBoolean()) {
1522         if (!(ltd.isBoolean()&&rtd.isBoolean()))
1523           throw new Error();
1524         righttype=lefttype=new TypeDescriptor(TypeDescriptor.BOOLEAN);
1525       } else if (ltd.isPtr()||rtd.isPtr()) {
1526         if (!(ltd.isPtr()&&rtd.isPtr())) {
1527           if(!rtd.isEnum()) {
1528             throw new Error();
1529           }
1530         }
1531         righttype=rtd;
1532         lefttype=ltd;
1533       } else if (ltd.isDouble()||rtd.isDouble())
1534         righttype=lefttype=new TypeDescriptor(TypeDescriptor.DOUBLE);
1535       else if (ltd.isFloat()||rtd.isFloat())
1536         righttype=lefttype=new TypeDescriptor(TypeDescriptor.FLOAT);
1537       else if (ltd.isLong()||rtd.isLong())
1538         righttype=lefttype=new TypeDescriptor(TypeDescriptor.LONG);
1539       else
1540         righttype=lefttype=new TypeDescriptor(TypeDescriptor.INT);
1541
1542       on.setLeftType(lefttype);
1543       on.setRightType(righttype);
1544       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
1545       break;
1546
1547
1548
1549     case Operation.LT:
1550     case Operation.GT:
1551     case Operation.LTE:
1552     case Operation.GTE:
1553       // 5.6.2 Binary Numeric Promotion
1554       //TODO unboxing of reference objects
1555       if (!ltd.isNumber()||!rtd.isNumber()) {
1556         if (!ltd.isNumber())
1557           throw new Error("Leftside is not number"+on.printNode(0)+"type="+ltd.toPrettyString());
1558         if (!rtd.isNumber())
1559           throw new Error("Rightside is not number"+on.printNode(0));
1560       }
1561
1562       if (ltd.isDouble()||rtd.isDouble())
1563         lefttype=new TypeDescriptor(TypeDescriptor.DOUBLE);
1564       else if (ltd.isFloat()||rtd.isFloat())
1565         lefttype=new TypeDescriptor(TypeDescriptor.FLOAT);
1566       else if (ltd.isLong()||rtd.isLong())
1567         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
1568       else
1569         lefttype=new TypeDescriptor(TypeDescriptor.INT);
1570       righttype=lefttype;
1571       on.setLeftType(lefttype);
1572       on.setRightType(righttype);
1573       on.setType(new TypeDescriptor(TypeDescriptor.BOOLEAN));
1574       break;
1575
1576     case Operation.ADD:
1577       if (ltd.isString()||rtd.isString()) {
1578         ClassDescriptor stringcl=getClass(null, TypeUtil.StringClass);
1579         TypeDescriptor stringtd=new TypeDescriptor(stringcl);
1580         NameDescriptor nd=new NameDescriptor("String");
1581         NameDescriptor valuend=new NameDescriptor(nd, "valueOf");
1582         if (!(ltd.isString()&&(on.getLeft() instanceof OpNode))) {
1583           MethodInvokeNode leftmin=new MethodInvokeNode(valuend);
1584           leftmin.setNumLine(on.getLeft().getNumLine());
1585           leftmin.addArgument(on.getLeft());
1586           on.left=leftmin;
1587           checkExpressionNode(md, nametable, on.getLeft(), null);
1588         }
1589
1590         if (!(rtd.isString()&&(on.getRight() instanceof OpNode))) {
1591           MethodInvokeNode rightmin=new MethodInvokeNode(valuend);
1592           rightmin.setNumLine(on.getRight().getNumLine());
1593           rightmin.addArgument(on.getRight());
1594           on.right=rightmin;
1595           checkExpressionNode(md, nametable, on.getRight(), null);
1596         }
1597
1598         on.setLeftType(stringtd);
1599         on.setRightType(stringtd);
1600         on.setType(stringtd);
1601         break;
1602       }
1603
1604     case Operation.SUB:
1605     case Operation.MULT:
1606     case Operation.DIV:
1607     case Operation.MOD:
1608       // 5.6.2 Binary Numeric Promotion
1609       //TODO unboxing of reference objects
1610       if (ltd.isArray()||rtd.isArray()||!ltd.isNumber()||!rtd.isNumber())
1611         throw new Error("Error in "+on.printNode(0));
1612
1613       if (ltd.isDouble()||rtd.isDouble())
1614         lefttype=new TypeDescriptor(TypeDescriptor.DOUBLE);
1615       else if (ltd.isFloat()||rtd.isFloat())
1616         lefttype=new TypeDescriptor(TypeDescriptor.FLOAT);
1617       else if (ltd.isLong()||rtd.isLong())
1618         lefttype=new TypeDescriptor(TypeDescriptor.LONG);
1619       else
1620         lefttype=new TypeDescriptor(TypeDescriptor.INT);
1621       righttype=lefttype;
1622       on.setLeftType(lefttype);
1623       on.setRightType(righttype);
1624       on.setType(lefttype);
1625       break;
1626
1627     case Operation.LEFTSHIFT:
1628     case Operation.RIGHTSHIFT:
1629     case Operation.URIGHTSHIFT:
1630       if (!rtd.isIntegerType())
1631         throw new Error();
1632       //5.6.1 Unary Numeric Promotion
1633       if (rtd.isByte()||rtd.isShort()||rtd.isInt())
1634         righttype=new TypeDescriptor(TypeDescriptor.INT);
1635       else
1636         righttype=rtd;
1637
1638       on.setRightType(righttype);
1639       if (!ltd.isIntegerType())
1640         throw new Error();
1641
1642     case Operation.UNARYPLUS:
1643     case Operation.UNARYMINUS:
1644       /*        case Operation.POSTINC:
1645           case Operation.POSTDEC:
1646           case Operation.PREINC:
1647           case Operation.PREDEC:*/
1648       if (!ltd.isNumber())
1649         throw new Error();
1650       //5.6.1 Unary Numeric Promotion
1651       if (ltd.isByte()||ltd.isShort()||ltd.isInt())
1652         lefttype=new TypeDescriptor(TypeDescriptor.INT);
1653       else
1654         lefttype=ltd;
1655       on.setLeftType(lefttype);
1656       on.setType(lefttype);
1657       break;
1658
1659     default:
1660       throw new Error(op.toString());
1661     }
1662
1663     if (td!=null)
1664       if (!typeutil.isSuperorType(td, on.getType())) {
1665         throw new Error("Type of rside not compatible with type of lside"+on.printNode(0));
1666       }
1667   }
1668
1669 }