]> git.ipfire.org Git - thirdparty/gcc.git/commit
store-merging: Avoid ICEs on roughly ~0ULL/8 sized stores [PR105094]
authorJakub Jelinek <jakub@redhat.com>
Wed, 30 Mar 2022 08:21:16 +0000 (10:21 +0200)
committerJakub Jelinek <jakub@redhat.com>
Wed, 30 Mar 2022 08:51:16 +0000 (10:51 +0200)
commit5c4767659c817dc4cec897215ca8f9ea930e309e
treeb0fb372b4c37d61112a8b93e0093eca011346487
parent71aa6e9c36c6948a4de67720a0e9f368ce696f4e
store-merging: Avoid ICEs on roughly ~0ULL/8 sized stores [PR105094]

On the following testcase on 64-bit targets, store-merging sees
a MEM_REF store from {} ctor with "negative" bitsize where bitoff + bitsize
wraps around to very small end offset.  This later confuses the code
so that it allocates just a few bytes of memory but fills in huge amounts of
it.  Later on there is a param_store_merging_max_size size check but due to
the wrap-around we pass that.

The following patch punts on such large bitsizes.

2022-03-30  Jakub Jelinek  <jakub@redhat.com>

PR tree-optimization/105094
* gimple-ssa-store-merging.c (mem_valid_for_store_merging): Punt if
bitsize <= 0 rather than just == 0.

* gcc.dg/pr105094.c: New test.

(cherry picked from commit 387e818cda0ffde86f624228c3da1ab28f453685)
gcc/gimple-ssa-store-merging.c
gcc/testsuite/gcc.dg/pr105094.c [new file with mode: 0644]