1. de53c2e using some weak "randomness" (time and memory address) to initialize by Roberto Ierusalimschy · 6 years ago
  2. 80bd4a8 correction on xoshiro256** algorithm by Roberto Ierusalimschy · 6 years ago
  3. 3e7415e reorganization of '#if's for sellecting a type for 'Rand64' + comments by Roberto Ierusalimschy · 6 years ago
  4. e64e20a minimizing the code ran by 'vmfetch' + no more 'vra' by Roberto Ierusalimschy · 6 years ago
  5. deb8078 'luaO_pushvfstring' does not need to reallocate stack by Roberto Ierusalimschy · 6 years ago
  6. 26eb144 no need to define 'luaP_opnames' in regular builds by Roberto Ierusalimschy · 6 years ago
  7. f9c3d6f use test mode to test the interpreter without jump tables by Roberto Ierusalimschy · 6 years ago
  8. 762baf0 detail (trim constants are unsigned) by Roberto Ierusalimschy · 6 years ago
  9. b8a0465 PRNG changed from 'xoroshiro128+' to 'xoshiro256**' + "I' renamed 'Rand64' by Roberto Ierusalimschy · 6 years ago
  10. b447876 using 'xoroshiro128+' for PRNG by Roberto Ierusalimschy · 6 years ago
  11. 03c6a05 no more nil-in-table by Roberto Ierusalimschy · 6 years ago
  12. 3d0b5ed using unsigned comparison in 'l_intfitsf' (avoids one comparison) by Roberto Ierusalimschy · 6 years ago
  13. 8d50a99 definition for LUA_UNSIGNEDBITS (number of bits in a LUA_UNSIGNED) by Roberto Ierusalimschy · 6 years ago
  14. bdd10a0 in 'random', uses high-order bits instead of low-order by Roberto Ierusalimschy · 6 years ago
  15. c5e3b2f in random/'project', remove the special case for "small" intervals; by Roberto Ierusalimschy · 6 years ago
  16. 6486762 missing LUAI_FUNC in prototype for 'luaK_patchgoto' by Roberto Ierusalimschy · 6 years ago
  17. 4907444 'fTransfer' -> 'ftransfer' / 'nTransfer' -> 'ntransfer' by Roberto Ierusalimschy · 6 years ago
  18. c3cb31f some extra goodies for 'readline' by Roberto Ierusalimschy · 6 years ago
  19. 0c77382 FALLTHROUGH comment must be last "statement" by Roberto Ierusalimschy · 6 years ago
  20. 7b0b6b3 cannot use 'defined' inside a macro + call to 'luaT_keydef' must be protected by Roberto Ierusalimschy · 6 years ago
  21. 89da416 avoid functions named 'pack' by Roberto Ierusalimschy · 6 years ago
  22. 6b01b6c 'lu_int32' may not be 'int' by Roberto Ierusalimschy · 6 years ago
  23. e3388eb more explicit casts when converting an integer to a random float by Roberto Ierusalimschy · 6 years ago
  24. 9e3db70 details (casts between 'lua_Number' and 'double') by Roberto Ierusalimschy · 6 years ago
  25. dbec41f random floats of different sizes get exactly needed number of random bits by Roberto Ierusalimschy · 6 years ago
  26. 0b3db69 slight simplification in 'xorshift128plus' by Roberto Ierusalimschy · 6 years ago
  27. 80ae1c1 fairer projection of random integers into an integer interval by Roberto Ierusalimschy · 6 years ago
  28. 40683b4 added definition for LUA_MAXUNSIGNED by Roberto Ierusalimschy · 6 years ago
  29. 6480e73 details (avoid using non-C89 '//' comment) by Roberto Ierusalimschy · 6 years ago
  30. 4a1612f new experimental syntax using reserved word 'undef' by Roberto Ierusalimschy · 6 years ago
  31. 464658b better modularization of the code for the REPL by Roberto Ierusalimschy · 6 years ago
  32. bdcde45 updated to use jump tables by Roberto Ierusalimschy · 6 years ago
  33. 8b0434e both 'fTransfer' and 'nTransfer' may not fit in a 'char' by Roberto Ierusalimschy · 6 years ago
  34. 8b0b675 added casts (warnings in VS) by Roberto Ierusalimschy · 6 years ago
  35. 8c42931 typo in comment by Roberto Ierusalimschy · 6 years ago
  36. 66b7b07 'math.random' using the xorshift128+ algorithm by Roberto Ierusalimschy · 6 years ago
  37. 62a392f using jump tables when available by Roberto Ierusalimschy · 6 years ago
  38. 893f382 Jump Table for the interpreter by Roberto Ierusalimschy · 6 years ago
  39. 0eb10c6 'LUA_USE_READLINE' moved to the make file by Roberto Ierusalimschy · 6 years ago
  40. 00008b8 back to one format per argument by Roberto Ierusalimschy · 6 years ago
  41. df49384 year in copyright changed to 2018 by Roberto Ierusalimschy · 6 years ago
  42. fbea553 'lua_setiuservalue' removes value from the stack even in case of error by Roberto Ierusalimschy · 6 years ago
  43. 34b00c1 removed compatibility code with older versions by Roberto Ierusalimschy · 6 years ago
  44. 12110de module has been deprecated. by Roberto Ierusalimschy · 6 years ago
  45. 4105caf no more 'bitlib' by Roberto Ierusalimschy · 6 years ago
  46. 76ff557 no optimizations in test mode + no more compat with 5.2 + a few more by Roberto Ierusalimschy · 6 years ago
  47. b7edf5d metamethods for 'removekey'/'keyin' by Roberto Ierusalimschy · 6 years ago
  48. ef8263f better names for macros for tags and types. by Roberto Ierusalimschy · 6 years ago
  49. 2952bc5 special compact representation for userdata with no user values (a common case) by Roberto Ierusalimschy · 6 years ago
  50. 38d3bc8 using 'offsetof' to compute the size of parts of a structure by Roberto Ierusalimschy · 6 years ago
  51. 75efc67 avoid variant tags with the same value of the original type by Roberto Ierusalimschy · 6 years ago
  52. d766e2a first (parcial) implementation of 'keyin'/'removekey' by Roberto Ierusalimschy · 6 years ago
  53. f055a9d added check in 'obj2gco' to prevent its use in non Lua-object pointers by Roberto Ierusalimschy · 6 years ago
  54. 4a7fe61 in 'clearbykeys', clear keys of just-removed entries too by Roberto Ierusalimschy · 6 years ago
  55. 9243c41 first version of empty entries in tables by Roberto Ierusalimschy · 6 years ago
  56. 477ca2f some reorganization in 'lobject.h' (just moving stuff around) by Roberto Ierusalimschy · 6 years ago
  57. c72ac04 conditional jumps "deunified" by Roberto Ierusalimschy · 6 years ago
  58. b03dddf removed coercion string->number in bitwise operations by Roberto Ierusalimschy · 6 years ago
  59. c80c7a4 details (comments) by Roberto Ierusalimschy · 6 years ago
  60. 212095a new opcodes OP_GTI/OP_GEI by Roberto Ierusalimschy · 6 years ago
  61. c67603f using new 'lua_newuserdatauv' instead of 'lua_newuserdata' by Roberto Ierusalimschy · 6 years ago
  62. 06865aa simpler implementation for 'LTintfloat'/'LEintfloat' + 'LTfloatint'/'LEfloatint' by Roberto Ierusalimschy · 6 years ago
  63. 465b474 small reorganization of 'luaV_flttointeger'/'luaV_tointeger' by Roberto Ierusalimschy · 6 years ago
  64. 6353d61 detail (comment) by Roberto Ierusalimschy · 6 years ago
  65. ca6fe74 userdata can have multiple user values by Roberto Ierusalimschy · 6 years ago
  66. 1afd5a1 more generic way to handle 'gclist' by Roberto Ierusalimschy · 6 years ago
  67. 422318f two new fields 'fTransfer'/'nTransfer' in 'lua_Debug' structure by Roberto Ierusalimschy · 6 years ago
  68. 49dae52 correct way to check stack space for vararg functions by Roberto Ierusalimschy · 6 years ago
  69. 104d249 in return hook, 'top' must be corrected only if smaller than 'ci->top'. by Roberto Ierusalimschy · 6 years ago
  70. c7a8cba no more 'nfield' string by Roberto Ierusalimschy · 6 years ago
  71. 0682fe8 some simplifications/optimizations in returns from Lua functions by Roberto Ierusalimschy · 6 years ago
  72. b137993 vararg back to '...' (but with another implementation) by Roberto Ierusalimschy · 6 years ago
  73. 4e0de3a details by Roberto Ierusalimschy · 6 years ago
  74. 318a9a5 new opcode 'PREPVARARG' (avoids test for vararg function in all function calls) by Roberto Ierusalimschy · 6 years ago
  75. 73d797c detail (order of 'OT' and 'IT' bits corresponds with macro 'opmode') by Roberto Ierusalimschy · 6 years ago
  76. 51280ef call hooks for Lua functions called by 'luaV_execute' by Roberto Ierusalimschy · 6 years ago
  77. fc3eaa2 GC default mode for the stand-alone interpreter is generational mode by Roberto Ierusalimschy · 6 years ago
  78. daff7c3 small corrections in generational mode by Roberto Ierusalimschy · 6 years ago
  79. a131eae default for minor collection intervals a little larger by Roberto Ierusalimschy · 6 years ago
  80. 022abc3 'gcemergency' should be zero before any memory allocation by Roberto Ierusalimschy · 6 years ago
  81. 56e50e8 'collectgarbage' returns old mode when changing mode by Roberto Ierusalimschy · 6 years ago
  82. 9056963 detail (uses a reserved-format name for an internal type in the registry) by Roberto Ierusalimschy · 6 years ago
  83. dc0ab1e warnings in VS (implicit casts from ptrdiff_t to int) by Roberto Ierusalimschy · 6 years ago
  84. e2b15aa janitor work on casts by Roberto Ierusalimschy · 6 years ago
  85. 8911098 bug in tailcall of vararg functions (when adjusting missing parameters) by Roberto Ierusalimschy · 6 years ago
  86. 53979df calling a vararg function needs to check GC (because it creates a new table) by Roberto Ierusalimschy · 6 years ago
  87. 6710a2b detail (comment) by Roberto Ierusalimschy · 6 years ago
  88. 5bd8d38 OP_CONCAT does not move its result (to simplify its execution) by Roberto Ierusalimschy · 6 years ago
  89. 28f215e comments by Roberto Ierusalimschy · 6 years ago
  90. d2fb34a 'OP_TAILCALL' calling C functions finishes the call and returns by Roberto Ierusalimschy · 6 years ago
  91. ab0a851 'luaD_tryfuncTM' can ensure it does not change the stack by Roberto Ierusalimschy · 6 years ago
  92. 728ff94 error handler in protected calls must be a function by Roberto Ierusalimschy · 6 years ago
  93. ad96009 avoid jumping into a variable scope (C++ does not allow that) by Roberto Ierusalimschy · 6 years ago
  94. 33e3774 keep more opcode arguments byte-aligned by Roberto Ierusalimschy · 6 years ago
  95. a9295a2 typos in comments by Roberto Ierusalimschy · 6 years ago
  96. c6fedc9 new command 'print' (to print literal strings) in mini-language by Roberto Ierusalimschy · 6 years ago
  97. 68af7cc another try with table resize. by Roberto Ierusalimschy · 6 years ago
  98. 28323ae by-one error when filling missing arguments in a tail call by Roberto Ierusalimschy · 6 years ago
  99. cf7eff4 keep control of stack top in Lua functions concentrated in 'luaV_execute' by Roberto Ierusalimschy · 6 years ago
  100. 8691612 when calling a hook, cannot decrease 'ci->top' (to preserve stack by Roberto Ierusalimschy · 6 years ago