Newsgroups: php.internals,php.internals.win Path: news.php.net Xref: news.php.net php.internals:89305 php.internals.win:1129 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 98026 invoked from network); 23 Nov 2015 05:08:06 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 23 Nov 2015 05:08:06 -0000 Authentication-Results: pb1.pair.com smtp.mail=php_lists@realplain.com; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=php_lists@realplain.com; sender-id=unknown Received-SPF: error (pb1.pair.com: domain realplain.com from 68.114.190.28 cause and error) X-PHP-List-Original-Sender: php_lists@realplain.com X-Host-Fingerprint: 68.114.190.28 mtaout003-public.msg.strl.va.charter.net Received: from [68.114.190.28] ([68.114.190.28:20250] helo=mtaout003-public.msg.strl.va.charter.net) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 8F/E0-24164-33F92565 for ; Mon, 23 Nov 2015 00:08:04 -0500 Received: from impout004 ([68.114.189.19]) by mtaout003.msg.strl.va.charter.net (InterMail vM.9.00.021.00 201-2473-182) with ESMTP id <20151123050800.KAQB32095.mtaout003.msg.strl.va.charter.net@impout004>; Sun, 22 Nov 2015 23:08:00 -0600 Received: from pc1 ([97.87.188.16]) by impout004 with charter.net id kt801r0080Mfu3D01t80wU; Sun, 22 Nov 2015 23:08:00 -0600 X-Authority-Analysis: v=2.1 cv=VONTnr/X c=1 sm=1 tr=0 a=Ay788ph35uAhBIV2K373vw==:117 a=Ay788ph35uAhBIV2K373vw==:17 a=hOpmn2quAAAA:8 a=BCPeO_TGAAAA:8 a=N659UExz7-8A:10 a=9OHF6j-5Ux4CM7_eLn4A:9 a=pILNOxqGKmIA:10 Message-ID: To: "Dmitry Stogov" Cc: "PHP Internals" , , "Anatol Belski" , "Pierre Joye" References: <9B23C6783EE5480CB15EAC35B9E420EA@pc1> Date: Sun, 22 Nov 2015 23:08:00 -0600 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="Windows-1252"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.5931 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Subject: Re: [PHP-DEV] Re: Windows (Visual Studio) compiler stuff From: php_lists@realplain.com ("Matt Wilmas") Hi Dmitry, ----- Original Message ----- From: "Dmitry Stogov" Sent: Monday, November 16, 2015 > Hi Matt, > > On Mon, Nov 16, 2015 at 1:30 AM, Matt Wilmas > wrote: > >> Hi Dmitry, Anatol, Pierre (etc.), and all, >> >> I'm back now, I think, after a much longer (unintentional) break than I >> expected. Be coming very soon with what I was doing in the summer (param >> parsing stuff) -- *now* it works with MSVC too, barring any fragility, as >> I >> accidentally discovered last month... >> >> I've been "discovering" a lot with the wacky Visual Studio compiler! :-) >> This message is about the 2 I found today. >> >> The first simple thing was probably just overlooked, but noticed it while >> looking up __declspec. zend_never_inline has always been empty (I guess) >> for MSVC, but there's actually a __declspec(noinline) that can be used >> (and >> works as expected). A simple and obvious change to bring it in line with >> the other compilers? >> > > Please, provide a patch for zend_portability.h Really? :-) And that's easier than just adding __declspec(noinline) to line 287? I can add it myself soon, if it's acceptable. And yes, I verified that it does have an effect, and prevents current inlining, as you intended. (12 KB smaller binary.) >> The second "issue" is with the zend_always_inline functions, I noticed >> this summer. Did anyone else know that MSVC leaves a *copy* of those >> functions in the output files (DLLs)? What's the point of that? When >> they've been inlined, and not referenced otherwise, there should be no >> reason to emit code for a standalone function! >> >> I remembered after seeing that behavior that a bit of my own >> __forceinline'd code did NOT have extra function code, but forgot to >> investigate until today. What's different about my function definition? >> No "static" specifier! So that's the key. :-) >> >> But... non-static would create duplicate symbols, I thought. But no, it >> works! With just __forceinline, there's no errors. :^) >> >> Can something be done about this? It would cut the binary size down a >> bit. A zend_static macro to be used with zend_always_inline...? >> > > zend_always inline should be always used with static keyword. Right, that would be the standard thinking, but it makes MSVC not remove the unreferenced standalone function like GCC/Clang... Adds almost 100 KB to php7.dll. But nevermind... Thanks to Anatol, it seems another compiler flag WILL actually strip those functions, and then some! :-) > Thanks. Dmitry. - Matt