This commit is contained in:
Andreas Gal 2014-07-16 12:01:52 -07:00
Родитель 8cfefeb7a6
Коммит be5498cc03
1 изменённых файлов: 6 добавлений и 13 удалений

Просмотреть файл

@ -922,22 +922,18 @@ Frame.prototype.invoke = function(op, methodInfo) {
var method = CLASSES.getMethod(callee, classInfo, methodName, signature, op === 0xb8);
callee.invoke(op, method);
break;
case OPCODES.return:
case 0xb1: // return
callee.popFrame();
return;
case OPCODES.ireturn:
case OPCODES.freturn:
case OPCODES.areturn:
case 0xac: // ireturn
case 0xae: // freturn
case 0xb0: // areturn
callee.popFrame().stack.push(callee.stack.pop());
return;
case OPCODES.lreturn:
case OPCODES.dreturn:
case 0xad: // lreturn
case 0xaf: // dreturn
callee.popFrame().stack.push2(callee.stack.pop2());
return;
default:
var opName = OPCODES[op];
if (!(opName in this))
@ -948,9 +944,6 @@ Frame.prototype.invoke = function(op, methodInfo) {
};
}
Frame.prototype.invokestatic = Frame.prototype.invokevirtual = Frame.prototype.invokespecial = Frame.prototype.invokeinterface = function() {
}
Frame.prototype.tableswitch = function() {
var startip = this.ip;
var jmp;