From owner-cvs-all@FreeBSD.ORG Thu Apr 29 01:30:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1028D16A4CE; Thu, 29 Apr 2004 01:30:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0708B43D2F; Thu, 29 Apr 2004 01:30:57 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3T8UuGe019166; Thu, 29 Apr 2004 01:30:56 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3T8UupF019165; Thu, 29 Apr 2004 01:30:56 -0700 (PDT) (envelope-from krion) Message-Id: <200404290830.i3T8UupF019165@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 29 Apr 2004 01:30:56 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang Makefile ports/lang/libjit Makefile distinfo pkg-descr pkg-plist ports/lang/libjit/files patch-aa patch-ab patch-ac patch-ad X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Apr 2004 08:30:57 -0000 krion 2004/04/29 01:30:56 PDT FreeBSD ports repository Modified files: lang Makefile Added files: lang/libjit Makefile distinfo pkg-descr pkg-plist lang/libjit/files patch-aa patch-ab patch-ac patch-ad Log: Add libjit 0.0.0f, 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. PR: ports/66038 Submitted by: michael johnson Revision Changes Path 1.400 +1 -0 ports/lang/Makefile 1.1 +21 -0 ports/lang/libjit/Makefile (new) 1.1 +2 -0 ports/lang/libjit/distinfo (new) 1.1 +12 -0 ports/lang/libjit/files/patch-aa (new) 1.1 +12 -0 ports/lang/libjit/files/patch-ab (new) 1.1 +12 -0 ports/lang/libjit/files/patch-ac (new) 1.1 +12 -0 ports/lang/libjit/files/patch-ad (new) 1.1 +12 -0 ports/lang/libjit/pkg-descr (new) 1.1 +23 -0 ports/lang/libjit/pkg-plist (new)