tree-ssa-structalias.c (ipa_pta_execute): Handle address-taken functions.
authorRichard Biener <rguenther@suse.de>
Mon, 1 Jun 2015 13:51:20 +0000 (13:51 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Mon, 1 Jun 2015 13:51:20 +0000 (13:51 +0000)
2015-06-01  Richard Biener  <rguenther@suse.de>

* tree-ssa-structalias.c (ipa_pta_execute): Handle address-taken
functions.

* gcc.dg/ipa/ipa-pta-1.c: Adjust.

From-SVN: r223977

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/ipa/ipa-pta-1.c
gcc/tree-ssa-structalias.c

index 9e18b50b23e61cc17bf51b9b458d118d19b7ac6b..28cfe8bca616118509dd9adad689dc7f2431425c 100644 (file)
@@ -1,3 +1,8 @@
+2015-06-01  Richard Biener  <rguenther@suse.de>
+
+       * tree-ssa-structalias.c (ipa_pta_execute): Handle address-taken
+       functions.
+
 2015-06-01  Martin Liska  <mliska@suse.cz>
 
        * alloc-pool.h: Add ATTRIBUTE_UNUSED for
index 0590f02a0931562477212cb312547095d23c2ce0..d74d29d8e661a2db5b67deba876c73af91231808 100644 (file)
@@ -1,3 +1,7 @@
+2015-06-01  Richard Biener  <rguenther@suse.de>
+
+       * gcc.dg/ipa/ipa-pta-1.c: Adjust.
+
 2015-06-01  Jakub Jelinek  <jakub@redhat.com>
 
        * gcc.target/s390/hotpatch-compile-15.c: Remove dg-prune-output
index 234f2b8a192abd4493135c0620e33062841f559c..c183fcb641c5e73b3e638c5c380fb0087b8289b0 100644 (file)
@@ -40,10 +40,13 @@ int main()
 }
 
 /* IPA PTA needs to handle indirect calls properly.  Verify that
-   both bar and foo get a (and only a) in their arguments points-to sets.  */
+   both bar and foo get a (and only a) in their arguments points-to sets.
+   ???  As bar and foo have their address taken there might be callers
+   not seen by IPA PTA (if the address escapes the unit which we only compute
+   during IPA PTA...).  Thus the solution also includes NONLOCAL.  */
 
 /* { dg-final { scan-ipa-dump "fn_1 = { bar foo }" "pta" } } */
-/* { dg-final { scan-ipa-dump "bar.arg0 = { a }" "pta" } } */
-/* { dg-final { scan-ipa-dump "bar.arg1 = { a }" "pta" } } */
-/* { dg-final { scan-ipa-dump "foo.arg0 = { a }" "pta" } } */
-/* { dg-final { scan-ipa-dump "foo.arg1 = { a }" "pta" } } */
+/* { dg-final { scan-ipa-dump "bar.arg0 = { NONLOCAL a }" "pta" } } */
+/* { dg-final { scan-ipa-dump "bar.arg1 = { NONLOCAL a }" "pta" } } */
+/* { dg-final { scan-ipa-dump "foo.arg0 = { NONLOCAL a }" "pta" } } */
+/* { dg-final { scan-ipa-dump "foo.arg1 = { NONLOCAL a }" "pta" } } */
index e802d78367b76641a9f9d2ba22b08d2f60adfe37..0cd881236f0e6d831aa55c14c159bc22d530df3b 100644 (file)
@@ -7369,7 +7369,8 @@ ipa_pta_execute (void)
         constraints for parameters.  */
       if (node->used_from_other_partition
          || node->externally_visible
-         || node->force_output)
+         || node->force_output
+         || node->address_taken)
        {
          intra_create_variable_infos (func);