A simple JVM implementation in Lua

栏目: IT技术 · 发布时间: 4年前

内容简介:Lukyt is a JVM made in Lua supporting Java 1.2. It's main advantage is to currently have a very small startup time and overhead.Features:The JVM itself can be used by any program and is independent from the command-line program.

Lukyt

Lukyt is a JVM made in Lua supporting Java 1.2. It's main advantage is to currently have a very small startup time and overhead.

Features:

  • While loops (technically should work)
  • For loops
  • Native support (integration from Lua side)
  • Standard library (will prob move to GNU Classpath)
    • System.out
    • Some system methods
    • Basic PrintStreams
    • Lua integration (from Java side)
      • OS class
  • Full int/short/byte/char math
  • Full float math
  • Full long/double math
  • Classes
  • Interfaces
  • Throwables
  • JIT

How to use?

The JVM itself can be used by any program and is independent from the command-line program.

The command line program allows to execute classes. You can print an help message with lua lukyt.lua --help

To launch the HelloWorld test, you can do:

lua lukyt.lua --classpath=test HelloWorld

which will give the same result as:

java -cp test HelloWorld

You'll notice Lukyt seemingly takes less time to execute the HelloWorld program. This is because all the overhead of the JVM are not required on a program that small. So on small programs, Lukyt's small overhead and interpreter are able to execute the program fastly.


以上所述就是小编给大家介绍的《A simple JVM implementation in Lua》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

算法之美

算法之美

左飞 / 电子工业出版社 / 2016-3 / 79.00元

《算法之美——隐匿在数据结构背后的原理(C++版)》围绕算法与数据结构这个话题,循序渐进、深入浅出地介绍了现代计算机技术中常用的40 余个经典算法,以及回溯法、分治法、贪婪法和动态规划等算法设计思想。在此过程中,《算法之美——隐匿在数据结构背后的原理(C++版)》也系统地讲解了链表(包括单向链表、单向循环链表和双向循环链表)、栈、队列(包括普通队列和优先级队列)、树(包括二叉树、哈夫曼树、堆、红黑......一起来看看 《算法之美》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器