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

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

2021-05-25 Thread Aldy Hernandez via Gcc-patches
xpr (vr, p); + bool nonnull = vr.nonzero_p (); [snip] >From 2e185f6caab305ac3779097005abf2153c91d1d5 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 RANGE_QUERY. This patch converts the remaining users of get_range_i

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

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

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

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

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

2021-05-21 Thread Aldy Hernandez via Gcc-patches
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 the new API, nothing else. Tested on x86-64 Linux. OK?