Import pre-release gcc-5.0 to new vendor branch
[dragonfly.git] / contrib / gcc-5.0 / libgcc / config / aarch64 / sfp-machine.h
1 /* Machine description for AArch64 architecture.
2    Copyright (C) 2009-2015 Free Software Foundation, Inc.
3    Contributed by ARM Ltd.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
20
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
24 <http://www.gnu.org/licenses/>.  */
25
26 #define _FP_W_TYPE_SIZE         64
27 #define _FP_W_TYPE              unsigned long long
28 #define _FP_WS_TYPE             signed long long
29 #define _FP_I_TYPE              long long
30
31 typedef int TItype __attribute__ ((mode (TI)));
32 typedef unsigned int UTItype __attribute__ ((mode (TI)));
33 #define TI_BITS (__CHAR_BIT__ * (int)sizeof(TItype))
34
35 /* The type of the result of a floating point comparison.  This must
36    match __libgcc_cmp_return__ in GCC for the target.  */
37 typedef int __gcc_CMPtype __attribute__ ((mode (__libgcc_cmp_return__)));
38 #define CMPtype __gcc_CMPtype
39
40 #define _FP_MUL_MEAT_Q(R,X,Y)                           \
41   _FP_MUL_MEAT_2_wide(_FP_WFRACBITS_Q,R,X,Y,umul_ppmm)
42
43 #define _FP_DIV_MEAT_Q(R,X,Y)   _FP_DIV_MEAT_2_udiv(Q,R,X,Y)
44
45 #define _FP_NANFRAC_S           ((_FP_QNANBIT_S << 1) - 1)
46 #define _FP_NANFRAC_D           ((_FP_QNANBIT_D << 1) - 1)
47 #define _FP_NANFRAC_Q           ((_FP_QNANBIT_Q << 1) - 1), -1
48 #define _FP_NANSIGN_S           0
49 #define _FP_NANSIGN_D           0
50 #define _FP_NANSIGN_Q           0
51
52 #define _FP_KEEPNANFRACP 1
53 #define _FP_QNANNEGATEDP 0
54
55 /* This appears to be in line with the VFP conventions in the v7-a
56    ARM-ARM. Need to check with the v8 version.  */
57 #define _FP_CHOOSENAN(fs, wc, R, X, Y, OP)                      \
58   do {                                                          \
59     if ((_FP_FRAC_HIGH_RAW_##fs(X) & _FP_QNANBIT_##fs)          \
60         && !(_FP_FRAC_HIGH_RAW_##fs(Y) & _FP_QNANBIT_##fs))     \
61       {                                                         \
62         R##_s = Y##_s;                                          \
63         _FP_FRAC_COPY_##wc(R,Y);                                \
64       }                                                         \
65     else                                                        \
66       {                                                         \
67         R##_s = X##_s;                                          \
68         _FP_FRAC_COPY_##wc(R,X);                                \
69       }                                                         \
70     R##_c = FP_CLS_NAN;                                         \
71   } while (0)
72
73 #define FP_EX_INVALID   0x01
74 #define FP_EX_DIVZERO   0x02
75 #define FP_EX_OVERFLOW  0x04
76 #define FP_EX_UNDERFLOW 0x08
77 #define FP_EX_INEXACT   0x10
78 #define FP_EX_SHIFT 8
79 #define FP_EX_ALL \
80         (FP_EX_INVALID | FP_EX_DIVZERO | FP_EX_OVERFLOW | FP_EX_UNDERFLOW \
81          | FP_EX_INEXACT)
82
83 #define _FP_TININESS_AFTER_ROUNDING 0
84
85 void __sfp_handle_exceptions (int);
86
87 #define FP_HANDLE_EXCEPTIONS                    \
88   do {                                          \
89     if (__builtin_expect (_fex, 0))             \
90       __sfp_handle_exceptions (_fex);           \
91   } while (0);
92
93 #define FP_TRAPPING_EXCEPTIONS ((_fpcr >> FP_EX_SHIFT) & FP_EX_ALL)
94
95 #define FP_RND_NEAREST          0x000000
96 #define FP_RND_PINF             0x400000
97 #define FP_RND_MINF             0x800000
98 #define FP_RND_ZERO             0xc00000
99 #define FP_RND_MASK             0xc00000
100
101 #define _FP_DECL_EX \
102   unsigned long int _fpcr __attribute__ ((unused)) = FP_RND_NEAREST
103
104 #define FP_INIT_ROUNDMODE                       \
105   do {                                          \
106     __asm__ __volatile__ ("mrs  %0, fpcr"       \
107                           : "=r" (_fpcr));      \
108   } while (0)
109
110 #define FP_ROUNDMODE (_fpcr & FP_RND_MASK)
111
112 #define __LITTLE_ENDIAN 1234
113 #define __BIG_ENDIAN    4321
114
115 #if defined __AARCH64EB__
116 # define __BYTE_ORDER __BIG_ENDIAN
117 #else
118 # define __BYTE_ORDER __LITTLE_ENDIAN
119 #endif
120
121
122 /* Define ALIASNAME as a strong alias for NAME.  */
123 # define strong_alias(name, aliasname) _strong_alias(name, aliasname)
124 # define _strong_alias(name, aliasname) \
125   extern __typeof (name) aliasname __attribute__ ((alias (#name)));