VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/asm/asm-fake.cpp

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.3 KB
Line 
1/* $Id: asm-fake.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * IPRT - Fake asm.h routines for use early in a new port.
4 */
5
6/*
7 * Copyright (C) 2010-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * The contents of this file may alternatively be used under the terms
26 * of the Common Development and Distribution License Version 1.0
27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28 * in the VirtualBox distribution, in which case the provisions of the
29 * CDDL are applicable instead of those of the GPL.
30 *
31 * You may elect to license modified versions of this file under the
32 * terms and conditions of either the GPL or the CDDL or both.
33 *
34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35 */
36
37
38/*********************************************************************************************************************************
39* Header Files *
40*********************************************************************************************************************************/
41#include <iprt/asm.h>
42#include "internal/iprt.h"
43
44#include <iprt/string.h>
45#include <iprt/param.h>
46
47
48RTDECL(uint8_t) ASMAtomicXchgU8(volatile uint8_t *pu8, uint8_t u8)
49{
50 uint8_t u8Ret = *pu8;
51 *pu8 = u8;
52 return u8Ret;
53}
54
55RTDECL(uint16_t) ASMAtomicXchgU16(volatile uint16_t *pu16, uint16_t u16)
56{
57 uint16_t u16Ret = *pu16;
58 *pu16 = u16;
59 return u16Ret;
60}
61
62RTDECL(uint32_t) ASMAtomicXchgU32(volatile uint32_t *pu32, uint32_t u32)
63{
64 uint32_t u32Ret = *pu32;
65 *pu32 = u32;
66 return u32Ret;
67}
68
69RTDECL(uint64_t) ASMAtomicXchgU64(volatile uint64_t *pu64, uint64_t u64)
70{
71 uint64_t u64Ret = *pu64;
72 *pu64 = u64;
73 return u64Ret;
74}
75
76RTDECL(bool) ASMAtomicCmpXchgU8(volatile uint8_t *pu8, const uint8_t u8New, const uint8_t u8Old)
77{
78 if (*pu8 == u8Old)
79 {
80 *pu8 = u8New;
81 return true;
82 }
83 return false;
84}
85
86RTDECL(bool) ASMAtomicCmpXchgU32(volatile uint32_t *pu32, const uint32_t u32New, const uint32_t u32Old)
87{
88 if (*pu32 == u32Old)
89 {
90 *pu32 = u32New;
91 return true;
92 }
93 return false;
94}
95
96RTDECL(bool) ASMAtomicCmpXchgU64(volatile uint64_t *pu64, const uint64_t u64New, const uint64_t u64Old)
97{
98 if (*pu64 == u64Old)
99 {
100 *pu64 = u64New;
101 return true;
102 }
103 return false;
104}
105
106RTDECL(bool) ASMAtomicCmpXchgExU32(volatile uint32_t *pu32, const uint32_t u32New, const uint32_t u32Old, uint32_t *pu32Old)
107{
108 uint32_t u32Cur = *pu32;
109 if (u32Cur == u32Old)
110 {
111 *pu32 = u32New;
112 *pu32Old = u32Old;
113 return true;
114 }
115 *pu32Old = u32Cur;
116 return false;
117}
118
119RTDECL(bool) ASMAtomicCmpXchgExU64(volatile uint64_t *pu64, const uint64_t u64New, const uint64_t u64Old, uint64_t *pu64Old)
120{
121 uint64_t u64Cur = *pu64;
122 if (u64Cur == u64Old)
123 {
124 *pu64 = u64New;
125 *pu64Old = u64Old;
126 return true;
127 }
128 *pu64Old = u64Cur;
129 return false;
130}
131
132RTDECL(uint32_t) ASMAtomicAddU32(uint32_t volatile *pu32, uint32_t u32)
133{
134 uint32_t u32Old = *pu32;
135 *pu32 = u32Old + u32;
136 return u32Old;
137}
138
139RTDECL(uint64_t) ASMAtomicAddU64(uint64_t volatile *pu64, uint64_t u64)
140{
141 uint64_t u64Old = *pu64;
142 *pu64 = u64Old + u64;
143 return u64Old;
144}
145
146RTDECL(uint32_t) ASMAtomicIncU32(uint32_t volatile *pu32)
147{
148 return *pu32 += 1;
149}
150
151RTDECL(uint32_t) ASMAtomicUoIncU32(uint32_t volatile *pu32)
152{
153 return *pu32 += 1;
154}
155
156RTDECL(uint32_t) ASMAtomicDecU32(uint32_t volatile *pu32)
157{
158 return *pu32 -= 1;
159}
160
161RTDECL(uint32_t) ASMAtomicUoDecU32(uint32_t volatile *pu32)
162{
163 return *pu32 -= 1;
164}
165
166RTDECL(uint64_t) ASMAtomicIncU64(uint64_t volatile *pu64)
167{
168 return *pu64 += 1;
169}
170
171RTDECL(uint64_t) ASMAtomicDecU64(uint64_t volatile *pu64)
172{
173 return *pu64 -= 1;
174}
175
176RTDECL(void) ASMAtomicOrU32(uint32_t volatile *pu32, uint32_t u32)
177{
178 *pu32 |= u32;
179}
180
181RTDECL(void) ASMAtomicUoOrU32(uint32_t volatile *pu32, uint32_t u32)
182{
183 *pu32 |= u32;
184}
185
186RTDECL(void) ASMAtomicAndU32(uint32_t volatile *pu32, uint32_t u32)
187{
188 *pu32 &= u32;
189}
190
191RTDECL(void) ASMAtomicUoAndU32(uint32_t volatile *pu32, uint32_t u32)
192{
193 *pu32 &= u32;
194}
195
196RTDECL(void) ASMAtomicOrU64(uint64_t volatile *pu64, uint64_t u64)
197{
198 *pu64 |= u64;
199}
200
201RTDECL(void) ASMAtomicAndU64(uint64_t volatile *pu64, uint64_t u64)
202{
203 *pu64 &= u64;
204}
205
206RTDECL(void) ASMSerializeInstruction(void)
207{
208
209}
210
211RTDECL(uint64_t) ASMAtomicReadU64(volatile uint64_t *pu64)
212{
213 return *pu64;
214}
215
216RTDECL(uint64_t) ASMAtomicUoReadU64(volatile uint64_t *pu64)
217{
218 return *pu64;
219}
220
221RTDECL(uint8_t) ASMProbeReadByte(const void *pvByte)
222{
223 return *(volatile uint8_t *)pvByte;
224}
225
226#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
227RTDECL(void) ASMNopPause(void)
228{
229}
230#endif
231
232RTDECL(void) ASMBitSet(volatile void *pvBitmap, int32_t iBit)
233{
234 uint8_t volatile *pau8Bitmap = (uint8_t volatile *)pvBitmap;
235 pau8Bitmap[iBit / 8] |= (uint8_t)RT_BIT_32(iBit & 7);
236}
237
238RTDECL(void) ASMAtomicBitSet(volatile void *pvBitmap, int32_t iBit)
239{
240 ASMBitSet(pvBitmap, iBit);
241}
242
243RTDECL(void) ASMBitClear(volatile void *pvBitmap, int32_t iBit)
244{
245 uint8_t volatile *pau8Bitmap = (uint8_t volatile *)pvBitmap;
246 pau8Bitmap[iBit / 8] &= ~((uint8_t)RT_BIT_32(iBit & 7));
247}
248
249RTDECL(void) ASMAtomicBitClear(volatile void *pvBitmap, int32_t iBit)
250{
251 ASMBitClear(pvBitmap, iBit);
252}
253
254RTDECL(void) ASMBitToggle(volatile void *pvBitmap, int32_t iBit)
255{
256 uint8_t volatile *pau8Bitmap = (uint8_t volatile *)pvBitmap;
257 pau8Bitmap[iBit / 8] ^= (uint8_t)RT_BIT_32(iBit & 7);
258}
259
260RTDECL(void) ASMAtomicBitToggle(volatile void *pvBitmap, int32_t iBit)
261{
262 ASMBitToggle(pvBitmap, iBit);
263}
264
265RTDECL(bool) ASMBitTestAndSet(volatile void *pvBitmap, int32_t iBit)
266{
267 if (ASMBitTest(pvBitmap, iBit))
268 return true;
269 ASMBitSet(pvBitmap, iBit);
270 return false;
271}
272
273RTDECL(bool) ASMAtomicBitTestAndSet(volatile void *pvBitmap, int32_t iBit)
274{
275 return ASMBitTestAndSet(pvBitmap, iBit);
276}
277
278RTDECL(bool) ASMBitTestAndClear(volatile void *pvBitmap, int32_t iBit)
279{
280 if (!ASMBitTest(pvBitmap, iBit))
281 return false;
282 ASMBitClear(pvBitmap, iBit);
283 return true;
284}
285
286RTDECL(bool) ASMAtomicBitTestAndClear(volatile void *pvBitmap, int32_t iBit)
287{
288 return ASMBitTestAndClear(pvBitmap, iBit);
289}
290
291RTDECL(bool) ASMBitTestAndToggle(volatile void *pvBitmap, int32_t iBit)
292{
293 bool fRet = ASMBitTest(pvBitmap, iBit);
294 ASMBitToggle(pvBitmap, iBit);
295 return fRet;
296}
297
298RTDECL(bool) ASMAtomicBitTestAndToggle(volatile void *pvBitmap, int32_t iBit)
299{
300 return ASMBitTestAndToggle(pvBitmap, iBit);
301}
302
303RTDECL(bool) ASMBitTest(const volatile void *pvBitmap, int32_t iBit)
304{
305 uint8_t volatile *pau8Bitmap = (uint8_t volatile *)pvBitmap;
306 return pau8Bitmap[iBit / 8] & (uint8_t)RT_BIT_32(iBit & 7) ? true : false;
307}
308
309RTDECL(unsigned) ASMBitFirstSetU32(uint32_t u32)
310{
311 uint32_t iBit;
312 for (iBit = 0; iBit < 32; iBit++)
313 if (u32 & RT_BIT_32(iBit))
314 return iBit + 1;
315 return 0;
316}
317
318RTDECL(unsigned) ASMBitLastSetU32(uint32_t u32)
319{
320 uint32_t iBit = 32;
321 while (iBit-- > 0)
322 if (u32 & RT_BIT_32(iBit))
323 return iBit + 1;
324 return 0;
325}
326
327RTDECL(unsigned) ASMBitFirstSetU64(uint64_t u64)
328{
329 uint32_t iBit;
330 for (iBit = 0; iBit < 64; iBit++)
331 if (u64 & RT_BIT_64(iBit))
332 return iBit + 1;
333 return 0;
334}
335
336RTDECL(unsigned) ASMBitLastSetU64(uint64_t u64)
337{
338 uint32_t iBit = 64;
339 while (iBit-- > 0)
340 if (u64 & RT_BIT_64(iBit))
341 return iBit + 1;
342 return 0;
343}
344
345RTDECL(uint16_t) ASMByteSwapU16(uint16_t u16)
346{
347 return RT_MAKE_U16(RT_HIBYTE(u16), RT_LOBYTE(u16));
348}
349
350RTDECL(uint32_t) ASMByteSwapU32(uint32_t u32)
351{
352 return RT_MAKE_U32_FROM_U8(RT_BYTE4(u32), RT_BYTE3(u32), RT_BYTE2(u32), RT_BYTE1(u32));
353}
354
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use