1
0
Fork 0
forked from len0rd/rockbox

lua latebound function update

return the nextfunction and nil instead of pairs it allows a faster
return to lua rather than calling the lua function
pcall(fnpairs) from c and returning the result back
into lua to kick off the search
yeah, no clue why I didn't realize that before..

testing in x86 and ARM..
its more RAM efficient to do the initial creation
of the stack in lua code for the __pairs functon
its not faster but being that its a one time hit per
iter creation the reduced churn alone should be worth it
along with a reduced peak RAM usage

fix bug where a failed module can not be reloaded

optimize filetol

fix potential bug in splash scroller when no break character is found
Change-Id: I42c922e07039a19138b97c0d0e80cf3cf2426471
This commit is contained in:
William Wilgus 2021-05-11 21:35:41 -04:00 committed by William Wilgus
parent 0c62177575
commit dcff9b85a3
4 changed files with 51 additions and 29 deletions

View file

@ -603,7 +603,12 @@ static void parlist (LexState *ls) {
} while (!f->is_vararg && testnext(ls, ','));
}
adjustlocalvars(ls, nparams);
//f->numparams = cast_byte(fs->nactvar - (f->is_vararg & VARARG_HASARG));
#if defined(LUA_COMPAT_VARARG)
f->numparams = cast_byte(fs->nactvar - (f->is_vararg & VARARG_HASARG));
#else
f->numparams = cast_byte(fs->nactvar);
#endif
luaK_reserveregs(fs, fs->nactvar); /* reserve register for parameters */
}