aboutsummaryrefslogtreecommitdiff
path: root/src/lvm.js
Commit message (Collapse)AuthorAge
* src/: Upvalues are now just TValues (possibly referencing on-stack)daurnimator2018-01-29
| | | | | | | | | | - Removes `Upval` class - closing over upvalues is now done by creating new on-stack TValue objects - No more `openupval` linked list With this fix, upvalues from collected coroutines will no longer keep other values alive Closes #44
* src/: Destructure when requiring lstring.jsdaurnimator2018-01-18
|
* src/: Start using lua_assert() instead of plain assert()daurnimator2018-01-18
|
* src/lvm.js: Use destructuring requires for defs, lopcodes, llimits and luaconfdaurnimator2018-01-18
|
* src/lvm.js: Add Math.imul shim; export new luaV_imul functiondaurnimator2018-01-07
|
* Use Uint8Array to back stringsdaurnimator2017-12-13
|
* src/: Have luaO_str2num fill in passed TValue and return lengthdaurnimator2017-12-12
|
* src/: Comment out unused constants/functionsdaurnimator2017-12-10
|
* src/: Fix some linter complaintsdaurnimator2017-12-10
|
* Removed incorrect use of llimits.MAX/MIN_INTBenoit Giannangeli2017-11-09
| | | | llimit.js is renamed to llimits.js
* Move jshint config to package.jsondaurnimator2017-08-18
|
* Fixed correct let declaration that will fail babiliBenoit Giannangeli2017-08-10
|
* src/lvm.js: Rename gettable to luaV_gettabledaurnimator2017-06-18
|
* src/lvm.js: Only convert to numbers when neededdaurnimator2017-06-18
|
* src/lvm.js: Fix whitespacedaurnimator2017-06-08
|
* src/lvm.js: Remove unwated exportsdaurnimator2017-06-08
|
* src/lvm.js: Clean up 'forlimit'daurnimator2017-06-08
| | | | | - 'casted' property was pointless - Avoid calling unless operands are known to be integers
* src/lvm.js: Simplify l_strcmp by using string hash for comparisondaurnimator2017-06-08
|
* src/lvm.js: Optimise LEnum and LTnum for our number representationdaurnimator2017-06-08
|
* src/lvm.js: Throw error if OP_EXTRAARG is interpreteddaurnimator2017-05-30
|
* Introduce function to adjust L.topdaurnimator2017-05-30
|
* src/lvm.js: Fix indentation in luaV_concatdaurnimator2017-05-29
|
* luaO_tostring should modify TValuedaurnimator2017-05-29
|
* src/lvm.js: cache closuresdaurnimator2017-05-29
|
* src/lvm.js: Move OP_SETUPVAL into opcode order locationdaurnimator2017-05-29
|
* src/lvm.js: OP_GETTABLE should use RB not RKBdaurnimator2017-05-29
| | | | Almost move into order similar to lua's lvm.c
* Have lua closures point to directly to their upvalues on stackdaurnimator2017-05-29
|
* src/lvm.js: Fix indentationdaurnimator2017-05-29
|
* Have ltm.luaT_callorderTM return a booleandaurnimator2017-05-27
|
* Modify stack values up to L.top instead of replacingdaurnimator2017-05-27
|
* Use .setclLvaluedaurnimator2017-05-27
|
* Introduce chgfltvalue and chgivaluedaurnimator2017-05-27
|
* Introduce setsvalue2sdaurnimator2017-05-27
|
* src/lvm.js: Use setobjs2s in luaV_finishOp's OP_CONCAT casedaurnimator2017-05-27
|
* Introduce setobj2sdaurnimator2017-05-27
|
* Introduce setobjs2sdaurnimator2017-05-27
|
* src/lvm.js: Use 'uv.isopen' instead of assuming membersdaurnimator2017-05-24
|
* src/lvm.js: Factor out OP_CLOSURE to pushclosuredaurnimator2017-05-24
|
* src/lvm.js: Don't modify tvalues on stack in OP_FORPREPdaurnimator2017-05-24
|
* src/lvm.js: Remove non-wanted TODOs from OP_FORLOOP implementationdaurnimator2017-05-24
|
* src/lvm.js: loops with integers should overflowdaurnimator2017-05-24
|
* Introduce luaO_tostringdaurnimator2017-05-23
|
* src/lvm.js: Introduce cvt2num at mirror cvt2strdaurnimator2017-05-22
|
* Introduce lvm.cvt2strdaurnimator2017-05-22
| | | | In future this could be configurable
* Merge remote-tracking branch 'daurnimator/stack'Benoit Giannangeli2017-05-22
|\
| * Add luaD_checkstack callsdaurnimator2017-05-22
| |
* | Fixed bad boolean handling in luaV_finishOpBenoit Giannangeli2017-05-22
| |
* | luaV_finishOp put concat results in wrong stack slotBenoit Giannangeli2017-05-22
|/
* Checks for nil and NaN table keysdaurnimator2017-05-22
|
* Add TMcachedaurnimator2017-05-22
|