[AArch64] Implement CRC32 ACLE intrinsics.
[official-gcc.git] / gcc / config / aarch64 / arm_acle.h
blob2e74696e2040df699ce77523f4e663fa8b7adef3
1 /* AArch64 Non-NEON ACLE intrinsics include file.
3 Copyright (C) 2014 Free Software Foundation, Inc.
4 Contributed by ARM Ltd.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published
10 by the Free Software Foundation; either version 3, or (at your
11 option) any later version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
16 License for more details.
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
22 You should have received a copy of the GNU General Public License and
23 a copy of the GCC Runtime Library Exception along with this program;
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 <http://www.gnu.org/licenses/>. */
27 #ifndef _GCC_ARM_ACLE_H
28 #define _GCC_ARM_ACLE_H
30 #include <stdint.h>
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
35 #ifdef __ARM_FEATURE_CRC32
36 __extension__ static __inline uint32_t __attribute__ ((__always_inline__))
37 __crc32b (uint32_t __a, uint8_t __b)
39 return __builtin_aarch64_crc32b (__a, __b);
42 __extension__ static __inline uint32_t __attribute__ ((__always_inline__))
43 __crc32cb (uint32_t __a, uint8_t __b)
45 return __builtin_aarch64_crc32cb (__a, __b);
48 __extension__ static __inline uint32_t __attribute__ ((__always_inline__))
49 __crc32ch (uint32_t __a, uint16_t __b)
51 return __builtin_aarch64_crc32ch (__a, __b);
54 __extension__ static __inline uint32_t __attribute__ ((__always_inline__))
55 __crc32cw (uint32_t __a, uint32_t __b)
57 return __builtin_aarch64_crc32cw (__a, __b);
60 __extension__ static __inline uint32_t __attribute__ ((__always_inline__))
61 __crc32cd (uint32_t __a, uint64_t __b)
63 return __builtin_aarch64_crc32cx (__a, __b);
66 __extension__ static __inline uint32_t __attribute__ ((__always_inline__))
67 __crc32h (uint32_t __a, uint16_t __b)
69 return __builtin_aarch64_crc32h (__a, __b);
72 __extension__ static __inline uint32_t __attribute__ ((__always_inline__))
73 __crc32w (uint32_t __a, uint32_t __b)
75 return __builtin_aarch64_crc32w (__a, __b);
78 __extension__ static __inline uint32_t __attribute__ ((__always_inline__))
79 __crc32d (uint32_t __a, uint64_t __b)
81 return __builtin_aarch64_crc32x (__a, __b);
84 #endif
86 #ifdef __cplusplus
88 #endif
90 #endif