]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseSynchronizationLib/Ia32/GccInline.c
MdePkg/BaseSynchronizationLib GCC: fix whitespace and comments
[mirror_edk2.git] / MdePkg / Library / BaseSynchronizationLib / Ia32 / GccInline.c
CommitLineData
cf683fed 1/** @file\r
2 GCC inline implementation of BaseSynchronizationLib processor specific functions.\r
9095d37b
LG
3\r
4 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
c9b34b8c
HT
5 Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>\r
6 This program and the accompanying materials\r
cf683fed 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
2fc59a00 9 http://opensource.org/licenses/bsd-license.php.\r
cf683fed 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
17634d02 23 performed using MP safe mechanisms.\r
cf683fed 24\r
25 @param Value A pointer to the 32-bit value to increment.\r
26\r
27 @return The incremented value.\r
28\r
29**/\r
30UINT32\r
31EFIAPI\r
32InternalSyncIncrement (\r
33 IN volatile UINT32 *Value\r
34 )\r
35{\r
36 UINT32 Result;\r
37\r
38 __asm__ __volatile__ (\r
17634d02 39 "movl $1, %%eax \n\t"\r
cf683fed 40 "lock \n\t"\r
8a94eb92 41 "xadd %%eax, %1 \n\t"\r
310ddb63 42 "inc %%eax \n\t"\r
cf683fed 43 : "=a" (Result), // %0\r
8a94eb92
LE
44 "+m" (*Value) // %1\r
45 : // no inputs that aren't also outputs\r
cf683fed 46 : "memory",\r
47 "cc"\r
48 );\r
9095d37b
LG
49\r
50 return Result;\r
cf683fed 51}\r
52\r
53\r
54/**\r
55 Performs an atomic decrement of an 32-bit unsigned integer.\r
56\r
57 Performs an atomic decrement of the 32-bit unsigned integer specified by\r
58 Value and returns the decremented value. The decrement operation must be\r
17634d02 59 performed using MP safe mechanisms.\r
cf683fed 60\r
61 @param Value A pointer to the 32-bit value to decrement.\r
62\r
63 @return The decremented value.\r
64\r
65**/\r
66UINT32\r
67EFIAPI\r
68InternalSyncDecrement (\r
69 IN volatile UINT32 *Value\r
70 )\r
71{\r
72 UINT32 Result;\r
9095d37b 73\r
cf683fed 74 __asm__ __volatile__ (\r
17634d02
RN
75 "movl $-1, %%eax \n\t"\r
76 "lock \n\t"\r
8a94eb92 77 "xadd %%eax, %1 \n\t"\r
310ddb63
LE
78 "dec %%eax \n\t"\r
79 : "=a" (Result), // %0\r
80 "+m" (*Value) // %1\r
81 : // no inputs that aren't also outputs\r
cf683fed 82 : "memory",\r
83 "cc"\r
84 );\r
9095d37b 85\r
cf683fed 86 return Result;\r
87}\r
88\r
310ddb63 89\r
9b89163e
AB
90/**\r
91 Performs an atomic compare exchange operation on a 16-bit unsigned integer.\r
92\r
93 Performs an atomic compare exchange operation on the 16-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 16-bit value for the compare exchange\r
101 operation.\r
102 @param CompareValue 16-bit value used in compare operation.\r
103 @param ExchangeValue 16-bit value used in exchange operation.\r
104\r
105 @return The original *Value before exchange.\r
106\r
107**/\r
108UINT16\r
109EFIAPI\r
110InternalSyncCompareExchange16 (\r
111 IN OUT volatile UINT16 *Value,\r
112 IN UINT16 CompareValue,\r
113 IN UINT16 ExchangeValue\r
114 )\r
115{\r
9b89163e 116 __asm__ __volatile__ (\r
9b89163e
AB
117 "lock \n\t"\r
118 "cmpxchgw %1, %2 \n\t"\r
310ddb63
LE
119 : "=a" (CompareValue) // %0\r
120 : "q" (ExchangeValue), // %1\r
121 "m" (*Value), // %2\r
122 "0" (CompareValue) // %3\r
9b89163e
AB
123 : "memory",\r
124 "cc"\r
125 );\r
126\r
127 return CompareValue;\r
128}\r
129\r
310ddb63 130\r
cf683fed 131/**\r
132 Performs an atomic compare exchange operation on a 32-bit unsigned integer.\r
133\r
134 Performs an atomic compare exchange operation on the 32-bit unsigned integer\r
135 specified by Value. If Value is equal to CompareValue, then Value is set to\r
136 ExchangeValue and CompareValue is returned. If Value is not equal to CompareValue,\r
137 then Value is returned. The compare exchange operation must be performed using\r
138 MP safe mechanisms.\r
139\r
140\r
141 @param Value A pointer to the 32-bit value for the compare exchange\r
142 operation.\r
143 @param CompareValue 32-bit value used in compare operation.\r
144 @param ExchangeValue 32-bit value used in exchange operation.\r
145\r
146 @return The original *Value before exchange.\r
147\r
148**/\r
149UINT32\r
150EFIAPI\r
151InternalSyncCompareExchange32 (\r
152 IN OUT volatile UINT32 *Value,\r
153 IN UINT32 CompareValue,\r
154 IN UINT32 ExchangeValue\r
155 )\r
156{\r
cf683fed 157 __asm__ __volatile__ (\r
cf683fed 158 "lock \n\t"\r
159 "cmpxchgl %1, %2 \n\t"\r
310ddb63
LE
160 : "=a" (CompareValue) // %0\r
161 : "q" (ExchangeValue), // %1\r
162 "m" (*Value), // %2\r
163 "0" (CompareValue) // %3\r
cf683fed 164 : "memory",\r
165 "cc"\r
166 );\r
167\r
4e4a5f35 168 return CompareValue;\r
cf683fed 169}\r
170\r
310ddb63 171\r
cf683fed 172/**\r
173 Performs an atomic compare exchange operation on a 64-bit unsigned integer.\r
174\r
175 Performs an atomic compare exchange operation on the 64-bit unsigned integer specified\r
176 by Value. If Value is equal to CompareValue, then Value is set to ExchangeValue and\r
177 CompareValue is returned. If Value is not equal to CompareValue, then Value is returned.\r
178 The compare exchange operation must be performed using MP safe mechanisms.\r
179\r
180\r
181 @param Value A pointer to the 64-bit value for the compare exchange\r
182 operation.\r
183 @param CompareValue 64-bit value used in compare operation.\r
184 @param ExchangeValue 64-bit value used in exchange operation.\r
185\r
186 @return The original *Value before exchange.\r
187\r
188**/\r
189UINT64\r
190EFIAPI\r
191InternalSyncCompareExchange64 (\r
192 IN OUT volatile UINT64 *Value,\r
193 IN UINT64 CompareValue,\r
194 IN UINT64 ExchangeValue\r
195 )\r
196{\r
cf683fed 197 __asm__ __volatile__ (\r
9095d37b
LG
198 "push %%ebx \n\t"\r
199 "movl %2,%%ebx \n\t"\r
cf683fed 200 "lock \n\t"\r
201 "cmpxchg8b (%1) \n\t"\r
202 "pop %%ebx \n\t"\r
203 : "+A" (CompareValue) // %0\r
204 : "S" (Value), // %1\r
205 "r" ((UINT32) ExchangeValue), // %2\r
206 "c" ((UINT32) (ExchangeValue >> 32)) // %3\r
207 : "memory",\r
208 "cc"\r
209 );\r
9095d37b 210\r
cf683fed 211 return CompareValue;\r
cf683fed 212}\r