From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 54459 invoked by alias); 29 Oct 2015 15:49:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 54419 invoked by uid 48); 29 Oct 2015 15:49:10 -0000 From: "matt at godbolt dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/68148] New: Devirtualization only applies to last of multiple successive calls Date: Thu, 29 Oct 2015 15:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: matt at godbolt dot 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 Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-10/txt/msg02479.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68148 Bug ID: 68148 Summary: Devirtualization only applies to last of multiple successive calls Product: gcc Version: 5.2.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: matt at godbolt dot org Target Milestone: --- Given the code: ---- struct Interface { virtual ~Interface() {} virtual void virtualFunc() = 0; virtual void virtualFunc2() = 0; }; struct Concrete : Interface { int counter_; Concrete() : counter_(0) {} void virtualFunc() { counter_++; } void virtualFunc2() { counter_++; } }; void test(Interface &c) { c.virtualFunc(); c.virtualFunc2(); } ---- (Compiled at -O3 -fdevirtualize-speculatively) Speculative devirtualization is applied to the call to virtualFunc2, but not to virtualFunc. (See https://goo.gl/Vtx5Fe). If one comments out the call to virtualFunc2, then the virtualFunc() call *is* speculatively devirtualized (https://goo.gl/G8f505). It seems to me that either both should be spec devirtualized, or none. Or perhaps even more generally, if the vtable pointer is that of "Concrete" then both calls can be inlined in one and converted to counter+=2 (provided inspection proved that Concrete's virtualFunc() does not modify the vtable, which I believe is otherwise a barrier to this kind of optimization). Am I missing something here, or is this a missed opportunity? Thanks, Matt