annotate gcc/config/powerpcspe/vec_types.h @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Cell single token vector types
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
2 Copyright (C) 2007-2018 Free Software Foundation, Inc.
111
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 This file is free software; you can redistribute it and/or modify it under
kono
parents:
diff changeset
5 the terms of the GNU General Public License as published by the Free
kono
parents:
diff changeset
6 Software Foundation; either version 3 of the License, or (at your option)
kono
parents:
diff changeset
7 any later version.
kono
parents:
diff changeset
8
kono
parents:
diff changeset
9 This file is distributed in the hope that it will be useful, but WITHOUT
kono
parents:
diff changeset
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
kono
parents:
diff changeset
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
kono
parents:
diff changeset
12 for more details.
kono
parents:
diff changeset
13
kono
parents:
diff changeset
14 Under Section 7 of GPL version 3, you are granted additional
kono
parents:
diff changeset
15 permissions described in the GCC Runtime Library Exception, version
kono
parents:
diff changeset
16 3.1, as published by the Free Software Foundation.
kono
parents:
diff changeset
17
kono
parents:
diff changeset
18 You should have received a copy of the GNU General Public License and
kono
parents:
diff changeset
19 a copy of the GCC Runtime Library Exception along with this program;
kono
parents:
diff changeset
20 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
kono
parents:
diff changeset
21 <http://www.gnu.org/licenses/>. */
kono
parents:
diff changeset
22
kono
parents:
diff changeset
23 /* Single token vector data types for the PowerPC SIMD/Vector Multi-media
kono
parents:
diff changeset
24 eXtension */
kono
parents:
diff changeset
25
kono
parents:
diff changeset
26 #ifndef _VEC_TYPES_H_
kono
parents:
diff changeset
27 #define _VEC_TYPES_H_ 1
kono
parents:
diff changeset
28
kono
parents:
diff changeset
29 #define qword __vector unsigned char
kono
parents:
diff changeset
30
kono
parents:
diff changeset
31 #define vec_uchar16 __vector unsigned char
kono
parents:
diff changeset
32 #define vec_char16 __vector signed char
kono
parents:
diff changeset
33 #define vec_bchar16 __vector bool char
kono
parents:
diff changeset
34
kono
parents:
diff changeset
35 #define vec_ushort8 __vector unsigned short
kono
parents:
diff changeset
36 #define vec_short8 __vector signed short
kono
parents:
diff changeset
37 #define vec_bshort8 __vector bool short
kono
parents:
diff changeset
38
kono
parents:
diff changeset
39 #define vec_pixel8 __vector pixel
kono
parents:
diff changeset
40
kono
parents:
diff changeset
41 #define vec_uint4 __vector unsigned int
kono
parents:
diff changeset
42 #define vec_int4 __vector signed int
kono
parents:
diff changeset
43 #define vec_bint4 __vector bool int
kono
parents:
diff changeset
44
kono
parents:
diff changeset
45 #define vec_float4 __vector float
kono
parents:
diff changeset
46
kono
parents:
diff changeset
47 #define vec_ullong2 __vector bool char
kono
parents:
diff changeset
48 #define vec_llong2 __vector bool short
kono
parents:
diff changeset
49
kono
parents:
diff changeset
50 #define vec_double2 __vector bool int
kono
parents:
diff changeset
51
kono
parents:
diff changeset
52 #endif /* _VEC_TYPES_H_ */