libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / config / i386 / sm3intrin.h
blob7f7fc1e917968e7779a2b069d3d6d38d03b48271
1 /* Copyright (C) 2023-2024 Free Software Foundation, Inc.
3 This file is part of GCC.
5 GCC is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3, or (at your option)
8 any later version.
10 GCC is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 Under Section 7 of GPL version 3, you are granted additional
16 permissions described in the GCC Runtime Library Exception, version
17 3.1, as published by the Free Software Foundation.
19 You should have received a copy of the GNU General Public License and
20 a copy of the GCC Runtime Library Exception along with this program;
21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
22 <http://www.gnu.org/licenses/>. */
24 #ifndef _IMMINTRIN_H_INCLUDED
25 #error "Never use <sm3intrin.h> directly; include <immintrin.h> instead."
26 #endif
28 #ifndef _SM3INTRIN_H_INCLUDED
29 #define _SM3INTRIN_H_INCLUDED
31 #ifndef __SM3__
32 #pragma GCC push_options
33 #pragma GCC target("sm3")
34 #define __DISABLE_SM3__
35 #endif /* __SM3__ */
37 extern __inline __m128i
38 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
39 _mm_sm3msg1_epi32 (__m128i __A, __m128i __B, __m128i __C)
41 return (__m128i) __builtin_ia32_vsm3msg1 ((__v4si) __A, (__v4si) __B,
42 (__v4si) __C);
45 extern __inline __m128i
46 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
47 _mm_sm3msg2_epi32 (__m128i __A, __m128i __B, __m128i __C)
49 return (__m128i) __builtin_ia32_vsm3msg2 ((__v4si) __A, (__v4si) __B,
50 (__v4si) __C);
53 #ifdef __OPTIMIZE__
54 extern __inline __m128i
55 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
56 _mm_sm3rnds2_epi32 (__m128i __A, __m128i __B, __m128i __C, const int __D)
58 return (__m128i) __builtin_ia32_vsm3rnds2 ((__v4si) __A, (__v4si) __B,
59 (__v4si) __C, __D);
61 #else
62 #define _mm_sm3rnds2_epi32(A, B, C, D) \
63 ((__m128i) __builtin_ia32_vsm3rnds2 ((__v4si) (A), (__v4si) (B), \
64 (__v4si) (C), (int) (D)))
65 #endif
67 #ifdef __DISABLE_SM3__
68 #undef __DISABLE_SM3__
69 #pragma GCC pop_options
70 #endif /* __DISABLE_SM3__ */
72 #endif /* _SM3INTRIN_H_INCLUDED */