Commit 21cebf90 by Kyrylo Tkachov Committed by Kyrylo Tkachov

[AArch64] Use @ pattern to eliminate switch statement in one more place

We can use the new '@' modifier to MD patterns to generate mode-parametrised gen_ functions
for the despeculate_copy patterns and therefore remove the switch on modes in aarch64.c
that is used to pick the right generator. This simplifies the code. 

	* config/aarch64/aarch64.md (despeculate_copy<ALLI_TI:mode>):
	Rename to...
	(@despeculate_copy<ALLI_TI:mode>): ... This.
	* config/aarch64/aarch64.c (aarch64_speculation_safe_value): Remove
	switch statement.

From-SVN: r265210
parent 436ea0e5
2018-10-16 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* config/aarch64/aarch64.md (despeculate_copy<ALLI_TI:mode>):
Rename to...
(@despeculate_copy<ALLI_TI:mode>): ... This.
* config/aarch64/aarch64.c (aarch64_speculation_safe_value): Remove
switch statement.
2018-10-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* config.gcc: Obsolete *-*-solaris2.10*.
......@@ -17969,26 +17969,7 @@ aarch64_speculation_safe_value (machine_mode mode,
if (!aarch64_reg_or_zero (failval, mode))
failval = copy_to_mode_reg (mode, failval);
switch (mode)
{
case E_QImode:
emit_insn (gen_despeculate_copyqi (result, val, failval));
break;
case E_HImode:
emit_insn (gen_despeculate_copyhi (result, val, failval));
break;
case E_SImode:
emit_insn (gen_despeculate_copysi (result, val, failval));
break;
case E_DImode:
emit_insn (gen_despeculate_copydi (result, val, failval));
break;
case E_TImode:
emit_insn (gen_despeculate_copyti (result, val, failval));
break;
default:
gcc_unreachable ();
}
emit_insn (gen_despeculate_copy (mode, result, val, failval));
return result;
}
......
......@@ -6716,7 +6716,7 @@
;; Support for __builtin_speculation_safe_value when we have speculation
;; tracking enabled. Use the speculation tracker to decide whether to
;; copy operand 1 to the target, or to copy the fail value (operand 2).
(define_expand "despeculate_copy<ALLI_TI:mode>"
(define_expand "@despeculate_copy<ALLI_TI:mode>"
[(set (match_operand:ALLI_TI 0 "register_operand" "=r")
(unspec_volatile:ALLI_TI
[(match_operand:ALLI_TI 1 "register_operand" "r")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment