Stack: ... -> ..., value
421422423424425426427428429430431
break; } } else if (i < Byte.MAX_VALUE) { result = new BIPUSH((byte)i); } else if (i < Short.MAX_VALUE) { result = new SIPUSH((short)i); }
799800801802803804805
@SuppressWarnings("unused") // Called using reflection private Instruction createInstructionBipush(Element inst) { byte val= (byte) Integer.parseInt(inst.getAttributeValue("value")); return new BIPUSH(val); }
509510511512513514515516517518519
case 3: inst = InstructionConstants.ICONST_3; break; case 4: inst = InstructionConstants.ICONST_4; break; case 5: inst = InstructionConstants.ICONST_5; break; } if (i <= Byte.MAX_VALUE && i >= Byte.MIN_VALUE) { inst = new BIPUSH((byte)i); } else if (i <= Short.MAX_VALUE && i >= Short.MIN_VALUE) { inst = new SIPUSH((short)i); } else { inst = new LDC(fact.getClassGen().getConstantPool().addInteger(i)); }