Commit Graph

25 Commits (efa3beb78bf3e783efff9380df980edde2f996cd)

Author SHA1 Message Date
Jo-Philipp Wich 5d83f06cd3 [package] lua: drop refcounting patch in preparation for 10.03, it has unresolved issues resulting in random vm crashes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20617 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-03-30 23:24:46 +00:00
Gabor Juhos 61b6c0e6d8 package/lua: refresh patches
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20470 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-03-26 14:29:03 +00:00
Felix Fietkau 93f9088dab lua: fix regressions in operator overloading caused by the refcounting patch, also fix some more variable cleanup issues => even more performance, less memory utilization
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18164 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-26 14:27:30 +00:00
Felix Fietkau 690a9adf58 lua: use float instead of double, reduces the gc data structure size by 4 byte => luci processes use 10% less memory
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18159 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-26 03:01:12 +00:00
Felix Fietkau f1f87a53ac lua: fix various bugs in the refcounting implementation. seems to fix luci and reduces memory consumption even more
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18158 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-26 00:06:42 +00:00
Felix Fietkau e194dc2fef lua: get rid of bitlib and md5lib from the core, they are no longer necessary
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18138 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-24 23:23:42 +00:00
Felix Fietkau 0ee38138a3 lua: add reference counting for strings - this will need A LOT of testing, but it should finally fix the excessive memory usage problems triggered by luci
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18136 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-24 22:19:13 +00:00
Jo-Philipp Wich 0ab259ab73 [package] lua: introduce soft memory limits that trigger a gc run but do not result in an oom error
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17016 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-07-26 15:06:43 +00:00
Jo-Philipp Wich dd78050f8f package/lua: implement memory limits, scripts can use get_memory_limit() and set_memory_limit() to cap the maximum ram usage
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16753 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-07-09 17:45:23 +00:00
Jo-Philipp Wich ddd0eb7aae [package] lua: embed md5lib
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15431 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-04-27 01:47:03 +00:00
Jo-Philipp Wich bd0854584a [package] lua: revert r15108 & r15109
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15256 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-04-19 13:44:40 +00:00
Jo-Philipp Wich 7890792f49 [package] lua: add zlib build dependency, fix inaccuracy in gzip loader
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15109 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-04-05 02:33:41 +00:00
Jo-Philipp Wich 666ebf2004 [package] lua: add support for loading gzip compressed source files, bump package revision
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15108 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-04-04 23:06:56 +00:00
Felix Fietkau 4f4ff4b4c3 fix lua compile with eglibc selected and utmp support disabled
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14298 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-01-31 07:18:13 +00:00
Nicolas Thill aa9e205c8e lua changes:
- fix shared lib generation
 - don't ship liblua.so dev lib in liblua package
 - remove unsupported 'all' make target during build
 - misc cleanup
 - bump release number


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13179 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-11-11 02:48:31 +00:00
Steven Barth e8be228b78 Embed luaposix and bitlib into Lua core library
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12696 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-09-25 12:15:32 +00:00
Steven Barth 02cb89c189 Updated Lua to 5.1.4
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12383 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-08-24 15:45:26 +00:00
Felix Fietkau 858021bb55 lua: remove an unnecessary check and replace switch (GET_OPCODE(i)) as well (thx, lars)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12381 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-08-24 14:28:04 +00:00
Felix Fietkau 9438ab2df4 improve lua opcode dispatch performance by using computed goto instead of switch/case - improves performance by about 10% in a simple loop test
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12378 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-08-24 13:37:56 +00:00
Steven Barth 9e5e864db3 lua: Fixed some cross-platform issues for PPC (and probably other architectures)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11608 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-06-29 11:38:22 +00:00
Felix Fietkau 2870abcb83 fix liblua symlink installation
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11245 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-05-23 07:09:29 +00:00
Felix Fietkau bc666cb942 fix lua compile issues on ixp4xx (EABI) by linking libgcc into liblua
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11240 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-05-22 14:20:56 +00:00
Felix Fietkau 30eaf86b8c add updated lua patchset from Steven Barth (cyrus) as explained in http://lists.openwrt.org/pipermail/openwrt-devel/2008-May/002170.html
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11239 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-05-22 14:20:36 +00:00
Felix Fietkau 412e35b421 remove lua's dependency on libreadline and libncurses
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10817 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-04-13 14:34:36 +00:00
Felix Fietkau 90d64af430 move lua from packages/ to trunk in anticipation of upcoming stuff ;)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10806 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-04-13 01:06:12 +00:00