Re: [PATCH] rs6000: Move rs6000_vect_nonmem into target cost_data

2021-05-10 Thread Segher Boessenkool
Hi! On Sat, May 08, 2021 at 04:19:34PM +0800, Kewen.Lin wrote: > This patch is to move rs6000_vect_nonmem (target cost_data > related information) into target cost_data struct. > * config/rs6000/rs6000.c (rs6000_vect_nonmem): Renamed to > vect_nonmem and moved into... > (struct

[PATCH] rs6000: Move rs6000_vect_nonmem into target cost_data

2021-05-08 Thread Kewen.Lin via Gcc-patches
Hi, This patch is to move rs6000_vect_nonmem (target cost_data related information) into target cost_data struct. Following Richi's comments in the thread[1], we can gather data from add_stmt_cost invocations. This is one pre-step to centralize target cost_data related stuffs. Is it ok for trun