+2015-06-24 Alan Lawrence <alan.lawrence@arm.com>
+
+ * config/aarch64/aarch64-protos.h (aarch64_err_no_fpadvsimd): New.
+
+ * config/aarch64/aarch64.md (mov<mode>/GPF, movtf): Use
+ aarch64_err_no_fpadvsimd.
+
+ * config/aarch64/aarch64.c (aarch64_err_no_fpadvsimd): New.
+ (aarch64_layout_arg, aarch64_init_cumulative_args): Use
+ aarch64_err_no_fpadvsimd if !TARGET_FLOAT and we need FP regs.
+ (aarch64_expand_builtin_va_start, aarch64_setup_incoming_varargs):
+ Turn error into assert, test TARGET_FLOAT.
+ (aarch64_gimplify_va_arg_expr): Use aarch64_err_no_fpadvsimd, test
+ TARGET_FLOAT.
+
2015-06-24 Aldy Hernandez <aldyh@redhat.com>
PR debug/66482
unsigned aarch64_trampoline_size (void);
void aarch64_asm_output_labelref (FILE *, const char *);
void aarch64_elf_asm_named_section (const char *, unsigned, tree);
+void aarch64_err_no_fpadvsimd (machine_mode, const char *);
void aarch64_expand_epilogue (bool);
void aarch64_expand_mov_immediate (rtx, rtx);
void aarch64_expand_prologue (void);
"hi", "ls", "ge", "lt", "gt", "le", "al", "nv"
};
+void
+aarch64_err_no_fpadvsimd (machine_mode mode, const char *msg)
+{
+ const char *mc = FLOAT_MODE_P (mode) ? "floating-point" : "vector";
+ if (TARGET_GENERAL_REGS_ONLY)
+ error ("%qs is incompatible with %s %s", "-mgeneral-regs-only", mc, msg);
+ else
+ error ("%qs feature modifier is incompatible with %s %s", "+nofp", mc, msg);
+}
+
static unsigned int
aarch64_min_divisions_for_recip_mul (enum machine_mode mode)
{
and homogenous short-vector aggregates (HVA). */
if (allocate_nvrn)
{
+ if (!TARGET_FLOAT)
+ aarch64_err_no_fpadvsimd (mode, "argument");
+
if (nvrn + nregs <= NUM_FP_ARG_REGS)
{
pcum->aapcs_nextnvrn = nvrn + nregs;
pcum->aapcs_stack_words = 0;
pcum->aapcs_stack_size = 0;
+ if (!TARGET_FLOAT
+ && fndecl && TREE_PUBLIC (fndecl)
+ && fntype && fntype != error_mark_node)
+ {
+ const_tree type = TREE_TYPE (fntype);
+ machine_mode mode ATTRIBUTE_UNUSED; /* To pass pointer as argument. */
+ int nregs ATTRIBUTE_UNUSED; /* Likewise. */
+ if (aarch64_vfp_is_call_or_return_candidate (TYPE_MODE (type), type,
+ &mode, &nregs, NULL))
+ aarch64_err_no_fpadvsimd (TYPE_MODE (type), "return type");
+ }
return;
}
if (!TARGET_FLOAT)
{
- if (cum->aapcs_nvrn > 0)
- sorry ("%qs and floating point or vector arguments",
- "-mgeneral-regs-only");
+ gcc_assert (cum->aapcs_nvrn == 0);
vr_save_area_size = 0;
}
{
/* TYPE passed in fp/simd registers. */
if (!TARGET_FLOAT)
- sorry ("%qs and floating point or vector arguments",
- "-mgeneral-regs-only");
+ aarch64_err_no_fpadvsimd (mode, "varargs");
f_top = build3 (COMPONENT_REF, TREE_TYPE (f_vrtop),
unshare_expr (valist), f_vrtop, NULL_TREE);
if (!TARGET_FLOAT)
{
- if (local_cum.aapcs_nvrn > 0)
- sorry ("%qs and floating point or vector arguments",
- "-mgeneral-regs-only");
+ gcc_assert (local_cum.aapcs_nvrn == 0);
vr_saved = 0;
}
[(set (match_operand:GPF 0 "nonimmediate_operand" "")
(match_operand:GPF 1 "general_operand" ""))]
""
- "
+ {
if (!TARGET_FLOAT)
- {
- sorry (\"%qs and floating point code\", \"-mgeneral-regs-only\");
+ {
+ aarch64_err_no_fpadvsimd (<MODE>mode, "code");
FAIL;
- }
+ }
if (GET_CODE (operands[0]) == MEM
&& ! (GET_CODE (operands[1]) == CONST_DOUBLE
&& aarch64_float_const_zero_rtx_p (operands[1])))
operands[1] = force_reg (<MODE>mode, operands[1]);
- "
+ }
)
(define_insn "*movsf_aarch64"
[(set (match_operand:TF 0 "nonimmediate_operand" "")
(match_operand:TF 1 "general_operand" ""))]
""
- "
+ {
if (!TARGET_FLOAT)
- {
- sorry (\"%qs and floating point code\", \"-mgeneral-regs-only\");
+ {
+ aarch64_err_no_fpadvsimd (TFmode, "code");
FAIL;
- }
+ }
if (GET_CODE (operands[0]) == MEM
&& ! (GET_CODE (operands[1]) == CONST_DOUBLE
&& aarch64_float_const_zero_rtx_p (operands[1])))
operands[1] = force_reg (TFmode, operands[1]);
- "
+ }
)
(define_insn "*movtf_aarch64"
+2015-06-24 Alan Lawrence <alan.lawrence@arm.com>
+
+ * gcc.target/aarch64/mgeneral-regs_1.c: New file.
+ * gcc.target/aarch64/mgeneral-regs_2.c: New file.
+ * gcc.target/aarch64/nofp_1.c: New file.
+
2015-06-24 Edward Smith-Rowland <3dw4rd@verizon.net>
Implement N3928 - Extending static_assert
--- /dev/null
+/* { dg-options "-mgeneral-regs-only" } */
+
+typedef int int32x2_t __attribute__ ((__vector_size__ ((8))));
+
+/* { dg-error "'-mgeneral-regs-only' is incompatible with vector return type" "" {target "aarch64*-*-*"} 7 } */
+/* { dg-error "'-mgeneral-regs-only' is incompatible with vector argument" "" {target "aarch64*-*-*"} 7 } */
+int32x2_t test (int32x2_t a, int32x2_t b)
+{
+ return a + b;
+}
--- /dev/null
+/* { dg-options "-mgeneral-regs-only" } */
+
+#include <stdarg.h>
+
+typedef int int32x2_t __attribute__ ((__vector_size__ ((8))));
+
+int
+test (int i, ...)
+{
+ va_list argp;
+ va_start (argp, i);
+ int32x2_t x = (int32x2_t) {0, 1};
+ x += va_arg (argp, int32x2_t); /* { dg-error "'-mgeneral-regs-only' is incompatible with vector varargs" } */
+ return x[0] + x[1];
+}
--- /dev/null
+/* { dg-skip-if "conflicting -march" { *-*-* } { "-march=*" } { "-march=*+nofp" } } */
+/* If there are multiple -march's, the latest wins; skip the test either way.
+ -march overrides -mcpu, so there is no possibility of conflict. */
+
+/* { dg-options "-march=armv8-a+nofp" } */
+
+#include <stdarg.h>
+
+typedef int int32x2_t __attribute__ ((__vector_size__ ((8))));
+
+int test (int i, ...);
+
+int
+main (int argc, char **argv)
+{
+ int32x2_t a = (int32x2_t) {0, 1};
+ int32x2_t b = (int32x2_t) {2, 3};
+ return test (2, a, b); /* { dg-error "'\\+nofp' feature modifier is incompatible with vector argument" } */
+}