From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ot1-x331.google.com (mail-ot1-x331.google.com [IPv6:2607:f8b0:4864:20::331]) by sourceware.org (Postfix) with ESMTPS id 8516D385483F for ; Thu, 2 Feb 2023 18:12:31 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 8516D385483F Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=linaro.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=linaro.org Received: by mail-ot1-x331.google.com with SMTP id k91-20020a9d19e4000000b0068bca1294aaso690339otk.8 for ; Thu, 02 Feb 2023 10:12:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:to:from:from:to:cc:subject:date:message-id :reply-to; bh=NEs74f/T44NZOxbSYnquYKRGf5z3hN+b5jVwTA7327U=; b=wezYi74+dsDN7uQ8ZSFi9Fj6IhEn2si99H8oEjBXwMSw42tvpzpMYdy7CseWzUMAmc gFf2niq1Cfez2sOJ683TmFbacOkW4SqiKnEhIRcxYTsAiTisOfgpfIuXc4TyDMM9BsrG +2Q4T9cQ6IGBfExOw/UwYZ6l/O5f2gai+pFUPYFAwPRuUGEcKsqGyQ53AExYm5qcPZH1 8oMZHp+d88KZ4MUyPCFMZx6/jiXdsiHgetRY4L0dQ3e5nC6JdRCW9vByeEgCE3hjyFgZ bo82COvAEkzDHAfOAXNHn9Us9vWFM6HeE507RzHWZPpqGDma7dayZViCa83xW/RDXXqy Ajjg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=NEs74f/T44NZOxbSYnquYKRGf5z3hN+b5jVwTA7327U=; b=yreE0X2QJZSot5mzTWBxPcH+ObnFgqw6DDonWHR+Y4dzwYEiKCyLpKGwqpqFxAMsx1 6u4ltOriVBvM9ngK37sS5TEnrduJUwRCN24tYgdTm7eB1yXctz6rNyhdOAdWhqBgbPpe pSUi6RAfe6ViO3VELcL5q5YLBzk6mfX63fa8f0TDtzQIBBeWJ0gsXD4nFMFRHl2oUQFD P5x7bVjwohsdOsk4+LC1SWrAIEa2AAvoyjTSUjjJF2AtqYGy9sUYMFS9e5gZCW3mgs8G TDvqXLrzhrJgJExEYl3gsYKvlI4kAxtMRoZSHXkH3TYECzvZMpbh8TzrnBGFvTwwljLL xTEA== X-Gm-Message-State: AO0yUKXFz9pGHaJGi23cKXHry/p5J7a+/sKpASawbtmgmdJ0bylFJNmO 1bobsbnsYoqYnHHUSOuSRZMD4iXIc8hLMUNKmfk= X-Google-Smtp-Source: AK7set/Gy/dDQ7DPIncVlRHQNNV+Js5zgyVb2VO+kW41UM8pjuZVvtOPl6sEGJmNfH+jwrC2qS+TIw== X-Received: by 2002:a05:6830:918:b0:68b:c490:5372 with SMTP id v24-20020a056830091800b0068bc4905372mr4833781ott.22.1675361550181; Thu, 02 Feb 2023 10:12:30 -0800 (PST) Received: from mandiga.. ([2804:1b3:a7c2:1887:da12:b9d3:2162:a28c]) by smtp.gmail.com with ESMTPSA id ci10-20020a05683063ca00b00684a10970adsm126689otb.16.2023.02.02.10.12.28 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 02 Feb 2023 10:12:29 -0800 (PST) From: Adhemerval Zanella To: libc-alpha@sourceware.org, Richard Henderson , Jeff Law , Xi Ruoyao , Noah Goldstein Subject: [PATCH v12 14/31] string: Improve generic strrchr with memrchr and strlen Date: Thu, 2 Feb 2023 15:11:32 -0300 Message-Id: <20230202181149.2181553-15-adhemerval.zanella@linaro.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230202181149.2181553-1-adhemerval.zanella@linaro.org> References: <20230202181149.2181553-1-adhemerval.zanella@linaro.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.8 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Now that both strlen and memrchr have word vectorized implementation, it should be faster to implement strrchr based on memrchr over the string length instead of calling strchr on a loop. Checked on x86_64-linux-gnu, i686-linux-gnu, powerpc-linux-gnu, and powerpc64-linux-gnu by removing the arch-specific assembly implementation and disabling multi-arch (it covers both LE and BE for 64 and 32 bits). --- string/strrchr.c | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/string/strrchr.c b/string/strrchr.c index 3c6e715d3b..7b76dea4e0 100644 --- a/string/strrchr.c +++ b/string/strrchr.c @@ -27,23 +27,7 @@ char * STRRCHR (const char *s, int c) { - const char *found, *p; - - c = (unsigned char) c; - - /* Since strchr is fast, we use it rather than the obvious loop. */ - - if (c == '\0') - return strchr (s, '\0'); - - found = NULL; - while ((p = strchr (s, c)) != NULL) - { - found = p; - s = p + 1; - } - - return (char *) found; + return __memrchr (s, c, strlen (s) + 1); } #ifdef weak_alias -- 2.34.1