| Commit message (Collapse) | Author | Age | ||
|---|---|---|---|---|
| ... | ||||
| * | Renamed findupval to luaF_findupval | Benoit Giannangeli | 2017-05-05 | |
| | | ||||
| * | Merge remote-tracking branch 'daurnimator/fix-errors' | Benoit Giannangeli | 2017-05-05 | |
| |\ | ||||
| | * | src/lvm.js: Optimise variable declarations | daurnimator | 2017-05-05 | |
| | | | | | | | | | | | Oddly 'const' on OCi helps, but on anything else dramatically increases runtime Otherwise the reduced scope for other variables is a tiny bit faster | |||
| | * | src/lvm.js: Remove special case | daurnimator | 2017-05-05 | |
| | | | | | | | | | This makes it faster on my computer | |||
| * | | [test-suite] calls.js | Benoit Giannangeli | 2017-05-05 | |
| |/ | ||||
| * | Flatten CallInfo union member | daurnimator | 2017-05-05 | |
| | | ||||
| * | Simplify UpVal structure | daurnimator | 2017-05-05 | |
| | | | | | | | | No longer follows C api as closely (it is the way it is because C has unions) Instead, have a flat object. Also remove the 'setval' method, as it wasn't used from all call-sites and couldn't be extended to them (setval's body only worked with source TValue on a stack) | |||
| * | An open upvalue already knows which lua_State it comes from | daurnimator | 2017-05-05 | |
| | | ||||
| * | Need to copy to the stack if not coming from a stack | daurnimator | 2017-05-05 | |
| | | ||||
| * | src/lvm.js: Don't localise lobject members | daurnimator | 2017-05-04 | |
| | | ||||
| * | Refactor table implementation | daurnimator | 2017-05-03 | |
| | | ||||
| * | LClosure and CClosure shouldn't subclass TValue | daurnimator | 2017-04-28 | |
| | | ||||
| * | Add table construction function | daurnimator | 2017-04-28 | |
| | | ||||
| * | Remove unused require()s | daurnimator | 2017-04-26 | |
| | | ||||
| * | All core files reference defs.js instead of lua.js | daurnimator | 2017-04-26 | |
| | | ||||
| * | Added missing lopcode.MAXINDEXRK | Benoit Giannangeli | 2017-04-25 | |
| | | | | | Which ended up generating an OP_LOADK when not needed | |||
| * | Force 32bit integer with |0 | Benoit Giannangeli | 2017-04-24 | |
| | | ||||
| * | No more Table, just TValue with table type and Map value | Benoit Giannangeli | 2017-04-18 | |
| | | ||||
| * | Fixed table comparison (was comparing TValue instead of values) | Benoit Giannangeli | 2017-04-18 | |
| | | ||||
| * | luaH_next and luaH_getn are not Table member functions | Benoit Giannangeli | 2017-04-18 | |
| | | ||||
| * | Cache all to_luastring of internal literals | Benoit Giannangeli | 2017-04-18 | |
| | | ||||
| * | Fixed boolean comparison | Benoit Giannangeli | 2017-04-14 | |
| | | ||||
| * | Fixed operators when tonumber used | Benoit Giannangeli | 2017-04-14 | |
| | | ||||
| * | Use Lua's modulo semantic | Benoit Giannangeli | 2017-04-14 | |
| | | ||||
| * | hooks | Benoit Giannangeli | 2017-04-14 | |
| | | ||||
| * | Constant must be copied ! | Benoit Giannangeli | 2017-04-11 | |
| | | | | | | This fixes an issue where a single constant reference was used in several stack slot resulting in some rather funny things in the VM loop. | |||
| * | Use opcode numerical constants instead of strings in luaV_execute | Benoit Giannangeli | 2017-04-11 | |
| | | ||||
| * | nan, -inf, inf | Benoit Giannangeli | 2017-04-10 | |
| | | ||||
| * | Fixed bad number comparison | Benoit Giannangeli | 2017-04-10 | |
| | | ||||
| * | 8-bit string internally tests | Benoit Giannangeli | 2017-03-30 | |
| | | | | | Lexing/Parsing is done on byte rather than js strings | |||
| * | Proper use of luaO_nilobject | Benoit Giannangeli | 2017-03-24 | |
| | | ||||
| * | Fixed bad lua_tointegerx | Benoit Giannangeli | 2017-03-24 | |
| | | ||||
| * | l_strcmp take \0 into account | Benoit Giannangeli | 2017-03-24 | |
| | | ||||
| * | strings.lua | Benoit Giannangeli | 2017-03-24 | |
| | | ||||
| * | Testing 8-bit strings | Benoit Giannangeli | 2017-03-13 | |
| | | ||||
| * | [Strings] lvm.js | Benoit Giannangeli | 2017-03-13 | |
| | | ||||
| * | lstrlib, string.len | Benoit Giannangeli | 2017-03-05 | |
| | | ||||
| * | load, luaL_loadbuffer(x), luaL_loadstring, lua_replace, lua_isnone, ↵ | Benoit Giannangeli | 2017-03-03 | |
| | | | | | lua_isnoneornil, lua_setupvalue | |||
| * | [Parsing tests] CALL | Benoit Giannangeli | 2017-03-01 | |
| | | ||||
| * | Bytecode generation | Benoit Giannangeli | 2017-03-01 | |
| | | ||||
| * | math.random/randomseed | Benoit Giannangeli | 2017-02-26 | |
| | | ||||
| * | math.abs, math.sin, math.cos, math.tan, math.asin, math.acos, math.atan | Benoit Giannangeli | 2017-02-24 | |
| | | ||||
| * | Travis | Benoit Giannangeli | 2017-02-24 | |
| | | ||||
| * | table.concat | Benoit Giannangeli | 2017-02-24 | |
| | | ||||
| * | coroutine.running, upvalue need to be attached to their thread | Benoit Giannangeli | 2017-02-23 | |
| | | ||||
| * | Fixed bad lua_gettop | Benoit Giannangeli | 2017-02-23 | |
| | | ||||
| * | coroutines | Benoit Giannangeli | 2017-02-23 | |
| | | ||||
| * | Use correct luaG errors instead of throwing Errors | Benoit Giannangeli | 2017-02-21 | |
| | | ||||
| * | luaG_concaterror, luaG_opinterror, luaG_tointerror | Benoit Giannangeli | 2017-02-21 | |
| | | ||||
| * | luaG_ functions | Benoit Giannangeli | 2017-02-21 | |
| | | ||||
