diff options
author | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-05 23:11:55 +0000 |
---|---|---|
committer | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-05 23:11:55 +0000 |
commit | a8a3b539f8b6ff903fcac75f7dd01ee1b1654c6e (patch) | |
tree | 55df21a18e500fcafb6fcaf071eb2fc50186dc76 /gcc/config/arm/arm-protos.h | |
parent | 15ee95c7f5c4d2efc18ae1581800e7fdb144bafe (diff) | |
download | gcc-a8a3b539f8b6ff903fcac75f7dd01ee1b1654c6e.tar.gz |
* config/arm/arm-protots.h (vfp_mem_operand): Rename ...
(arm_coproc_mem_operand): ... To this.
* config/arm/arm.c (arm_legitimate_address_p): Allow ldrd modes.
(arm_legitimate_index_p): Ditto.
(vfp_mem_operand): Rename ...
(arm_coproc_mem_operand): ... To this. Handle writeback modes.
(vfp_secondary_reload_class): Use it.
(output_move_double): Use doubleword load/store instructions.
(arm_hard_regno_mode_ok): Only allow even reg pairs for ldrd.
* config/arm/arm.h (TARGET_LDRD): Define.
(EXTRA_CONSTRAINT_STR_ARM): Add 'Uy'.
* config/gcc/arm/arm.md (arm_movdi): Allow all valid memory operands.
New splitter for invalid doubleword loads.
* config/arm/iwmmxt.md (iwmmxt_arm_movdi): Use Uy constraint.
* config/arm/vfp.md (arm_movdi_vfp): Allow all valid memory operands.
* doc/md.texi: Document Uy constraint.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81543 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/arm/arm-protos.h')
-rw-r--r-- | gcc/config/arm/arm-protos.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/arm/arm-protos.h b/gcc/config/arm/arm-protos.h index 0359fe77116..0605803a3fe 100644 --- a/gcc/config/arm/arm-protos.h +++ b/gcc/config/arm/arm-protos.h @@ -100,7 +100,7 @@ extern int cirrus_general_operand (rtx, enum machine_mode); extern int cirrus_register_operand (rtx, enum machine_mode); extern int cirrus_shift_const (rtx, enum machine_mode); extern int cirrus_memory_offset (rtx); -extern int vfp_mem_operand (rtx); +extern int arm_coproc_mem_operand (rtx, bool); extern int vfp_compare_operand (rtx, enum machine_mode); extern int arm_float_compare_operand (rtx, enum machine_mode); extern int arm_no_early_store_addr_dep (rtx, rtx); |