From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 108662 invoked by alias); 22 Apr 2016 10:44:36 -0000 Mailing-List: contact infinity-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Post: List-Help: List-Subscribe: Sender: infinity-owner@sourceware.org Received: (qmail 108633 invoked by uid 89); 22 Apr 2016 10:44:34 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.99.1 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=pip, benson, Benson, md5sum X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on sourceware.org X-Spam-Level: X-HELO: mx1.redhat.com Date: Fri, 22 Apr 2016 10:44:00 -0000 From: Gary Benson To: infinity@sourceware.org Subject: I8C 0.0.2 released Message-ID: <20160422104421.GA27455@blade.nx> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Organization: Red Hat UK Ltd, 64 Baker Street, 4th Floor, W1U 7DF, UK. Registered in England and Wales (3798903) X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-SW-Source: 2016-q2/txt/msg00001.txt.bz2 I8C 0.0.2 released! Release 0.0.2 of I8C, the Infinity Note Compiler, is now available. This includes I8X, an interpreter for unit testing compiled notes. You can install I8C and I8X directly using pip: pip install -U --user i8c # installs in your home directory sudo pip install -U i8c # installs as root The source is available on PyPI: https://pypi.python.org/packages/source/i/i8c/i8c-0.0.2.tar.gz (md5sum 7c596e3989ea8b0030af7e99c27b2016) There is a web page for I8C at: https://sourceware.org/gdb/wiki/Infinity/ That page includes information about the Infinity mailing list, details on how to access I8C's source repository, and information about the Infinity system in general. I8C 0.0.2 brings new features and improvements, including: * Operators with more than one argument now require their arguments to be separated by commas. Existing code using the "name" and "cast" operators must be updated. * Externals are no longer pushed onto the stack at function entry. Existing code can be made to work by adding load statements at the start of the function, though it's usually possible to eliminate some stack manipulation code by rewriting functions with loads where they're needed. * Many operators now have an optional "folded load" first argument. A folded load is exactly equivalent to a load immediately before * The "deref" operator now accepts "offset(base)" syntax for its optional folded load argument. * The "name" operator now accepts slot names as its first argument. This can be used to add new names to already-named slots by name. * "extern" statements are now allowed outside of function definitions, where they will be inherited by all functions in the same file. * Older versions of unittest are detected and handled in setup.py; both the testsuite and I8X should now work out of the box with Python 2.6 and 3.1. * There is the start of an Emacs major mode in "contrib/i8-mode.el". * I8X now has a system which testcases may use to lay out test address spaces to check memory accesses using "deref" et al. For a complete list and more details on each item, please see the NEWS.rst file. -- Gary Benson