A clean implementation for getTypeParameters' native method version.
[jpf-core.git] / src / main / gov / nasa / jpf / vm / MethodInfo.java
1 /*
2  * Copyright (C) 2014, United States Government, as represented by the
3  * Administrator of the National Aeronautics and Space Administration.
4  * All rights reserved.
5  *
6  * The Java Pathfinder core (jpf-core) platform is licensed under the
7  * Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  * 
10  *        http://www.apache.org/licenses/LICENSE-2.0. 
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and 
16  * limitations under the License.
17  */
18 package gov.nasa.jpf.vm;
19
20 import gov.nasa.jpf.Config;
21 import gov.nasa.jpf.JPF;
22 import gov.nasa.jpf.JPFException;
23 import gov.nasa.jpf.util.JPFLogger;
24 import gov.nasa.jpf.util.LocationSpec;
25 import gov.nasa.jpf.vm.bytecode.ReturnInstruction;
26 import java.lang.reflect.Modifier;
27 import java.util.ArrayList;
28 import java.util.Collections;
29 import java.util.List;
30
31
32 /**
33  * information associated with a method. Each method in JPF
34  * is represented by a MethodInfo object
35  */
36 public class MethodInfo extends InfoObject implements GenericSignatureHolder  {
37
38   static JPFLogger logger = JPF.getLogger("gov.nasa.jpf.vm.MethodInfo");
39   
40   static final int INIT_MTH_SIZE = 4096;
41   protected static final ArrayList<MethodInfo> mthTable = new ArrayList<MethodInfo>(INIT_MTH_SIZE);
42   
43   // special globalIds
44   static final int DIRECT_CALL = -1;
45
46   static final LocalVarInfo[] EMPTY = new LocalVarInfo[0];
47   
48   static final int[] EMPTY_INT = new int[0];
49   
50   /**
51    * Used to warn about local variable information.
52    */
53   protected static boolean warnedLocalInfo = false;
54   
55   //--- various JPF method attributes
56   static final int  EXEC_ATOMIC = 0x10000; // method executed atomically
57   static final int  EXEC_HIDDEN = 0x20000; // method hidden from path
58   static final int  FIREWALL    = 0x40000; // firewall any unhandled exceptionHandlers
59                                            // (turn into UnhandledException throws)
60   static final int  IS_CLINIT   = 0x80000;
61   static final int  IS_INIT     = 0x100000;
62   
63   static final int  IS_REFLECTION = 0x200000; // this is a reflection direct call
64   static final int  IS_DIRECT_CALL = 0x400000;
65   
66   /** a unique int assigned to this method */
67   protected int globalId = -1;
68
69   /**
70    * this is a lazy evaluated mangled name consisting of the name and
71    * arg type signature
72    */
73   protected String uniqueName;
74
75   /** Name of the method */
76   protected String name;
77
78   /** Signature of the method */
79   protected String signature;
80
81   /** Generic signature of the method */
82   protected String genericSignature;
83
84   /** Class the method belongs to */
85   protected ClassInfo ci;
86
87   /** Instructions associated with the method */
88   protected Instruction[] code;
89
90   /** JPFConfigException handlers */
91   protected ExceptionHandler[] exceptionHandlers;
92
93   /** classnames of checked exception thrown by the method */
94   protected String[] thrownExceptionClassNames;
95
96   /** Table used for line numbers 
97    * this assigns a line number to every instruction index, instead of 
98    * using an array of ranges. Assuming we have 2-3 insns per line on average,
99    * this should still require less memory than a reference array with associated
100    * range objects, and allows faster access of instruction line numbers, which
101    * we might need for location specs
102    */
103   protected int[] lineNumbers;
104   
105   /** Local variable information */
106   protected LocalVarInfo localVars[] = null;
107
108   /** Maximum number of local variables */
109   protected int maxLocals;
110
111   /** Maximum number of elements on the stack */
112   protected int maxStack;
113
114   /** null if we don't have any */
115   AnnotationInfo[][] parameterAnnotations;
116
117   //--- a batch of attributes
118   
119   /** the standard Java modifier attributes */
120   protected int modifiers;
121    
122   /** a batch of execution related JPF attributes */
123   protected int attributes;
124       
125
126   //--- all the stuff we need for native methods
127   // <2do> pcm - turn this into a derived class
128
129   /**  the number of stack slots for the arguments (incl. 'this'), lazy eval */
130   protected int argSize = -1;
131
132   /** number of arguments (excl. 'this'), lazy eval */
133   protected int nArgs = -1;
134
135   /** what return type do we have (again, lazy evaluated) */
136   protected byte returnType = -1;
137
138   /** number of stack slots for return value */
139   protected int retSize = -1;
140
141   /** used for native method parameter conversion (lazy evaluated) */
142   protected byte[] argTypes = null;
143   
144   static boolean init (Config config) {
145     mthTable.clear();    
146     return true;
147   }
148
149   public static MethodInfo getMethodInfo (int globalId){
150     if (globalId >=0 && globalId <mthTable.size()){
151       return mthTable.get(globalId);
152     } else {
153       return null;
154     }
155   }
156   
157   public static MethodInfo create (String name, String signature, int modifiers){
158     return new MethodInfo( name, signature, modifiers);
159   }
160   
161   public static MethodInfo create (ClassInfo ci, String name, String signature, int modifiers){
162     return new MethodInfo( ci, name, signature, modifiers);
163   }
164   
165   static MethodInfo create (ClassInfo ci, String name, String signature, int modifiers, int maxLocals, int maxStack){
166     return new MethodInfo( ci, name, signature, modifiers, maxLocals, maxStack);
167   }
168
169   /**
170    * for direct call construction
171    * Note: this is only a partial initialization, the code still has to be created/installed by the caller
172    */
173   public MethodInfo (MethodInfo callee, int nLocals, int nOperands) {
174     globalId = DIRECT_CALL;
175     // we don't want direct call methods in the mthTable (would be a memory leak) so don't register
176     
177     ci = callee.ci;
178     name = "[" + callee.name + ']'; // it doesn't allocate anything, so we don't have to be unique
179     signature = "()V";
180     genericSignature = "";
181     maxLocals = nLocals;
182     maxStack = nOperands;  // <2do> cache for optimization
183     localVars = EMPTY;
184     lineNumbers = null;
185     exceptionHandlers = null;
186     thrownExceptionClassNames = null;
187     uniqueName = name;
188     
189     // we need to preserve the ClassInfo so that class resolution for static method calls works
190     ci = callee.ci;
191     
192     attributes |= IS_DIRECT_CALL;
193     modifiers = Modifier.STATIC;   // always treated as static
194     
195     // code still has to be installed by caller
196   }
197   
198   /**
199    * This is used to create synthetic methods of function object types
200    */
201   public MethodInfo(String name, String signature, int modifiers, int nLocals, int nOperands) {
202     this( name, signature, modifiers);
203     maxLocals = nLocals;
204     maxStack = nOperands;
205     localVars = EMPTY;
206   }
207   
208   /**
209    * for NativeMethodInfo creation 
210    */
211   public MethodInfo (MethodInfo mi) {
212     globalId = mi.globalId;
213     uniqueName = mi.uniqueName;
214     name = mi.name;
215     signature = mi.signature;
216     genericSignature = mi.genericSignature;
217     ci = mi.ci;
218     modifiers = mi.modifiers;
219     attributes = mi.attributes;
220     thrownExceptionClassNames = mi.thrownExceptionClassNames;
221     parameterAnnotations = mi.parameterAnnotations;
222
223     annotations = mi.annotations;
224     
225     localVars = null; // there are no StackFrame localVarInfos, this is native
226     // code still has to be installed by caller
227   }
228   
229   // <2do> this is going away
230   public MethodInfo (ClassInfo ci, String name, String signature, int modifiers, int maxLocals, int maxStack){
231     this.ci = ci;
232     this.name = name;
233     this.signature = signature;
234     this.uniqueName = getUniqueName(name, signature);
235     this.genericSignature = "";
236     this.maxLocals = maxLocals;
237     this.maxStack = maxStack;
238     this.modifiers = modifiers;
239
240     this.lineNumbers = null;
241     this.exceptionHandlers = null;
242     this.thrownExceptionClassNames = null;
243
244     // set attributes we can deduce from the name and the ClassInfo
245     if (ci != null){
246       if (name.equals("<init>")) {
247         attributes |= IS_INIT;
248       } else if (name.equals("<clinit>")) {
249         this.modifiers |= Modifier.SYNCHRONIZED;
250         attributes |= IS_CLINIT | FIREWALL;
251       }
252       if (ci.isInterface()) { // all interface methods are public
253         this.modifiers |= Modifier.PUBLIC;
254       }
255     }
256
257     this.globalId = mthTable.size();
258     mthTable.add(this);
259   }
260
261   
262   public MethodInfo (String name, String signature, int modifiers){
263     this.name = name;
264     this.signature = signature;
265     this.modifiers = modifiers;
266     this.uniqueName = getUniqueName(name, signature);
267     this.genericSignature = "";
268
269     if (name.equals("<init>")) {
270       attributes |= IS_INIT;
271     } else if (name.equals("<clinit>")) {
272       // for some reason clinits don't have the synchronized modifier, but they are synchronized
273       // we keep it consistent so that we don't have to implement special lock acquisition/release for clinits
274       this.modifiers |= Modifier.SYNCHRONIZED;
275       attributes |= IS_CLINIT | FIREWALL;
276     }
277     
278     this.globalId = mthTable.size();
279     mthTable.add(this);    
280   }
281
282   public MethodInfo (ClassInfo ci, String name, String signature, int modifiers){
283     this(name, signature, modifiers);
284     
285     this.ci = ci;
286   }
287   
288   //--- setters used during construction
289   
290   public void linkToClass (ClassInfo ci){
291     this.ci = ci;
292     
293     if (ci.isInterface()) { // all interface methods are public
294       this.modifiers |= Modifier.PUBLIC;
295     }
296   }
297   
298   public void setMaxLocals(int maxLocals){
299     this.maxLocals = maxLocals;
300   }
301
302   public void setMaxStack(int maxStack){
303     this.maxStack = maxStack;
304   }
305   
306   public void setCode (Instruction[] code){
307     for (int i=0; i<code.length; i++){
308       code[i].setMethodInfo(this);
309     }
310     this.code = code;
311   }
312   
313   
314   public boolean hasParameterAnnotations() {
315     return (parameterAnnotations != null);
316   }
317
318   // since some listeners might call this on every method invocation, we should do a little optimization
319   static AnnotationInfo[][] NO_PARAMETER_ANNOTATIONS_0 = new AnnotationInfo[0][];
320   static AnnotationInfo[][] NO_PARAMETER_ANNOTATIONS_1 = { new AnnotationInfo[0] };
321   static AnnotationInfo[][] NO_PARAMETER_ANNOTATIONS_2 = { new AnnotationInfo[0], new AnnotationInfo[0] };
322   static AnnotationInfo[][] NO_PARAMETER_ANNOTATIONS_3 = { new AnnotationInfo[0], new AnnotationInfo[0], new AnnotationInfo[0] };  
323   
324   public AnnotationInfo[][] getParameterAnnotations() {
325     if (parameterAnnotations == null){ // keep this similar to getAnnotations()
326       int n = getNumberOfArguments();
327       switch (n){
328       case 0: return NO_PARAMETER_ANNOTATIONS_0;
329       case 1: return NO_PARAMETER_ANNOTATIONS_1;
330       case 2: return NO_PARAMETER_ANNOTATIONS_2;
331       case 3: return NO_PARAMETER_ANNOTATIONS_3;
332       default:
333         AnnotationInfo[][] pai = new AnnotationInfo[n][];
334         for (int i=0; i<n; i++){
335           pai[i] = new AnnotationInfo[0];
336         }
337         return pai;
338       }
339       
340     } else {
341       return parameterAnnotations;
342     }
343   }
344
345   /**
346    * return annotations for parameterIndex
347    */
348   public AnnotationInfo[] getParameterAnnotations(int parameterIndex){
349     if (parameterAnnotations == null){
350       return null;
351     } else {
352       if (parameterIndex >= getNumberOfArguments()){
353         return null;
354       } else {
355         return parameterAnnotations[parameterIndex];
356       }
357     }
358   }
359
360
361   
362   public static int getNumberOfLoadedMethods () {
363     return mthTable.size();
364   }
365
366   void setAtomic (boolean isAtomic) {
367     if (isAtomic) {
368       attributes |= EXEC_ATOMIC;
369     } else {
370       attributes &= ~EXEC_ATOMIC;
371     }
372   }
373   public boolean isAtomic () {
374     return ((attributes & EXEC_ATOMIC) != 0);
375   }
376   
377   void setHidden (boolean isHidden) {
378     if (isHidden) {
379       attributes |= EXEC_HIDDEN;
380     } else {
381       attributes &= ~EXEC_HIDDEN;
382     }
383   }
384   public boolean isHidden () {
385     return ((attributes & EXEC_HIDDEN) != 0);    
386   }
387   
388   /**
389    * turn unhandled exceptionHandlers at the JPF execution level
390    * into UnhandledException throws at the host VM level
391    * this is useful to implement firewalls for direct calls
392    * which should not let exceptionHandlers permeate into bytecode/
393    * application code
394    */
395   public void setFirewall (boolean isFirewalled) {
396     if (isFirewalled) {
397       attributes |= FIREWALL;
398     } else {
399       attributes &= ~FIREWALL;
400     }
401   }
402   public boolean isFirewall () {
403     return ((attributes & FIREWALL) != 0);    
404   }
405   
406   
407   
408   @Override
409   public Object clone() {
410     try {
411       return super.clone();
412     } catch (CloneNotSupportedException cnx) {
413       return null;
414     }
415   }
416   
417   public int getGlobalId() {
418     return globalId;
419   }
420
421   public DirectCallStackFrame createRunStartStackFrame (ThreadInfo ti){
422     return ci.createRunStartStackFrame( ti, this);
423   }
424
425   public DirectCallStackFrame createDirectCallStackFrame (ThreadInfo ti, int nLocals){
426     return ci.createDirectCallStackFrame(ti, this, nLocals);
427   }
428
429   public boolean isSyncRelevant () {
430     return (name.charAt(0) != '<');
431   }
432   
433   public boolean isInitOrClinit (){
434     return ((attributes & (IS_CLINIT | IS_INIT)) != 0);
435   }
436   
437   public boolean isClinit () {
438     return ((attributes & IS_CLINIT) != 0);
439   }
440
441   public boolean isClinit (ClassInfo ci) {
442     return (((attributes & IS_CLINIT) != 0) && (this.ci == ci));
443   }
444
445   public boolean isInit() {
446     return ((attributes & IS_INIT) != 0);
447   }
448   
449   public boolean isDirectCallStub(){
450     return ((attributes & IS_DIRECT_CALL) != 0);    
451   }
452   
453   /**
454    * yet another name - this time with a non-mangled, but abbreviated signature
455    * and without return type (e.g. like "main(String[])"
456    */
457   public String getLongName () {
458     StringBuilder sb = new StringBuilder();
459     sb.append(name);
460     
461     sb.append('(');
462     String[] argTypeNames = getArgumentTypeNames();
463     for (int i=0; i<argTypeNames.length; i++) {
464       String a = argTypeNames[i];
465       int idx = a.lastIndexOf('.');
466       if (idx > 0) {
467         a = a.substring(idx+1);
468       }
469       if (i>0) {
470         sb.append(',');
471       }
472       sb.append(a);
473     }
474     sb.append(')');
475     
476     return sb.toString();
477   }
478   
479   /**
480    * return the minimal name that has to be unique for overloading
481    * used as a lookup key
482    * NOTE: with the silent introduction of covariant return types
483    * in Java 5.0, we have to use the full signature to be unique
484    */
485   public static String getUniqueName (String mname, String signature) {
486     return (mname + signature);
487   }
488
489   public String getStackTraceSource() {
490     return getSourceFileName();
491   }
492
493   public byte[] getArgumentTypes () {
494     if (argTypes == null) {
495       argTypes = Types.getArgumentTypes(signature);
496       nArgs = argTypes.length;
497     }
498
499     return argTypes;
500   }
501
502   public String[] getArgumentTypeNames () {
503     return Types.getArgumentTypeNames(signature);
504   }
505
506   // TODO: Fix for Groovy's model-checking
507   public String[] getArgumentGenericTypeNames () {
508     // To accommodate methods that do not have generic types
509     if (genericSignature == null)
510       return getArgumentTypeNames();
511     return Types.getArgumentTypeNames(genericSignature);
512   }
513
514   public int getArgumentsSize () {
515     if (argSize < 0) {
516       argSize = Types.getArgumentsSize(signature);
517
518       if (!isStatic()) {
519         argSize++;
520       }
521     }
522
523     return argSize;
524   }
525   
526   /**
527    * return only the LocalVarInfos for arguments, in order of definition
528    * or null if there are no localVarInfos.
529    * throw a JPFException if there are more immediately in scope vars than args
530    * 
531    * NOTE - it is perfectly legal for a method to have arguments but no LocalVarInfos,
532    * which are code attributes, clients have to check for a non-null return value
533    * even if the method has arguments.
534    * Note also that abstract / interface methods don't have code and hence no
535    * LocalVarInfos
536    */
537   public LocalVarInfo[] getArgumentLocalVars(){
538     if (localVars == null){ // shortcut in case we don't have args or localVars;
539       return null;
540     }
541     
542     int nArgs = getNumberOfStackArguments(); // we want 'this'
543     if (nArgs == 0){
544       return new LocalVarInfo[0]; // rare enough so that we don't use a static
545     }
546
547     LocalVarInfo[] argLvis = new LocalVarInfo[nArgs];
548     int n = 0; // how many args we've got so far
549     
550     for (LocalVarInfo lvi : localVars){
551       // arguments are the only ones that are immediately in scope
552       if (lvi.getStartPC() == 0){
553         if (n == nArgs){ // ARGH - more in-scope vars than args
554           throw new JPFException("inconsistent localVar table for method " + getFullName());
555         }
556         
557         // order with respect to slot index - since this might get called
558         // frequently, we don't use java.util.Arrays.sort() but sort in
559         // on-the-fly. Note that we can have several localVar entries for the
560         // same name, but only one can be immediately in scope
561         int slotIdx = lvi.getSlotIndex();
562
563         int i;
564         for (i = 0; i < n; i++) {
565           if (slotIdx < argLvis[i].getSlotIndex()) {
566             for (int j=n; j>i; j--){
567               argLvis[j] = argLvis[j-1];
568             }
569             argLvis[i] = lvi;
570             n++;
571             break;
572           }
573         }
574         if (i == n) { // append
575           argLvis[n++] = lvi;
576         }
577       }
578     }
579     
580     return argLvis;
581   }
582   
583   public String getReturnType () {
584     return Types.getReturnTypeSignature(signature);
585   }
586
587   public String getReturnTypeName () {
588     return Types.getReturnTypeName(signature);
589   }
590
591   // TODO: Fix for Groovy's model-checking
592   public String getGenericReturnTypeName () {
593     return Types.getGenericReturnTypeName(signature);
594   }
595   
596   public String getSourceFileName () {
597     if (ci != null) {
598       return ci.getSourceFileName();
599     } else {
600       return "[VM]";
601     }
602   }
603
604   public String getClassName () {
605     if (ci != null) {
606       return ci.getName();
607     } else {
608       return "[VM]";
609     }
610   }
611   
612   /**
613    * Returns the class the method belongs to.
614    */
615   public ClassInfo getClassInfo () {
616     return ci;
617   }
618
619   /**
620    * @deprecated - use getFullName
621    */
622   @Deprecated
623 public String getCompleteName () {
624     return getFullName();
625   }
626
627   /**
628    * return classname.name (but w/o signature)
629    */
630   public String getBaseName() {
631     return getClassName() + '.' + name;
632   }
633     
634   public boolean isCtor () {
635     return (name.equals("<init>"));
636   }
637   
638   public boolean isInternalMethod () {
639     // <2do> pcm - should turn this into an attribute for efficiency reasons
640     return (name.equals("<clinit>") || uniqueName.equals("finalize()V"));
641   }
642   
643   public boolean isThreadEntry (ThreadInfo ti) {
644     return (uniqueName.equals("run()V") && (ti.countStackFrames() == 1));
645   }
646   
647   /**
648    * Returns the full classname (if any) + name + signature.
649    */
650   public String getFullName () {
651     if (ci != null) {
652       return ci.getName() + '.' + getUniqueName();
653     } else {
654       return getUniqueName();
655     }
656   }
657
658   /**
659    * returns stack trace name: classname (if any) + name
660    */
661   public String getStackTraceName(){
662     if (ci != null) {
663       return ci.getName() + '.' + name;
664     } else {
665       return name;
666     }
667   }
668   
669   /**
670    * return number of instructions
671    */
672   public int getNumberOfInstructions() {
673     if (code == null){
674       return 0;
675     }
676     
677     return code.length;
678   }
679   
680   /**
681    * Returns a specific instruction.
682    */
683   public Instruction getInstruction (int i) {
684     if (code == null) {
685       return null;
686     }
687
688     if ((i < 0) || (i >= code.length)) {
689       return null;
690     }
691
692     return code[i];
693   }
694
695   /**
696    * Returns the instruction at a certain position.
697    */
698   public Instruction getInstructionAt (int position) {
699     if (code == null) {
700       return null;
701     }
702
703     for (int i = 0, l = code.length; i < l; i++) {
704       if ((code[i] != null) && (code[i].getPosition() == position)) {
705         return code[i];
706       }
707     }
708
709     throw new JPFException("instruction not found");
710   }
711
712   /**
713    * Returns the instructions of the method.
714    */
715   public Instruction[] getInstructions () {
716     return code;
717   }
718   
719   public boolean includesLine (int line){
720     int len = code.length;
721     return (code[0].getLineNumber() <= line) && (code[len].getLineNumber() >= line);
722   }
723
724   public Instruction[] getInstructionsForLine (int line){
725     return getInstructionsForLineInterval(line,line);
726   }
727
728   public Instruction[] getInstructionsForLineInterval (int l1, int l2){
729     Instruction[] c = code;
730        
731     // instruction line numbers don't have to be monotonic (they can decrease for loops)
732     // hence we cannot easily check for overlapping ranges
733     
734     if (c != null){
735        ArrayList<Instruction> matchingInsns = null;
736        
737        for (int i = 0; i < c.length; i++) {
738         Instruction insn = c[i];
739         int line = insn.getLineNumber();
740         if (line == l1 || line == l2 || (line > l1 && line < l2)) {
741           if (matchingInsns == null) {
742             matchingInsns = new ArrayList<Instruction>();
743           }
744           matchingInsns.add(insn);
745         }
746       }
747       
748       if (matchingInsns == null) {
749         return null;
750       } else {
751         return matchingInsns.toArray(new Instruction[matchingInsns.size()]);
752       }
753             
754     } else {
755       return null;
756     }
757   }
758
759   public Instruction[] getMatchingInstructions (LocationSpec lspec){
760     return getInstructionsForLineInterval(lspec.getFromLine(), lspec.getToLine());
761   }
762
763
764   /**
765    * Returns the line number for a given position.
766    */
767   public int getLineNumber (Instruction pc) {
768     if (lineNumbers == null) {
769       if (pc == null)
770         return -1;
771       else
772         return pc.getPosition();
773     }
774
775     if (pc != null) {
776       int idx = pc.getInstructionIndex();
777       if (idx < 0) idx = 0;
778       return lineNumbers[idx];
779     } else {
780       return -1;
781     }
782   }
783
784   /**
785    * Returns a table to translate positions into line numbers.
786    */
787   public int[] getLineNumbers () {
788     return lineNumbers;
789   }
790
791   public boolean containsLineNumber (int n){
792     if (lineNumbers != null){
793       return (lineNumbers[0] <= n) && (lineNumbers[lineNumbers.length-1] <= n);
794     }
795     
796     return false;
797   }
798   
799   public boolean intersectsLineNumbers( int first, int last){
800     if (lineNumbers != null){
801       if ((last < lineNumbers[0]) || (first > lineNumbers[lineNumbers.length-1])){
802         return false;
803       }
804       return true;
805     }
806     
807     return false;
808   }
809   
810   public ExceptionHandler getHandlerFor (ClassInfo ciException, Instruction insn){
811     if (exceptionHandlers != null){
812       int position = insn.getPosition();
813       for (int i=0; i<exceptionHandlers.length; i++){
814         ExceptionHandler handler = exceptionHandlers[i];
815         if ((position >= handler.getBegin()) && (position < handler.getEnd())) {
816           // checks if this type of exception is caught here (null means 'any')
817           String handledType = handler.getName();
818           if ((handledType == null)   // a catch-all handler
819                   || ciException.isInstanceOf(handledType)) {
820             return handler;
821           }
822         }          
823       }      
824     }
825     
826     return null;
827   }
828   
829   public boolean isMJI () {
830     return false;
831   }
832
833   public int getMaxLocals () {
834     return maxLocals;
835   }
836
837   public int getMaxStack () {
838     return maxStack;
839   }
840
841   public ExceptionHandler[] getExceptions () {
842     return exceptionHandlers;
843   }
844
845   public String[] getThrownExceptionClassNames () {
846     return thrownExceptionClassNames;
847   }
848
849
850   public LocalVarInfo getLocalVar(String name, int pc){
851     LocalVarInfo[] vars = localVars;
852     if (vars != null){
853       for (int i = 0; i < vars.length; i++) {
854         LocalVarInfo lv = vars[i];
855         if (lv.matches(name, pc)) {
856           return lv;
857         }
858       }
859     }
860
861     return null;
862
863   }
864
865   public LocalVarInfo getLocalVar (int slotIdx, int pc){
866     LocalVarInfo[] vars = localVars;
867
868     if (vars != null){
869       for (int i = 0; i < vars.length; i++) {
870         LocalVarInfo lv = vars[i];
871         if (lv.matches(slotIdx, pc)) {
872           return lv;
873         }
874       }
875     }
876
877     return null;
878   }
879
880   public LocalVarInfo[] getLocalVars() {
881     return localVars; 
882   }
883
884
885   /**
886    * note that this might contain duplicates for variables with multiple
887    * scope entries
888    */
889   public String[] getLocalVariableNames() {
890     String[] names = new String[localVars.length];
891
892     for (int i=0; i<localVars.length; i++){
893       names[i] = localVars[i].getName();
894     }
895
896     return names;
897   }
898
899
900   public MethodInfo getOverriddenMethodInfo(){
901     MethodInfo smi = null;
902     
903     if (ci != null) {
904       ClassInfo sci = ci.getSuperClass();
905       if (sci != null){
906         smi = sci.getMethod(getUniqueName(), true);
907       }
908     }
909     
910     return smi;
911   }
912   
913   /**
914    * Returns the name of the method.
915    */
916   public String getName () {
917     return name;
918   }
919
920   public String getJNIName () {
921     return Types.getJNIMangledMethodName(null, name, signature);
922   }
923   
924   public int getModifiers () {
925     return modifiers;
926   }
927   
928   /**
929    * Returns true if the method is native
930    */
931   public boolean isNative () {
932     return ((modifiers & Modifier.NATIVE) != 0);
933   }
934
935   public boolean isAbstract () {
936     return ((modifiers & Modifier.ABSTRACT) != 0);
937   }
938   
939   // overridden by NativeMethodInfo
940   public boolean isUnresolvedNativeMethod(){
941     return ((modifiers & Modifier.NATIVE) != 0);
942   }
943
944   // overridden by NativeMethodInfo
945   public boolean isJPFExecutable (){
946     return !hasAttr(NoJPFExec.class);
947   }
948
949   public int getNumberOfArguments () {
950     if (nArgs < 0) {
951       nArgs = Types.getNumberOfArguments(signature);
952     }
953
954     return nArgs;
955   }
956
957   /**
958    * Returns the size of the arguments.
959    * This returns the number of parameters passed on the stack, incl. 'this'
960    */
961   public int getNumberOfStackArguments () {
962     int n = getNumberOfArguments();
963
964     return isStatic() ? n : n + 1;
965   }
966
967   public int getNumberOfCallerStackSlots () {
968     return Types.getNumberOfStackSlots(signature, isStatic()); // includes return type
969   }
970
971   public Instruction getFirstInsn(){
972     if (code != null){
973       return code[0];
974     }
975     return null;    
976   }
977   
978   public Instruction getLastInsn() {
979     if (code != null){
980       return code[code.length-1];
981     }
982     return null;
983   }
984
985   /**
986    * do we return Object references?
987    */
988   public boolean isReferenceReturnType () {
989     int r = getReturnTypeCode();
990
991     return ((r == Types.T_REFERENCE) || (r == Types.T_ARRAY));
992   }
993
994   public byte getReturnTypeCode () {
995     if (returnType < 0) {
996       returnType = Types.getReturnBuiltinType(signature);
997     }
998
999     return returnType;
1000   }
1001
1002   /**
1003    * what is the slot size of the return value
1004    */
1005   public int getReturnSize() {
1006     if (retSize == -1){
1007       switch (getReturnTypeCode()) {
1008         case Types.T_VOID:
1009           retSize = 0;
1010           break;
1011
1012         case Types.T_LONG:
1013         case Types.T_DOUBLE:
1014           retSize = 2;
1015           break;
1016
1017         default:
1018           retSize = 1;
1019           break;
1020       }
1021     }
1022
1023     return retSize;
1024   }
1025
1026   public Class<? extends ChoiceGenerator<?>> getReturnChoiceGeneratorType (){
1027     switch (getReturnTypeCode()){
1028       case Types.T_BOOLEAN:
1029         return BooleanChoiceGenerator.class;
1030
1031       case Types.T_BYTE:
1032       case Types.T_CHAR:
1033       case Types.T_SHORT:
1034       case Types.T_INT:
1035         return IntChoiceGenerator.class;
1036
1037       case Types.T_LONG:
1038         return LongChoiceGenerator.class;
1039
1040       case Types.T_FLOAT:
1041         return FloatChoiceGenerator.class;
1042
1043       case Types.T_DOUBLE:
1044         return DoubleChoiceGenerator.class;
1045
1046       case Types.T_ARRAY:
1047       case Types.T_REFERENCE:
1048       case Types.T_VOID:
1049         return ReferenceChoiceGenerator.class;
1050     }
1051
1052     return null;
1053   }
1054
1055   /**
1056    * Returns the signature of the method.
1057    */
1058   public String getSignature () {
1059     return signature;
1060   }
1061
1062   @Override
1063   public String getGenericSignature() {
1064     return genericSignature;
1065   }
1066
1067   @Override
1068   public void setGenericSignature(String sig){
1069     genericSignature = sig;
1070   }
1071
1072   /**
1073    * Returns true if the method is static.
1074    */
1075   public boolean isStatic () {
1076     return ((modifiers & Modifier.STATIC) != 0);
1077   }
1078
1079   /**
1080    * is this a public method
1081    */
1082   public boolean isPublic() {
1083     return ((modifiers & Modifier.PUBLIC) != 0);
1084   }
1085   
1086   public boolean isPrivate() {
1087     return ((modifiers & Modifier.PRIVATE) != 0);
1088   }
1089   
1090   public boolean isProtected() {
1091     return ((modifiers & Modifier.PROTECTED) != 0);
1092   }
1093
1094   /**
1095    * Returns true if the method is synchronized.
1096    */
1097   public boolean isSynchronized () {
1098     return ((modifiers & Modifier.SYNCHRONIZED) != 0);
1099   }
1100
1101   // <2do> these modifiers are still java.lang.reflect internal and not
1102   // supported by public Modifier methods, but since we want to keep this 
1103   // similar to the Method reflection and we get the modifiers from the
1104   // classfile we implement this with explicit values
1105   
1106   public boolean isSynthetic(){
1107     return ((modifiers & 0x00001000) != 0);    
1108   } 
1109   public boolean isVarargs(){
1110     return ((modifiers & 0x00000080) != 0);        
1111   }
1112   
1113   /*
1114    * is this from a classfile or was it created by JPF (and hence should not
1115    * be visible in stacktraces etc)
1116    */
1117   public boolean isJPFInternal(){
1118     // note this has a different meaning than Method.isSynthetic(), which
1119     // is defined in VM spec 4.7.8. What we mean here is that this MethodInfo
1120     // is not associated with any class (such as direct call MethodInfos), but
1121     // there might be more in the future
1122     return (ci == null);
1123   }
1124   
1125   public String getUniqueName () {
1126     return uniqueName;
1127   }
1128   
1129   public boolean hasCode(){
1130     return (code != null);
1131   }
1132   
1133   public boolean hasEmptyBody (){
1134     // only instruction is a return
1135     return (code.length == 1 && (code[0] instanceof ReturnInstruction));
1136   }
1137
1138
1139   //--- parameter annotations
1140   //<2do> these are going away
1141   protected void startParameterAnnotations(int annotationCount){
1142     parameterAnnotations = new AnnotationInfo[annotationCount][];
1143   }
1144   protected void setParameterAnnotations(int index, AnnotationInfo[] ai){
1145     parameterAnnotations[index] = ai;
1146   }
1147   protected void finishParameterAnnotations(){
1148     // nothing
1149   }
1150
1151   public void setParameterAnnotations (AnnotationInfo[][] parameterAnnotations){
1152     this.parameterAnnotations = parameterAnnotations;
1153   }
1154   
1155   //--- thrown exceptions
1156   //<2do> these are going away
1157   protected void startTrownExceptions (int exceptionCount){
1158     thrownExceptionClassNames = new String[exceptionCount];
1159   }
1160   protected void setException (int index, String exceptionType){
1161     thrownExceptionClassNames[index] = Types.getClassNameFromTypeName(exceptionType);
1162   }
1163   protected void finishThrownExceptions(){
1164     // nothing
1165   }
1166
1167   public void setThrownExceptions (String[] exceptions){
1168     thrownExceptionClassNames = exceptions;
1169   }
1170   
1171
1172   //--- exception handler table initialization
1173   //<2do> these are going away
1174   protected void startExceptionHandlerTable (int handlerCount){
1175     exceptionHandlers = new ExceptionHandler[handlerCount];
1176   }
1177   protected void setExceptionHandler (int index, int startPc, int endPc, int handlerPc, String catchType){
1178     exceptionHandlers[index] = new ExceptionHandler(catchType, startPc, endPc, handlerPc);
1179   }
1180   protected void finishExceptionHandlerTable(){
1181     // nothing
1182   }
1183
1184   public void setExceptionHandlers (ExceptionHandler[] handlers){
1185     exceptionHandlers = handlers;
1186   }
1187   
1188   //--- local var table initialization
1189   // <2do> these are going away
1190   protected void startLocalVarTable (int localVarCount){
1191     localVars = new LocalVarInfo[localVarCount];
1192   }
1193   protected void setLocalVar(int index, String varName, String descriptor, int scopeStartPc, int scopeEndPc, int slotIndex){
1194     localVars[index] = new LocalVarInfo(varName, descriptor, "", scopeStartPc, scopeEndPc, slotIndex);
1195   }
1196   protected void finishLocalVarTable(){
1197     // nothing to do
1198   }
1199
1200   public void setLocalVarTable (LocalVarInfo[] locals){
1201     localVars = locals;
1202   }
1203   
1204   public void setLocalVarAnnotations (){
1205     if (localVars != null){
1206       for (VariableAnnotationInfo ai : getTargetTypeAnnotations(VariableAnnotationInfo.class)){
1207         for (int i = 0; i < ai.getNumberOfScopeEntries(); i++) {
1208           for (LocalVarInfo lv : localVars) {
1209             if (lv.getStartPC() == ai.getStartPC(i) && lv.getSlotIndex() == ai.getSlotIndex(i)) {
1210               lv.addTypeAnnotation(ai);
1211             }
1212           }
1213         }
1214       }
1215     }
1216   }
1217   
1218   public boolean hasTypeAnnotatedLocalVars (){
1219     if (localVars != null){
1220       for (LocalVarInfo lv : localVars){
1221         if (lv.hasTypeAnnotations()){
1222           return true;
1223         }
1224       }
1225     }
1226     
1227     return false;
1228   }
1229   
1230   public List<LocalVarInfo> getTypeAnnotatedLocalVars (){
1231     List<LocalVarInfo> list = null;
1232     
1233     if (localVars != null){
1234       for (LocalVarInfo lv : localVars){
1235         if (lv.hasTypeAnnotations()){
1236           if (list == null){
1237             list = new ArrayList<LocalVarInfo>();
1238           }
1239           list.add(lv);
1240         }
1241       }
1242     }
1243     
1244     if (list == null){
1245       list = Collections.emptyList();
1246     }
1247     
1248     return list;
1249   }
1250   
1251   public List<LocalVarInfo> getTypeAnnotatedLocalVars (String annotationClsName){
1252     List<LocalVarInfo> list = null;
1253     
1254     if (localVars != null){
1255       for (LocalVarInfo lv : localVars){
1256         AbstractTypeAnnotationInfo tai = lv.getTypeAnnotation(annotationClsName);
1257         if (tai != null){
1258           if (list == null){
1259             list = new ArrayList<LocalVarInfo>();
1260           }
1261           list.add(lv);
1262         }
1263       }
1264     }
1265     
1266     if (list == null){
1267       list = Collections.emptyList();
1268     }
1269     
1270     return list;
1271   }
1272   
1273   
1274   //--- line number table initialization
1275   // <2do> these are going away
1276   protected void startLineNumberTable(int lineNumberCount){
1277     int len = code.length;
1278     int[] ln = new int[len];
1279
1280     lineNumbers = ln;
1281   }
1282   protected void setLineNumber(int index, int lineNumber, int startPc){
1283     int len = code.length;
1284     int[] ln = lineNumbers;
1285
1286     for (int i=0; i<len; i++){
1287       Instruction insn = code[i];
1288       int pc = insn.getPosition();
1289
1290       if (pc == startPc){ // this is the first insn with this line number
1291         ln[i] = lineNumber;
1292         return;
1293       }
1294     }
1295   }
1296   protected void finishLineNumberTable (){
1297     int len = code.length;
1298     int[] ln = lineNumbers;
1299     int lastLine = ln[0];
1300
1301     for (int i=1; i<len; i++){
1302       if (ln[i] == 0){
1303         ln[i] = lastLine;
1304       } else {
1305         lastLine = ln[i];
1306       }
1307     }
1308   }
1309
1310   /**
1311    * note - this depends on that we already have a code array
1312    * and that the lines/startPcs are sorted (monotonic increasing)
1313    */
1314   public void setLineNumbers (int[] lines, int[] startPcs){
1315     int j=0;
1316     int lastLine = -1;
1317     
1318     int len = code.length;
1319     int[] ln = new int[len];
1320
1321     for (int i=0; i<len; i++){
1322       Instruction insn = code[i];
1323       int pc = insn.getPosition();
1324       
1325       if ((j < startPcs.length) && pc == startPcs[j]){
1326         lastLine = lines[j];
1327         j++;
1328       }
1329       
1330       ln[i] = lastLine;
1331     }
1332     
1333     lineNumbers = ln;
1334   }
1335
1336   /**
1337    * this version takes an already expanded line number array which has to be of
1338    * the same size as the code array
1339    */
1340   public void setLineNumbers (int[] lines){
1341     if (lines.length != code.length){
1342       throw new JPFException("inconsitent code/line number size");
1343     }
1344     lineNumbers = lines;
1345   }
1346   
1347   @Override
1348   public String toString() {
1349     return "MethodInfo[" + getFullName() + ']';
1350   }
1351   
1352   // for debugging purposes
1353   public void dump(){
1354     System.out.println("--- " + this);
1355     for (int i = 0; i < code.length; i++) {
1356       System.out.printf("%2d [%d]: %s\n", i, code[i].getPosition(), code[i].toString());
1357     }
1358   }
1359
1360   /**
1361    * Creates a method for a given class, by cloning this MethodInfo
1362    * and all the instructions belong to the method
1363    */
1364   public MethodInfo getInstanceFor(ClassInfo ci) {
1365     MethodInfo clone;
1366
1367     try {
1368       clone = (MethodInfo)super.clone();
1369       clone.ci = ci;
1370
1371       clone.globalId = mthTable.size();
1372       mthTable.add(this);
1373
1374       if(code == null) {
1375         clone.code = null;
1376       } else {
1377         clone.code = new Instruction[code.length];
1378
1379         for(int i=0; i<code.length; i++) {
1380           clone.code[i] = code[i].typeSafeClone(clone);
1381         }
1382       }
1383
1384     } catch (CloneNotSupportedException cnsx){
1385       cnsx.printStackTrace();
1386       return null;
1387     }
1388
1389     return clone;
1390   }
1391 }