* @see net.sf.jrevpro.decompile.instructioneval.AbstractInstructionEvaluator
* #evaluate(net.sf.jrevpro.reflect.instruction.Instruction)
*/
@Override
void evaluate(Instruction ins) {
Expression exp = evalMachine.pop();
switch (ins.opcode) {
case OPCODE_ISTORE:
logger.info("Processing Instruction " + ins.currentPc + " istore "
+ ins.getArgUnsignedWide());
operateStoreInstruction(ins, ins.getArgUnsignedWide(), exp);