[1046] | 1 | /* Copyright (C) 2007-2015 Free Software Foundation, Inc.
|
---|
| 2 |
|
---|
| 3 | This file is part of GCC.
|
---|
| 4 |
|
---|
| 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.
|
---|
| 9 |
|
---|
| 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.
|
---|
| 14 |
|
---|
| 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.
|
---|
| 18 |
|
---|
| 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/>. */
|
---|
| 23 |
|
---|
| 24 | #ifndef _X86INTRIN_H_INCLUDED
|
---|
| 25 | # error "Never use <lwpintrin.h> directly; include <x86intrin.h> instead."
|
---|
| 26 | #endif
|
---|
| 27 |
|
---|
| 28 | #ifndef _LWPINTRIN_H_INCLUDED
|
---|
| 29 | #define _LWPINTRIN_H_INCLUDED
|
---|
| 30 |
|
---|
| 31 | #ifndef __LWP__
|
---|
| 32 | #pragma GCC push_options
|
---|
| 33 | #pragma GCC target("lwp")
|
---|
| 34 | #define __DISABLE_LWP__
|
---|
| 35 | #endif /* __LWP__ */
|
---|
| 36 |
|
---|
| 37 | extern __inline void __attribute__((__gnu_inline__, __always_inline__, __artificial__))
|
---|
| 38 | __llwpcb (void *pcbAddress)
|
---|
| 39 | {
|
---|
| 40 | __builtin_ia32_llwpcb (pcbAddress);
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 | extern __inline void * __attribute__((__gnu_inline__, __always_inline__, __artificial__))
|
---|
| 44 | __slwpcb (void)
|
---|
| 45 | {
|
---|
| 46 | return __builtin_ia32_slwpcb ();
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 | #ifdef __OPTIMIZE__
|
---|
| 50 | extern __inline void __attribute__((__gnu_inline__, __always_inline__, __artificial__))
|
---|
| 51 | __lwpval32 (unsigned int data2, unsigned int data1, unsigned int flags)
|
---|
| 52 | {
|
---|
| 53 | __builtin_ia32_lwpval32 (data2, data1, flags);
|
---|
| 54 | }
|
---|
| 55 |
|
---|
| 56 | #ifdef __x86_64__
|
---|
| 57 | extern __inline void __attribute__((__gnu_inline__, __always_inline__, __artificial__))
|
---|
| 58 | __lwpval64 (unsigned long long data2, unsigned int data1, unsigned int flags)
|
---|
| 59 | {
|
---|
| 60 | __builtin_ia32_lwpval64 (data2, data1, flags);
|
---|
| 61 | }
|
---|
| 62 | #endif
|
---|
| 63 | #else
|
---|
| 64 | #define __lwpval32(D2, D1, F) \
|
---|
| 65 | (__builtin_ia32_lwpval32 ((unsigned int) (D2), (unsigned int) (D1), \
|
---|
| 66 | (unsigned int) (F)))
|
---|
| 67 | #ifdef __x86_64__
|
---|
| 68 | #define __lwpval64(D2, D1, F) \
|
---|
| 69 | (__builtin_ia32_lwpval64 ((unsigned long long) (D2), (unsigned int) (D1), \
|
---|
| 70 | (unsigned int) (F)))
|
---|
| 71 | #endif
|
---|
| 72 | #endif
|
---|
| 73 |
|
---|
| 74 |
|
---|
| 75 | #ifdef __OPTIMIZE__
|
---|
| 76 | extern __inline unsigned char __attribute__((__gnu_inline__, __always_inline__, __artificial__))
|
---|
| 77 | __lwpins32 (unsigned int data2, unsigned int data1, unsigned int flags)
|
---|
| 78 | {
|
---|
| 79 | return __builtin_ia32_lwpins32 (data2, data1, flags);
|
---|
| 80 | }
|
---|
| 81 |
|
---|
| 82 | #ifdef __x86_64__
|
---|
| 83 | extern __inline unsigned char __attribute__((__gnu_inline__, __always_inline__, __artificial__))
|
---|
| 84 | __lwpins64 (unsigned long long data2, unsigned int data1, unsigned int flags)
|
---|
| 85 | {
|
---|
| 86 | return __builtin_ia32_lwpins64 (data2, data1, flags);
|
---|
| 87 | }
|
---|
| 88 | #endif
|
---|
| 89 | #else
|
---|
| 90 | #define __lwpins32(D2, D1, F) \
|
---|
| 91 | (__builtin_ia32_lwpins32 ((unsigned int) (D2), (unsigned int) (D1), \
|
---|
| 92 | (unsigned int) (F)))
|
---|
| 93 | #ifdef __x86_64__
|
---|
| 94 | #define __lwpins64(D2, D1, F) \
|
---|
| 95 | (__builtin_ia32_lwpins64 ((unsigned long long) (D2), (unsigned int) (D1), \
|
---|
| 96 | (unsigned int) (F)))
|
---|
| 97 | #endif
|
---|
| 98 | #endif
|
---|
| 99 |
|
---|
| 100 | #ifdef __DISABLE_LWP__
|
---|
| 101 | #undef __DISABLE_LWP__
|
---|
| 102 | #pragma GCC pop_options
|
---|
| 103 | #endif /* __DISABLE_LWP__ */
|
---|
| 104 |
|
---|
| 105 | #endif /* _LWPINTRIN_H_INCLUDED */
|
---|