Daily bump.
[official-gcc.git] / gcc / config / aarch64 / aarch64-modes.def
blob7de0b3f2fec1024946e40c66088b5b48675c4b7a
1 /* Machine description for AArch64 architecture.
2 Copyright (C) 2009-2016 Free Software Foundation, Inc.
3 Contributed by ARM Ltd.
5 This file is part of GCC.
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.
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.
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/>. */
21 CC_MODE (CCFP);
22 CC_MODE (CCFPE);
23 CC_MODE (CC_SWP);
24 CC_MODE (CC_ZESWP); /* zero-extend LHS (but swap to make it RHS). */
25 CC_MODE (CC_SESWP); /* sign-extend LHS (but swap to make it RHS). */
26 CC_MODE (CC_NZ); /* Only N and Z bits of condition flags are valid. */
27 CC_MODE (CC_Z); /* Only Z bit of condition flags is valid. */
28 CC_MODE (CC_C); /* Only C bit of condition flags is valid. */
30 /* Half-precision floating point for __fp16. */
31 FLOAT_MODE (HF, 2, 0);
32 ADJUST_FLOAT_FORMAT (HF, &ieee_half_format);
34 /* Vector modes. */
35 VECTOR_MODES (INT, 8); /* V8QI V4HI V2SI. */
36 VECTOR_MODES (INT, 16); /* V16QI V8HI V4SI V2DI. */
37 VECTOR_MODES (FLOAT, 8); /* V2SF. */
38 VECTOR_MODES (FLOAT, 16); /* V4SF V2DF. */
39 VECTOR_MODE (FLOAT, DF, 1); /* V1DF. */
41 /* Oct Int: 256-bit integer mode needed for 32-byte vector arguments. */
42 INT_MODE (OI, 32);
44 /* Opaque integer modes for 3 or 4 Neon q-registers / 6 or 8 Neon d-registers
45 (2 d-regs = 1 q-reg = TImode). */
46 INT_MODE (CI, 48);
47 INT_MODE (XI, 64);
49 /* Vector modes for register lists. */
50 VECTOR_MODES (INT, 32); /* V32QI V16HI V8SI V4DI. */
51 VECTOR_MODES (FLOAT, 32); /* V8SF V4DF. */
53 VECTOR_MODES (INT, 48); /* V32QI V16HI V8SI V4DI. */
54 VECTOR_MODES (FLOAT, 48); /* V8SF V4DF. */
56 VECTOR_MODES (INT, 64); /* V32QI V16HI V8SI V4DI. */
57 VECTOR_MODES (FLOAT, 64); /* V8SF V4DF. */
59 /* Quad float: 128-bit floating mode for long doubles. */
60 FLOAT_MODE (TF, 16, ieee_quad_format);