Re: [PATCH/AARCH64] Move the rest of the cost tables to aarch64-cost-tables.h

2014-11-07 Thread Andrew Pinski
On Fri, Nov 7, 2014 at 7:08 AM, Richard Earnshaw  wrote:
> On 21/10/14 22:37, Andrew Pinski wrote:
>> Hi,
>>   To make aarch64.c a little smaller and a little easier to
>> understand, I have moved the rest of the cost tables
>> (cpu_addrcost_table, cpu_regmove_cost, cpu_vector_cost) to
>> aarch64-cost-tables.
>> I also fixed up the inconstancy in the use of __extension__ on some of
>> the structures and not all of them.  I used a define to allow it
>> easier instead of having to have "#if HAVE_DESIGNATED_INITIALIZERS &&
>> GCC_VERSION >= 2007" each time.
>>
>> OK?  Build and tested on aarch64-elf with no regressions.
>>
>> Thanks,
>> Andrew Pinski
>>
>> ChangeLog:
>> * config/aarch64/aarch64-cost-tables.h (NAMED_PARAM): New define.
>> (NEED_EXTENSION): New define.
>> (generic_addrcost_table): Moved from aarch64.c.
>> (cortexa57_addrcost_table): Likewise.
>> (generic_regmove_cost): Likewise.
>> (cortexa57_regmove_cost): Likewise.
>> (cortexa53_regmove_cost): Likewise.
>> (thunderx_regmove_cost): Likewise.
>> (generic_vector_cost): Likewise.
>> (cortexa57_vector_cost): Likewise.
>> * config/aarch64/aarch64.c (NAMED_PARAM): Delete, moved to
>> aarch64-cost-tables.h.
>> (generic_addrcost_table): Likewise.
>> (cortexa57_addrcost_table): Likewise.
>> (generic_regmove_cost): Likewise.
>> (cortexa57_regmove_cost): Likewise.
>> (cortexa53_regmove_cost): Likewise.
>> (thunderx_regmove_cost): Likewise.
>> (generic_vector_cost): Likewise.
>> (cortexa57_vector_cost): Likewise.
>> (generic_tunings): Use NEED_EXTENSION.
>> (cortexa53_tunings): Likewise.
>> (cortexa57_tunings): Likewise.
>> (thunderx_tunings): Likewise.
>>
>>
>
> I don't particularly like the idea of having real data and code in
> header files.  Can't this be moved into aarch64-cost-tables.c?


Yes it should be able to.  I will test to do that.  I was just
following what was done for the common (between arm and aarch64) cost
tables already.

Thanks,
Andrew Pinski

>
> R.
>
>> movetablestoaarch64-cost.diff.txt
>>
>>
>> Index: config/aarch64/aarch64-cost-tables.h
>> ===
>> --- config/aarch64/aarch64-cost-tables.h  (revision 216524)
>> +++ config/aarch64/aarch64-cost-tables.h  (working copy)
>> @@ -125,7 +125,135 @@ const struct cpu_cost_table thunderx_ext
>>}
>>  };
>>
>> +#if HAVE_DESIGNATED_INITIALIZERS
>> +#define NAMED_PARAM(NAME, VAL) .NAME = (VAL)
>> +#else
>> +#define NAMED_PARAM(NAME, VAL) (VAL)
>> +#endif
>> +
>> +#if HAVE_DESIGNATED_INITIALIZERS && GCC_VERSION >= 2007
>> +#define NEED_EXTENSION __extension__
>> +#else
>> +#define NEED_EXTENSION
>> +#endif
>> +
>> +
>> +/* The address cost models.  */
>> +NEED_EXTENSION
>> +static const struct cpu_addrcost_table generic_addrcost_table =
>> +{
>> +#if HAVE_DESIGNATED_INITIALIZERS
>> +  .addr_scale_costs =
>> +#endif
>> +{
>> +  NAMED_PARAM (hi, 0),
>> +  NAMED_PARAM (si, 0),
>> +  NAMED_PARAM (di, 0),
>> +  NAMED_PARAM (ti, 0),
>> +},
>> +  NAMED_PARAM (pre_modify, 0),
>> +  NAMED_PARAM (post_modify, 0),
>> +  NAMED_PARAM (register_offset, 0),
>> +  NAMED_PARAM (register_extend, 0),
>> +  NAMED_PARAM (imm_offset, 0)
>> +};
>> +
>> +NEED_EXTENSION
>> +static const struct cpu_addrcost_table cortexa57_addrcost_table =
>> +{
>> +#if HAVE_DESIGNATED_INITIALIZERS
>> +  .addr_scale_costs =
>> +#endif
>> +{
>> +  NAMED_PARAM (hi, 1),
>> +  NAMED_PARAM (si, 0),
>> +  NAMED_PARAM (di, 0),
>> +  NAMED_PARAM (ti, 1),
>> +},
>> +  NAMED_PARAM (pre_modify, 0),
>> +  NAMED_PARAM (post_modify, 0),
>> +  NAMED_PARAM (register_offset, 0),
>> +  NAMED_PARAM (register_extend, 0),
>> +  NAMED_PARAM (imm_offset, 0),
>> +};
>> +
>> +
>> +/* Register to Register move costs */
>>
>> +NEED_EXTENSION
>> +static const struct cpu_regmove_cost generic_regmove_cost =
>> +{
>> +  NAMED_PARAM (GP2GP, 1),
>> +  NAMED_PARAM (GP2FP, 2),
>> +  NAMED_PARAM (FP2GP, 2),
>> +  NAMED_PARAM (FP2FP, 2)
>> +};
>> +
>> +NEED_EXTENSION
>> +static const struct cpu_regmove_cost cortexa57_regmove_cost =
>> +{
>> +  NAMED_PARAM (GP2GP, 1),
>> +  /* Avoid the use of slow int<->fp moves for spilling by setting
>> + their cost higher than memmov_cost.  */
>> +  NAMED_PARAM (GP2FP, 5),
>> +  NAMED_PARAM (FP2GP, 5),
>> +  NAMED_PARAM (FP2FP, 2)
>> +};
>> +
>> +NEED_EXTENSION
>> +static const struct cpu_regmove_cost cortexa53_regmove_cost =
>> +{
>> +  NAMED_PARAM (GP2GP, 1),
>> +  /* Avoid the use of slow int<->fp moves for spilling by setting
>> + their cost higher than memmov_cost.  */
>> +  NAMED_PARAM (GP2FP, 5),
>> +  NAMED_PARAM (FP2GP, 5),
>> +  NAMED_PARAM (FP2FP, 2)
>> +};
>> +
>> +NEED_EXTENSION
>> +static const struct cpu_regmove_cost thunderx_regmove_cost =
>> +{
>> +  NAMED_PARAM (GP2GP, 2),
>> +  NAMED_PARAM (GP2FP, 2),
>> +  NAMED_PARAM (FP2GP, 6),
>> +  NAMED_PARAM (FP2FP, 4)
>> +};
>> +
>> +/* Vector instruction cost model */
>> +NEED_EXTENSION
>> +static const struct cpu_vector_cost generic_vector_cost =
>>

Re: [PATCH/AARCH64] Move the rest of the cost tables to aarch64-cost-tables.h

2014-11-07 Thread Richard Earnshaw
On 21/10/14 22:37, Andrew Pinski wrote:
> Hi,
>   To make aarch64.c a little smaller and a little easier to
> understand, I have moved the rest of the cost tables
> (cpu_addrcost_table, cpu_regmove_cost, cpu_vector_cost) to
> aarch64-cost-tables.
> I also fixed up the inconstancy in the use of __extension__ on some of
> the structures and not all of them.  I used a define to allow it
> easier instead of having to have "#if HAVE_DESIGNATED_INITIALIZERS &&
> GCC_VERSION >= 2007" each time.
> 
> OK?  Build and tested on aarch64-elf with no regressions.
> 
> Thanks,
> Andrew Pinski
> 
> ChangeLog:
> * config/aarch64/aarch64-cost-tables.h (NAMED_PARAM): New define.
> (NEED_EXTENSION): New define.
> (generic_addrcost_table): Moved from aarch64.c.
> (cortexa57_addrcost_table): Likewise.
> (generic_regmove_cost): Likewise.
> (cortexa57_regmove_cost): Likewise.
> (cortexa53_regmove_cost): Likewise.
> (thunderx_regmove_cost): Likewise.
> (generic_vector_cost): Likewise.
> (cortexa57_vector_cost): Likewise.
> * config/aarch64/aarch64.c (NAMED_PARAM): Delete, moved to
> aarch64-cost-tables.h.
> (generic_addrcost_table): Likewise.
> (cortexa57_addrcost_table): Likewise.
> (generic_regmove_cost): Likewise.
> (cortexa57_regmove_cost): Likewise.
> (cortexa53_regmove_cost): Likewise.
> (thunderx_regmove_cost): Likewise.
> (generic_vector_cost): Likewise.
> (cortexa57_vector_cost): Likewise.
> (generic_tunings): Use NEED_EXTENSION.
> (cortexa53_tunings): Likewise.
> (cortexa57_tunings): Likewise.
> (thunderx_tunings): Likewise.
> 
> 

I don't particularly like the idea of having real data and code in
header files.  Can't this be moved into aarch64-cost-tables.c?

R.

> movetablestoaarch64-cost.diff.txt
> 
> 
> Index: config/aarch64/aarch64-cost-tables.h
> ===
> --- config/aarch64/aarch64-cost-tables.h  (revision 216524)
> +++ config/aarch64/aarch64-cost-tables.h  (working copy)
> @@ -125,7 +125,135 @@ const struct cpu_cost_table thunderx_ext
>}
>  };
>  
> +#if HAVE_DESIGNATED_INITIALIZERS
> +#define NAMED_PARAM(NAME, VAL) .NAME = (VAL)
> +#else
> +#define NAMED_PARAM(NAME, VAL) (VAL)
> +#endif
> +
> +#if HAVE_DESIGNATED_INITIALIZERS && GCC_VERSION >= 2007
> +#define NEED_EXTENSION __extension__
> +#else
> +#define NEED_EXTENSION
> +#endif
> +
> +
> +/* The address cost models.  */
> +NEED_EXTENSION
> +static const struct cpu_addrcost_table generic_addrcost_table =
> +{
> +#if HAVE_DESIGNATED_INITIALIZERS
> +  .addr_scale_costs =
> +#endif
> +{
> +  NAMED_PARAM (hi, 0),
> +  NAMED_PARAM (si, 0),
> +  NAMED_PARAM (di, 0),
> +  NAMED_PARAM (ti, 0),
> +},
> +  NAMED_PARAM (pre_modify, 0),
> +  NAMED_PARAM (post_modify, 0),
> +  NAMED_PARAM (register_offset, 0),
> +  NAMED_PARAM (register_extend, 0),
> +  NAMED_PARAM (imm_offset, 0)
> +};
> +
> +NEED_EXTENSION
> +static const struct cpu_addrcost_table cortexa57_addrcost_table =
> +{
> +#if HAVE_DESIGNATED_INITIALIZERS
> +  .addr_scale_costs =
> +#endif
> +{
> +  NAMED_PARAM (hi, 1),
> +  NAMED_PARAM (si, 0),
> +  NAMED_PARAM (di, 0),
> +  NAMED_PARAM (ti, 1),
> +},
> +  NAMED_PARAM (pre_modify, 0),
> +  NAMED_PARAM (post_modify, 0),
> +  NAMED_PARAM (register_offset, 0),
> +  NAMED_PARAM (register_extend, 0),
> +  NAMED_PARAM (imm_offset, 0),
> +};
> +
> +
> +/* Register to Register move costs */
>  
> +NEED_EXTENSION
> +static const struct cpu_regmove_cost generic_regmove_cost =
> +{
> +  NAMED_PARAM (GP2GP, 1),
> +  NAMED_PARAM (GP2FP, 2),
> +  NAMED_PARAM (FP2GP, 2),
> +  NAMED_PARAM (FP2FP, 2)
> +};
> +
> +NEED_EXTENSION
> +static const struct cpu_regmove_cost cortexa57_regmove_cost =
> +{
> +  NAMED_PARAM (GP2GP, 1),
> +  /* Avoid the use of slow int<->fp moves for spilling by setting
> + their cost higher than memmov_cost.  */
> +  NAMED_PARAM (GP2FP, 5),
> +  NAMED_PARAM (FP2GP, 5),
> +  NAMED_PARAM (FP2FP, 2)
> +};
> +
> +NEED_EXTENSION
> +static const struct cpu_regmove_cost cortexa53_regmove_cost =
> +{
> +  NAMED_PARAM (GP2GP, 1),
> +  /* Avoid the use of slow int<->fp moves for spilling by setting
> + their cost higher than memmov_cost.  */
> +  NAMED_PARAM (GP2FP, 5),
> +  NAMED_PARAM (FP2GP, 5),
> +  NAMED_PARAM (FP2FP, 2)
> +};
> +
> +NEED_EXTENSION
> +static const struct cpu_regmove_cost thunderx_regmove_cost =
> +{
> +  NAMED_PARAM (GP2GP, 2),
> +  NAMED_PARAM (GP2FP, 2),
> +  NAMED_PARAM (FP2GP, 6),
> +  NAMED_PARAM (FP2FP, 4)
> +};
> +
> +/* Vector instruction cost model */
> +NEED_EXTENSION
> +static const struct cpu_vector_cost generic_vector_cost =
> +{
> +  NAMED_PARAM (scalar_stmt_cost, 1),
> +  NAMED_PARAM (scalar_load_cost, 1),
> +  NAMED_PARAM (scalar_store_cost, 1),
> +  NAMED_PARAM (vec_stmt_cost, 1),
> +  NAMED_PARAM (vec_to_scalar_cost, 1),
> +  NAMED_PARAM (scalar_to_vec_cost, 1),
> +  NAMED_PARAM (vec_align_load_cost, 1),
> +  NAMED_PARAM (vec_unalign_load_cost, 1),
> +  NAMED_PARAM (vec_unalign_store_cost, 1),
> +