From: ptomsich Date: Fri, 23 Nov 2018 17:49:40 +0000 (+0000) Subject: [aarch64] Add xgene1 prefetch tunings. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=efa47671f1852660e8e2d6be0f2367c5ad31dbd9;p=thirdparty%2Fgcc.git [aarch64] Add xgene1 prefetch tunings. 2018-11-23 Christoph Muellner Philipp Tomsich * config/aarch64/aarch64.c (xgene1_tunings): Add Xgene1 specific prefetch tunings. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@266413 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dd8d3f98b554..99538f78fd76 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,6 +1,8 @@ 2018-11-23 Christoph Muellner Philipp Tomsich + * config/aarch64/aarch64.c (xgene1_tunings): Add Xgene1 specific + prefetch tunings. * config/aarch64/aarch64.c (xgene1_addrcost_table): Correct the post-modify costs. * config/arm/aarch-cost-tables.h (xgene1_extra_costs): Update the cost table diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c index 598ea7968e9b..7375e06beff1 100644 --- a/gcc/config/aarch64/aarch64.c +++ b/gcc/config/aarch64/aarch64.c @@ -662,6 +662,17 @@ static const cpu_prefetch_tune tsv110_prefetch_tune = -1 /* default_opt_level */ }; +static const cpu_prefetch_tune xgene1_prefetch_tune = +{ + 8, /* num_slots */ + 32, /* l1_cache_size */ + 64, /* l1_cache_line_size */ + 256, /* l2_cache_size */ + true, /* prefetch_dynamic_strides */ + -1, /* minimum_stride */ + -1 /* default_opt_level */ +}; + static const struct tune_params generic_tunings = { &cortexa57_extra_costs, @@ -943,7 +954,7 @@ static const struct tune_params xgene1_tunings = 0, /* max_case_values. */ tune_params::AUTOPREFETCHER_OFF, /* autoprefetcher_model. */ (AARCH64_EXTRA_TUNE_NO_LDP_STP_QREGS), /* tune_flags. */ - &generic_prefetch_tune + &xgene1_prefetch_tune }; static const struct tune_params qdf24xx_tunings =