diff options
author | mpolacek <mpolacek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-27 08:02:48 +0000 |
---|---|---|
committer | mpolacek <mpolacek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-27 08:02:48 +0000 |
commit | 177650ded5bb5e38195b7557ded3c3f3d9a4327c (patch) | |
tree | 7b0bd7c1d1c52fe4a301a4ef1b40bb08444d2459 | |
parent | c33f7b6da998096ba9e39df52d5ca0d408d817dc (diff) | |
download | gcc-177650ded5bb5e38195b7557ded3c3f3d9a4327c.tar.gz |
2013-11-27 Marek Polacek <polacek@redhat.com>
* ubsan.c (ubsan_type_descriptor): If varpool_get_node returns NULL
for a decl, recreate that decl. Save into the hash table VAR_DECLs
rather than ADDR_EXPRs.
testsuite/
* c-c++-common/ubsan/undefined-1.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205433 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/c-c++-common/ubsan/undefined-1.c | 26 | ||||
-rw-r--r-- | gcc/ubsan.c | 13 |
4 files changed, 44 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 851f746bbfd..736b2c2b8f9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2013-11-27 Marek Polacek <polacek@redhat.com> + + * ubsan.c (ubsan_type_descriptor): If varpool_get_node returns NULL + for a decl, recreate that decl. Save into the hash table VAR_DECLs + rather than ADDR_EXPRs. + 2013-11-27 Alexander Ivchenko <alexander.ivchenko@intel.com> * config/ia64/hpux.h (TARGET_LIBC_HAS_FUNCTION): Fix typo. diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a2a81170166..61fe795127f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2013-11-27 Marek Polacek <polacek@redhat.com> + + * c-c++-common/ubsan/undefined-1.c: New test. + 2013-11-26 Jakub Jelinek <jakub@redhat.com> PR tree-optimization/59014 diff --git a/gcc/testsuite/c-c++-common/ubsan/undefined-1.c b/gcc/testsuite/c-c++-common/ubsan/undefined-1.c new file mode 100644 index 00000000000..1229b711fe9 --- /dev/null +++ b/gcc/testsuite/c-c++-common/ubsan/undefined-1.c @@ -0,0 +1,26 @@ +/* { dg-do run } */ +/* { dg-options "-fsanitize=undefined" } */ +/* { dg-skip-if "" { *-*-* } { "-flto" } { "" } } */ + +int +foo (int x, int y) +{ + const int z = 2; + if (z & 1) + return x << y; + return 0; +} + +int +bar (int x, int y) +{ + return x + y; +} + +int +main (void) +{ + foo (3, 2); + bar (12, 42); + return 0; +} diff --git a/gcc/ubsan.c b/gcc/ubsan.c index 468a3b1b150..fa6b42a868f 100644 --- a/gcc/ubsan.c +++ b/gcc/ubsan.c @@ -272,8 +272,12 @@ ubsan_type_descriptor (tree type, bool want_pointer_type_p) type = TYPE_MAIN_VARIANT (type); tree decl = decl_for_type_lookup (type); - if (decl != NULL_TREE) - return decl; + /* It is possible that some of the earlier created DECLs were found + unused, in that case they weren't emitted and varpool_get_node + returns NULL node on them. But now we really need them. Thus, + renew them here. */ + if (decl != NULL_TREE && varpool_get_node (decl)) + return build_fold_addr_expr (decl); tree dtype = ubsan_type_descriptor_type (); tree type2 = type; @@ -372,11 +376,10 @@ ubsan_type_descriptor (tree type, bool want_pointer_type_p) DECL_INITIAL (decl) = ctor; rest_of_decl_compilation (decl, 1, 0); - /* Save the address of the VAR_DECL into the hash table. */ - decl = build_fold_addr_expr (decl); + /* Save the VAR_DECL into the hash table. */ decl_for_type_insert (type, decl); - return decl; + return build_fold_addr_expr (decl); } /* Create a structure for the ubsan library. NAME is a name of the new |