]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseSynchronizationLib/Ia32/GccInline.c
MdePkg/BaseSynchronizationLib: Added proper support for ARM architecture
[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
4e4a5f35 4 Copyright (c) 2006 - 2010, 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
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
cf683fed 117 __asm__ __volatile__ (\r
118 " \n\t"\r
119 "lock \n\t"\r
120 "cmpxchgl %1, %2 \n\t"\r
121 : "=a" (CompareValue) // %0\r
122 : "q" (ExchangeValue), // %1\r
123 "m" (*Value), // %2\r
124 "0" (CompareValue) // %4 \r
125 : "memory",\r
126 "cc"\r
127 );\r
128\r
4e4a5f35 129 return CompareValue;\r
cf683fed 130}\r
131\r
132/**\r
133 Performs an atomic compare exchange operation on a 64-bit unsigned integer.\r
134\r
135 Performs an atomic compare exchange operation on the 64-bit unsigned integer specified\r
136 by Value. If Value is equal to CompareValue, then Value is set to ExchangeValue and\r
137 CompareValue is returned. If Value is not equal to CompareValue, then Value is returned.\r
138 The compare exchange operation must be performed using MP safe mechanisms.\r
139\r
140\r
141 @param Value A pointer to the 64-bit value for the compare exchange\r
142 operation.\r
143 @param CompareValue 64-bit value used in compare operation.\r
144 @param ExchangeValue 64-bit value used in exchange operation.\r
145\r
146 @return The original *Value before exchange.\r
147\r
148**/\r
149UINT64\r
150EFIAPI\r
151InternalSyncCompareExchange64 (\r
152 IN OUT volatile UINT64 *Value,\r
153 IN UINT64 CompareValue,\r
154 IN UINT64 ExchangeValue\r
155 )\r
156{\r
cf683fed 157 __asm__ __volatile__ (\r
158 " \n\t"\r
159 "push %%ebx \n\t" \r
160 "movl %2,%%ebx \n\t" \r
161 "lock \n\t"\r
162 "cmpxchg8b (%1) \n\t"\r
163 "pop %%ebx \n\t"\r
164 : "+A" (CompareValue) // %0\r
165 : "S" (Value), // %1\r
166 "r" ((UINT32) ExchangeValue), // %2\r
167 "c" ((UINT32) (ExchangeValue >> 32)) // %3\r
168 : "memory",\r
169 "cc"\r
170 );\r
171 \r
172 return CompareValue;\r
cf683fed 173}\r