Initial import
[jpf-core.git] / src / main / gov / nasa / jpf / jvm / bytecode / InstanceInvocation.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
19 package gov.nasa.jpf.jvm.bytecode;
20
21 import gov.nasa.jpf.vm.ElementInfo;
22 import gov.nasa.jpf.vm.MJIEnv;
23 import gov.nasa.jpf.vm.StackFrame;
24 import gov.nasa.jpf.vm.ThreadInfo;
25 import gov.nasa.jpf.vm.Types;
26 import gov.nasa.jpf.vm.bytecode.InstanceInvokeInstruction;
27
28 /**
29  * base class for INVOKEVIRTUAL, INVOKESPECIAL and INVOLEINTERFACE
30  */
31 public abstract class InstanceInvocation extends JVMInvokeInstruction implements InstanceInvokeInstruction {
32
33   protected InstanceInvocation() {}
34
35   protected InstanceInvocation (String clsDescriptor, String methodName, String signature){
36     super(clsDescriptor, methodName, signature);
37   }
38
39   @Override
40   public int getArgSize () {
41     if (argSize < 0) {
42       argSize = Types.getArgumentsSize(signature) + 1; // 'this'
43     }
44
45     return argSize;
46   }
47   
48   @Override
49   public int getCalleeThis (ThreadInfo ti) {
50     if (!ti.isPostExec()){
51       // we have to dig out the 'this' reference from the callers stack
52       return ti.getCalleeThis( getArgSize());
53     } else {
54       // enter() cached it
55       return lastObj;
56     }
57   }
58
59   @Override
60   public int getObjectSlot (StackFrame frame){
61     int top = frame.getTopPos();
62     int argSize = getArgSize();
63     
64     if (argSize == 1){ // object ref is on top
65       return top;
66       
67     } else {
68       return top - argSize -1;
69     }
70   }
71   
72   public ElementInfo getThisElementInfo (ThreadInfo ti) {
73     int thisRef = getCalleeThis(ti);
74     if (thisRef != MJIEnv.NULL) {
75       return ti.getElementInfo(thisRef);
76     } else {
77       return null;
78     }
79   }
80   
81   @Override
82   public void accept(JVMInstructionVisitor insVisitor) {
83           insVisitor.visit(this);
84   }
85
86 }