From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dedi548.your-server.de (dedi548.your-server.de [85.10.215.148]) by sourceware.org (Postfix) with ESMTPS id 66BCB3858412 for ; Tue, 12 Sep 2023 10:05:13 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 66BCB3858412 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=embedded-brains.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=embedded-brains.de Received: from sslproxy05.your-server.de ([78.46.172.2]) by dedi548.your-server.de with esmtpsa (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qg0Ge-000Edr-6D; Tue, 12 Sep 2023 12:05:12 +0200 Received: from [82.100.198.138] (helo=mail.embedded-brains.de) by sslproxy05.your-server.de with esmtpsa (TLSv1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qg0Ge-0005pv-2D; Tue, 12 Sep 2023 12:05:12 +0200 Received: from localhost (localhost [127.0.0.1]) by mail.embedded-brains.de (Postfix) with ESMTP id B23854801B7; Tue, 12 Sep 2023 12:05:11 +0200 (CEST) Received: from mail.embedded-brains.de ([127.0.0.1]) by localhost (zimbra.eb.localhost [127.0.0.1]) (amavis, port 10032) with ESMTP id u7Kqi-pE7agf; Tue, 12 Sep 2023 12:05:11 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail.embedded-brains.de (Postfix) with ESMTP id 5C0E24801C3; Tue, 12 Sep 2023 12:05:11 +0200 (CEST) X-Virus-Scanned: amavis at zimbra.eb.localhost Received: from mail.embedded-brains.de ([127.0.0.1]) by localhost (zimbra.eb.localhost [127.0.0.1]) (amavis, port 10026) with ESMTP id 5bqymRsf5o3i; Tue, 12 Sep 2023 12:05:11 +0200 (CEST) Received: from zimbra.eb.localhost (unknown [192.168.96.242]) by mail.embedded-brains.de (Postfix) with ESMTPSA id 296A1480051; Tue, 12 Sep 2023 12:05:11 +0200 (CEST) From: Sebastian Huber To: newlib@sourceware.org Cc: Szabolcs Nagy Subject: [PATCH 0/2] aarch64: Sync with ARM-software/optimized-routines Date: Tue, 12 Sep 2023 12:05:05 +0200 Message-Id: <20230912100507.33946-1-sebastian.huber@embedded-brains.de> X-Mailer: git-send-email 2.35.3 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Authenticated-Sender: smtp-embedded@poldi-networks.de X-Virus-Scanned: Clear (ClamAV 0.103.8/27029/Tue Sep 12 09:38:51 2023) X-Spam-Status: No, score=-5.4 required=5.0 tests=BAYES_00,KAM_DMARC_STATUS,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: This patch set synchronizes AArch64-specific files with the https://github.com/ARM-software/optimized-routines upstream. Sebastian Huber (2): aarch64: Sync with ARM-software/optimized-routines aarch64: Import memrchr.S v3: Use latest commit. newlib/Makefile.in | 40 ++ newlib/libc/machine/aarch64/Makefile.inc | 2 + newlib/libc/machine/aarch64/asmdefs.h | 106 +++++ newlib/libc/machine/aarch64/memchr.S | 73 ++-- newlib/libc/machine/aarch64/memcmp.S | 311 ++++++++------- newlib/libc/machine/aarch64/memcpy.S | 272 +++++++------ newlib/libc/machine/aarch64/memrchr-stub.c | 11 + newlib/libc/machine/aarch64/memrchr.S | 115 ++++++ newlib/libc/machine/aarch64/memset.S | 194 ++------- newlib/libc/machine/aarch64/stpcpy.S | 36 +- newlib/libc/machine/aarch64/strchr.S | 107 ++--- newlib/libc/machine/aarch64/strchrnul.S | 90 ++--- newlib/libc/machine/aarch64/strcmp.S | 282 +++++++------ newlib/libc/machine/aarch64/strcpy.S | 437 ++++++--------------- newlib/libc/machine/aarch64/strlen.S | 319 +++++++-------- newlib/libc/machine/aarch64/strncmp.S | 323 ++++++++------- newlib/libc/machine/aarch64/strnlen.S | 256 ++++-------- newlib/libc/machine/aarch64/strrchr.S | 86 ++-- 18 files changed, 1394 insertions(+), 1666 deletions(-) create mode 100644 newlib/libc/machine/aarch64/asmdefs.h create mode 100644 newlib/libc/machine/aarch64/memrchr-stub.c create mode 100644 newlib/libc/machine/aarch64/memrchr.S --=20 2.35.3