astore_2.java

来自「Java源码」· Java 代码 · 共 46 行

JAVA
46
字号
package AM.vm_impl.instruction;

import AM.am_data_structure.*;
import AM.vm_impl.util.*;
import AM.vm_impl.vm_data_structure.*;

/**
 * Created by IntelliJ IDEA. User: yellowicq Date: 2004-4-27 Time: 14:48:37
 * To change this template use File | Settings | File Templates.
 */

public class ASTORE_2
    implements Instruction {
  public ASTORE_2() {}

  public String Name() {
    return "astore_2";
  }

  public int NumArguments() {
    return 0;
  }

  public String ToString() {
    return Name();
  }

  public void SI(AbstractMachineState state) {
    Tracer.debug("SI astore_2");
    VM_DataArea VM_da = (VM_DataArea) state.getDataArea();
    VM_Program VM_prog = (VM_Program) state.getProgram();
    // Implementation of allocate semantics
    Object tmp1 = (Object) VM_da.stackFrame.pop();
    VM_da.stackFrame.setLocalEntry(2, tmp1);
    //move the cp pointer to next
    synchronized (VM_prog.lock) {
      VM_prog.Next();
      VM_da.regs.setCP_GLOBAL(VM_prog.Consult_CP());
    }
  }

  public void Process(String args[]) {
    // Proces the text representation of the instruction
  }
}

⌨️ 快捷键说明

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