From f47e66cf8d6e433a1036113a69ec421966d3509c Mon Sep 17 00:00:00 2001 From: daurnimator Date: Fri, 12 May 2017 15:18:42 +1000 Subject: src/ldo.js: Don't bother keeping around a pool of CallInfo objects --- src/ldo.js | 37 +++++++++++++------------------------ 1 file changed, 13 insertions(+), 24 deletions(-) (limited to 'src/ldo.js') diff --git a/src/ldo.js b/src/ldo.js index 23c5969..da110e7 100644 --- a/src/ldo.js +++ b/src/ldo.js @@ -47,7 +47,6 @@ const seterrorobj = function(L, errcode, oldtop) { */ const luaD_precall = function(L, off, nresults) { let func = L.stack[off]; - let ci; switch(func.type) { case CT.LUA_TCCL: @@ -55,18 +54,12 @@ const luaD_precall = function(L, off, nresults) { let f = func.type === CT.LUA_TCCL ? func.value.f : func.value; // next_ci - if (L.ci.next) { - L.ci = L.ci.next; - ci = L.ci; - } else { - ci = new lstate.CallInfo(off); - L.ci.next = ci; - ci.previous = L.ci; - ci.next = null; - - L.ci = ci; - L.ciOff++; - } + let ci = new lstate.CallInfo(off); + L.ci.next = ci; + ci.previous = L.ci; + ci.next = null; + L.ci = ci; + L.ciOff++; ci.nresults = nresults; ci.func = func; @@ -99,18 +92,13 @@ const luaD_precall = function(L, off, nresults) { } // next_ci - if (L.ci.next) { - L.ci = L.ci.next; - ci = L.ci; - } else { - ci = new lstate.CallInfo(off); - L.ci.next = ci; - ci.previous = L.ci; - ci.next = null; + let ci = new lstate.CallInfo(off); + L.ci.next = ci; + ci.previous = L.ci; + ci.next = null; + L.ci = ci; + L.ciOff++; - L.ci = ci; - L.ciOff++; - } ci.nresults = nresults; ci.func = func; ci.funcOff = off; @@ -140,6 +128,7 @@ const luaD_poscall = function(L, ci, firstResult, nres) { let res = ci.funcOff; L.ci = ci.previous; + L.ci.next = null; L.ciOff--; return moveresults(L, firstResult, res, nres, wanted); }; -- cgit v1.2.3-54-g00ecf