Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:28038 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 79231 invoked by uid 1010); 15 Feb 2007 18:45:51 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 79216 invoked from network); 15 Feb 2007 18:45:51 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 15 Feb 2007 18:45:51 -0000 Authentication-Results: pb1.pair.com smtp.mail=andrei@gravitonic.com; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=andrei@gravitonic.com; sender-id=unknown Received-SPF: error (pb1.pair.com: domain gravitonic.com from 204.11.219.139 cause and error) X-PHP-List-Original-Sender: andrei@gravitonic.com X-Host-Fingerprint: 204.11.219.139 mail.lerdorf.com Linux 2.5 (sometimes 2.4) (4) Received: from [204.11.219.139] ([204.11.219.139:45666] helo=lerdorf.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 57/30-06535-D5AA4D54 for ; Thu, 15 Feb 2007 13:45:51 -0500 Received: from [66.228.175.145] (borndress-lm.corp.yahoo.com [66.228.175.145]) (authenticated bits=0) by lerdorf.com (8.13.8/8.13.8/Debian-3) with ESMTP id l1FIjbPU003048; Thu, 15 Feb 2007 10:45:37 -0800 In-Reply-To: <000001c75030$b1825730$6e02a8c0@thinkpad> References: <000001c75030$b1825730$6e02a8c0@thinkpad> Mime-Version: 1.0 (Apple Message framework v624) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-ID: <23c1f670a2597090e968c6fe0f056ba7@gravitonic.com> Content-Transfer-Encoding: 7bit Cc: "'Andi Gutmans'" , , "'Rasmus Lerdorf'" , "'Sara Golemon'" , Date: Thu, 15 Feb 2007 10:46:51 -0800 To: "Dmitry Stogov" X-Mailer: Apple Mail (2.624) X-Virus-Scanned: ClamAV 0.90rc3/2576/Thu Feb 15 09:05:25 2007 on colo X-Virus-Status: Clean Subject: Re: [PHP-DEV] RE: runtime JIT From: andrei@gravitonic.com (Andrei Zmievski) Just to be clear: does this implement runtime JIT per-element or for the whole array at once? -Andrei On Feb 14, 2007, at 4:07 AM, Dmitry Stogov wrote: > The patch is attached. > > To use runtime JIT you will need to change zend_register_auto_global() > to > zend_register_auto_global_ex() with "1" as the last argument. > Compile-time > JIT is still supported too. > > Note that the significant part of the patch is reverting of > "autoglobals CV" > patch, that is reimplemented using CG(auto_globals_cache). > > Any objections?