]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseSynchronizationLib/Ia32/GccInline.c
1. Restore the inline C implementation of GCC assembly files that was temporarily...
[mirror_edk2.git] / MdePkg / Library / BaseSynchronizationLib / Ia32 / GccInline.c
CommitLineData
cf683fed 1/** @file\r
2 GCC inline implementation of BaseSynchronizationLib processor specific functions.\r
3 \r
4 Copyright (c) 2006 - 2009, Intel Corporation<BR>\r
5 Portions copyright (c) 2008-2009 Apple Inc. All rights reserved.<BR>\r
6 All rights reserved. This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16\r
17\r
18/**\r
19 Performs an atomic increment of an 32-bit unsigned integer.\r
20\r
21 Performs an atomic increment of the 32-bit unsigned integer specified by\r
22 Value and returns the incremented value. The increment operation must be\r
23 performed using MP safe mechanisms. The state of the return value is not\r
24 guaranteed to be MP safe.\r
25\r
26 @param Value A pointer to the 32-bit value to increment.\r
27\r
28 @return The incremented value.\r
29\r
30**/\r
31UINT32\r
32EFIAPI\r
33InternalSyncIncrement (\r
34 IN volatile UINT32 *Value\r
35 )\r
36{\r
37 UINT32 Result;\r
38\r
39 __asm__ __volatile__ (\r
40 "lock \n\t"\r
41 "incl %2 \n\t"\r
42 "movl %2, %%eax "\r
43 : "=a" (Result), // %0\r
44 "=m" (*Value) // %1\r
45 : "m" (*Value) // %2 \r
46 : "memory",\r
47 "cc"\r
48 );\r
49 \r
50 return Result; \r
51\r
52}\r
53\r
54\r
55/**\r
56 Performs an atomic decrement of an 32-bit unsigned integer.\r
57\r
58 Performs an atomic decrement of the 32-bit unsigned integer specified by\r
59 Value and returns the decremented value. The decrement operation must be\r
60 performed using MP safe mechanisms. The state of the return value is not\r
61 guaranteed to be MP safe.\r
62\r
63 @param Value A pointer to the 32-bit value to decrement.\r
64\r
65 @return The decremented value.\r
66\r
67**/\r
68UINT32\r
69EFIAPI\r
70InternalSyncDecrement (\r
71 IN volatile UINT32 *Value\r
72 )\r
73{\r
74 UINT32 Result;\r
75 \r
76 __asm__ __volatile__ (\r
77 "lock \n\t"\r
78 "decl %2 \n\t"\r
79 "movl %2, %%eax "\r
80 : "=a" (Result), // %0\r
81 "=m" (*Value) // %1\r
82 : "m" (*Value) // %2 \r
83 : "memory",\r
84 "cc"\r
85 );\r
86 \r
87 return Result;\r
88}\r
89\r
90/**\r
91 Performs an atomic compare exchange operation on a 32-bit unsigned integer.\r
92\r
93 Performs an atomic compare exchange operation on the 32-bit unsigned integer\r
94 specified by Value. If Value is equal to CompareValue, then Value is set to\r
95 ExchangeValue and CompareValue is returned. If Value is not equal to CompareValue,\r
96 then Value is returned. The compare exchange operation must be performed using\r
97 MP safe mechanisms.\r
98\r
99\r
100 @param Value A pointer to the 32-bit value for the compare exchange\r
101 operation.\r
102 @param CompareValue 32-bit value used in compare operation.\r
103 @param ExchangeValue 32-bit value used in exchange operation.\r
104\r
105 @return The original *Value before exchange.\r
106\r
107**/\r
108UINT32\r
109EFIAPI\r
110InternalSyncCompareExchange32 (\r
111 IN OUT volatile UINT32 *Value,\r
112 IN UINT32 CompareValue,\r
113 IN UINT32 ExchangeValue\r
114 )\r
115{\r
116\r
117// GCC 4.1 and forward supports atomic builtins \r
118#if ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 1)))\r
119\r
120 return __sync_val_compare_and_swap (Value, CompareValue, ExchangeValue);\r
121\r
122#else\r
123\r
124 __asm__ __volatile__ (\r
125 " \n\t"\r
126 "lock \n\t"\r
127 "cmpxchgl %1, %2 \n\t"\r
128 : "=a" (CompareValue) // %0\r
129 : "q" (ExchangeValue), // %1\r
130 "m" (*Value), // %2\r
131 "0" (CompareValue) // %4 \r
132 : "memory",\r
133 "cc"\r
134 );\r
135\r
136 return CompareValue;\r
137\r
138#endif\r
139}\r
140\r
141/**\r
142 Performs an atomic compare exchange operation on a 64-bit unsigned integer.\r
143\r
144 Performs an atomic compare exchange operation on the 64-bit unsigned integer specified\r
145 by Value. If Value is equal to CompareValue, then Value is set to ExchangeValue and\r
146 CompareValue is returned. If Value is not equal to CompareValue, then Value is returned.\r
147 The compare exchange operation must be performed using MP safe mechanisms.\r
148\r
149\r
150 @param Value A pointer to the 64-bit value for the compare exchange\r
151 operation.\r
152 @param CompareValue 64-bit value used in compare operation.\r
153 @param ExchangeValue 64-bit value used in exchange operation.\r
154\r
155 @return The original *Value before exchange.\r
156\r
157**/\r
158UINT64\r
159EFIAPI\r
160InternalSyncCompareExchange64 (\r
161 IN OUT volatile UINT64 *Value,\r
162 IN UINT64 CompareValue,\r
163 IN UINT64 ExchangeValue\r
164 )\r
165{\r
166// GCC 4.1 and forward supports atomic builtins \r
167#if ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 1)))\r
168\r
169 return __sync_val_compare_and_swap (Value, CompareValue, ExchangeValue);\r
170\r
171#else\r
172\r
173 __asm__ __volatile__ (\r
174 " \n\t"\r
175 "push %%ebx \n\t" \r
176 "movl %2,%%ebx \n\t" \r
177 "lock \n\t"\r
178 "cmpxchg8b (%1) \n\t"\r
179 "pop %%ebx \n\t"\r
180 : "+A" (CompareValue) // %0\r
181 : "S" (Value), // %1\r
182 "r" ((UINT32) ExchangeValue), // %2\r
183 "c" ((UINT32) (ExchangeValue >> 32)) // %3\r
184 : "memory",\r
185 "cc"\r
186 );\r
187 \r
188 return CompareValue;\r
189\r
190#endif\r
191}\r
192\r
193\r