Re: [PATCH 4/5] Convert remaining passes to RANGE_QUERY.

2021-05-25 Thread Aldy Hernandez via Gcc-patches
Adjustments per discussion. OK pending tests? Aldy >From d701627d2b0a3cdfea7a11b3b4cf4105db08dcf5 Mon Sep 17 00:00:00 2001 From: Aldy Hernandez Date: Wed, 19 May 2021 18:44:08 +0200 Subject: [PATCH 4/5] Convert remaining passes to get_range_query. This patch converts the remaining users of get

Re: [PATCH 4/5] Convert remaining passes to RANGE_QUERY.

2021-05-25 Thread Aldy Hernandez via Gcc-patches
Same as before, but with the minor change that the following IPA pass uses the correct struct function, as discussed. Tests on x86-64 Linux on-going. Aldy diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index a0238710e72..d8292777647 100644 --- a/gcc/tree-ssa-structalias.c

Re: [PATCH 4/5] Convert remaining passes to RANGE_QUERY.

2021-05-25 Thread Aldy Hernandez via Gcc-patches
On 5/25/21 10:47 AM, Richard Biener wrote: On Mon, May 24, 2021 at 10:02 PM Martin Sebor via Gcc-patches wrote: On 5/21/21 5:39 AM, Aldy Hernandez via Gcc-patches wrote: This patch converts the remaining users of get_range_info and get_ptr_nonnull to the range_query API. No effort was mad

Re: [PATCH 4/5] Convert remaining passes to RANGE_QUERY.

2021-05-25 Thread Aldy Hernandez via Gcc-patches
On 5/24/21 9:34 PM, Martin Sebor wrote: On 5/21/21 5:39 AM, Aldy Hernandez via Gcc-patches wrote: This patch converts the remaining users of get_range_info and get_ptr_nonnull to the range_query API. No effort was made to move passes away from VR_ANTI_RANGE, or any other use of deprecated me

Re: [PATCH 4/5] Convert remaining passes to RANGE_QUERY.

2021-05-25 Thread Richard Biener via Gcc-patches
On Mon, May 24, 2021 at 10:02 PM Martin Sebor via Gcc-patches wrote: > > On 5/21/21 5:39 AM, Aldy Hernandez via Gcc-patches wrote: > > This patch converts the remaining users of get_range_info and > > get_ptr_nonnull to the range_query API. > > > > No effort was made to move passes away from VR_AN

Re: [PATCH 4/5] Convert remaining passes to RANGE_QUERY.

2021-05-24 Thread Martin Sebor via Gcc-patches
On 5/21/21 5:39 AM, Aldy Hernandez via Gcc-patches wrote: This patch converts the remaining users of get_range_info and get_ptr_nonnull to the range_query API. No effort was made to move passes away from VR_ANTI_RANGE, or any other use of deprecated methods. This was a straight up conversion to