Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124736 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 03B1A1A00B7 for ; Sun, 4 Aug 2024 13:09:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1722777077; bh=XKfXtsqcRKjJ/OTKT0BpByotYxnnZTmHgrziIuvprCU=; h=Subject:From:To:Date:From; b=Q8G0wqpXT5s074xpC5bbL735RWtio07OT0U6R80Dya2jldU8143Hb7/OxNgACUie5 f8QbusJbIVLHwkdzn5uYpZ6vBfI/MhGfApldyUAxA+/hP11Lu4qnrA0zKiIj+Fgxsn VbCA3q/B5Ku9UAlA0y6eP+ljluuQWt8gCouSO1+ZJUCB0Cg4/zmzz6VrEiM3QgwekJ ewn/tVyh1aLPuIITer3fGIZHYTl1i8ISKH6uElVyPObOW59oX2eez5kHL3MQ9mtDM/ A9kL8ooBJaUjsuzX22+r5cAEcbTiD1iJa1s8zow3LA8XEPoD/KJwSc5mjaweYqJLGZ wwdvw3GrsxVzA== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 9C13218004A for ; Sun, 4 Aug 2024 13:11:16 +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 13:11:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ageofdream.com; s=ageofdream; t=1722776974; bh=XKfXtsqcRKjJ/OTKT0BpByotYxnnZTmHgrziIuvprCU=; h=Subject:From:To:Date:From; b=Mh5PwGsmJpQ4RNtkF/W+BmuRm5l6iDyafGbLtQQUY7NDMROL275YNkIt0jIf3kJAA 494mxNly9pspj5ODFeeYF1P1G+c7A6zK+/D7L0brK0fTytOzXHOJ1t4j9iw6sR0QcB xp9rAQHUbaloD6C2uQhjIJ9ZLdTQUKZSkLpPE0SPGCh2XshC/+PAEZLnYcVWXz2vQQ uVexINosGVH3fTg8Rr7qIDZo3VJxC/gYVu3BkMtZM4T6VpiM3RNh0Hl4ohv6x+2Ksf iMggrPohaJEsfU+jBze2Bkz1eNYMZnikrQg3F2bZMoMeC73iWRIIBxgTw43BcEpIZv ylAuaCriJqwzA== Received: from [192.168.1.7] (unknown [72.255.193.122]) by ageofdream.com (Postfix) with ESMTPSA id B4D2B2746E for ; Sun, 4 Aug 2024 09:09:34 -0400 (EDT) Message-ID: Subject: [PHP-DEV] [RFC] Add Directive to Make All Namespaced Function Calls Global To: internals@lists.php.net Date: Sun, 04 Aug 2024 09:09:34 -0400 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.