===================================================================
@@ -272,22 +272,13 @@
assumed in the instruction encoding. */
switch (mode)
{
+ case BLKmode:
case QImode:
case HImode:
return true;
- case SImode:
- case SFmode:
- case SCmode:
- return (INTVAL (op) % 4) == 0;
-
- case DImode:
- case DFmode:
- case DCmode:
- return (INTVAL (op) % 8) == 0;
-
default:
- break;
+ return (INTVAL (op) % GET_MODE_SIZE (mode)) == 0;
}
return false;
===================================================================
@@ -10517,21 +10532,13 @@
the majority of accesses will use floating point instructions
that don't support 14-bit offsets. */
if (!INT14_OK_STRICT
- && (GET_MODE_CLASS (mode) == MODE_FLOAT
- || (reload_in_progress
- && strict
- && (mode == SImode || mode == DImode))))
- return false;
+ && reload_in_progress
+ && strict
+ && mode != QImode
+ && mode != HImode)
+ return false;
- if (INT_14_BITS (index)
- && (mode == BLKmode
- || mode == QImode
- || mode == HImode
- /* Displacement must be a multiple of its size. */
- || (INTVAL (index) % GET_MODE_SIZE (mode)) == 0))
- return true;
-
- return false;
+ return base14_operand (index, mode);
}
if (!TARGET_DISABLE_INDEXING
@@ -10586,11 +10593,11 @@
return true;
if (!INT14_OK_STRICT
- && (GET_MODE_CLASS (mode) == MODE_FLOAT
- || (reload_in_progress
- && strict
- && (mode == SImode || mode == DImode))))
- return false;
+ && reload_in_progress
+ && strict
+ && mode != QImode
+ && mode != HImode)
+ return false;
if (CONSTANT_P (XEXP (x, 1)))
return true;