From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <848a28286dc1c5533b9567456e38d65c@bellsouth.net> To: weigelt@metux.de, 9fans@9fans.net Date: Wed, 17 Feb 2010 09:25:21 -0600 From: blstuart@bellsouth.net In-Reply-To: <20100217145853.GD10816@nibiru.local> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] Binary format Topicbox-Message-UUID: d4e7b8fc-ead5-11e9-9d60-3106f5b1d025 > * blstuart@bellsouth.net wrote: > >> If you're interested in how to do dynamic loading in a clean >> and elegant way, take a look at Inferno. > > hmm, isnt this an interpreter-based system ? The application language is Limbo which is compiled to Dis machine code. Dis is run in a virtual machine in the kernel. If you want, you can turn on a JIT compiler which translates the Dis code to native code on the fly, but I haven't usually found it to be all that much benefit. BLS