Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:84010 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 79262 invoked from network); 27 Feb 2015 15:12:47 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 27 Feb 2015 15:12:47 -0000 Authentication-Results: pb1.pair.com header.from=ircmaxell@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=ircmaxell@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.215.49 as permitted sender) X-PHP-List-Original-Sender: ircmaxell@gmail.com X-Host-Fingerprint: 209.85.215.49 mail-la0-f49.google.com Received: from [209.85.215.49] ([209.85.215.49:46344] helo=mail-la0-f49.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id C7/A3-32582-C6980F45 for ; Fri, 27 Feb 2015 10:12:47 -0500 Received: by lams18 with SMTP id s18so18148010lam.13 for ; Fri, 27 Feb 2015 07:12:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=xP6Qy82UKoo0ynjNVhxr7nUr7MO3maisGY3cVLrUKQQ=; b=zt2VFyEsFXrGqNbjeISA3moXDOiLma8kV8gTFqEqcuwWzqbJU2+PUnBe+i7v8DuWIP LpZ5FR/WY5cy4mDM2BhiN+crRtSrOKgNhz+TKx4pS9Eu19JzFIvYo5QVOq3IDxUCkGr4 xE90wrvI3IoeyHmHKmVhRlhbl/oKwVWKA6yFGWN3HdOA1oa3N1pncHreqFmD3kDzQnke 2TZDn4pZyHmc9LE4DkSDYKsMuHLTJIK7MxszDuDeDAH96vAZYwhda3zczsH+bbRBXJqF LchFSnlhyArdGnRfIfWyPmCCqPqb5fGKBrjHlpL+nzyF04rT16SwfyW0Y1y1A4LcNteH 0LEQ== MIME-Version: 1.0 X-Received: by 10.112.171.65 with SMTP id as1mr13055243lbc.45.1425049961103; Fri, 27 Feb 2015 07:12:41 -0800 (PST) Received: by 10.25.43.9 with HTTP; Fri, 27 Feb 2015 07:12:41 -0800 (PST) In-Reply-To: References: Date: Fri, 27 Feb 2015 10:12:41 -0500 Message-ID: To: Dmitry Stogov Cc: PHP Internals Content-Type: text/plain; charset=UTF-8 Subject: Re: Zend JIT Open Sourced From: ircmaxell@gmail.com (Anthony Ferrara) Dmitry and Zend, Thank you for sharing your code. I look forward to playing with it. Perhaps after 7 stabilizes (and ships) you could write up your thoughts around it? Why decisions were made and the findings that you have? Thanks again Anthony On Fri, Feb 27, 2015 at 7:10 AM, Dmitry Stogov wrote: > Hi, > > With the recent discussions of JIT/AOT and the good progress we made on > PHP-7, we decided to open up the JIT experiment we've been working on. > > https://github.com/zendtech/php-src/tree/zend-jit/ext/opcache/jit > > You may just clone or pull zend-jit branch and compile/configure according > to instruction. Don't merge it with master. It may work today but will stop > working tomrrow. > > Disclaimers: > > - It's an experiment, and is not in any way ready for anything. > In the future we may try to implement JIT quite different from this PoC. > > - I'm not planning to invest into it in the near future. (PHP-7 takes all my > time) > Consider it available for academic purposes only at this point. > > Enjoy! > > Thanks. Dmitry.