Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:84026 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 15996 invoked from network); 27 Feb 2015 16:30:49 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 27 Feb 2015 16:30:49 -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.54 as permitted sender) X-PHP-List-Original-Sender: ircmaxell@gmail.com X-Host-Fingerprint: 209.85.215.54 mail-la0-f54.google.com Received: from [209.85.215.54] ([209.85.215.54:35799] helo=mail-la0-f54.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 7E/8B-32582-7BB90F45 for ; Fri, 27 Feb 2015 11:30:48 -0500 Received: by labgm9 with SMTP id gm9so18683084lab.2 for ; Fri, 27 Feb 2015 08:30:45 -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=DjpQxX/uvMNLldvTF70z48DxDP8s+MhjlYiTImQdx+k=; b=HoKmPkCyvevxVaEyHmt1RiW5uGkI3O6iwoxW9f/s7v0FlfMlwC6Fxg9PJD5QiC2uL8 jDSxF26Ejyx2hcnxDmVnkVXdGoB8VcfW3vopyMV4fyD2UE7alOdSHGcO2nXeH4CtvQln yZJMiKAFAhtmzPXaKT7QbHyf5d76XenvhFWpAOuX6VKLg/rNQj9xcAQbzxF5D8eBQosl +hWtgcZtL0Pz/CdRkI+0g/w8zAkPQbSOJhRIPjzhJKNOHgRfwFJQxuaOQXTMtNQ6iYdX xmfZyCNge68BeeFSeLunvob8szcmt2eE51TXDFuDo9P6EHPyn2NaWKd7x2OTDIY8o88R MLPw== MIME-Version: 1.0 X-Received: by 10.152.88.49 with SMTP id bd17mr13305831lab.43.1425054644983; Fri, 27 Feb 2015 08:30:44 -0800 (PST) Received: by 10.25.43.9 with HTTP; Fri, 27 Feb 2015 08:30:44 -0800 (PST) In-Reply-To: References: <54F08FF3.3040404@seld.be> Date: Fri, 27 Feb 2015 11:30:44 -0500 Message-ID: To: Dmitry Stogov Cc: Jordi Boggiano , PHP Internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Re: Zend JIT Open Sourced From: ircmaxell@gmail.com (Anthony Ferrara) Dmitry, > It's not a single request cycle. JIT integrated into opcache, it compiles > php script(s) of first access and stores code in shared memory. > On following requests precompiled code is executed directly from shared > memory. > > - The first request may be extremely slow (few minutes) That sounds more along the lines of AOT like I did with Recki rather than a true JIT (which compiles when a function is called). Judging from the jit_init() function, it appears like you're compiling the entire codebase ahead of time. Is that correct? Anthony