PR ipa/68148
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 15 Jan 2016 11:00:24 +0000 (11:00 +0000)
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 15 Jan 2016 11:00:24 +0000 (11:00 +0000)
* ipa-icf.c (sem_function::merge): Virtual functions may become
reachable even if they address is not taken and there are no
idrect calls.
* g++.dg/ipa/devirt-49.C: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@232410 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/ipa-icf.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ipa/devirt-49.C [new file with mode: 0644]

index 006493b..ac14805 100644 (file)
@@ -1,5 +1,12 @@
 2016-01-15  Jan Hubicka  <hubicka@ucw.cz>
 
+       PR ipa/68148
+       * ipa-icf.c (sem_function::merge): Virtual functions may become
+       reachable even if they address is not taken and there are no
+       idrect calls.
+
+2016-01-15  Jan Hubicka  <hubicka@ucw.cz>
+
        * lto-streamer-out.c (subtract_estimated_size): New function.
        (get_symbol_initial_value): Use it.
 
index aaa6a47..ef04c55 100644 (file)
@@ -1305,6 +1305,7 @@ sem_function::merge (sem_item *alias_item)
 
       /* If all callers was redirected, do not produce wrapper.  */
       if (alias->can_remove_if_no_direct_calls_p ()
+         && !DECL_VIRTUAL_P (alias->decl)
          && !alias->has_aliases_p ())
        {
          create_wrapper = false;
index e50e1f9..409c42f 100644 (file)
@@ -1,3 +1,8 @@
+2016-01-15  Jan Hubicka <hubicka@ucw.cz>
+
+       PR ipa/68148
+       * g++.dg/ipa/devirt-49.C: New testcase.
+
 2016-01-15  Christian Bruel  <christian.bruel@st.com>
 
        PR target/65837
diff --git a/gcc/testsuite/g++.dg/ipa/devirt-49.C b/gcc/testsuite/g++.dg/ipa/devirt-49.C
new file mode 100644 (file)
index 0000000..6beb47b
--- /dev/null
@@ -0,0 +1,20 @@
+/* { dg-do compile } */
+/* { dg-options "-O2 -fdump-ipa-devirt"  } */
+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();
+}
+/* { dg-final { scan-ipa-dump "2 speculatively devirtualized" "devirt"  } } */