⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 invokeinstruction.java

📁 代码是一个分类器的实现,其中使用了部分weka的源代码。可以将项目导入eclipse运行
💻 JAVA
字号:
package de.fub.bytecode.generic;import de.fub.bytecode.Constants;import de.fub.bytecode.classfile.*;import java.util.StringTokenizer;/** * Super class for the INVOKExxx family of instructions. * * @version $Id: InvokeInstruction.java,v 1.6 2001/07/03 08:20:18 dahm Exp $ * @author  <A HREF="http://www.berlin.de/~markus.dahm/">M. Dahm</A> */public abstract class InvokeInstruction extends FieldOrMethod  implements ExceptionThrower, TypedInstruction, StackConsumer, StackProducer {  /**   * Empty constructor needed for the Class.newInstance() statement in   * Instruction.readInstruction(). Not to be used otherwise.   */  InvokeInstruction() {}  /**   * @param index to constant pool   */  protected InvokeInstruction(short opcode, int index) {    super(opcode, index);  }  /**   * @return mnemonic for instruction with symbolic references resolved   */  public String toString(ConstantPool cp) {    Constant        c   = cp.getConstant(index);    StringTokenizer tok = new StringTokenizer(cp.constantToString(c));    return Constants.OPCODE_NAMES[opcode] + " " +      tok.nextToken().replace('.', '/') + tok.nextToken();  }  /**   * Also works for instructions whose stack effect depends on the   * constant pool entry they reference.   * @return Number of words consumed from stack by this instruction   */  public int consumeStack(ConstantPoolGen cpg) {      String signature = getSignature(cpg);      Type[] args      = Type.getArgumentTypes(signature);      int    sum;      if(opcode == Constants.INVOKESTATIC)	sum = 0;      else	sum = 1;  // this reference      int n = args.length;      for (int i = 0; i < n; i++)	sum += args[i].getSize();      return sum;   }  /**   * Also works for instructions whose stack effect depends on the   * constant pool entry they reference.   * @return Number of words produced onto stack by this instruction   */  public int produceStack(ConstantPoolGen cpg) {    return getReturnType(cpg).getSize();  }  /** @return return type of referenced method.   */  public Type getType(ConstantPoolGen cpg) {    return getReturnType(cpg);  }  /** @return name of referenced method.   */  public String getMethodName(ConstantPoolGen cpg) {    return getName(cpg);  }  /** @return return type of referenced method.   */  public Type getReturnType(ConstantPoolGen cpg) {    return Type.getReturnType(getSignature(cpg));  }  /** @return argument types of referenced method.   */  public Type[] getArgumentTypes(ConstantPoolGen cpg) {    return Type.getArgumentTypes(getSignature(cpg));  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -