From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 16DFA3858407; Wed, 7 Feb 2024 11:32:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 16DFA3858407 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1707305540; bh=nxxpHkioMGub01qvu46gMzATwaSO0S+vbX7S8W6MrpA=; h=From:To:Subject:Date:In-Reply-To:References:From; b=gt8lW5yWs0/vNhzjxeC6AaEKiHqHcGhZn6ArhWIisS2MFPgc9IdWU/MJ0A0N2o5f6 +L8EdLxHbS6Wi5NNb25xZ5NQg/Y3+q2nc8WV3Br8DE6/mt+9cPzL0akp1BAvIPVnHW FcDD8ngZg9hl22ZnEApMCOVH5RnnwRG1ekj0L0zs= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/113783] ICE: in lower_stmt, at gimple-lower-bitint.cc:5455 with -O -mavx512f and _BitInt() in memcpy() Date: Wed, 07 Feb 2024 11:32:19 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D113783 --- Comment #2 from Jakub Jelinek --- This comes from scalar_int_mode mode; if (int_mode_for_size (ilen * 8, 0).exists (&mode) && GET_MODE_SIZE (mode) * BITS_PER_UNIT =3D=3D ilen * 8 /* If the destination pointer is not aligned we must be a= ble to emit an unaligned store. */ && (dest_align >=3D GET_MODE_ALIGNMENT (mode) || !targetm.slow_unaligned_access (mode, dest_align) || (optab_handler (movmisalign_optab, mode) !=3D CODE_FOR_nothing))) where we just care if that huge mode exists, not whether it is supported (b= ut for moves or in misaligned case movmisalign).=