From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 6336F3954C7A; Tue, 21 Apr 2020 13:45:33 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6336F3954C7A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1587476733; bh=+x2lvIOlZ9vcryiE7AxF6dukqwEzkxqkr1MXX93SdbI=; h=From:To:Subject:Date:In-Reply-To:References:From; b=TDMKhXxWkdyflmafjE6xslirXs8eXbX6Upj6LzfzK4lpwgOjmos7ueFI1QTRvZBmu MocEVSneIg4R1XHnwCluGpkWvYWPyyJdcDJo/naUtQz93BgXG4pqjo2NJ5UakOBcuD nohLM1tuYSY/JDHUXZDsO6qhkhRXbDG/GDizNo3Q= From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/94604] support for the ETSI basic operations Date: Tue, 21 Apr 2020 13:45:33 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 8.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Apr 2020 13:45:33 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D94604 --- Comment #2 from Christophe Lyon --- I think this is provided by arm_acle.h: https://gcc.gnu.org/git/?p=3Dgcc.git;a=3Dblob;f=3Dgcc/config/arm/arm_acle.h= ;h=3D6b08ffd4174c8d829fe5730f99cd8f28e300afab;hb=3DHEAD You can see that saturating and DSP intrinsics have been recently added and will be available with gcc-10. You can get more details about ACLE (ARM C Language Extensions) from Arm: https://developer.arm.com/architectures/system-architectures/software-stand= ards/acle There is paragraph showing how to implement the ETSI basic operations using= the ACLE DSP intrinsics. Does that cover your need?=