OSDN Git Service

* config/arm/t-linux-eabi (LIB2FUNCS_STATIC_EXTRA): Add
[pf3gnuchains/gcc-fork.git] / gcc / config / arm / vec-common.md
1 ;; Machine Description for shared bits common to IWMMXT and Neon.
2 ;; Copyright (C) 2006, 2007 Free Software Foundation, Inc.
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
9 ;; the Free Software Foundation; either version 3, or (at your option)
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
18 ;; along with GCC; see the file COPYING3.  If not see
19 ;; <http://www.gnu.org/licenses/>.
20
21 ;; Vector Moves
22
23 ;; All integer and float modes supported by Neon and IWMMXT.
24 (define_mode_iterator VALL [V2DI V2SI V4HI V8QI V2SF V4SI V8HI V16QI V4SF])
25
26 ;; All integer and float modes supported by Neon and IWMMXT, except V2DI.
27 (define_mode_iterator VALLW [V2SI V4HI V8QI V2SF V4SI V8HI V16QI V4SF])
28
29 ;; All integer modes supported by Neon and IWMMXT
30 (define_mode_iterator VINT [V2DI V2SI V4HI V8QI V4SI V8HI V16QI])
31
32 ;; All integer modes supported by Neon and IWMMXT, except V2DI
33 (define_mode_iterator VINTW [V2SI V4HI V8QI V4SI V8HI V16QI])
34
35 (define_expand "mov<mode>"
36   [(set (match_operand:VALL 0 "nonimmediate_operand" "")
37         (match_operand:VALL 1 "general_operand" ""))]
38   "TARGET_NEON
39    || (TARGET_REALLY_IWMMXT && VALID_IWMMXT_REG_MODE (<MODE>mode))"
40 {
41 })
42
43 ;; Vector arithmetic. Expanders are blank, then unnamed insns implement
44 ;; patterns separately for IWMMXT and Neon.
45
46 (define_expand "add<mode>3"
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" "")))]
50   "TARGET_NEON
51    || (TARGET_REALLY_IWMMXT && VALID_IWMMXT_REG_MODE (<MODE>mode))"
52 {
53 })
54
55 (define_expand "sub<mode>3"
56   [(set (match_operand:VALL 0 "s_register_operand" "")
57         (minus:VALL (match_operand:VALL 1 "s_register_operand" "")
58                     (match_operand:VALL 2 "s_register_operand" "")))]
59   "TARGET_NEON
60    || (TARGET_REALLY_IWMMXT && VALID_IWMMXT_REG_MODE (<MODE>mode))"
61 {
62 })
63
64 (define_expand "mul<mode>3"
65   [(set (match_operand:VALLW 0 "s_register_operand" "")
66         (mult:VALLW (match_operand:VALLW 1 "s_register_operand" "")
67                     (match_operand:VALLW 2 "s_register_operand" "")))]
68   "TARGET_NEON || (<MODE>mode == V4HImode && TARGET_REALLY_IWMMXT)"
69 {
70 })
71
72 (define_expand "smin<mode>3"
73   [(set (match_operand:VALLW 0 "s_register_operand" "")
74         (smin:VALLW (match_operand:VALLW 1 "s_register_operand" "")
75                     (match_operand:VALLW 2 "s_register_operand" "")))]
76   "TARGET_NEON
77    || (TARGET_REALLY_IWMMXT && VALID_IWMMXT_REG_MODE (<MODE>mode))"
78 {
79 })
80
81 (define_expand "umin<mode>3"
82   [(set (match_operand:VINTW 0 "s_register_operand" "")
83         (umin:VINTW (match_operand:VINTW 1 "s_register_operand" "")
84                     (match_operand:VINTW 2 "s_register_operand" "")))]
85   "TARGET_NEON
86    || (TARGET_REALLY_IWMMXT && VALID_IWMMXT_REG_MODE (<MODE>mode))"
87 {
88 })
89
90 (define_expand "smax<mode>3"
91   [(set (match_operand:VALLW 0 "s_register_operand" "")
92         (smax:VALLW (match_operand:VALLW 1 "s_register_operand" "")
93                     (match_operand:VALLW 2 "s_register_operand" "")))]
94   "TARGET_NEON
95    || (TARGET_REALLY_IWMMXT && VALID_IWMMXT_REG_MODE (<MODE>mode))"
96 {
97 })
98
99 (define_expand "umax<mode>3"
100   [(set (match_operand:VINTW 0 "s_register_operand" "")
101         (umax:VINTW (match_operand:VINTW 1 "s_register_operand" "")
102                     (match_operand:VINTW 2 "s_register_operand" "")))]
103   "TARGET_NEON
104    || (TARGET_REALLY_IWMMXT && VALID_IWMMXT_REG_MODE (<MODE>mode))"
105 {
106 })