Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124721 X-Original-To: internals@lists.php.net Delivered-To: internals@lists.php.net Received: from php-smtp4.php.net (php-smtp4.php.net [45.112.84.5]) by qa.php.net (Postfix) with ESMTPS id E0F031A00B7 for ; Fri, 2 Aug 2024 17:19:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1722619284; bh=1Vyh4HiArW3Y2am2N0ISn4CjBEJfI960nPWastGuJSs=; h=Subject:From:To:Date:In-Reply-To:References:From; b=bwxNciflD7EW5zKD095MR1n+LEyhAB3s6yQ/ua8f/THx7E9ZJ5hMVvV3NFGgORnjI 8SqFe0PpceXGFPqyLgZA0hbTPS3905gZIgh1eESpOVo/X9nWp2D5hCOUaGtRUlMGgO aIWXuk9oPiocdVTkswvIu+w5lBYqfvoIXo+TPmoYAjBPMnWe5tnYMfYQMTNnGAYyVS d8ElXYaRizTi0LxXXORL1HhNDtOuGTsShLaJ/tF8om5cW18/wtImQ1vYa1bhxCXUO5 Vszr0xgeBtaFCe58/Zi5WQI0mVERGzF0597JJq1GCmtt+ijNxCxt62+968Cx1pGNkA ttvEMUolhx2XQ== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 41EFC1801DF for ; Fri, 2 Aug 2024 17:21:23 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_50,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,DMARC_PASS,SPF_HELO_PASS, SPF_PASS autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from ageofdream.com (ageofdream.com [45.33.21.21]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Fri, 2 Aug 2024 17:21:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ageofdream.com; s=ageofdream; t=1722619181; bh=1Vyh4HiArW3Y2am2N0ISn4CjBEJfI960nPWastGuJSs=; h=Subject:From:To:Date:In-Reply-To:References:From; b=trkDzSjOUWdzgmFecIc7cKHUDOSKui2433UUySAiw5IzDouF2WkXwBp21HP/4XWPT BDihordPc3wG0hIPswBzUaNuQKZJaJxZqjLhO8ESSJukYE/HRxpF3E2U4gOuGoAdEs nLRZXRKK6NUwG4xOjUxVQUaPd5gSSeDowQ/X5s2VMg9M0EhQopg+WMqlKKXn9bYUIx RIT6A4qvTtCSyHGIbNi36gb9jvHELAjF012veR0R92ivE7uUk2YCCexgHrqAUsl8dv HtBRYGlu8bWAREJQB+5Qa+16QAHT0hzrEZEYBSeP72dvYkJLeY0enPgIIHGZK9q2kF goaWostVXBY9g== Received: from [192.168.1.7] (unknown [72.255.193.122]) by ageofdream.com (Postfix) with ESMTPSA id 540DC2746E for ; Fri, 2 Aug 2024 13:19:41 -0400 (EDT) Message-ID: Subject: Re: [PHP-DEV] [Concept] Flip relative function lookup order (global, then local) To: internals@lists.php.net Date: Fri, 02 Aug 2024 13:19:41 -0400 In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.4-2 Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net x-ms-reactions: disallow MIME-Version: 1.0 From: lists@ageofdream.com (Nick Lockheart) On Fri, 2024-08-02 at 18:51 +0200, Ilija Tovilo wrote: > Hi everyone >=20 > As you probably know, a common performance optimization in PHP is to > prefix global function calls in namespaced code with a `\`. In > namespaced code, relative function calls (meaning, not prefixed with > `\`, not imported and not containing multiple namespace components) > will be looked up in the current namespace before falling back to the > global namespace. Prefixing the function name with `\` disambiguates > the called function by always picking the global function. >=20 > Not knowing exactly which function is called at compile time has a > couple of downsides to this: >=20 > * It leads to the aforementioned double-lookup. > * It prevents compile-time-evaluation of pure internal functions. > * It prevents compiling to specialized=C2=A0 opcodes for specialized > internal functions (e.g. strlen()). > * It requires branching for frameless functions [1]. > * It prevents an optimization that looks up internal functions by > offset rather than by name [2]. > * It prevents compiling to more specialized argument sending opcodes > because of unknown by-value/by-reference passing. >=20 > All of these are enabled by disambiguating the call. Unfortunately, > prefixing all calls with `\`, or adding a `use function` at the top > of > every file is annoying and noisy. We recently got a feature request > to > change how functions are looked up [3].=20 I think there should be some way to use globals first at compile time. I had suggested a per-file directive in a post to this list a while back. Something like: namespace foo; use global functions; class MyClass { // do stuff. } Where `use global functions` would be a special token that the compiler uses to skip the ns lookup and use dedicated opcodes when available.