From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 544B03857C65; Mon, 27 Jul 2020 16:48:33 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 544B03857C65 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1595868513; bh=zHp1ukjnmCrTdX7sawzve4ZIRU/AK6QGtmtXbGjUatE=; h=From:To:Subject:Date:From; b=JHWY9d4RD5gx+sRlBZwlWzsXMOieK48SFsf8pymHoZK8rTvr0FBLybAFSTrCYU1Bg R9dOhwKV++VxUad/gRU6kXTknsROsFT7xeRyeDV3y8S2ij8vycqqtRL5RmBWm8h+a1 zlmbepvLc4gI72DaCKNX/qQhucPiFaP1o/94rWHs= From: "rsandifo at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/96341] New: Support mixed element widths for AArch64 "omp declare simd" functions Date: Mon, 27 Jul 2020 16:48:33 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 11.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rsandifo 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: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone cf_gcctarget Message-ID: 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: Mon, 27 Jul 2020 16:48:33 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D96341 Bug ID: 96341 Summary: Support mixed element widths for AArch64 "omp declare simd" functions Product: gcc Version: 11.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: target Assignee: unassigned at gcc dot gnu.org Reporter: rsandifo at gcc dot gnu.org Target Milestone: --- Target: aarch64*-*-* aarch64_simd_clone_compute_vecsize_and_simdlen currently rejects functions that operate on a mixture of element sizes. However, the ABI has rules to handle those cases too. See: https://github.com/ARM-software/abi-aa/tree/master/vfabia64 for the full specification. We should remove the current restriction and handle mixed sizes in accordance with the ABI rules.=