From 193bee751a607fac9d85e0ce8e6462fb5de1b515 Mon Sep 17 00:00:00 2001 From: Richard Sandiford Date: Sat, 6 Jul 2019 08:25:26 +0000 Subject: [PATCH] [arm] Fix ambiguous .md attribute uses This patch is part of a series that fixes ambiguous attribute uses in .md files, i.e. cases in which attributes didn't use to specify an iterator, and in which could have different values depending on the iterator chosen. I think this is a genuine bugfix for Thumb-1, since previously the LDREX width was taken from the SImode success result rather than the memory mode: -#define HAVE_atomic_compare_and_swapt1qi_1 ((TARGET_HAVE_LDREX && TARGET_HAVE_MEMORY_BARRIER) && (TARGET_THUMB1)) -#define HAVE_atomic_compare_and_swapt1hi_1 ((TARGET_HAVE_LDREX && TARGET_HAVE_MEMORY_BARRIER) && (TARGET_THUMB1)) -#define HAVE_atomic_compare_and_swapt1di_1 ((TARGET_HAVE_LDREX && TARGET_HAVE_MEMORY_BARRIER) && (TARGET_THUMB1)) +#define HAVE_atomic_compare_and_swapt1qi_1 ((TARGET_HAVE_LDREXBH && TARGET_HAVE_MEMORY_BARRIER) && (TARGET_THUMB1)) +#define HAVE_atomic_compare_and_swapt1hi_1 ((TARGET_HAVE_LDREXBH && TARGET_HAVE_MEMORY_BARRIER) && (TARGET_THUMB1)) +#define HAVE_atomic_compare_and_swapt1di_1 ((TARGET_HAVE_LDREXD && ARM_DOUBLEWORD_ALIGN \ + && TARGET_HAVE_MEMORY_BARRIER) && (TARGET_THUMB1)) The same goes for the predicate and constraints in @atomic_compare_and_swapt1di_1, which previously used the SI values from the success result. 2019-07-06 Richard Sandiford gcc/ * config/arm/sync.md (@atomic_compare_and_swap_1): Use instead of (implicitly) . (@atomic_compare_and_swap_1): Likewise . Use and . From-SVN: r273158 --- gcc/ChangeLog | 9 +++++++++ gcc/config/arm/sync.md | 6 +++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3ce8b90..1ae6b1c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,12 @@ +2019-07-06 Richard Sandiford + + * config/arm/sync.md + (@atomic_compare_and_swap_1): Use + instead of (implicitly) . + (@atomic_compare_and_swap_1): Likewise + . Use and + . + 2019-07-06 Jakub Jelinek * omp-low.c (struct omp_context): Add for_simd_scan_phase member. diff --git a/gcc/config/arm/sync.md b/gcc/config/arm/sync.md index 3d49aef..ed857d6 100644 --- a/gcc/config/arm/sync.md +++ b/gcc/config/arm/sync.md @@ -201,7 +201,7 @@ (match_operand:SI 7 "const_int_operand")] ;; mod_f VUNSPEC_ATOMIC_CAS)) (clobber (match_scratch:SI 8 "=&r,X,X,X"))] - "" + "" "#" "&& reload_completed" [(const_int 0)] @@ -225,14 +225,14 @@ (match_operand:SIDI 2 "mem_noofs_operand" "+Ua,Ua,Ua,Ua")) ;; memory (set (match_dup 2) (unspec_volatile:SIDI - [(match_operand:SIDI 3 "" ",lIL*h,J,*r") ;; expect + [(match_operand:SIDI 3 "" ",lIL*h,J,*r") ;; expect (match_operand:SIDI 4 "s_register_operand" "r,r,r,r") ;; desired (match_operand:SI 5 "const_int_operand") ;; is_weak (match_operand:SI 6 "const_int_operand") ;; mod_s (match_operand:SI 7 "const_int_operand")] ;; mod_f VUNSPEC_ATOMIC_CAS)) (clobber (match_scratch:SI 8 "=&r,X,X,X"))] - "" + "" "#" "&& reload_completed" [(const_int 0)] -- 2.7.4