]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config/arm/vec-common.md
Update copyright years.
[thirdparty/gcc.git] / gcc / config / arm / vec-common.md
CommitLineData
88f77cba 1;; Machine Description for shared bits common to IWMMXT and Neon.
8d9254fc 2;; Copyright (C) 2006-2020 Free Software Foundation, Inc.
88f77cba
JB
3;; Written by CodeSourcery.
4;;
5;; This file is part of GCC.
6;;
7;; GCC is free software; you can redistribute it and/or modify it
8;; under the terms of the GNU General Public License as published by
2f83c7d6 9;; the Free Software Foundation; either version 3, or (at your option)
88f77cba
JB
10;; any later version.
11;;
12;; GCC is distributed in the hope that it will be useful, but
13;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15;; General Public License for more details.
16;;
17;; You should have received a copy of the GNU General Public License
2f83c7d6
NC
18;; along with GCC; see the file COPYING3. If not see
19;; <http://www.gnu.org/licenses/>.
88f77cba
JB
20
21;; Vector Moves
22
88f77cba 23(define_expand "mov<mode>"
cd65e265
DZ
24 [(set (match_operand:VALL 0 "nonimmediate_operand")
25 (match_operand:VALL 1 "general_operand"))]
88f77cba
JB
26 "TARGET_NEON
27 || (TARGET_REALLY_IWMMXT && VALID_IWMMXT_REG_MODE (<MODE>mode))"
28{
70cdb21e
BE
29 gcc_checking_assert (aligned_operand (operands[0], <MODE>mode));
30 gcc_checking_assert (aligned_operand (operands[1], <MODE>mode));
40f73786
DJ
31 if (can_create_pseudo_p ())
32 {
d435a4be 33 if (!REG_P (operands[0]))
40f73786 34 operands[1] = force_reg (<MODE>mode, operands[1]);
814a4c3b
DJ
35 else if (TARGET_NEON && CONSTANT_P (operands[1]))
36 {
37 operands[1] = neon_make_constant (operands[1]);
38 gcc_assert (operands[1] != NULL_RTX);
39 }
40f73786 40 }
88f77cba
JB
41})
42
43;; Vector arithmetic. Expanders are blank, then unnamed insns implement
cea618ac 44;; patterns separately for IWMMXT and Neon.
88f77cba
JB
45
46(define_expand "add<mode>3"
cd65e265
DZ
47 [(set (match_operand:VALL 0 "s_register_operand")
48 (plus:VALL (match_operand:VALL 1 "s_register_operand")
49 (match_operand:VALL 2 "s_register_operand")))]
400cfcf5
JB
50 "(TARGET_NEON && ((<MODE>mode != V2SFmode && <MODE>mode != V4SFmode)
51 || flag_unsafe_math_optimizations))
88f77cba
JB
52 || (TARGET_REALLY_IWMMXT && VALID_IWMMXT_REG_MODE (<MODE>mode))"
53{
54})
55
56(define_expand "sub<mode>3"
cd65e265
DZ
57 [(set (match_operand:VALL 0 "s_register_operand")
58 (minus:VALL (match_operand:VALL 1 "s_register_operand")
59 (match_operand:VALL 2 "s_register_operand")))]
400cfcf5
JB
60 "(TARGET_NEON && ((<MODE>mode != V2SFmode && <MODE>mode != V4SFmode)
61 || flag_unsafe_math_optimizations))
88f77cba
JB
62 || (TARGET_REALLY_IWMMXT && VALID_IWMMXT_REG_MODE (<MODE>mode))"
63{
64})
65
66(define_expand "mul<mode>3"
cd65e265
DZ
67 [(set (match_operand:VALLW 0 "s_register_operand")
68 (mult:VALLW (match_operand:VALLW 1 "s_register_operand")
69 (match_operand:VALLW 2 "s_register_operand")))]
400cfcf5
JB
70 "(TARGET_NEON && ((<MODE>mode != V2SFmode && <MODE>mode != V4SFmode)
71 || flag_unsafe_math_optimizations))
72 || (<MODE>mode == V4HImode && TARGET_REALLY_IWMMXT)"
88f77cba
JB
73{
74})
75
76(define_expand "smin<mode>3"
cd65e265
DZ
77 [(set (match_operand:VALLW 0 "s_register_operand")
78 (smin:VALLW (match_operand:VALLW 1 "s_register_operand")
79 (match_operand:VALLW 2 "s_register_operand")))]
400cfcf5
JB
80 "(TARGET_NEON && ((<MODE>mode != V2SFmode && <MODE>mode != V4SFmode)
81 || flag_unsafe_math_optimizations))
88f77cba
JB
82 || (TARGET_REALLY_IWMMXT && VALID_IWMMXT_REG_MODE (<MODE>mode))"
83{
84})
85
86(define_expand "umin<mode>3"
cd65e265
DZ
87 [(set (match_operand:VINTW 0 "s_register_operand")
88 (umin:VINTW (match_operand:VINTW 1 "s_register_operand")
89 (match_operand:VINTW 2 "s_register_operand")))]
88f77cba
JB
90 "TARGET_NEON
91 || (TARGET_REALLY_IWMMXT && VALID_IWMMXT_REG_MODE (<MODE>mode))"
92{
93})
94
95(define_expand "smax<mode>3"
cd65e265
DZ
96 [(set (match_operand:VALLW 0 "s_register_operand")
97 (smax:VALLW (match_operand:VALLW 1 "s_register_operand")
98 (match_operand:VALLW 2 "s_register_operand")))]
400cfcf5
JB
99 "(TARGET_NEON && ((<MODE>mode != V2SFmode && <MODE>mode != V4SFmode)
100 || flag_unsafe_math_optimizations))
88f77cba
JB
101 || (TARGET_REALLY_IWMMXT && VALID_IWMMXT_REG_MODE (<MODE>mode))"
102{
103})
104
105(define_expand "umax<mode>3"
cd65e265
DZ
106 [(set (match_operand:VINTW 0 "s_register_operand")
107 (umax:VINTW (match_operand:VINTW 1 "s_register_operand")
108 (match_operand:VINTW 2 "s_register_operand")))]
88f77cba
JB
109 "TARGET_NEON
110 || (TARGET_REALLY_IWMMXT && VALID_IWMMXT_REG_MODE (<MODE>mode))"
111{
112})
b440f324 113
b440f324 114(define_expand "vec_perm<mode>"
cd65e265
DZ
115 [(match_operand:VE 0 "s_register_operand")
116 (match_operand:VE 1 "s_register_operand")
117 (match_operand:VE 2 "s_register_operand")
118 (match_operand:VE 3 "s_register_operand")]
b440f324
RH
119 "TARGET_NEON && !BYTES_BIG_ENDIAN"
120{
121 arm_expand_vec_perm (operands[0], operands[1], operands[2], operands[3]);
122 DONE;
123})