]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config/i386/lwpintrin.h
Update copyright years in gcc/
[thirdparty/gcc.git] / gcc / config / i386 / lwpintrin.h
CommitLineData
23a5b65a 1/* Copyright (C) 2007-2014 Free Software Foundation, Inc.
3e901069
HJ
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__
97db2bf7
ST
32#pragma GCC push_options
33#pragma GCC target("lwp")
34#define __DISABLE_LWP__
35#endif /* __LWP__ */
3e901069
HJ
36
37extern __inline void __attribute__((__gnu_inline__, __always_inline__, __artificial__))
519517fd 38__llwpcb (void *pcbAddress)
3e901069 39{
519517fd 40 __builtin_ia32_llwpcb (pcbAddress);
3e901069
HJ
41}
42
43extern __inline void * __attribute__((__gnu_inline__, __always_inline__, __artificial__))
519517fd 44__slwpcb (void)
3e901069 45{
519517fd 46 return __builtin_ia32_slwpcb ();
3e901069
HJ
47}
48
519517fd 49#ifdef __OPTIMIZE__
3e901069
HJ
50extern __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
519517fd 56#ifdef __x86_64__
3e901069 57extern __inline void __attribute__((__gnu_inline__, __always_inline__, __artificial__))
519517fd 58__lwpval64 (unsigned long long data2, unsigned int data1, unsigned int flags)
3e901069
HJ
59{
60 __builtin_ia32_lwpval64 (data2, data1, flags);
61}
519517fd
JJ
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
3e901069 73
3e901069 74
519517fd 75#ifdef __OPTIMIZE__
3e901069
HJ
76extern __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
519517fd 82#ifdef __x86_64__
3e901069 83extern __inline unsigned char __attribute__((__gnu_inline__, __always_inline__, __artificial__))
519517fd 84__lwpins64 (unsigned long long data2, unsigned int data1, unsigned int flags)
3e901069
HJ
85{
86 return __builtin_ia32_lwpins64 (data2, data1, flags);
87}
519517fd
JJ
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
97db2bf7
ST
100#ifdef __DISABLE_LWP__
101#undef __DISABLE_LWP__
102#pragma GCC pop_options
103#endif /* __DISABLE_LWP__ */
3e901069
HJ
104
105#endif /* _LWPINTRIN_H_INCLUDED */