Jump to content

GNU lightning

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 2003:51:4a86:307b:213:e8ff:feed:36fb (talk) at 13:15, 17 May 2014. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
GNU lightning
Developer(s)GNU Project
Initial releaseJanuary 19, 2001 (2001-01-19)[1]
Repository
Operating systemCross-platform
PlatformGNU
TypeJust-in-time compilation
LicenseGNU General Public License, GNU Lesser General Public License
WebsiteOfficial website

GNU lightning is a free software library for generating assembly language code at run-time. Newly released version 2.0[2] supports backends for SPARC (32-bit), x86 (32- and 64-bit), MIPS, ARM, ia64, HPPA and PowerPC (32-bit).

Advantages Over Other Libraries

The features GNU lightning provides make it useful for Just-in-Time Compilation. In comparison to libraries such as LLVM or libJIT, GNU lightning provides only a low-level interface for assembling from a standardized RISC assembly language—loosely based on the SPARC and MIPS architectures[3]—into the target architecture's machine language.

Disadvantages

It does not provide register allocation, data-flow or control-flow analysis, or optimization.

Instruction set

GNU lightning's instruction set is based loosely on existing RISC architectures.

Types

When required instructions handle data with these 9 types:

Type C Equivalent
c signed char
uc unsigned char
s short
us unsigned short
i int
ui unsigned int
l long
f float
d double

Projects that use GNU lightning

Racket[4], GNU Smalltalk[5], and CLISP[6] make use of GNU lightning for just-in-time compilation. GNU lightning was first developed as a tool to be used in GNU Smalltalk’s dynamic translator from bytecodes to native code.[7]

References

  1. ^ "ChangeLog". GNU Project. Retrieved 2009-02-22.
  2. ^ Release announcement. 2013-08-23
  3. ^ "Using and porting GNU lightning". Retrieved 2009-02-22.
  4. ^ "Racket source code repository". Retrieved 2014-05-17.
  5. ^ "GNU Smalltalk project page". Retrieved 2014-05-17.
  6. ^ "Implementation notes for GNU CLISP". Retrieved 2009-02-23.
  7. ^ "GNU lightning user manual, acknowledgements". Retrieved 2014-05-17.