Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124235 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 C04881A009C for ; Fri, 5 Jul 2024 19:58:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1720209607; bh=z0V7U5D+qSXk/QdQ60hZF2zop2Y+SW4RvB0C72cHQSM=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=bxFcz7vvQjkA9PcPcQEUzoeS67p/lSK4a2gHUe8nxRAs8lk2Vuzvhm6gxROBXgGcd sYvlnZlz4nCtBACzpKYNK9hAl9KFBEaNrBkVz6Y2LH2PijikJSGtr5sZGv9XStxQIG pJyeMKfnSWIrutObogbgp0xz9fgxcquzb5cGuGphwl29YmClvqBWqf9GiFGIWp4pv0 24xKKAb+aRz2kQaF/UxGq33ZdritclA1m7AGyUxDrzSSJWSddCN81z9zftrkiRAI7z xDIbnPt/RMsCmRY0ycL8mNo2So3jiyNxVvI+Y/ieY9tJgcmeIhhJnLfTOEgqRIDAwO d8HvpNL0AlmFA== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 09EBA18005B for ; Fri, 5 Jul 2024 20:00:07 +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_NONE, SPF_PASS,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: Error (Cannot connect to unix socket '/var/run/clamav/clamd.ctl': connect: Connection refused) X-Envelope-From: Received: from chrono.xqk7.com (chrono.xqk7.com [176.9.45.72]) (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, 5 Jul 2024 20:00:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bastelstu.be; s=mail20171119; t=1720209522; bh=pgSkG3FDxm5XgQ3NvRbcutOe+6Ir7yZQk+/1wKAF99k=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type:from:to:cc:subject:message-id; b=lesi2cCcRLdJIfCNuMI+VN2xaXwh5S4Iya23yoyfaxlHchBHurUv10cSx86mIKuum Pe1QxK2YljdPzSfdDUznPK7jeQBUgbT7PZy7x3RzIFl6smSo06iotDwNX3xzP3VsHX X66UoAEPrLFJobNGMpZi1T4N9k+t5Ds4ut5CJOTzgzeE4nOB5T3y5I9LsbkDqgxpZr 0Fm3LaD+nKsq2NOn0Jsro11LJvDFvXMDg7LNWcJwS5dzRv5N3lLZU6x4Z2NwwOi7KZ EZAoFWeBJtD6MhcRbrTqyTyXose6PDL3PP93LVYZkhEUE6or2OzsLaNuCL+ecWoT9L +GJ47JHwtunqw== Message-ID: Date: Fri, 5 Jul 2024 21:58:41 +0200 Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net MIME-Version: 1.0 Subject: Re: [PHP-DEV] [RFC] Lazy Objects To: Arnaud Le Blanc Cc: Marco Pivetta , Nicolas Grekas , PHP Internals List References: Content-Language: en-US In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit From: tim@bastelstu.be (=?UTF-8?Q?Tim_D=C3=BCsterhus?=) Hi On 7/2/24 17:49, Arnaud Le Blanc wrote: >> I'm curious, how did the implementation look like? Is there a proof of >> concept commit or patch available somewhere? As the author of the first >> internal enum (Random\IntervalBoundary) I had the pleasure of finding >> out that there was no trivial way to efficiently match the various enum >> cases. See the PR review here: >> https://github.com/php/php-src/pull/9679#discussion_r1045943444 > > I've benchmarked this implementation: > https://github.com/arnaud-lb/php-src/commit/f5f87d8a7abeba2f406407606949e5c6e512baab. > Using a backed enum to have a more direct way to map enum cases to > integers didn't make a significant difference. > Here is the benchmark: > https://gist.github.com/arnaud-lb/76f77b5d7409a9e4deea995c179c6e96. > Caching the options array between calls had a less dramatic slowdown > (around 10%): https://gist.github.com/arnaud-lb/87e7f58cc11463dd3aa098218eb95a90. Your Gists don't seem to include the actual numbers, so the second link is not particularly useful. However you said that using a backed enum does not improve the situation, so there probably really is not much that can be done. For completeness I want to note, though: You might be able to improve the type checking performance by directly checking the CE instead of going through `instanceof_function()`, because you know that inheritance is not a thing for enums. Not sure if this makes much of a difference, given the fact that `instanceof_function()` already does this and is force-inlined, but it might remove the branch with the call to `instanceof_function_slow()`. Best regards Tim Düsterhus