Re: [PATCH] Read global value/mask in IPA.

2023-08-03 Thread Aldy Hernandez via Gcc-patches
pass which is where we are able to propagate more things. I will commit if it succeeds. Thanks. AldyFrom 57fae00c11070545dd0eacaa5c04547cc553 Mon Sep 17 00:00:00 2001 From: Aldy Hernandez Date: Fri, 14 Jul 2023 12:38:16 +0200 Subject: [PATCH] Read global value/mask in IPA. Instead of reading the

Re: [PATCH] Read global value/mask in IPA.

2023-07-31 Thread Martin Jambor
om e1dfd4d6b3d3bf09d55b6ea3ac732462c7030802 Mon Sep 17 00:00:00 2001 > From: Aldy Hernandez > Date: Fri, 14 Jul 2023 12:38:16 +0200 > Subject: [PATCH] Read global value/mask in IPA. > > Instead of reading the known zero bits in IPA, read the value/mask > pair which is available.

Re: [PATCH] Read global value/mask in IPA.

2023-07-31 Thread Aldy Hernandez via Gcc-patches
PING * 2 On Tue, Jul 25, 2023 at 8:32 AM Aldy Hernandez wrote: > > Ping > > On Mon, Jul 17, 2023, 15:14 Aldy Hernandez wrote: >> >> Instead of reading the known zero bits in IPA, read the value/mask >> pair which is available. >> >> There is a slight change of behavior here. I have removed the

Re: [PATCH] Read global value/mask in IPA.

2023-07-25 Thread Aldy Hernandez via Gcc-patches
Ping On Mon, Jul 17, 2023, 15:14 Aldy Hernandez wrote: > Instead of reading the known zero bits in IPA, read the value/mask > pair which is available. > > There is a slight change of behavior here. I have removed the check > for SSA_NAME, as the ranger can calculate the range and value/mask

Re: [PATCH] Read global value/mask in IPA.

2023-07-18 Thread Aldy Hernandez via Gcc-patches
: [PATCH] Read global value/mask in IPA. Instead of reading the known zero bits in IPA, read the value/mask pair which is available. There is a slight change of behavior here. I have removed the check for SSA_NAME, as the ranger can calculate the range and value/mask for INTEGER_CST

[PATCH] Read global value/mask in IPA.

2023-07-17 Thread Aldy Hernandez via Gcc-patches
Instead of reading the known zero bits in IPA, read the value/mask pair which is available. There is a slight change of behavior here. I have removed the check for SSA_NAME, as the ranger can calculate the range and value/mask for INTEGER_CST. This simplifies the code a bit, since there's no