Re: [PATCH] RISC-V: Change VSETVL PASS always call split_all_insns

2023-01-27 Thread Kito Cheng via Gcc-patches
committed, thanks On Mon, Jan 23, 2023 at 3:39 AM Jeff Law via Gcc-patches < gcc-patches@gcc.gnu.org> wrote: > > > On 1/17/23 19:50, juzhe.zh...@rivai.ai wrote: > > From: Ju-Zhe Zhong > > > > Since LCM will destroy CFG, we are going to reorder the location of > VSETVL PASS > > at least before bb

Re: [PATCH] RISC-V: Change VSETVL PASS always call split_all_insns

2023-01-22 Thread Jeff Law via Gcc-patches
On 1/17/23 19:50, juzhe.zh...@rivai.ai wrote: From: Ju-Zhe Zhong Since LCM will destroy CFG, we are going to reorder the location of VSETVL PASS at least before bbro (block-reorder PASS) which is before split3 PASS. We need to call it in VSETVL PASS to get final RVV instructions patterns. Ju