From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Noah Lavine Newsgroups: gmane.lisp.guile.devel Subject: Re: Storing JIT Code Date: Thu, 19 Aug 2010 08:40:33 -0400 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: dough.gmane.org 1282221916 9966 80.91.229.12 (19 Aug 2010 12:45:16 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 19 Aug 2010 12:45:16 +0000 (UTC) Cc: guile-devel@gnu.org To: Andy Wingo Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Aug 19 14:45:15 2010 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Om4UZ-0006tb-39 for guile-devel@m.gmane.org; Thu, 19 Aug 2010 14:45:11 +0200 Original-Received: from localhost ([127.0.0.1]:40174 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Om4UX-0006eo-Vz for guile-devel@m.gmane.org; Thu, 19 Aug 2010 08:45:10 -0400 Original-Received: from [140.186.70.92] (port=49067 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Om4Q9-0003EB-0s for guile-devel@gnu.org; Thu, 19 Aug 2010 08:40:38 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Om4Q7-0002ps-Na for guile-devel@gnu.org; Thu, 19 Aug 2010 08:40:36 -0400 Original-Received: from mail-ey0-f169.google.com ([209.85.215.169]:52993) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Om4Q7-0002p2-HR for guile-devel@gnu.org; Thu, 19 Aug 2010 08:40:35 -0400 Original-Received: by eyg7 with SMTP id 7so1264093eyg.0 for ; Thu, 19 Aug 2010 05:40:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type; bh=WLVur5yZtmzYTuqS2q8isDMlRzQoOY6E7Gkofy5B1Lk=; b=UZDi1WazSmdiZFFY+KUtz6wRM/7GSfUufiMQR3QNeXrKhSl3xPtbx4VCPh9IKCxFgS VOaSyFevae2DJunOTDAKXapZ1gce8uScLRJU7UqXZd8XwkrbcK1QB2ot8yXK5Z2KR6yi mCw2XFc0H6wYcG4unfTLhltQQw2D2m5UPjhBA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=VgECyMVTYJUAvlCYuo4NTpDC9h1oPD5XFD21y+vxth0pqTTBs8YJteSEVQ92WlN45H v1XPFqaLeHlNDt02Oc7IVRBZRWdJG+uaRxmvORqOzd8mROVzO5n8RQ+RuOd2L6X4fpjP uTQFzq6M8KeQ7XoBUf6z9zA3sR2iBEfctXrLU= Original-Received: by 10.216.54.9 with SMTP id h9mr629658wec.34.1282221633520; Thu, 19 Aug 2010 05:40:33 -0700 (PDT) Original-Received: by 10.216.188.74 with HTTP; Thu, 19 Aug 2010 05:40:33 -0700 (PDT) In-Reply-To: X-Google-Sender-Auth: girqeZAdwp5Z7efveQtQ_kx3Lj4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:10776 Archived-At: > Very interesting patches. They are a good start. Have you gone further > with them? Thanks! I'm trying to, but it's not working yet. (Currently it'll print "Jit code called!" a couple times and then segfault.) > We should be able to coalesce the "fd" field of objcode with "parent", > as they are mutually exclusive, so perhaps we can have a fourth word in > objcode for jitted code. Oh, that's great! Noah