aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-02-06 11:30:50 +0100
committerBenoit Giannangeli <giann008@gmail.com>2017-02-06 22:12:39 +0100
commitdfc839625011d6bbc51c9415be4e55a6d4ffe45a (patch)
tree477a786adb8d0a6521b73d50b9e6abff689f8f44 /src
parent0926e6a6d00ee13e594e87ec8fc06f8e754eb145 (diff)
downloadfengari-dfc839625011d6bbc51c9415be4e55a6d4ffe45a.tar.gz
fengari-dfc839625011d6bbc51c9415be4e55a6d4ffe45a.tar.bz2
fengari-dfc839625011d6bbc51c9415be4e55a6d4ffe45a.zip
TAILCALL
Diffstat (limited to 'src')
-rw-r--r--src/lvm.js45
1 files changed, 41 insertions, 4 deletions
diff --git a/src/lvm.js b/src/lvm.js
index 95382b3..e0901c5 100644
--- a/src/lvm.js
+++ b/src/lvm.js
@@ -1,7 +1,9 @@
/*jshint esversion: 6 */
"use strict";
-const BytecodeParser = require("./lundump.js");
+const assert = require('assert');
+
+const BytecodeParser = require('./lundump.js');
const OC = require('./lopcodes.js');
const lua = require('./lua.js');
const CT = lua.constant_types;
@@ -358,13 +360,48 @@ class LuaVM {
if (b !== 0)
L.top = ra+b;
- this.precall(ra, L.stack[ra], nresults);
- ci = L.ci;
- continue newframe;
+ if (this.precall(ra, L.stack[ra], nresults)) {
+ if (nresults >= 0)
+ L.top = ci.top;
+ base = ci.u.l.base;
+ } else {
+ ci = L.ci;
+ continue newframe;
+ }
break;
}
case "OP_TAILCALL": {
+ if (i.B !== 0) L.top = ra + i.B;
+ if (this.precall(ra, L.stack[ra], LUA_MULTRET)) {
+ base = ci.u.l.base;
+ } else {
+ /* tail call: put called frame (n) in place of caller one (o) */
+ let nci = L.ci;
+ let oci = nci.previous;
+ let nfunc = nci.func;
+ let nfuncOff = nci.funcOff;
+ let ofunc = oci.func;
+ let ofuncOff = oci.funcOff;
+ let lim = nci.u.l.base + nfunc.p.numparams;
+ // TODO close upvalues ?
+ for (let aux = 0; nfuncOff + aux < lim; aux++)
+ L.stack[ofuncOff + aux] = L.stack[nfuncOff + aux];
+
+ oci.u.l.base = ofuncOff + (nci.u.l.base - nfuncOff);
+ L.top = ofuncOff + (L.top - nfuncOff);
+ oci.top = L.top;
+ oci.u.l.savedpc = nci.u.l.savedpc;
+ oci.pcOff = nci.pcOff;
+ //TODO callstatus
+ L.ci = oci;
+ ci = L.ci;
+ L.ciOff--;
+
+ assert(L.top === oci.u.l.base + L.stack[ofuncOff].p.maxstacksize);
+
+ continue newframe;
+ }
break;
}
case "OP_RETURN": {