Examples of insS1()


Examples of objot.bytecode.Instruction.insS1()

    p.setDescCi(cons.getCprocDesc(indexCi));
    Instruction s = new Instruction(cons, 500);
    s.ins0(ALOAD1); // class
    s.ins0(DUP); // class
    s.insU2(INVOKEVIRTUAL, cons.addProc(M_hashCode)); // hash code
    s.insS1(BIPUSH, 31);
    s.ins0(IREM);
    long sw = s.insSwitchTable(0, 30);
    for (int i = 0; i < 31; i++)
    {
      s.switchTableHere(sw, i);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.