summaryrefslogtreecommitdiff
path: root/devel/libjit/DESCR
diff options
context:
space:
mode:
authorxtraeme <xtraeme@pkgsrc.org>2004-05-16 01:12:14 +0000
committerxtraeme <xtraeme@pkgsrc.org>2004-05-16 01:12:14 +0000
commit6551701f2364063fab745ac74b5c22820e3081ad (patch)
treee90a6f90c222ba7df0dd83bb2ebb1cb1aa8781cc /devel/libjit/DESCR
parentc79a8c7cdf9968102a45d38c1b465d2fa677fce3 (diff)
downloadpkgsrc-6551701f2364063fab745ac74b5c22820e3081ad.tar.gz
Initial import of libjit-0.0.2.
The libjit library implements Just-In-Time compilation functionality. Unlike other JIT's, this one is designed to be independent of any particular virtual machine bytecode format or language. The hope is that Free Software projects can get a leg-up on proprietry VM vendors by using this library rather than spending large amounts of time writing their own JIT from scratch. This JIT is also designed to be portable to multiple archictures. If you run libjit on a machine for which a native code generator is not yet available, then libjit will fall back to interpreting the code. This way, you don't need to write your own interpreter for your bytecode format if you don't want to.
Diffstat (limited to 'devel/libjit/DESCR')
-rw-r--r--devel/libjit/DESCR10
1 files changed, 10 insertions, 0 deletions
diff --git a/devel/libjit/DESCR b/devel/libjit/DESCR
new file mode 100644
index 00000000000..affef060662
--- /dev/null
+++ b/devel/libjit/DESCR
@@ -0,0 +1,10 @@
+The libjit library implements Just-In-Time compilation functionality. Unlike
+other JIT's, this one is designed to be independent of any particular virtual
+machine bytecode format or language. The hope is that Free Software projects
+can get a leg-up on proprietry VM vendors by using this library rather than
+spending large amounts of time writing their own JIT from scratch.
+
+This JIT is also designed to be portable to multiple archictures. If you run
+libjit on a machine for which a native code generator is not yet available,
+then libjit will fall back to interpreting the code. This way, you don't need
+to write your own interpreter for your bytecode format if you don't want to.