[Arm] Disallow arm_movdi when targetting MVE
authorMatthew Malcomson <matthew.malcomson@arm.com>
Wed, 15 Apr 2020 11:24:39 +0000 (12:24 +0100)
committerMatthew Malcomson <matthew.malcomson@arm.com>
Wed, 15 Apr 2020 11:24:39 +0000 (12:24 +0100)
commitd2f9e6ad0ce9e1e40821243fa9d01b7fdc42f32c
tree4f020577d0453b3701743e78aeeedb614cdba72c
parent5b2f76e36d861c881c6770b4f47c1fae6c0c8965
[Arm] Disallow arm_movdi when targetting MVE

Without disabling this, the pattern can try and move DImode values
between floating point registers and general registers.
The constraints on this pattern can't handle that, and reload goes into
an infinite loop.

This was the cause of a testsuite failure in cde_v_1_mve.c, which is now
gone.

A DImode move for MVE now uses the `movdi_vfp` pattern, which is the same
pattern used for such a move when MVE is not available but the target has
TARGET_HARD_FLOAT.

Testing done:
    Bootstrapped and regtested on arm-none-linux-gnueabihf
    regtested on arm-none-eabi

gcc/ChangeLog:

2020-04-15  Matthew Malcomson  <matthew.malcomson@arm.com>

* config/arm/arm.md (arm_movdi): Disallow for MVE.
gcc/ChangeLog
gcc/config/arm/arm.md