+2015-07-05 Richard Sandiford <richard.sandiford@arm.com>
+
+ * target-insns.def (trap): New targetm instruction pattern.
+ * builtins.c (expand_builtin_trap): Use it instead of HAVE_*/gen_*
+ interface.
+ * explow.c (allocate_dynamic_stack_space): Likewise.
+ * ifcvt.c (find_if_header): Likewise.
+
2015-07-05 Richard Sandiford <richard.sandiford@arm.com>
* target-insns.def (prefetch): New targetm instruction pattern.
void
expand_builtin_trap (void)
{
-#ifdef HAVE_trap
- if (HAVE_trap)
+ if (targetm.have_trap ())
{
- rtx_insn *insn = emit_insn (gen_trap ());
+ rtx_insn *insn = emit_insn (targetm.gen_trap ());
/* For trap insns when not accumulating outgoing args force
REG_ARGS_SIZE note to prevent crossjumping of calls with
different args sizes. */
add_reg_note (insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
}
else
-#endif
emit_library_call (abort_libfunc, LCT_NORETURN, VOIDmode, 0);
emit_barrier ();
}
emit_cmp_and_jump_insns (available, size, GEU, NULL_RTX, Pmode, 1,
space_available);
-#ifdef HAVE_trap
- if (HAVE_trap)
- emit_insn (gen_trap ());
+ if (targetm.have_trap ())
+ emit_insn (targetm.gen_trap ());
else
-#endif
error ("stack limits not supported on this target");
emit_barrier ();
emit_label (space_available);
#ifndef HAVE_decscc
#define HAVE_decscc 0
#endif
-#ifndef HAVE_trap
-#define HAVE_trap 0
-#endif
#ifndef MAX_CONDITIONAL_EXECUTE
#define MAX_CONDITIONAL_EXECUTE \
&& cond_exec_find_if_block (&ce_info))
goto success;
- if (HAVE_trap
+ if (targetm.have_trap ()
&& optab_handler (ctrap_optab, word_mode) != CODE_FOR_nothing
&& find_cond_trap (test_bb, then_edge, else_edge))
goto success;
DEF_TARGET_INSN (simple_return, (void))
DEF_TARGET_INSN (store_multiple, (rtx x0, rtx x1, rtx x2))
DEF_TARGET_INSN (tablejump, (rtx x0, rtx x1))
+DEF_TARGET_INSN (trap, (void))
DEF_TARGET_INSN (untyped_call, (rtx x0, rtx x1, rtx x2))
DEF_TARGET_INSN (untyped_return, (rtx x0, rtx x1))