Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124733 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 3995F1A00B7 for ; Sun, 4 Aug 2024 11:42:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1722771842; bh=XKfXtsqcRKjJ/OTKT0BpByotYxnnZTmHgrziIuvprCU=; h=Subject:From:To:Date:In-Reply-To:References:From; b=eK8x+eGLau1RGic/pSKSoeHf7WcLGBDZg0bxkG6nK7jqndneBx4tTkNkdJQtFHC9g +P/lEUXYf4OuXWFZaHsUTUEvmYLbU3O59WY61HSREviKhAVscDBB1k3P5jNmBJLMOn j1MarenLQn13m8v0EDj/WF32sBwlUAuASIZUOJapTjy7MLw/e/JdicIvEFVrTrMJvh UqPA0p7w0XhbBcTT1BuQDVp1uzdSnEPW5SBpAxHeQFLmZC6gXsiuwb7azyd7AMkfox mIjei6mtcNcSBUZt8PFULwhHisURaJ9kaWsQjrVDB2rx9/zqOsJvgJFDYxLLteqpIQ PdPZsb/Eu3uVQ== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id BF5D218005C for ; Sun, 4 Aug 2024 11:44:01 +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 ; Sun, 4 Aug 2024 11:44:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ageofdream.com; s=ageofdream; t=1722771740; bh=XKfXtsqcRKjJ/OTKT0BpByotYxnnZTmHgrziIuvprCU=; h=Subject:From:To:Date:In-Reply-To:References:From; b=kmBYbCy2oQ3AjS6ACupvtiBI4dy1fR0EatfZ6FX6lHt3nM0/kbWll90EzqF6B4sgn oEJUC1cap+NxfOVDTPLgSzPx9xn9FZaOub7FuY8SzG18cJF9JlGMD7WHXVYGRSKHOv rEBcf1RlzB/+Ehb8+yk9ZqrKYvpVWkiV6dRaJt8AHnVaoJfJ9NNB0x7PnfeKpI1G1D wR8GSR5EdFJ4PqgPt5mFlBe2KWMBReQi2g6Ce75Nzvk3CO0v3Xoso+aUOhiYveKvOo zdGhHm0msbdBnRJQ9obOn6nwI1gl4am6RGIpEOYrHH0Seo4zj2JnxLDXSb1lEFHxSd JNWfeT2VNXtcw== Received: from [192.168.1.7] (unknown [72.255.193.122]) by ageofdream.com (Postfix) with ESMTPSA id ECABE27985 for ; Sun, 4 Aug 2024 07:42:19 -0400 (EDT) Message-ID: <0e1a21ddef3c7da17a3539b92d5f442763f4b1f8.camel@ageofdream.com> Subject: [PHP-DEV] [RFC] Add Directive to Make All Namespaced Function Calls Global To: internals@lists.php.net Date: Sun, 04 Aug 2024 07:42:19 -0400 In-Reply-To: References: <1a88918e-e808-d778-45e1-53797660e093@php.net> <3563cf9b-8eab-4c82-b525-a5d2f9a767bb@varteg.nz> <38920A4B-790D-48C7-B2F6-C49D3F506232@rwec.co.uk> <0824789d-0e36-4628-85c1-4b8d9b7f86af@varteg.nz> <2244a37f-8c51-448d-8a56-329ff32e6470@bastelstu.be> 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) Good morning all: When calling functions from the *global* namespace, the PHP parser creates opcodes that use those functions directly. When those functions are certain built-in functions, the parser can use special opcodes that are optimized for those function calls. When calling functions from *within* a namespace, the parser does not know at compile time if the function is defined in the current namespace or if the global function will be used. Because unqualified function calls are ambiguous, the parser adds an NS Lookup opcode which performs a runtime check for the function name in the current namespace, and then falls back to the global namespace if the function is not defined locally. This also prevents the parser from using dedicated opcodes for built-in functions. This incurs a performance penalty. In the past, RFCs that aimed to address this issue got too hung up on a syntax discussion, rather than a simple =E2=80=9Cshould we solve this=E2=80= =9D question proposed to the community. I would like to discuss and then vote on this proposal as a feature, without getting into any specifics of syntax. I propose that we vote yes/no on if there should be some way, whatever that way ends up being, to tell the parser to always treat unqualified function names as global. I think it's important to get a =E2=80=9Cclean vote=E2=80=9D on this issue,= to separate out if past objections were objections to the concept, or if only the syntax proposed in past discussions was disfavored. To that end, I have created the following RFC: https://wiki.php.net/rfc/global_function_parser_directive I am asking that we discuss and vote on the following question: =E2=80=9CShould there be some way for developers to signal to the parser at compile time that all unqualified function names found in a namespace context are global, without a namespace lookup?=E2=80=9D Yes: We should do this, let's discuss syntax possibilities. No: This should not be a feature at all. Thank you for your consideration.