LuaSrcDiet工具介绍(lua源码处理软件)
Diet
Food
- Diet (nutrition), the sum of the food consumed by an organism or group
- Dieting, the deliberate selection of food to control body weight or nutrient intake
- Diet food, foods that aid in creating a diet for weight loss
https://en.wikipedia.org/wiki/Diet
- 节食;进行规定饮食
- n.日常饮食;日常食物;规定饮食(为健康或减肥等目的);规定饮食的时期
- Web食性;食谱;膳食
https://www.bing.com/dict/search?q=diet&FORM=BDVSP2&qpvt=diet
Diet 结合工具的使用, 应该是节食的含义, 即使用规定的饮食,达到减肥的目的。
luaSrcDiet
知道了英文的意思, 这里luasrcdiet == lua source code diet, 即 对lua源代码进行瘦身。
http://luasrcdiet.luaforge.net/
LuaSrcDiet reduces the size of Lua 5.1.x source files by aggressively removing all unnecessary whitespace and comments, optimizing constant tokens, and renaming local variables to shorter names.
LuaSrcDiet squeezes its own (heavily commented) sources from 121KB down to 28KB. Further compression (bzip2 or lzma) brings the size down to under 10KB, representing a 12X reduction in size.
Sample Output
The following is the result of processing llex.lua from LuaSrcDiet 0.11.0
using various optimization options:
LuaSrcDiet Option |
Size (bytes) | Link to Sample File |
Original | 12,421 | llex.lua.txt |
Empty lines only | 12,395 | llex_emptylines.lua.txt |
Whitespace only | 9,372 | llex_whitespace.lua.txt |
Local rename only | 11,794 | llex_locals.lua.txt |
--basic (token optimizations only) |
3,835 | llex_basic.lua.txt |
Program default | 3,208 | llex_default.lua.txt |
--maximum | 3,130 | llex_maximum.lua.txt |
功能
LuaSrcDiet features include the following:
- Predefined default, --basic
(token-only) and --maximum
settings. - Avoid deleting a block comment with a certain message with --keep; this is for copyright or
license texts. - Special handling for #! (shbang) lines and in functions, "self"
implicit parameters. - Dumping of raw information: lexer
tokens and local variable name
tracking information - Plugin interface (experimental!) with HTML and SLOC plugins.
- HTML plugin: outputs files that highlights globals and locals
(useful for eliminating globals), sample: html_sample.html.
-----
这个挺好@!!!!! - SLOC plugin: counts
significant lines of Lua code, like SLOCCount.
List of optimizations:
- Line endings are always normalized to LF, except those embedded
in comments or strings. - --opt-comments: Removal
of comments and comment blocks. - --opt-whitespace:
Removal of whitespace, excluding end-of-line characters. - --opt-emptylines:
Removal of empty lines. - --opt-eols: Removal of
unnecessary end-of-line characters. - --opt-strings: Rewrite
strings and long strings. Sample: Before and After - --opt-numbers: Rewrite
numbers. Sample: Before and After - --opt-locals: Rename
local variable names. Does not rename field or method names. - --opt-entropy: Tries to
improve symbol entropy when renaming locals by calculating actual
letter frequencies.
与其他工具对比
File sizes of LuaSrcDiet 0.11.0 main files in various forms:
Source File | Original Size (bytes) |
luac normal (bytes) |
luac stripped (bytes) |
LuaSrcDiet --basic (bytes) |
LuaSrcDiet --maximum (bytes) |
LuaSrcDiet.lua |
21,961 | 20,952 | 11,000 | 11,005 | 8,159 |
llex.lua | 12,421 | 8,613 | 4,247 | 3,835 | 3,130 |
lparser.lua | 41,757 | 27,215 | 12,506 | 11,755 | 7,666 |
optlex.lua | 31,009 | 16,992 | 8,021 | 9,129 | 6,858 |
optparser.lua | 16,511 | 9,021 | 3,520 | 5,087 | 2,999 |
Total | 123,659 | 82,793 | 39,294 | 40,811 | 28,812 |
Null loop |
Stripped binary chunk |
Original Sources |
Squeezed Sources |
||
Total Size | (bytes) | 0 | 39,294 | 123,640 | 28,793 |
Iterations | 312,155 | 9,680 | 1306 | 1,592 | |
Duration | (sec) | 10 | 10 | 10 | 10 |
Time/iteration | (msec) | 0.032 | 1.033 | 7.657 | 6.281 |
Time/iteration, adjusted for null |
(msec) | - | 1.001 | 7.625 | 6.249 |
Load rate | (MB/sec) | - | 37.44 | 15.46 | 4.39 |
Load time per byte | (ns) | - | 25.5 | 61.7 | 217.0 |
Load time per token | (ns) | - | - | 682 | 559 |
Source time vs binary chunk time ratio |
- | 1.00 | 7.62 | 6.24 | |
Binary chunk rate vs. source rate ratio |
- | 1.00 | 2.42 | 8.53 |
The LuaSrcDiet 0.11.0 files (original, squeezed with --maximum and stripped binary chunks versions) are loaded into memory first before a loop runs to repeatedly load the script files for 10 seconds. A null loop is also performed (processing empty strings) and the time taken per null iteration is subtracted as a form of null adjustment. Then, various performance parameters are calculated. Note that LuaSrcDiet.lua was slightly modified (#! line removed) to let the loadstring function run. The results below were obtained with a Lua 5.1.3 executable compiled using "make generic" on Cygwin/Windows XP SP2 on a Sempron 3000+ (1.8GHz). The LuaSrcDiet 0.11.0 source files have 11,180 'real' tokens in total.
Null loop |
Stripped binary chunk |
Original Sources |
Squeezed Sources |
||
Total Size | (bytes) | 0 | 39,294 | 123,640 | 28,793 |
Iterations | 312,155 | 9,680 | 1306 | 1,592 | |
Duration | (sec) | 10 | 10 | 10 | 10 |
Time/iteration | (msec) | 0.032 | 1.033 | 7.657 | 6.281 |
Time/iteration, adjusted for null |
(msec) | - | 1.001 | 7.625 | 6.249 |
Load rate | (MB/sec) | - | 37.44 | 15.46 | 4.39 |
Load time per byte | (ns) | - | 25.5 | 61.7 | 217.0 |
Load time per token | (ns) | - | - | 682 | 559 |
Source time vs binary chunk time ratio |
- | 1.00 | 7.62 | 6.24 | |
Binary chunk rate vs. source rate ratio |
- | 1.00 | 2.42 | 8.53 |
The above shows that stripped binary chunks is still, in many ways,
the highest-performance form of fixed Lua scripts. On a very average
machine, scripts load at over 37MB/sec (in memory). This is very
comparable to the burst speeds of common desktop hard disks of 2008. If
instant response is paramount, stripped binary chunks has little
competition.
LuaSrcDiet工具介绍(lua源码处理软件)的更多相关文章
- IPerf——网络测试工具介绍与源码解析(4)
上篇随笔讲到了TCP模式下的客户端,接下来会讲一下TCP模式普通场景下的服务端,说普通场景则是暂时不考虑双向测试的可能,毕竟了解一项东西还是先从简单的情况下入手会快些. 对于服务端,并不是我们认为的直 ...
- IPerf——网络测试工具介绍与源码解析(2)
对于IPerf源码解析,我是基于2.0.5版本在Windows下执行的情况进行分析的,提倡开始先通过对源码的简单修改使其能够在本地编译器运行起来,这样可以打印输出一些中间信息,对于理解源码的逻辑,程序 ...
- IPerf——网络测试工具介绍与源码解析(1)
IPerf是一个开源的测试网络宽带并能统计并报告延迟抖动.数据包丢失率信息的控制台命令程序,通过参数选项可以方便地看出,通过设置不同的选项值对网络带宽的影响,对于学习网络编程还是有一定的借鉴意义,至少 ...
- IPerf——网络测试工具介绍与源码解析(3)
[线程的生成] 生成线程时需要传入一个thread_Settings类型的变量,thread_Settings包含所有线程运行时需要的信息,命令行选项参数解析后所有得到的属性都存储到该类型的变量中 ...
- IPerf——网络测试工具介绍与源码解析(5)
本篇随笔讲述一下TCP协议下,双向测试模式和交易测试模式下客户端和服务端执行的情况: 双向测试模式: 官方文档的解释 Run Iperf in dual testing mode. This will ...
- Lua源码编译之CL编译器编译
通过使用VC下的CL编译器,可方便地编译Lua源码,而无需构造工程并设置各种选项: 以下以源码Lua5.3.1版本为例,将通过CL编译选项直接编译源码,为方便编译将采用批处理脚本,脚本放置在Lua解压 ...
- (转载)Linux如何编译安装源码包软件
一.什么是源码包软件: 顾名思义,源码包就是源代码的可见的软件包,基于Linux和BSD系统的软件最常见:在国内源可见的软件几乎绝迹:大多开源软件都是国外出品:在国内较为出名的开源软件有fcitx;l ...
- 用VC编译lua源码,生成lua语言的解释器和编译器
用VC编译lua源码,生成lua语言的解释器和编译器 1.去网址下载源码 http://www.lua.org/download.html 2.装一个VC++,我用的是VC6.0 3.接下来我们开始编 ...
- 用vs2013编译lua源码方法(一)
用vs2013编译lua源码方法 来源:网络 编辑:admin 1.下载lua源码:lua-5.2.3.tar.gz,解压 2.用vs2013建立一个win32工程: 1)下载后解压到一个目录下 ...
随机推荐
- 最小化安装centos7不能执行ifconfig命令的解决方法
操作环境 虚拟机:VirtualBox 5.0.4 for Windows 操作系统:CentOS-7-x86_64-Minimal-1503-01.iso 问题描述 登录系统之后,输入ifconfi ...
- Struts2漏洞利用实例
Struts2漏洞利用实例 如果存在struts2漏洞的站,administrator权限,但是无法加管理组,内网,shell访问500. 1.struts2 漏洞原理:struts2是一个框架,他在 ...
- cve-2015-5199漏洞分析
继续之前hackteam的flash漏洞,这次的对象为cve-2015-5199,遂做一下记录. 首先,在该exp中TryExpl函数为漏洞的触发函数,该函数也为本次调试的主要对象,函数的开始首先创建 ...
- C#对象序列化与反序列化
C#对象序列化与反序列化(转载自:http://www.cnblogs.com/LiZhiW/p/3622365.html) 1. 对象序列化的介绍.......................... ...
- BZOJ 2115 [Wc2011] Xor ——线性基
[题目分析] 显然,一个路径走过两边是不需要计算的,所以我么找到一条1-n的路径,然后向该异或值不断异或简单环即可. 但是找出所有简单环是相当复杂的,我们只需要dfs一遍,找出所有的环路即可,因为所有 ...
- Node.js-视图引擎【1】-Swig集成express的安装与配置
node.js视图引擎,选来选去发现Swig最符合我的胃口哈哈. 一.安装Swig视图引擎 npm install -g swig 二.在node.js代码中配置如下 var app = requir ...
- CodeForces462 A. Appleman and Easy Task
A. Appleman and Easy Task time limit per test 1 second memory limit per test 256 megabytes input sta ...
- SOAPUI测试步骤----DataGen TestStep
DataGen TestStep DataGen TestStep可以用来生成数据输入在你 TestCases ,例如数字或日期序列.随机选择等生成的数据作为属性,因此可以转移 和扩张就像任何其他属性 ...
- js简单放羊式单元测试-上
这是看了很多js单元测试资料后第一次自己做单元测试,因为资料都在介绍工具怎么使用,js单元测试的工具是在是太多了,各种风格,各种支持的,新的旧的,so 还是自己动手来体验一次 简单 是我给自己的需求很 ...
- 【JAVA】 UIMnager
Java'中的几种Look and Feel 1.Metal风格 (默认) String lookAndFeel = "javax.swing.plaf.metal.MetalLookAnd ...