VirtualBox

source: vbox/trunk/include/iprt/asmdefs-arm.mac@ 104212

Last change on this file since 104212 was 104212, checked in by vboxsync, 8 months ago

include/iprt,VMM/IEMAllN8veHlpA-arm64.S: Introduce a new asmdefs-arm.mac which contains macros for assembly code hiding differences between gcc and llvm, make use of it in IEMAllN8veHlpA-arm64.S to make it build with gcc on linux.arm64. Also, gcc doesn't like ; style comments, bugref:10391

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1/** @file
2 * IPRT - ARM Specific Assembly Macros.
3 */
4
5/*
6 * Copyright (C) 2024 Oracle and/or its affiliates.
7 *
8 * This file is part of VirtualBox base platform packages, as
9 * available from https://www.virtualbox.org.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation, in version 3 of the
14 * License.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <https://www.gnu.org/licenses>.
23 *
24 * The contents of this file may alternatively be used under the terms
25 * of the Common Development and Distribution License Version 1.0
26 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
27 * in the VirtualBox distribution, in which case the provisions of the
28 * CDDL are applicable instead of those of the GPL.
29 *
30 * You may elect to license modified versions of this file under the
31 * terms and conditions of either the GPL or the CDDL or both.
32 *
33 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
34 */
35
36#ifndef IPRT_INCLUDED_asmdefs_arm_mac
37#define IPRT_INCLUDED_asmdefs_arm_mac
38#ifndef RT_WITHOUT_PRAGMA_ONCE
39# pragma once
40#endif
41
42#if !defined(RT_ARCH_ARM64) && !defined(RT_ARCH_ARM32)
43# error "Not on ARM64 or ARM32"
44#endif
45
46#include <iprt/asmdefs-arm.h>
47
48/**
49 * Starts an externally visible procedure.
50 *
51 * @param a_Name The unmangled symbol name.
52 */
53.macro BEGINPROC, a_Name
54 .p2align 2
55 .globl NAME(\a_Name)
56NAME(\a_Name):
57.endm
58
59
60/**
61 * Starts a procedure with hidden visibility.
62 *
63 * @param a_Name The unmangled symbol name.
64 */
65.macro BEGINPROC_HIDDEN, a_Name
66 .p2align 2
67#ifndef ASM_FORMAT_ELF
68 .private_extern NAME(\a_Name)
69#endif
70 .globl NAME(\a_Name)
71NAME(\a_Name):
72.endm
73
74/** @} */
75
76#endif /* !IPRT_INCLUDED_asmdefs_arm_mac */
77
Note: See TracBrowser for help on using the repository browser.

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