Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124746 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 E18F51A00B7 for ; Sun, 4 Aug 2024 18:07:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1722794953; bh=2BrWunVbp5xZ26OqiMW/GDGOX6aABs5NlxEJ+IB7bqg=; h=Subject:From:To:Date:In-Reply-To:References:From; b=luGUDAOHhTpcWlSWRorLL/0B76neC6Y43k3YloKEU+6a6VMRpNLJfqzlkLiMDYC1L gMng4MRoh5bYu2QzfBu7VeYg7N8n8Bmf+7HXH/cQrI57VAVF3p7jM5dMLeS27EXXjX yFfeyOFUIJQUdwTDdo+Y8M+qnKHEm18mlFEvcZh533PCuf8f8GV8s30QtVZX7lGLLj XFvbOlCKzXxMUQpySswXJ8xtPJlogg9QfgMia66eqE76xjje5EpzvsE6V5dtm1s1Mi Rj9+USFjxSe98OImqo3rjHMpR/sUjAyxUzqkejojFJlNIEHb3lYjSDx5k86InWG+pJ +e7ls47ABsYEw== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 6EC321801EC for ; Sun, 4 Aug 2024 18:09:10 +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)) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Sun, 4 Aug 2024 18:09:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ageofdream.com; s=ageofdream; t=1722794847; bh=2BrWunVbp5xZ26OqiMW/GDGOX6aABs5NlxEJ+IB7bqg=; h=Subject:From:To:Date:In-Reply-To:References:From; b=hnEERXYyDbxNOWNhzy6hxPImxNzPsCN6VkuVLIDjv1mWumxzzQV5uYlOkMmxHxoSY QKG8c69fZvGKXXlEot9qT7/ifznon+xAh4WnGHrP35314yrWBM5+Mt9KsXAYom+4ZH F0q4JsHdQvU0e6NiuVFCM6Pbe2QB/ywrIcuQAR6z1xcGT32mRP39YBPW9IqxHz4z8Q w225Kw1CrghGgVACrkK/aXcDlhc3u5h7qaTm24GuE6A3qKd/ZUGNpiFmAi5W0EgA00 nvuqxNyUnte0HLuEH11w7YNi7VsRbhO2MOWVmRujNUtPBmBlFJ4TlXzO5Ptht71yTp 7QHWYf21/CE4A== Received: from [192.168.1.7] (unknown [72.255.193.122]) by ageofdream.com (Postfix) with ESMTPSA id BA90727985 for ; Sun, 4 Aug 2024 14:07:27 -0400 (EDT) Message-ID: <42fa20172d236a719a69c1ccf97e0c97cdce6976.camel@ageofdream.com> Subject: Re: [PHP-DEV] [Concept] Flip relative function lookup order (global, then local) To: internals@lists.php.net Date: Sun, 04 Aug 2024 14:07:27 -0400 In-Reply-To: References: <18D4B0E8-F71F-4FCD-87E1-E5E3C4CA5068@gmail.com> 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 Sun, 2024-08-04 at 19:53 +0200, Ilija Tovilo wrote: > Hi Claude >=20 > On Fri, Aug 2, 2024 at 9:02=E2=80=AFPM Claude Pache > wrote: > >=20 > > I propose the following alternative approach: > >=20 > > * establish a restricted whitelist of global functions for which > > the performance gain would be noteworthy if there wasn=E2=80=99t any ne= ed > > to look at local scope first; > >=20 > > * for those functions, disallow to define a function of same name > > in any namespace, e.g.: https://3v4l.org/RKnZt > >=20 > > That way, those functions could be optimised, but the current > > semantics of namespace lookup would remain unchanged. >=20 > That would be an improvement over the status quo. However, if you > look > at the bullet points in my original email, while some of the > optimizations apply only to some functions (CTE, custom opcodes and > frameless calls), others apply to all internal, global functions > (double-lookup, lookup by offset, specialized argument passing). > Hence, we may only get a fraction of the benefits by restricting the > optimization to a handful of functions. I also wonder if the impact > is > actually bigger, as then there's no workaround for redeclaring the > function, requiring much bigger refactoring. >=20 > Ilija Also, overriding any default function is one of the benefits of name spacing in the first place. If we say, "built-in functions can't be overridden, then you are basically saying that all built-in functions are global. But there is a valid use case for overriding built-ins. You may want to disable built-in functionality with a stub for unit testing. There should probably be a per-file way of setting the default either way without ns lookups. use global functions - or - use local functions - or - omit directive to use dynamic NS lookup for BC.