[HEADERS]
[reactos.git] / reactos / include / crt / mingw32 / intrin.h
1 /*
2 Compatibility <intrin.h> header for GCC -- GCC equivalents of intrinsic
3 Microsoft Visual C++ functions. Originally developed for the ReactOS
4 (<http://www.reactos.org/>) and TinyKrnl (<http://www.tinykrnl.org/>)
5 projects.
6
7 Copyright (c) 2006 KJK::Hyperion <hackbunny@reactos.com>
8
9 Permission is hereby granted, free of charge, to any person obtaining a
10 copy of this software and associated documentation files (the "Software"),
11 to deal in the Software without restriction, including without limitation
12 the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 and/or sell copies of the Software, and to permit persons to whom the
14 Software is furnished to do so, subject to the following conditions:
15
16 The above copyright notice and this permission notice shall be included in
17 all copies or substantial portions of the Software.
18
19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25 DEALINGS IN THE SOFTWARE.
26 */
27
28 #ifndef KJK_INTRIN_H_
29 #define KJK_INTRIN_H_
30
31 #ifndef RC_INVOKED
32
33 #define __INTRIN_INLINE extern __inline__ __attribute__((__always_inline__,__gnu_inline__))
34
35 #ifndef _SIZE_T_DEFINED
36 #define _SIZE_T_DEFINED
37 #ifdef _WIN64
38 typedef unsigned __int64 size_t;
39 #else
40 typedef unsigned int size_t;
41 #endif
42 #endif
43
44 #ifndef _UINTPTR_T_DEFINED
45 #define _UINTPTR_T_DEFINED
46 #ifdef _WIN64
47 typedef unsigned __int64 uintptr_t;
48 #else
49 typedef unsigned int uintptr_t;
50 #endif
51 #endif
52
53 /*
54 FIXME: review all "memory" clobbers, add/remove to match Visual C++
55 behavior: some "obvious" memory barriers are not present in the Visual C++
56 implementation - e.g. __stosX; on the other hand, some memory barriers that
57 *are* present could have been missed
58 */
59
60 /*
61 NOTE: this is a *compatibility* header. Some functions may look wrong at
62 first, but they're only "as wrong" as they would be on Visual C++. Our
63 priority is compatibility
64
65 NOTE: unlike most people who write inline asm for GCC, I didn't pull the
66 constraints and the uses of __volatile__ out of my... hat. Do not touch
67 them. I hate cargo cult programming
68
69 NOTE: be very careful with declaring "memory" clobbers. Some "obvious"
70 barriers aren't there in Visual C++ (e.g. __stosX)
71
72 NOTE: review all intrinsics with a return value, add/remove __volatile__
73 where necessary. If an intrinsic whose value is ignored generates a no-op
74 under Visual C++, __volatile__ must be omitted; if it always generates code
75 (for example, if it has side effects), __volatile__ must be specified. GCC
76 will only optimize out non-volatile asm blocks with outputs, so input-only
77 blocks are safe. Oddities such as the non-volatile 'rdmsr' are intentional
78 and follow Visual C++ behavior
79
80 NOTE: on GCC 4.1.0, please use the __sync_* built-ins for barriers and
81 atomic operations. Test the version like this:
82
83 #if (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) > 40100
84 ...
85
86 Pay attention to the type of barrier. Make it match with what Visual C++
87 would use in the same case
88 */
89
90 #if defined(__i386__)
91 #include "intrin_x86.h"
92 #elif defined(_PPC_)
93 #include "intrin_ppc.h"
94 #elif defined(_MIPS_)
95 #include "intrin_mips.h"
96 #elif defined(_M_ARM)
97 #include "intrin_arm.h"
98 #elif defined(__x86_64__)
99 /* TODO: the x64 architecture shares most of the i386 intrinsics. It should be easy to support */
100 #include "intrin_x86.h"
101 #else
102 #error Unsupported architecture
103 #endif
104
105
106 /*** Miscellaneous ***/
107 /* BUGBUG: only good for use in macros. Cannot be taken the address of */
108 #define __noop(...) ((void)0)
109
110 /* TODO: __assume. GCC only supports the weaker __builtin_expect */
111
112 #endif
113
114 #endif
115
116 /* EOF */