From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id BDFF73861896; Sun, 6 Sep 2020 14:15:56 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BDFF73861896 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1599401756; bh=D4MZCppPVxqZVtUdACW+JrnjS9rr2EIeA8AUUj8gDtI=; h=From:To:Subject:Date:In-Reply-To:References:From; b=pofHNglujvpZqXQB3LG1Nr1B+Et/siwYI/TXC3aXv1mAqL19I9QxVbBbe1gGe/Pid 37e/OhfPcBbmDkuaEOxqKb258GhUADpGvhmadcP4dY8IcVuRFPCLr+eX9yQ+Au+094 QgXXsS+XVCZWmIAk6TfK84HaF2hLe7a+f23/2iOA= From: "danglin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/87256] hppa spends huge amount of time in synth_mult() Date: Sun, 06 Sep 2020 14:15:56 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 9.0 X-Bugzilla-Keywords: compile-time-hog X-Bugzilla-Severity: normal X-Bugzilla-Who: danglin at gcc dot gnu.org X-Bugzilla-Status: REOPENED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 10.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution cf_gcctarget 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: Sun, 06 Sep 2020 14:15:56 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D87256 John David Anglin changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED |--- Target|hppa-* |hppa*-* --- Comment #19 from John David Anglin --- hppa64 compiler is still slow: $ hppa64-linux-gnu-gcc -S -O2 hog.c hog.c: In function 'b': hog.c:18:15: warning: integer constant is so large that it is unsigned c =3D c * 9650029242287828579LL; ^~~~~~~~~~~~~~~~~~~~~ hog.c:19:15: warning: integer constant is so large that it is unsigned c =3D c * 9650029242287828579LL; ^~~~~~~~~~~~~~~~~~~~~ hog.c:20:15: warning: integer constant is so large that it is unsigned c =3D c * 9650029242287828579LL; /* this line adds 2 seconds: 7->9 */ ^~~~~~~~~~~~~~~~~~~~~ hog.c:21:15: warning: integer constant is so large that it is unsigned c =3D c * 9650029242287828579LL; /* this line adds 2 seconds: 9->11 = */ ^~~~~~~~~~~~~~~~~~~~~ dave@mx3210:~/gnu/gcc$ time hppa64-linux-gnu-gcc -S -O2 hog.c hog.c: In function 'b': hog.c:18:15: warning: integer constant is so large that it is unsigned c =3D c * 9650029242287828579LL; ^~~~~~~~~~~~~~~~~~~~~ hog.c:19:15: warning: integer constant is so large that it is unsigned c =3D c * 9650029242287828579LL; ^~~~~~~~~~~~~~~~~~~~~ hog.c:20:15: warning: integer constant is so large that it is unsigned c =3D c * 9650029242287828579LL; /* this line adds 2 seconds: 7->9 */ ^~~~~~~~~~~~~~~~~~~~~ hog.c:21:15: warning: integer constant is so large that it is unsigned c =3D c * 9650029242287828579LL; /* this line adds 2 seconds: 9->11 = */ ^~~~~~~~~~~~~~~~~~~~~ real 1m48.311s user 1m47.665s sys 0m0.471s=