From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id BF63F388F063; Thu, 11 Jun 2020 05:15:06 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BF63F388F063 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1591852506; bh=8BHgrsdrcTT7OlAgxsPd/5NAIMHcOVIsaKbZYHIiYW0=; h=From:To:Subject:Date:In-Reply-To:References:From; b=f9K2PtY767DiFkprdVFRksHe7sImDxKcPDGBavt87YldCTGtK9UiCXDyE9NNoFyQE wO+xLf/4pxkaFpY3Rz8J7LqCelpGfeSk9xyJhpvjLuOGF+vgUf3Rmdx8oQ+hr5zwM/ peiEOiHoEFENl9u5eQnL/T9NWp8JWOIMdD5TaE5M= From: "guihaoc at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/68837] PowerPC switch statement performance Date: Thu, 11 Jun 2020 05:15:06 +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: 6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: guihaoc at gcc dot gnu.org X-Bugzilla-Status: NEW 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: Thu, 11 Jun 2020 05:15:06 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D68837 --- Comment #5 from HaoChen Gui --- I think there are two ways avoiding sign extension for offset loading. a. Make sure all offsets be positive. There exists backward jumps as well = as STC will reorder the basic block. So the offset might be negative. We can c= heck the offsets after bb-reorder pass and remove sign extension if all offsets = are positive. It may need a new pass. b. Use absolute addresses instead of offsets. It's controlled by macro CASE_VECTOR_PC_RELATIVE and flag_pic. x86 uses absolute address(labels) in their jump table, though the size of jump is bigger. Power haven't supported absolute address yet.=