VirtualBox

source: vbox/trunk/include/iprt/asm-arm.h@ 87197

Last change on this file since 87197 was 87197, checked in by vboxsync, 4 years ago

iprt/asm-arm.h: copied from branch. needs work. bugref:9898 bugref:9026

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.0 KB
Line 
1/** @file
2 * IPRT - ARM Specific Assembly Functions.
3 */
4
5/*
6 * Copyright (C) 2015-2021 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_asm_arm_h
27#define ___iprt_asm_arm_h
28
29#include <iprt/types.h>
30#if !defined(RT_ARCH_ARM64) && !defined(RT_ARCH_ARM32)
31# error "Not on ARM64 or ARM32"
32#endif
33
34/** @defgroup grp_rt_asm_arm ARM Specific ASM Routines
35 * @ingroup grp_rt_asm
36 * @{
37 */
38
39
40#if 0 /* figure out arm64 */
41
42/**
43 * Get the CPSR (Current Program Status) register.
44 * @returns CPSR.
45 */
46#if RT_INLINE_ASM_EXTERNAL
47DECLASM(RTCCUINTREG) ASMGetFlags(void);
48#else
49DECLINLINE(RTCCUINTREG) ASMGetFlags(void)
50{
51 RTCCUINTREG uFlags;
52# if RT_INLINE_ASM_GNU_STYLE
53# ifdef RT_ARCH_ARM64
54 __asm__ __volatile__("mrs %0, nzcv\n\t" : "=r" (uFlags));
55# else
56 __asm__ __volatile__("mrs %0, cpsr\n\t" : "=r" (uFlags));
57# endif
58# else
59# error "Unsupported compiler"
60# endif
61 return uFlags;
62}
63#endif
64
65
66/**
67 * Set the CPSR register.
68 * @param uFlags The new CPSR value.
69 */
70#if RT_INLINE_ASM_EXTERNAL
71DECLASM(void) ASMSetFlags(RTCCUINTREG uFlags);
72#else
73DECLINLINE(void) ASMSetFlags(RTCCUINTREG uFlags)
74{
75# if RT_INLINE_ASM_GNU_STYLE
76 __asm__ __volatile__("msr cpsr_c, %0\n\t"
77 : : "r" (uFlags));
78# else
79# error "Unsupported compiler"
80# endif
81}
82#endif
83
84#endif
85
86#if 0
87/**
88 * Gets the content of the CPU timestamp counter register.
89 *
90 * @returns TSC.
91 */
92#if RT_INLINE_ASM_EXTERNAL
93DECLASM(uint64_t) ASMReadTSC(void);
94#else
95DECLINLINE(uint64_t) ASMReadTSC(void)
96{
97 RTUINT64U u;
98# if RT_INLINE_ASM_GNU_STYLE
99# else
100# error "Unsupported compiler"
101# endif
102 return u.u;
103}
104#endif
105#endif
106
107#if 0 /* port to arm64, armv7 and check */
108
109/**
110 * Enables interrupts (IRQ and FIQ).
111 */
112#if RT_INLINE_ASM_EXTERNAL
113DECLASM(void) ASMIntEnable(void);
114#else
115DECLINLINE(void) ASMIntEnable(void)
116{
117 RTCCUINTREG uFlags;
118# if RT_INLINE_ASM_GNU_STYLE
119 __asm__ __volatile__("mrs %0, cpsr\n\t"
120 "bic %0, %0, #0xc0\n\t"
121 "msr cpsr_c, %0\n\t"
122 : "=r" (uFlags));
123# else
124# error "Unsupported compiler"
125# endif
126}
127#endif
128
129
130/**
131 * Disables interrupts (IRQ and FIQ).
132 */
133#if RT_INLINE_ASM_EXTERNAL
134DECLASM(void) ASMIntDisable(void);
135#else
136DECLINLINE(void) ASMIntDisable(void)
137{
138 RTCCUINTREG uFlags;
139# if RT_INLINE_ASM_GNU_STYLE
140 __asm__ __volatile__("mrs %0, cpsr\n\t"
141 "orr %0, %0, #0xc0\n\t"
142 "msr cpsr_c, %0\n\t"
143 : "=r" (uFlags));
144# else
145# error "Unsupported compiler"
146# endif
147}
148#endif
149
150
151/**
152 * Disables interrupts and returns previous uFLAGS.
153 */
154#if RT_INLINE_ASM_EXTERNAL
155DECLASM(RTCCUINTREG) ASMIntDisableFlags(void);
156#else
157DECLINLINE(RTCCUINTREG) ASMIntDisableFlags(void)
158{
159 RTCCUINTREG uFlags;
160# if RT_INLINE_ASM_GNU_STYLE
161 RTCCUINTREG uNewFlags;
162 __asm__ __volatile__("mrs %0, cpsr\n\t"
163 "orr %1, %0, #0xc0\n\t"
164 "msr cpsr_c, %1\n\t"
165 : "=r" (uFlags)
166 , "=r" (uNewFlags));
167# else
168# error "Unsupported compiler"
169# endif
170 return uFlags;
171}
172#endif
173
174
175/**
176 * Are interrupts enabled?
177 *
178 * @returns true / false.
179 */
180DECLINLINE(bool) ASMIntAreEnabled(void)
181{
182/** @todo r=bird: reversed, but does both need to be enabled? */
183 return ASMGetFlags() & 0xc0 /* IRQ and FIQ bits */ ? true : false;
184}
185
186#endif
187
188/**
189 * Halts the CPU until interrupted.
190 */
191#if RT_INLINE_ASM_EXTERNAL
192DECLASM(void) ASMHalt(void);
193#else
194DECLINLINE(void) ASMHalt(void)
195{
196# if RT_INLINE_ASM_GNU_STYLE
197 __asm__ __volatile__ ("wfi\n\t"); /* wait for interrupt */
198# else
199# error "Unsupported compiler"
200# endif
201}
202#endif
203
204#if 0
205/**
206 * Gets the CPU ID of the current CPU.
207 *
208 * @returns the CPU ID.
209 * @note the name of this method is a bit misleading but serves the purpose
210 * and prevents #ifdef orgies in other places.
211 */
212#if RT_INLINE_ASM_EXTERNAL
213DECLASM(uint8_t) ASMGetApicId(void);
214#else
215DECLINLINE(uint8_t) ASMGetApicId(void)
216{
217# if RT_INLINE_ASM_GNU_STYLE
218 RTCCUINTREG uCpuId;
219 __asm__ ("mrc p15, 0, %0, c0, c0, 5\n\t" /* CPU ID Register, privileged */
220 : "=r" (uCpuId));
221 return uCpuId;
222# else
223# error "Unsupported compiler"
224# endif
225}
226#endif
227#endif
228
229#if 0
230
231/**
232 * Invalidate page.
233 *
234 * @param pv Address of the page to invalidate.
235 */
236#if RT_INLINE_ASM_EXTERNAL
237DECLASM(void) ASMInvalidatePage(void *pv);
238#else
239DECLINLINE(void) ASMInvalidatePage(void *pv)
240{
241# if RT_INLINE_ASM_GNU_STYLE
242
243# else
244# error "Unsupported compiler"
245# endif
246}
247#endif
248
249
250/**
251 * Write back the internal caches and invalidate them.
252 */
253#if RT_INLINE_ASM_EXTERNAL
254DECLASM(void) ASMWriteBackAndInvalidateCaches(void);
255#else
256DECLINLINE(void) ASMWriteBackAndInvalidateCaches(void)
257{
258# if RT_INLINE_ASM_GNU_STYLE
259
260# else
261# error "Unsupported compiler"
262# endif
263}
264#endif
265
266
267/**
268 * Invalidate internal and (perhaps) external caches without first
269 * flushing dirty cache lines. Use with extreme care.
270 */
271#if RT_INLINE_ASM_EXTERNAL
272DECLASM(void) ASMInvalidateInternalCaches(void);
273#else
274DECLINLINE(void) ASMInvalidateInternalCaches(void)
275{
276# if RT_INLINE_ASM_GNU_STYLE
277
278# else
279# error "Unsupported compiler"
280# endif
281}
282#endif
283
284#endif
285
286
287/** @} */
288#endif
289
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette