]> git.ipfire.org Git - thirdparty/gcc.git/commit
Enable ranger and caching in pass_waccess.
authorMartin Sebor <msebor@redhat.com>
Wed, 1 Sep 2021 19:46:19 +0000 (13:46 -0600)
committerMartin Sebor <msebor@redhat.com>
Wed, 1 Sep 2021 19:46:19 +0000 (13:46 -0600)
commitece28da924ddda8b379c94c9df7cd01168f75fbb
tree439ad27f308cff8d6f4133e4cabf184815d73675
parentac6e77aacfb6581f5e84e4430628152b9b98da2e
Enable ranger and caching in pass_waccess.

gcc/ChangeLog:

* gimple-ssa-warn-access.cc (get_size_range): Add argument.
(check_access): Pass additional argument.
(check_memop_access): Remove template and make a member function.
(maybe_check_dealloc_call): Make a pass_waccess member function.
(class pass_waccess): Add, rename, and remove members.
(pass_waccess::pass_waccess): Adjust to name change.
(pass_waccess::~pass_waccess): Same.
(check_alloca): Make a member function.
(check_alloc_size_call): Same.
(check_strcat): Same.
(check_strncat): Same.
(check_stxcpy): Same.
(check_stxncpy): Same.
(check_strncmp): Same.
(maybe_warn_rdwr_sizes): Rename...
(pass_waccess::maybe_check_access_sizes): ...to this.
(pass_waccess::check_call): Adjust to name changes.
(pass_waccess::maybe_check_dealloc_call): Make a pass_waccess member
function.
(pass_waccess::execute): Adjust to name changes.
* gimple-ssa-warn-access.h (check_memop_access): Remove.
* pointer-query.cc (access_ref::phi): Handle null pointer.
(access_ref::inform_access): Same.
(pointer_query::put_ref): Modify a cached value, not a copy of it.
(pointer_query::dump): New function.
(compute_objsize_r): Avoid overwriting access_ref::bndrng.  Cache
more results.
* pointer-query.h (pointer_query::dump): Declare.
* tree-ssa-strlen.c (get_range): Simplify.  Use function query.
(dump_strlen_info): Use function query.
(printf_strlen_execute): Factor code out into pointer_query::put_ref.

gcc/testsuite/ChangeLog:

* gcc.dg/Wstringop-overflow-11.c: Remove xfails.
* gcc.dg/Wstringop-overflow-12.c: Same.
* gcc.dg/Wstringop-overflow-43.c: Add xfails.
* gcc.dg/Wstringop-overflow-73.c: New test.
gcc/gimple-ssa-warn-access.cc
gcc/gimple-ssa-warn-access.h
gcc/pointer-query.cc
gcc/pointer-query.h
gcc/testsuite/gcc.dg/Wstringop-overflow-11.c
gcc/testsuite/gcc.dg/Wstringop-overflow-12.c
gcc/testsuite/gcc.dg/Wstringop-overflow-43.c
gcc/testsuite/gcc.dg/Wstringop-overflow-73.c [new file with mode: 0644]
gcc/tree-ssa-strlen.c