VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/misc/zero-alt.S

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: 3.6 KB
Line 
1/* $Id: zero-alt.S 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * IPRT - Zero Memory, mach-o version (for arm/sparc).
4 */
5
6/*
7 * Copyright (C) 2013-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#ifdef ASM_FORMAT_MACHO
39; Putting it in the code segment/section for now.
40 .section __TEXT,__text,regular,pure_instructions
41 .section __TEXT,__const
42# define NAME(a) _##a
43#elif defined(ASM_FORMAT_ELF) && (defined(RT_ARCH_ARM64) || defined(RT_ARCH_SPARC) || defined(RT_ARCH_SPARC64))
44/* Putting it in the rodata segment/section for now. */
45 .file "zero-alt.S"
46 .section ".rodata"
47# define NAME(a) a
48# define NEED_HIDDEN
49#else
50# error "PORT ME!"
51#endif
52
53/* 64KB of zero memory with various sized labels. */
54 .globl NAME(g_abRTZeroPage)
55#ifdef ASM_FORMAT_ELF
56# ifdef NEED_HIDDEN
57 .hidden NAME(g_abRTZeroPage)
58# endif
59 .type NAME(g_abRTZeroPage),#object
60# if defined(RT_ARCH_SPARC) || defined(RT_ARCH_SPARC64)
61 .size NAME(g_abRTZeroPage),8192
62# else
63 .size NAME(g_abRTZeroPage),4096
64# endif
65#endif
66NAME(g_abRTZeroPage):
67 .globl NAME(g_abRTZero4K)
68#ifdef ASM_FORMAT_ELF
69# ifdef NEED_HIDDEN
70 .hidden NAME(g_abRTZero4K)
71# endif
72 .type NAME(g_abRTZero4K),#object
73 .size NAME(g_abRTZero4K),4096
74#endif
75NAME(g_abRTZero4K):
76 .globl NAME(g_abRTZero8K)
77#ifdef ASM_FORMAT_ELF
78# ifdef NEED_HIDDEN
79 .hidden NAME(g_abRTZero8K)
80# endif
81 .type NAME(g_abRTZero8K),#object
82 .size NAME(g_abRTZero8K),8192
83#endif
84NAME(g_abRTZero8K):
85 .globl NAME(g_abRTZero16K)
86#ifdef ASM_FORMAT_ELF
87# ifdef NEED_HIDDEN
88 .hidden NAME(g_abRTZero16K)
89# endif
90 .type NAME(g_abRTZero16K),#object
91 .size NAME(g_abRTZero16K),16384
92#endif
93NAME(g_abRTZero16K):
94 .globl NAME(g_abRTZero32K)
95#ifdef ASM_FORMAT_ELF
96# ifdef NEED_HIDDEN
97 .hidden NAME(g_abRTZero32K)
98# endif
99 .type NAME(g_abRTZero32K),#object
100 .size NAME(g_abRTZero32K),32768
101#endif
102NAME(g_abRTZero32K):
103 .globl NAME(g_abRTZero64K)
104#ifdef ASM_FORMAT_ELF
105# ifdef NEED_HIDDEN
106 .hidden NAME(g_abRTZero64K)
107# endif
108 .type NAME(g_abRTZero64K),#object
109 .size NAME(g_abRTZero64K),65536
110#endif
111NAME(g_abRTZero64K):
112
113#ifdef ASM_FORMAT_MACHO
114 .space 65536
115#elif defined(ASM_FORMAT_ELF)
116 .skip 65536
117#endif
118
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use