Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:93939 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 17325 invoked from network); 13 Jun 2016 14:32:43 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 13 Jun 2016 14:32:43 -0000 Authentication-Results: pb1.pair.com header.from=pthreads@pthreads.org; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=pthreads@pthreads.org; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain pthreads.org from 209.85.213.46 cause and error) X-PHP-List-Original-Sender: pthreads@pthreads.org X-Host-Fingerprint: 209.85.213.46 mail-vk0-f46.google.com Received: from [209.85.213.46] ([209.85.213.46:36083] helo=mail-vk0-f46.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 10/CD-12403-904CE575 for ; Mon, 13 Jun 2016 10:32:42 -0400 Received: by mail-vk0-f46.google.com with SMTP id u64so69738923vkf.3 for ; Mon, 13 Jun 2016 07:32:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pthreads-org.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc; bh=gRJbF+ys3qXujFd0Gx90H/1UqVLC2Xi9bH9Oi8wOE4I=; b=ZUp+yCU3v1EPApPG8DB6yG64Jm/4kdeGzsKKtq8dslbra+Q2X2Yc+7A1deCc9yfnYh tceiYIjE1fFYCaAlcejJ3rW0lD+1sWP5fLhT4M2se2u7lPmahSKuT/JlaFL1I+kDELH9 J73jpslBcGXPmfuUtvZpI56rvD8S0eTdHkq+ngT03bAEH4ioTXQ0Y/eToHfYoHXGahvL +dxsXd4amZ6VtDVcLFauOemyuaP43qKLk2c+zbaUokfK97s9l591lRf3X30vXld8OJbX DuKqWRDsok4W3zeW/b9tr3E/5XXirC8tlXwIBr5mi/uwH9kPK/Zzr1p+GYiz+yThZy0P zOBw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc; bh=gRJbF+ys3qXujFd0Gx90H/1UqVLC2Xi9bH9Oi8wOE4I=; b=CO1KNaSpWKkjyT5vwxSI4RDYb7aBorUCgvqouKUdj2XVje6WahOdvdJ9Xrb58F5NLN PGnHnlmH12Yk+3yFeMadzI3f9KiG8bGEy6MZyuF66Gl6zoIwryiNpExuH2OnnlnXALzb PQZBK4ERrXDSMrAUCAex14gNBCNKHZblHcYZfgtF1OkaA/F/LjhUDdMC/8F15CUNTNEg f+1Fn5fcdO+wgZn/oisdgwdAuSnUN1XnUllxcidPjMLI+3Um7pKyeNELKgL/HI8rV0KW OGtvsjVUXPHP2yNYHyfbTdkn1pknds03mDmCwS9MAOCv6GkxEGe/LiOj4RoAV4Wm2Eh1 A9pQ== X-Gm-Message-State: ALyK8tKlW8ywxbxIFnj7ABS20xFeHwi2abkgyda2uFzoO8+GqShPK4xt8MDcB5oh3d1preODRCCaEWtBwjoFng== MIME-Version: 1.0 X-Received: by 10.31.94.135 with SMTP id s129mr5670851vkb.148.1465828358959; Mon, 13 Jun 2016 07:32:38 -0700 (PDT) Received: by 10.103.47.199 with HTTP; Mon, 13 Jun 2016 07:32:38 -0700 (PDT) X-Originating-IP: [109.157.60.99] In-Reply-To: References: <6c03dafd-093a-0087-6312-96fede93c5f0@gmail.com> <020a01d1c501$3d3d9420$b7b8bc60$@php.net> Date: Mon, 13 Jun 2016 15:32:38 +0100 Message-ID: To: Rowan Collins Cc: Anatol Belski , Ferenc Kovacs , Joe Watkins , Davey Shafik , PHP Internals Content-Type: multipart/alternative; boundary=001a114e52f2a34ab4053529c2b9 Subject: Re: [PHP-DEV] Is the "No BC Breaks in Minor Releases" policy enforceable? From: pthreads@pthreads.org (Joe Watkins) --001a114e52f2a34ab4053529c2b9 Content-Type: text/plain; charset=UTF-8 Afternoon internals, > Is there a roadmap somewhere that describes this, or any background discussion of doing this within the 7.x series, rather than planning for 8.0? We have no such sensible thing as a plan :) The reason for the existence of PHP 7 (ng) is efficiency of the kind I described, this is surely well understood by everyone. What may not be well understood is that the job is nothing like complete. Vigilant observers will have noticed that Dmitry does indeed have a JIT for NG, which is very useful research, but it sucks so hard that we can't deploy it. The reason for this is that, in part, generated code doesn't look so much different to code executed by the VM, though details differ considerably; It needs to do at least the same job, it may need to do more (because of guarding and other boring things). Without knowing anything about generating instructions anyone can tell that a complicated Zend, with all kinds of edge cases and inconsistencies (specifically regarding ZE) is going to necessitate the generation of complicated code, to accommodate those edge cases and inconsistencies. A lot of effort is being put in to finding and resolving inconsistencies in the engine such as this, a lot of effort has been expended and will be expended on 7 in the pursuit of efficiency. A lot of this is of no consequence to BC. You can count the number of people putting in the majority of this effort on your fingers ... erecting a road block in front of them in the name of unobtainable BC is harmful to the apparent goals of the project at this time. The kinds of changes that must be delayed until 8.0 are surely going to be proposed, and we will surely delay them by consensus. > This is my main concern, also I will update the RFC, if Dmitry doesn't, when voting is closed. I will ensure the change is properly documented in the manual also. > Ideally, this could lead to a revised policy I think our policy has always been to consider each proposal on a case-by-case basis. That's all I have done, and all I am suggesting others do. I know it's very strange to hear someone talking about "goals" ... We can waste a bunch of time trying to define them, voting on them, and so on ... or, we can look at what is going on, and what has gone on, and come to sensible conclusions. Cheers Joe On Mon, Jun 13, 2016 at 1:28 PM, Rowan Collins wrote: > On 13/06/2016 10:35, Joe Watkins wrote: > >> Backward compatibility is important. Also important is the long term >> goals for PHP, or at least for this major version of PHP: The goal is to >> make Zend so efficient that generating machine code from user code >> becomes a deployable solution. >> > > OK, that's an interesting bit of background, which might explain why > Dmitry seemed in a hurry to get this in place. I was aware of the > discussion of performance, but not the background "long-term goal". Is > there a roadmap somewhere that describes this, or any background discussion > of doing this within the 7.x series, rather than planning for 8.0? > > > I can be wrong, might be ... it doesn't really matter, the majority >> has spoken. It is only my concern that the change is documented properly. >> > > This is my main concern, also. The RFC is very brief, and the discussion > period was artificially shortened, and I think the implications to the BC > policy make this RFC more important than Dmitry assumed. > > Having a documented reason why a BC break was accepted in this case will > help to set expectations in the future. Ideally, this could lead to a > revised policy with BC guidelines that actually match the current reality > of the project, which the existing RFC does not seem to do. > > > Regards, > -- > Rowan Collins > [IMSoP] > --001a114e52f2a34ab4053529c2b9--